Hi, 1. I'm trying to send big files (>200MB) to the server. 2. I'v created a WebService method: uploadFile(DataHandler bigFile) on the server. 3. I'v enabled MTOM in the services.xml 4. I'm using WsGen utility to create the client classes from the automatic generated WSDL file.
My problem is that the "uploadFile" method generated in the client-side looks like: uploadFile(byte[] bigFile) and I need the automatic created method in the client to look like: uploadFile(DataHandler bigFile) since I don't want to read the whole file into the memory first. What am I doing wrong? Thanks Guy H -- View this message in context: http://www.nabble.com/Auto-generating-a-Web-Service-Client-using-a-DataHandler-tf4951492.html#a14177715 Sent from the XFire - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe from this list please visit: http://xircles.codehaus.org/manage_email
