ONVIF: Difference between revisions

From Monocle Security
Jump to navigation Jump to search
No edit summary
No edit summary
Line 5: Line 5:
httpBinding.AuthenticationScheme = AuthenticationSchemes.Basic;
httpBinding.AuthenticationScheme = AuthenticationSchemes.Basic;
CustomBinding bind = new CustomBinding(messageElement, httpBinding);
CustomBinding bind = new CustomBinding(messageElement, httpBinding);
EndpointAddress deviceAddress = new EndpointAddress("http://127.0.0.1:8888/onvif/device_service");
EndpointAddress deviceAddress = new EndpointAddress("http://192.168.0.10:8888/onvif/device_service");
DeviceClient deviceClient = new DeviceClient(bind, deviceAddress);
DeviceClient deviceClient = new DeviceClient(bind, deviceAddress);
deviceClient.ClientCredentials.UserName.UserName = "admin";
deviceClient.ClientCredentials.UserName.UserName = "admin";

Revision as of 15:09, 7 December 2023

C# Retrieve Date Time

TextMessageEncodingBindingElement messageElement = new TextMessageEncodingBindingElement();
messageElement.MessageVersion = MessageVersion.CreateVersion(EnvelopeVersion.Soap12, AddressingVersion.None);
HttpTransportBindingElement httpBinding = new HttpTransportBindingElement();
httpBinding.AuthenticationScheme = AuthenticationSchemes.Basic;
CustomBinding bind = new CustomBinding(messageElement, httpBinding);
EndpointAddress deviceAddress = new EndpointAddress("http://192.168.0.10:8888/onvif/device_service");
DeviceClient deviceClient = new DeviceClient(bind, deviceAddress);
deviceClient.ClientCredentials.UserName.UserName = "admin";
deviceClient.ClientCredentials.UserName.Password = "password";
SystemDateTime dateTime = deviceClient.GetSystemDateAndTime();
Console.WriteLine(dateTime.UTCDateTime.Date.Day.ToString() + "/" + dateTime.UTCDateTime.Date.Month.ToString() + "/" + dateTime.UTCDateTime.Date.Year.ToString() + " " + dateTime.UTCDateTime.Time.Hour + ":" + dateTime.UTCDateTime.Time.Minute + ":" + dateTime.UTCDateTime.Time.Second);

{"result":[{"id":1,"objectClass":"Handbag","x":0.301338,"y":0.89906,"width":0.234911,"height":0.10094}],"error":null,"id":"id"}