I have to connect to a third party web service that provides no wsdl nor asmx. The url of the service is just http://server/service.soap
I have read this article ab
If you're lucky you could still get the wsdl. Some web service frameworks allow you to retrieve a dynamically generated WSDL.
Web Services written with Axis1.x allow you to retrieve a dynamically generated WSDL file by browsing to the URL.
Just browse to
http://server/service.soap/?wsdl
I don't know if this is possible with other frameworks though.