Triggering the windshield wiper through ONVIF #139
-
|
We'd like to make it possible for users of our software to trigger the windshield wiper on the Axis camera. Is this possible through ONVIF, or would we need to use the VAPIX API for it? Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Answered by
mattias-kindborg-at-work
Dec 19, 2022
Replies: 1 comment 2 replies
-
|
Hi @xtrdustin. I think you should be able to send <?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tds="http://www.onvif.org/ver10/device/wsdl" xmlns:tt="http://www.onvif.org/ver10/schema">
<soap:Body>
<tds:GetServiceCapabilities />
</soap:Body>
</soap:Envelope>Given the camera support it, the following examples would send the ONVIF command to trigger the wiper: <?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tds="http://www.onvif.org/ver10/device/wsdl" xmlns:tt="http://www.onvif.org/ver10/schema">
<soap:Body>
<tds:SendAuxiliaryCommand>
<tds:AuxiliaryCommand>tt:Wiper|On</tds:AuxiliaryCommand>
</tds:SendAuxiliaryCommand>
</soap:Body>
</soap:Envelope> |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
xtrdustin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @xtrdustin.
I think you should be able to send
GetServiceCapabilitiesto the camera, to see if the camera support wipers or not:Given the camera support it, the following examples would send the ONVIF command to trigger the wiper: