Hi,
I am trying to generate java code to implement all the wsdls, but they only generated the interface, and not the service/implementation. After some digging, it is because some of the wsdl's no longer define a service. I needed to manually add:
<wsdl:service name="MediaService">
<wsdl:port name="MediaPort" binding="trt:MediaBinding">
<soap:address location="http://www.onvif.org/ver10/media/wsdl"/>
</wsdl:port>
</wsdl:service>
Any specific reason they are no longer present? Or we're they never present and did the library add them?