reorganized file layout (part 2: edits)
[org.ibex.core.git] / src / org / ibex / net / SOAP.java
index 946ccb7..85670a3 100644 (file)
@@ -1,11 +1,11 @@
 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
-package org.ibex;
+package org.ibex.net;
 
 import java.io.*;
 import java.util.*;
 import org.ibex.js.*;
 import org.ibex.util.*;
-import org.bouncycastle.util.encoders.Base64;
+import org.ibex.crypto.*;
 
 /**
  *  A partial RPC-style SOAP 1.1 client. Implemented from the SOAP 1.1
@@ -18,7 +18,7 @@ import org.bouncycastle.util.encoders.Base64;
  *      <li> WSDL support
  *  </ul>
  */
-class SOAP extends XMLRPC {
+public class SOAP extends XMLRPC {
 
     /** the desired content of the SOAPAction header */
     String action = null;
@@ -268,12 +268,12 @@ class SOAP extends XMLRPC {
         return content.toString();
     }
 
-    SOAP(String url, String methodname, String action, String nameSpace) {
+    public SOAP(String url, String methodname, String action, String nameSpace) {
         super(url, methodname);
         this.action = action;
         this.nameSpace = nameSpace;
     }
-    SOAP(String url, String methodname, SOAP httpSource, String action, String nameSpace) {
+    public SOAP(String url, String methodname, SOAP httpSource, String action, String nameSpace) {
         super(url, methodname, httpSource);
         this.action = action;
         this.nameSpace = nameSpace;