Hi, Any reason why you don't use $r->param() ? Does this work with PUT's?
http://www.masonbook.com/book/chapter-7.mhtml http://httpd.apache.org/apreq/docs/libapreq2/group__apreq__xs__request.html#param If you're developing a REST style API (Is that why you're trying to use PUT?), I'd recommend not using mason, but a REST API framework, for instance http://code.google.com/p/apache2rest/, or Catalyst or Mojolicious if you don't want to be tied to apache2/mod_perl2 . J. 2010/12/21 संदीप मातले <[email protected]>: > Hi All, > > I am able to get HTTP request method POST data in ARGS variable like > $ARGS{'POSTDATA'}, but when I try to access HTTP request method PUT data I > am not able to access it via $ARGS{'PUTDATA'} (Actually %ARGS is empty in > this case.. ). > > Is there any way to get PUT request method data ? > > > Thanks & Regards > Sandeep Matale > > ------------------------------------------------------------------------------ > Lotusphere 2011 > Register now for Lotusphere 2011 and learn how > to connect the dots, take your collaborative environment > to the next level, and enter the era of Social Business. > http://p.sf.net/sfu/lotusphere-d2d > _______________________________________________ > Mason-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/mason-users > > -- Jerome Eteve. http://libsquare.net ------------------------------------------------------------------------------ Lotusphere 2011 Register now for Lotusphere 2011 and learn how to connect the dots, take your collaborative environment to the next level, and enter the era of Social Business. http://p.sf.net/sfu/lotusphere-d2d _______________________________________________ Mason-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mason-users

