TZStatus should return the following structure according to the spec:
<xs:complexType name=”PTZStatus”>
<xs:element name=”Position” type=”tt:PTZVector” minOccurs=”0”/> <xs:element name=”MoveStatus” type=”tt:PTZMoveStatus” minOccurs=”0”/> <xs:element name=”Error” type=”xs:string” minOccurs=”0”/>
<xs:element name=”UtcTime” type=”xs:dateTime”/>
</xs:sequence>
</xs:complexType
I am getting the following returned through the Onvif bridge:{
“GetStatusResponse”: {
“PTZStatus”: {
“MoveStatus”: {
"PanTilt": "IDLE",
"Zoom": "IDLE"
},
“UtcTime”: “2018-09-12T19:08:56Z”
}
}
}
I am using a AXIS Q6045-E Mk II Network Camera.
I have all the permissions turned on for my user in the Onvif bridge. I suspect it is an issue with the device and not your software however I was wondering it you have a documented technique or experience I can use in determining why the position is not being reported. I have the correct version of the device pack installed for the camera I am using.