c# - How do I store temporary data manipulated by my ASP.NET module? -
i estimate implementing wsse authentication extending code similar this custom authentication module.
that code hosted in asp.net , registered in <system.web><httpmodules>
section in web.config file of site. instance of module created code inside iis, passed request, live time , destroyed.
in order implement wsse need somehow keep track of issued challenges ("nonces") able prevent replay attacks.
so need store recent challenges somewhere in such way collection persist between incoming requests , accessible module instances.
what convenient (in terms of using c# , deploying on new server) , typical solution that?
session["mysess"] can you
Comments
Post a Comment