From ba12823b3146d9d228c7a4b1c02ae94de9e02781 Mon Sep 17 00:00:00 2001 From: megacz Date: Fri, 30 Jan 2004 07:43:06 +0000 Subject: [PATCH] 2003/12/22 02:32:04 darcs-hash:20040130074306-2ba56-62c306edb165681a1625d33b482f4f0244cc38a3.gz --- src/org/xwt/SOAP.java | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/src/org/xwt/SOAP.java b/src/org/xwt/SOAP.java index 5e6d463..190d8b4 100644 --- a/src/org/xwt/SOAP.java +++ b/src/org/xwt/SOAP.java @@ -1,4 +1,3 @@ -// FIXME // Copyright 2003 Adam Megacz, see the COPYING file for licensing [GPL] package org.xwt; @@ -20,17 +19,17 @@ import org.bouncycastle.util.encoders.Base64; *
  • WSDL support * */ -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); } @@ -164,7 +163,7 @@ class SOAP /*extends XMLRPC*/ { } - /&* Appends the SOAP representation of o to sb &/ + /** Appends the SOAP representation of o to sb */ void appendObject(String name, Object o, StringBuffer sb) throws JSExn { if (o instanceof Number) { if ((double)((Number)o).intValue() == ((Number)o).doubleValue()) { @@ -245,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"); @@ -257,7 +256,7 @@ class SOAP /*extends XMLRPC*/ { content.append(" xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\">\r\n"); content.append("\r\n"); content.append(" <"); - content.append(methodname); + content.append(method); content.append(nameSpace != null ? " xmlns=\"" + nameSpace + "\"" : ""); content.append(">\r\n"); if (args.length() > 0) { @@ -267,15 +266,17 @@ class SOAP /*extends XMLRPC*/ { appendObject((String)key, ((JS)args.elementAt(0)).get(key), content); } } - content.append(" \r\n"); + content.append(" \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; } -*/ + } -- 1.7.10.4