Is it possible to send http strings to a camera from sdk?

I need to send something like that - http://192.168.8.243/rcp.xml?command=0x09A5&type=P_OCTET&direction=WRITE&num=1&payload=0x8500040241030000&_=1518166559701 - to a camera. I found in forum that someone use the DriverCommand, but I didn’t found if and how it works.

Or di I have to use the WebRequest Class from .Net?

You would send the command using MessageCommunication see VideoOS.Platform.Messaging.MessageId.Control Class Reference

The DriverCommandData would include the URL excluding the camera adress. In your example take away “http://192.168.8.243/” and send “rcp.xml?command=0x09A5&type=P_OCTET&direction=WRITE&num=1&payload=0x8500040241030000&_=1518166559701”

Not all device drivers supports this but most newer devices/drivers will.

Many thanks…

Yes, this driver does not support it either. I’m using the “WebRequest” now, it works great.