We are using jetty version :  8.1.9.v20130131

Thanks,
Raja.


On Thu, Nov 14, 2013 at 2:29 PM, Joakim Erdfelt <joa...@intalio.com> wrote:

> Which version of Jetty? (be specific!)
>
> --
> Joakim Erdfelt <joa...@intalio.com>
> webtide.com <http://www.webtide.com/> - intalio.com/jetty
> Expert advice, services and support from from the Jetty & CometD experts
> eclipse.org/jetty - cometd.org
>
>
> On Thu, Nov 14, 2013 at 12:21 PM, Rajasekar Elango <rela...@salesforce.com
> > wrote:
>
>> Hi,
>>
>> We would like to limit max size of json data can be posted using REST
>> api. Based on this documentation
>> http://www.eclipse.org/jetty/documentation/current/setting-form-size.html
>> I have set value of attribute
>> "org.eclipse.jetty.server.Request.maxFormContentSize" to 2 (picked very
>> small value for testing)  for jetty Server class using spring configuration.
>>
>> Here is the code of spring configuration:
>>
>> <bean id="jettyServer" class="org.eclipse.jetty.server.Server"
>>           destroy-method="stop">
>>    .....
>> </bean>
>>
>> <bean
>> class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
>>         <property name="targetObject">
>>             <ref local="jettyServer"/>
>>         </property>
>>         <property name="targetMethod">
>>             <value>setAttribute</value>
>>         </property>
>>         <property name="arguments">
>>             <list>
>>
>> <value>org.eclipse.jetty.server.Request.maxFormContentSize</value>
>>                 <value>2</value>
>>             </list>
>>         </property>
>> </bean>
>>
>> Before starting the server, I also verified that attribute
>> "org.eclipse.jetty.server.Request.maxFormContentSize" has the value "2" on
>> jettyServer instance.
>>
>> However, I can successfully post json data to REST api over 2 bytes and
>> not getting any errors.
>> Am I missing anything? What is right way to limit content size that jetty
>> can accept and verify if it works?
>>
>>
>>
>> --
>> Thanks,
>> Raja.
>>
>> _______________________________________________
>> jetty-users mailing list
>> jetty-users@eclipse.org
>> https://dev.eclipse.org/mailman/listinfo/jetty-users
>>
>>
>
> _______________________________________________
> jetty-users mailing list
> jetty-users@eclipse.org
> https://dev.eclipse.org/mailman/listinfo/jetty-users
>
>


-- 
Thanks,
Raja.
_______________________________________________
jetty-users mailing list
jetty-users@eclipse.org
https://dev.eclipse.org/mailman/listinfo/jetty-users

Reply via email to