Reputation: 1099
I'm trying to call a web service from a Mirth Channel transformer javascript using apache axis library (which it's supposed to be deployed with Mirth). I've tried using the following java script, but it does not work:
/*importPackage(java.net);
importPackage(org.apache.axis.client.Call);
importPackage(org.apache.axis.client.Service);
importPackage(javax.xml.namespace.QName);*/
var endpoint = 'http://tempuri.org/IService1/';
var service = org.apache.axis.client.Service();
var call = service.createCall();
call.setTargetEndpointAddress( new URL(endpoint) );
call.setOperationName(new QName('http://soapinterop.org/', 'SayHello'));
var ret = call.invoke('John Doe');
Any idea?
Thanks.
Upvotes: 2
Views: 6889
Reputation: 1099
Answer:
var locator = new Service1Locator(); var wsdlURL = new URL('http://localhost:8731/Design_Time_Addresses/HelloWorldWS/Service1')); var proxy = locator.getBasicHttpBinding_IService1(wsdlURL); var result = proxy.sayHello("John Doe"); // use result to whatever message mapping you need to perform
That's all.
Upvotes: 3