tom@theatomgroup.com
-
7/7/2008 5:18:13 PM
RE:The HTTP verb POST used to access path is not allowed
Hi Vita, this didn't work for me, but I did add some code to Application_BeginRequest in Global.asax.cs that allowed me to bypass url rewriting for web services, i.e.:
if (Request.Url.ToString().ToLower().IndexOf(".asmx") > -1) { return; }
|