2003/12/13 00:38:34
[org.ibex.core.git] / src / org / xwt / SOAP.java
index 4d5a642..104e11d 100644 (file)
@@ -19,15 +19,15 @@ 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);
     }
@@ -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()) {
@@ -276,5 +276,5 @@ class SOAP extends XMLRPC {
         this.action = action;
         this.nameSpace = nameSpace;
     }
-
+*/
 }