use-go / onvif

full and enhanced onvif protocol stack in golang.
MIT License
400 stars 187 forks source link

Can this act as an onvif server? #37

Closed Anonymous-Vhacker closed 11 months ago

Anonymous-Vhacker commented 1 year ago

As I known, this package can act as an ONVIF CLIENT to find and interact with other onvif devices (like IPC ect.). It works like ONVIF Device Manager.

However, I wonder if it can act as an ONVIF SERVER which can answer probe message from others or provide WS-Discovery service. I want to make my device act as an onvif IPC to be found by others.

thanks

tarancss commented 1 year ago

ONVIF is a protocol. You want your device to support this protocol. For that you need to find an implementation of the protocol that your hardware can run. There are some open source implementations written in C and JS but this package won't give you that.

Anonymous-Vhacker commented 1 year ago

ONVIF is a protocol. You want your device to support this protocol. For that you need to find an implementation of the protocol that your hardware can run. There are some open source implementations written in C and JS but this package won't give you that.

I got it. Thanks.