I have a funny little situation on my hands.
I have a httpModule on my hands that I have to feed with context relative data.
That means that on the page I have to set something that the HttpModule can then react on. If possible I would like to avoid having call context data in the session.
Any bright ideas out there.
thx for the answer.
Edit: The HttpModule is working as a last minute interceptor. And my problem is that I am looking for a cleaver way of telling the HttpModule to:
- Intercept this call (changes dynamically, so can not be statically configured)
- Do some secret stuff with the data that I would like to pass to it
- Somehow make that action idempotent. Because it must not happen twice regardless of user actions and possible system errors.