2003/12/29 03:25:43
[org.ibex.core.git] / src / org / xwt / SOAP.java
index 104e11d..2c4044f 100644 (file)
@@ -19,17 +19,17 @@ import org.bouncycastle.util.encoders.Base64;
  *      <li> WSDL support
  *  </ul>
  */
-class SOAP /*extends XMLRPC*/ {
-    /*
-    /&* the desired content of the SOAPAction header &/
+class SOAP extends XMLRPC {
+
+    /** the desired content of the SOAPAction header */
     String action = null;
 
-    /&* the namespace to use &/
+    /** the namespace to use */
     String nameSpace = null;
 
-    /&* When you get a property from an SOAP, it just returns another SOAP with the property name tacked onto methodname. &/
+    /** When you get a property from an SOAP, it just returns another SOAP with the property name tacked onto methodname. */
     public Object get(String name) {
-        return new SOAP(url.toString(), (methodname.equals("") ? "" : methodname + ".") + name, http, action, nameSpace);
+        return new SOAP(url.toString(), (method.equals("") ? "" : method + ".") + name, http, action, nameSpace);
     }
 
 
@@ -163,7 +163,7 @@ class SOAP /*extends XMLRPC*/ {
 
     }
 
-    /&* Appends the SOAP representation of <code>o</code> to <code>sb</code> &/
+    /** Appends the SOAP representation of <code>o</code> to <code>sb</code> */
     void appendObject(String name, Object o, StringBuffer sb) throws JSExn {
         if (o instanceof Number) {
             if ((double)((Number)o).intValue() == ((Number)o).doubleValue()) {
@@ -201,8 +201,8 @@ class SOAP /*extends XMLRPC*/ {
                 sb.append(((Boolean)o).booleanValue() ? "1" : "0");
                 sb.append("</" + name + ">\r\n");
             } catch (IOException e) {
-                if (Log.on) Log.log(this, "caught IOException while attempting to send a ByteStream via SOAP");
-                if (Log.on) Log.log(this, e);
+                if (Log.on) Log.info(this, "caught IOException while attempting to send a ByteStream via SOAP");
+                if (Log.on) Log.info(this, e);
                 throw new JSExn("caught IOException while attempting to send a ByteStream via SOAP");
             }
 
@@ -244,7 +244,7 @@ class SOAP /*extends XMLRPC*/ {
         }
     }
 
-    protected String send(JSArray args, HTTP http) throws JSExn, IOException {
+    protected String buildRequest(JSArray args) throws JSExn, IOException {
         // build up the request
         StringBuffer content = new StringBuffer();
         content.append("SOAPAction: " + action + "\r\n\r\n");
@@ -256,7 +256,7 @@ class SOAP /*extends XMLRPC*/ {
         content.append("                   xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\">\r\n");
         content.append("<SOAP-ENV:Body>\r\n");
         content.append("    <");
-        content.append(methodname);
+        content.append(method);
         content.append(nameSpace != null ? " xmlns=\"" + nameSpace + "\"" : "");
         content.append(">\r\n");
         if (args.length() > 0) {
@@ -266,15 +266,17 @@ class SOAP /*extends XMLRPC*/ {
                 appendObject((String)key, ((JS)args.elementAt(0)).get(key), content);
             }
         }
-        content.append("    </" + methodname + "></SOAP-ENV:Body></SOAP-ENV:Envelope>\r\n");
+        content.append("    </" + method + "></SOAP-ENV:Body></SOAP-ENV:Envelope>\r\n");
         return content.toString();
     }
 
-    SOAP(String url, String methodname, String action, String nameSpace) { this(url, methodname, new HTTP(url), action, nameSpace); }
+    SOAP(String url, String methodname, String action, String nameSpace) {
+        this(url, methodname, new HTTP(url), action, nameSpace);
+    }
     SOAP(String url, String methodname, HTTP http, String action, String nameSpace) {
         super(url, methodname, http);
         this.action = action;
         this.nameSpace = nameSpace;
     }
-*/
+
 }