[axis2-mtom file size]

2009-11-17 Thread Vaibhav Arya
Hi all, I want to know, what is the maximum file size that axis2 supports with MTOM.. Please suggest in this regard. Thanks Regards, Vaibhav Kumar Arya === Private,

Re: mtom file size

2008-08-13 Thread Thilina Gunarathne
*Subject:* Re: mtom file size Hi, There is a similar parameter setting in the tomcat service.xml as maxPostSize=in bytes , this will restrict the size of incoming POST request. But this does not work for axis web service requests, but that configuration is quite easier and no need

Re: mtom file size

2008-08-12 Thread Thilina Gunarathne
I'm not sure whether Axis2 MTOM policy implementation supports such a scenerio.. Other than that, I cannot think of any.. thanks, Thilina On Mon, Aug 11, 2008 at 5:38 PM, Shehan Simen [EMAIL PROTECTED] wrote: Hi, I want to specify the maximum file size when using MTOM. The client should

Re: mtom file size

2008-08-12 Thread Samisa Abeysinghe
Thilina Gunarathne wrote: I'm not sure whether Axis2 MTOM policy implementation supports such a scenerio.. Other than that, I cannot think of any.. Does this mean that someone can send several large attachments concurrently and take down the server by making it go out of resources? Thanks,

Re: mtom file size

2008-08-12 Thread Thilina Gunarathne
I would say it's possible.. thanks, Thilina On Tue, Aug 12, 2008 at 6:01 AM, Samisa Abeysinghe [EMAIL PROTECTED] wrote: Thilina Gunarathne wrote: I'm not sure whether Axis2 MTOM policy implementation supports such a scenerio.. Other than that, I cannot think of any.. Does this mean that

RE: mtom file size

2008-08-12 Thread Shehan Simen
to limit the size of incoming request. Any suggestions? Thank you. Regards, simen From: Thilina Gunarathne [mailto:[EMAIL PROTECTED] Sent: Wednesday, 13 August 2008 1:35 AM To: axis-user@ws.apache.org Subject: Re: mtom file size I would say it's possible.. thanks, Thilina On Tue, Aug 12, 2008

RE: mtom file size

2008-08-12 Thread Martin Gainty
this transmission. From: [EMAIL PROTECTED] To: axis-user@ws.apache.org Date: Wed, 13 Aug 2008 09:12:40 +1000 Subject: RE: mtom file size Hi Thilina, It is a big threat to the web service. L I don’t want to crash my web server by receiving large files. We cannot request from

RE: mtom file size

2008-08-12 Thread Shehan Simen
Subject: RE: mtom file size your SOAP response can be a URL to the file ..and hand the URL to FTP server for bulk of the heavy lifting another idea is to compress the file which will conserve bandwidth the question is which server has the necessary bandwidth to handle the transmission? if you're

Re: mtom file size

2008-08-12 Thread Thilina Gunarathne
@ws.apache.org *Subject:* RE: mtom file size your SOAP response can be a URL to the file ..and hand the URL to FTP server for bulk of the heavy lifting another idea is to compress the file which will conserve bandwidth the question is which server has the necessary bandwidth to handle

RE: mtom file size

2008-08-12 Thread Shehan Simen
:46 PM To: axis-user@ws.apache.org Subject: Re: mtom file size Hi, There is a similar parameter setting in the tomcat service.xml as maxPostSize=in bytes , this will restrict the size of incoming POST request. But this does not work for axis web service requests, but that configuration is quite

mtom file size

2008-08-11 Thread Shehan Simen
Hi, I want to specify the maximum file size when using MTOM. The client should not send to the service files bigger than 5mb and I am using MTOM with axis2 1.4 (deployed in tomcat) How to restrict the file size? Please let me know. Thanks.