web services - building java SOAP client to access comscore api -


I am looking for a simple Java client that allows me to access simple SOAP AP. They open their SOAP WebSaver as an HTTPS service. Protocol for authentication

Can anyone tell me how I can test my changes?

If they provide WSDL files for their SOAP interface, you Java stub classes can generate classes like SOAP implementations and provide a wsdl2java tool that helps you with it. You can then use the stub classes to talk to remote SOAP services. There is more information in the Axis and CXF documents.

Comments