0% found this document useful (0 votes)
7 views1 page

Invoke webMethods Service in Java

To invoke a webMethods service from a Java service in Developer, use the Service.doInvoke method and pass the namespace, service name, and pipeline input data. Import an external Java class by adding its JAR file to the custom package/code/jars folder and importing the package and class name in the shared tab to reference the class in a Java service.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views1 page

Invoke webMethods Service in Java

To invoke a webMethods service from a Java service in Developer, use the Service.doInvoke method and pass the namespace, service name, and pipeline input data. Import an external Java class by adding its JAR file to the custom package/code/jars folder and importing the package and class name in the shared tab to reference the class in a Java service.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd

How to invoke a webMethods Service from a Java Service in Developer?

[Link] (nameSpace, serviceName, pipelineIData );

Importing and referencing an external java class in wM java service

Just put your external jar file in your appropriate custom package/code/jars and then import your
package with class name in shared tab.
For example [Link]
Now we can use any method related to class you are importing in java service.

You might also like