I have implementing a web service with only one method, the method have to receive a 'large' xml as input parameter (let say ~60mb ). I have try to use string type, but following error found:
Is there any type (something like inputstream) that can be use as the web service input parameter? Please kinldy advise on this.
Peer Reynders
Bartender
Joined: Aug 19, 2005
Posts: 2906
posted
0
jerry king wrote:I have implementing a web service with only one method, the method have to receive a 'large' xml as input parameter (let say ~60mb ).
Replacing FTP wasn't part of the overall SOAP web service vision. Accomplishing this with a SOAP web service stack could require you to develop your own "chunking protocol". It is far simpler to
use FTP (after all, it was designed to "transfer files")
use a (HTTP) servlet-based solution that uses something like Commons FileUpload