Forum Discussion
15 years ago
Hi!
I have the same issue, all work fine but after reboot the PC stop working.
BTW my request use the POST method, here my code
var data:String = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:mov=\"http://localhost:8088/Services\">"+
"<soapenv:Header/>"+
"<soapenv:Body>"+
"<mov:"+serviceName+">"+
params+
"</mov:"+serviceName+">"+
"</soapenv:Body>"+
"</soapenv:Envelope>";
urlRequest.method = URLRequestMethod.POST;
urlRequest.data = data;
urlRequest.requestHeaders.push(new URLRequestHeader("Content-Type", "application/soap+xml"));
var loader:URLLoader = new URLLoader();
loader.dataFormat = URLLoaderDataFormat.TEXT;
loader.load(urlRequest);
I have the same issue, all work fine but after reboot the PC stop working.
BTW my request use the POST method, here my code
var data:String = "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:mov=\"http://localhost:8088/Services\">"+
"<soapenv:Header/>"+
"<soapenv:Body>"+
"<mov:"+serviceName+">"+
params+
"</mov:"+serviceName+">"+
"</soapenv:Body>"+
"</soapenv:Envelope>";
urlRequest.method = URLRequestMethod.POST;
urlRequest.data = data;
urlRequest.requestHeaders.push(new URLRequestHeader("Content-Type", "application/soap+xml"));
var loader:URLLoader = new URLLoader();
loader.dataFormat = URLLoaderDataFormat.TEXT;
loader.load(urlRequest);