var content ='<x:Envelope xmlns:x="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsd="https://mydomain.com/wsdl">\
<x:Header/>\
<x:Body>\
<wsd:remoteSoapServiceName/>\
</x:Body>\
</x:Envelope>';
var resultXML =
Resources["ContentLoaderFunctions"].PostXML({
proxyScheme: undefined /* STRING */,
headers: undefined /* JSON */,
ignoreSSLErrors: undefined /* BOOLEAN */,
useNTLM: undefined /* BOOLEAN */,
workstation: undefined /* STRING */,
useProxy: undefined /* BOOLEAN */,
withCookies: undefined /* BOOLEAN */,
proxyHost: undefined /* STRING */,
url: "https://mydomain.com/service/wsfia/compub" /* STRING */,
content: content,
timeout: undefined /* NUMBER */,
proxyPort: undefined /* INTEGER */,
password: undefined /* STRING */,
domain: undefined /* STRING */,
username: undefined /* STRING */
});
var returnXMLString = resultXML.*::Body.*::remoteSoapServiceNameResponse.return;
var str = ""+returnXMLString[0].toString().replace(/\n/gi,"");
......