Mikixx Ответов: 0

Из команды response cgi в XML файле


привет
я хочу отправить команду на свою камеру затем она даст мне ответ
я хочу прочитать ответ в xml файле
возможно ли это?

Что я уже пробовал:

<pre>   WebRequest request = WebRequest.Create(
              "http://192.168.1.15:88/cgi-bin/CGIProxy.fcgi?cmd=getMotionDetectConfig&usr=MyHome&pwd=Benstart1983");
            // If required by the server, set the credentials.  
            request.Credentials = CredentialCache.DefaultCredentials;
            // Get the response.  
            WebResponse response = request.GetResponse();
            // Display the status.  
        //    listBox1.Items.Add(((HttpWebResponse)response).StatusDescription);
            // Get the stream containing content returned by the server.  
            Stream dataStream = response.GetResponseStream();
            // Open the stream using a StreamReader for easy access.  
            StreamReader reader = new StreamReader(dataStream);
            // Read the content.  
            string responseFromServer = reader.ReadToEnd();
            // Display the content.  
            listBox1.Items.Add((responseFromServer));
            // Clean up the streams and the response.  
            reader.Close();
            response.Close();

Gerry Schmitz

Отвечает ли камера в XML?

Можно ли сделать курицу, несущую шоколадные яйца?

Mikixx

я вижу в браузере как xml

&ЛТ;cgi_result&ГТ;
<результат>0

0 Ответов