Re: [Lazarus] Question about fcl-web Request's Handled variable

2012-08-23 Thread leledumbo
I don't know about the Handled parameter, but I handle cookies exactly like what you did through a common ancestor. But the cookies handling is done at OnBeforeRequest, with descendants link their OnBeforeRequest to it. So descendants code are still clean from this. -- View this message in conte

Re: [Lazarus] Question about fcl-web Request's Handled variable

2012-08-23 Thread michael . vancanneyt
On Thu, 23 Aug 2012, Leonardo M. Ramé wrote: On 2012-08-23 10:17:57 +0200, michael.vancann...@wisa.be wrote: On Wed, 22 Aug 2012, Leonardo M. Ramé wrote: As I'm looking for a way to handle Cookies in an automatic/global way, instead of checking for cookie existence in every action request

Re: [Lazarus] Question about fcl-web Request's Handled variable

2012-08-23 Thread Leonardo M . Ramé
On 2012-08-23 10:17:57 +0200, michael.vancann...@wisa.be wrote: > > > On Wed, 22 Aug 2012, Leonardo M. Ramé wrote: > > >As I'm looking for a way to handle Cookies in an automatic/global way, > >instead of checking for cookie existence in every action request, I was > >looking into TFPWebModule.o

Re: [Lazarus] Question about fcl-web Request's Handled variable

2012-08-23 Thread michael . vancanneyt
On Wed, 22 Aug 2012, Leonardo M. Ramé wrote: As I'm looking for a way to handle Cookies in an automatic/global way, instead of checking for cookie existence in every action request, I was looking into TFPWebModule.onRequest method. If I don't set Handled := True in that method, will the reque

[Lazarus] Question about fcl-web Request's Handled variable

2012-08-22 Thread Leonardo M . Ramé
As I'm looking for a way to handle Cookies in an automatic/global way, instead of checking for cookie existence in every action request, I was looking into TFPWebModule.onRequest method. If I don't set Handled := True in that method, will the request continue to the Action Request handler?. If yes