2003/09/19 08:33:46
[org.ibex.core.git] / src / org / xwt / XMLRPC.java
index 7cef4c2..f11413c 100644 (file)
@@ -103,9 +103,12 @@ class XMLRPC extends JS.Callable {
             else if (c.localName.equals("double"))
                 objects.setElementAt(new Double(new String(content.getBuf(), 0, content.size())), objects.size() - 1);
             
+            // FIXME
+            /*
             else if (c.localName.equals("base64"))
                 objects.setElementAt(new ByteStream(Base64.decode(new String(content.getBuf(), 0, content.size()))), objects.size() - 1);
-            
+            */
+
             else if (c.localName.equals("name"))
                 objects.addElement(new String(content.getBuf(), 0, content.size()));
             
@@ -196,6 +199,8 @@ class XMLRPC extends JS.Callable {
             sb.append(((Boolean)o).booleanValue() ? "1" : "0");
             sb.append("</boolean></value>\n");
 
+            //FIXME
+            /*
         } else if (o instanceof ByteStream) {
             try {
                 sb.append("                <value><base64>\n");
@@ -219,6 +224,7 @@ class XMLRPC extends JS.Callable {
                 if (Log.on) Log.log(this, e);
                 throw new JS.Exn("caught IOException while attempting to send a ByteStream via XML-RPC");
             }
+            */
 
         } else if (o instanceof String) {
             sb.append("                <value><string>");