can java consume .NET object returned by ASP.NET web service? -
I have an ASP.NET web service which is returning a custom unit object (s):
< Pre> <<>How will I use it in Java?
Thank you!
Apache Axis provides a tool which will generate all the code you need to consume webservice. Just point it out:
If you browse directly to the SSSX file, you will be able to find a good test that you can use to find out various ways you can call.
Once Axis reads its WSDL, it will generate some proxy classes, one of them will be based on the interface of the employee.
However, I will wrap this class your real business object, and in turn, access to the web service through a service layer.
This will change your consumer code from any interface Saves what may be in the future with the web service, keeping the actual area of code
Edit: Why is this downnow? This is the only correct answer.
Comments
Post a Comment