Ballon
Ballon

Reputation: 7204

Web service client programing language

If I have .asmx (C#) web service is it possible to call from axis java client.

Upvotes: 0

Views: 181

Answers (2)

user467871
user467871

Reputation:

Yes it is possible. Have a look at this link and this (how to Invoking .Net WebService from Java)

Upvotes: 2

Matthew Sant
Matthew Sant

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

Related Questions