Call IS services through webservice

Hi All,
Can we invoke a webMethods IS services through web services from some other JVM machine? If yes then during call, which memory will in use, IS machine or calling JVM machine.

Thanks in advance.

Regards
Sachin

Sachin,

You can generate a WSDL for any service within IS. This can then be consumed by other tools [or used from Java] to execute the service within the IS. Memory usage will occur on both the IS and the caller, but the IS will be doing the actual “work”, the caller will just be making the call and processing the reply.

Your best bet is to read the “Web Services Developer Guide” document in your …/webMethods/developer/doc/guides directory. The SOAP Developers guide in the same directory may also be useful.

James…

Thanks James:)