I've got a DII client with:

  |             call.setProperty(Call.ENCODINGSTYLE_URI_PROPERTY, "");
  |             call.setOperationName(new QName(NS_URI, "myService"));
  |             call.addParameter("arrayOfbyte_1", XSD_BYTEARRAYB64, 
ParameterMode.IN);
  | ...
  | call.invoke(new Object[]{myValue});
  | ...
  | 

My wsdl exposes a RPC/Literal operation.

And I've got this SOAP request (I'm using the jboss jars to run my client):

  | ...
  |  <soapenv:Body>  
  |    <ns1:myService xmlns:ns1="http://org.jboss/MyService";>   
  |       <arrayOfbyte_1  xsi:type="xsd:base64Binary" >UFFQ0...</arrayOfbyte_1> 
 
  |    </ns1:myService> 
  | ...
  | 
  | 

It seems that I miss something and encoded is use for my parameter.



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3875599#3875599

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3875599


-------------------------------------------------------
SF.Net email is sponsored by: Tell us your software development plans!
Take this survey and enter to win a one-year sub to SourceForge.net
Plus IDC's 2005 look-ahead and a copy of this survey
Click here to start!  http://www.idcswdc.com/cgi-bin/survey?id=105hix
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to