question about calling .NET webservices from Java app.

hi allhas anyone coded in java to call a .NET web service with .asmx extension? can you please share the practise with me thanks
[142 byte] By [yu169409a] at [2007-10-2 19:25:50]
# 1
I've not done it that direction but if the web service includes a WSDL definition then [url= http://ws.apache.org/axis/]Apache Axis[/url] includes a wsdl2java ant task that works very well.
stdunbara at 2007-7-13 21:11:26 > top of Java-index,Java Essentials,Java Programming...
# 2
thanks for the quick responseso, you are saying that all i have to do is get the wsdl and use that tool to generate the client stub files to connect. right?
yu169409a at 2007-7-13 21:11:26 > top of Java-index,Java Essentials,Java Programming...
# 3

Once you have the WSDL and have created (normally automatically via a tool) a client SOAP wrapper for that web service, calling a .NET web service versus calling any other web service (assuming the web service parameters and return types are "standard" interoperable types) should be the same.

The only layer you deal with is SOAP over HTTP. It doesn't care what the underlying language on the server or what kind of web server it is. It's just sending a special kind of HTTP message to a URL, and dealing with the HTTP response.

warnerjaa at 2007-7-13 21:11:26 > top of Java-index,Java Essentials,Java Programming...