Reputation: 7204
If I have .asmx (C#) web service is it possible to call from axis java client.
Upvotes: 0
Views: 181
Reputation:
Yes it is possible. Have a look at this link and this (how to Invoking .Net WebService from Java)
Upvotes: 2
Reputation: 1631
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.
Upvotes: 2