Hi.

 

My web-service needs to receive an array of documents (document contains name and content):

ArrayOfDocuments –> Document –> (name:string; content:base64Binary)

 

Client demands that document content is sent as an mime attachment and SOAP envelope contains a reference to each attachment.

 

What is the correct WSDL for this kind of structure to generate java classes?

 

Does Axis support receiving referenced content?

 

 

An example of SOAP message as my client fancies it:

 

<ArrayOfDocuments xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" soapenc:arrayType="ns6:documentType[1]" xsi:type="soapenc:Array">

<item xsi:type="ns6:documentType">

<name xsi:type="xsd:string">asdasd</name>

<content href="">

</item>

</ArrayOfDocuments>

 

Marko

Reply via email to