Re: Adding args to a Request through InputFilter
Torsten Förtsch <[email protected]>
| Newsgroups | gmane.comp.apache.mod-perl |
|---|---|
| Message-ID | <[email protected]> |
On Wednesday 20 January 2010 11:40:43 Ivory wrote:
> The fact is that in order to add this arg to the request I need to call
> several Web services, crypt and decrypt datas and access the cookies I've
> previously stored in the clients navigator.
>
yes.
Cookies come in as HTTP headers. So $r->headers_in->{Cookie} can be used.
Torsten