I am converting an old classic asp site to asp.net.
The application is an extension of the toolbox for this set of users, but it is hosted by an external provider.
To perform a smooth transfer to this application, it sends some XML data that causes the "potentially dangerous Request.Form value". I know that I can disable the validateRequest flag, but I would prefer not to.
I wrote an http module that takes this data and uses it to authenticate the user, is it possible to use the same module or another module to remove these "bad" values in the message data before the data is "verified"?
Otherwise, if none of these ideas work, I am open to other suggestions.
source
share