web service request xml size limit

sandeepbhati

New Member
Hi All,


We are consuming web service by Axis2 java.
Web service written in progress at server side.

We are getting proper response from server side(Progress) when our request size is less then 14994 characters.

But problem comes when size of request more than 14994 characters, we get axis2 : FaultDetailMessage error.

We are sending image in base64 binary data in request xml , so the size of request xml become more than 200000 characters.

So could you please tell me what is the problem.
Is there any size limit at client side (Axis2 java) or server side(Progress)?

If max size is defined at any side client or server, How can we increese that size.

How can we overcome this problem?
Please reply soon, its urgent.

Thanks in advance
Sandy
 

webguy

Member
I assume when you send the image in the xml you have to convert to a string? That could potentially be huge. On the progress side if the app is trying to read an xml string bigger than 32000 it can fail.
 
I worked with file upload filedownload through flex (client and web services Progress).
I was able to pass 7mb in 1 chuck and get it on flex part.
Progress output was OUTPUT parameter FileBinary as MEMPTR.
It this case progress sterialize output to base64 automaticly.
 
Top