If I have .asmx (C#) web service is it possible to call from axis java client.
2 Answers
Yes Gogoo. It is possible. When you create a web service client you need to provide the WSDL and for ASMX web services you can provide this by adding ?wsdl at the end of the URL. E.g. http://yourdomain.xyz/services.asmx?wsdl
Axis typically creates the client using the wsdl2java tool.
I hope this helps.
1 Comment
David
Just on the Axis front, it really would be worth going for Axis2 rather than normal Axis, due to added functionality and stability etc.
Yes it is possible. Have a look at this link and this (how to Invoking .Net WebService from Java)