We have our application currently working with Apache SOAP client and calling "aspx page". We are migrating to have .NET Web Service (asmx page). I would like to know how we can invoke the .NET Web Service by using existing Apache SOAP 2.3 Client. We are successful if we use Apache Axis, but need to know if we can still work with old Apache SOAP client.
The beauty of WS (and one of their main points) is that the client and server are decoupled, so one can change without the other being affected. If the WS is implemented in a platform-agnostic way, you should be able to use the old client without changing anything. Have you run into any problems?
Well, our new web service accepts XML String as Input parameter and outputs XML String as Output parameter. I get below error when I run my client code.
Code: Call call = new Call(); call.setTargetObjectURI("xxxx"); call.setMethodName("OrderSubmit"); call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);
A simple way to invoke a service in .net is 1. Using Axis convert the wsdl to java(using wsdl2java) 2. It creates all the classes required. 3. you just have to call the method in the class
Thanks for your reply. I had already mentioned in my earlier post that we were successful invoking web service through Apache Axis. We just want to know if its possible with Apache SOAP 2.3 Client.