Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
routines.ServiceStatoDomSoap_PortType weatherSoap = new routines.ServiceStatoDomLocator().getServiceStatoDomSoap();
routines.ServiceStatoDomSoap_BindingStub stub = (routines.ServiceStatoDomSoap_BindingStub)weatherSoap;
org.apache.axis.message.SOAPHeaderElement authentication = new org.apache.axis.message.SOAPHeaderElement("", "Identity");
javax.xml.soap.SOAPElement appName = authentication.addChildElement("AppName");
appName.addTextNode("myuser");
javax.xml.soap.SOAPElement appKey = authentication.addChildElement("AppKey");
appKey.addTextNode("mypassword");
javax.xml.soap.SOAPElement userId = authentication.addChildElement("UserId");
userId.addTextNode("BATCH");
javax.xml.soap.SOAPElement identityProvider = authentication.addChildElement("IdentityProvider");
identityProvider.addTextNode("BATCH");
System.setProperty("javax.net.ssl.trustStore","C:/CodeSite/mykey.jks");
System.setProperty("javax.net.ssl.trustStorePassword","Talend123");
String n="3300"
myNum result = (myNum) weatherSoap.num(n) ;
row1.NUMERO2 = result.getNumero();