SOAP requests

Hi, It is posible with UNO make request to a Webservice (SOAP request).

Something like that work with Fuse?:

String soapXml =   // jEdit: = buffer.getText(0,buffer.getLength())
java.net.URL url = new java.net.URL("http://localhost:9081/myServiceWAR/services/MyService");
java.net.URLConnection conn = url.openConnection();
// Set the necessary header fields
conn.setRequestProperty("SOAPAction", "http://localhost:9081/myServiceWAR/services/MyService");
conn.setDoOutput(true);
// Send the request
java.io.OutputStreamWriter wr = new java.io.OutputStreamWriter(conn.getOutputStream());
wr.write(soapXml);
wr.flush();
// Read the response
java.io.BufferedReader rd = new java.io.BufferedReader(new java.io.InputStreamReader(conn.getInputStream()));
String line;
while ((line = rd.readLine()) != null) { System.out.println(line); /*jEdit: print(line); */ }

Do you mean sockets?

There is a socket API in Uno: Uno.Net.Sockets

There is no socket api in FuseJS yet.

No I mean a Soap Client. But I think the best way to do this is My app comunicate with a php file via HTTP and this php have the SOAP Client.

Thanks!