Search Results

3
votes

How to make the process of debugging ASP.NET Sharepoint applications less time consuming?

If you are using the GAC, you can at least do iisapp.vbs /a "App Pool Name" /r instead of iisreset (it's quicker to recycle a single app pool than to restart IIS) …
0
votes

How do I prevent replay attacks?

If you only accept each key once (say, make the key a GUID, and then check when it comes back), that would prevent replays. Of course, if the attacker responds first, then you have a new p …