Hi all, I have setup a pipeline which currently is able to handle requests fine using RequestModule from http://wiki.apache.org/cocoon/InputModules
An example url would be http://localhost:8888/search/results/basictype_in_category?id=PH3330L&id=PH3030AL sitemap.xmap: -------------------- <map:match pattern="results/*"> <map:generate src="xquery/{1}.xquery" type="queryStringXquery"> <map:parameter name="contextPath" value="{request:contextPath}"/> <map:parameter name="queryString" value="{request:queryString}"/> </map:generate> <map:transform src="xslt/postprocessXqueryResults.xslt" type="saxon"/> <map:serialize type="xml"/> </map:match> >From the sitemap I inject the queryString into a custom XQueryGenerator and >all request parameters are dynamically set before executing the xquery. However, When I post to this url firebug shows the id's are posted just fine. But when I debug the queryString is null when making post requests. Is this on purpose that the request Parametersapplication/x-www-form-urlencoded id TDA1566J id TFA9810TW id TDF8541JS id TDF8541TH id TDA1519CJ Is there some cocoon component which allows me to get access to BOTH request and post parameters? Robby --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
