X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=blobdiff_plain;f=src%2Forg%2Fibex%2Fnet%2FSOAP.java;h=55f18f5b852cc8f86e737009eed318a79128738c;hp=946ccb784674e255284c8e8dae21f020d8925724;hb=fffcafc33aa4066bdf85da7a32e1a1cdb9db2d6f;hpb=4daeeb4119b901d53b44913c86f8af3ce67db925 diff --git a/src/org/ibex/net/SOAP.java b/src/org/ibex/net/SOAP.java index 946ccb7..55f18f5 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; @@ -41,7 +41,7 @@ class SOAP extends XMLRPC { if (name.equals("SOAP-ENV:Fault")) fault = true; // add a generic struct; we'll change this if our type is different - objects.addElement(new JS()); + objects.addElement(new JS.O()); for(int i=0; i