X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fnet%2FSOAP.java;h=85670a300e8e70873e9b299b067d7638dae5dd71;hp=946ccb784674e255284c8e8dae21f020d8925724;hb=8e190fb0ff508ccf4962bbfbf8295a431805c12b;hpb=4daeeb4119b901d53b44913c86f8af3ce67db925 diff --git a/src/org/ibex/net/SOAP.java b/src/org/ibex/net/SOAP.java index 946ccb7..85670a3 100644 --- a/src/org/ibex/net/SOAP.java +++ b/src/org/ibex/net/SOAP.java @@ -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; *
  • WSDL support * */ -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;