2002/05/28 20:41:22
[org.ibex.core.git] / src / org / xwt / SOAP.java
index 02f3583..4ea2d40 100644 (file)
@@ -178,7 +178,7 @@ class SOAP extends XMLRPC {
 
         } else if (o instanceof ByteStream) {
             try {
-                sb.append("                <" + name + " xsi:type=\"xsd:base64\">");
+                sb.append("                <" + name + " xsi:type=\"SOAP-ENC:base64\">");
                 InputStream is = ((ByteStream)o).getInputStream();
                 byte[] buf = new byte[96];
                 while(true) {