-
Posted to
ASP.NET Administration
by
codeboy
on
10-16-2009, 10:07 AM
I'm having trouble using the HTTP Status codes from a managed http module in asp.net on different versions of IIS.
IIS 5.1
200 127.0.0.1 http://localhost/httpModuleTest/default.aspx 127.0.0.1 10/16/2009 9:49:27 AM
200 127.0.0.1 http://localhost/httpModuleTest/notfound.aspx 127.0.0.1 10/16/2009 9:49:32 ...
-
Posted to
IIS 7 - Troubleshooting
by
codeboy
on
07-17-2007, 8:19 PM
I'm not sure if this will help, but one of the solutions i found that helped to diagnose issues like this was to put the server under some intense load with a tool like VSTS Load testing etc.. That helped me determine the pattern to the failed requests, which really was the important thing for me to find the problem. In my case it ...
-
Posted to
IIS7 - Extensibility
by
codeboy
on
05-29-2007, 10:39 PM
Are you sure that the managed modules are running for this request? I had a similar problem in that HttpContext.Current was null for certain requests, the root cause happened to be that the FormsAuth module was not running for that request. Also capture a freb log for that request if you can, that might lead you to more information ...
-
Posted to
ASP.NET Administration
by
codeboy
on
06-15-2006, 12:56 PM
So you have a remote state server that you want your webservers to connect with to maintain state in a webfarm? Is there a firewall or port blocking layer inbetween the servers? Can you ping / talk to the state server? Make sure windows firewall isn't up and interrupting things. Just a thought.
Hth,
-
Posted to
Publishing
by
codeboy
on
06-15-2006, 12:24 PM
I can't answer as for the registration of COM+ but I know you can publish pages and files via robocopy with some pretty good success. I've used it before to keep a cluster in sync, 2 node cluster, files were uploaded to a staging environment robocopy would push files to the nodes of the cluster. Its configurable but I just set up ...
-
Posted to
General
by
codeboy
on
06-15-2006, 8:42 AM
What is the supported / reccomended way of resetting iis for iis6? I'll occasionally have to do this in order to release the lock an ISAPI dll to deploy a new version. iisreset is great because i can do this from the command line of my dev box (files are deployed on a dev server separate from the devbox) I can turn off caching isapi ...
-
Posted to
Troubleshooting
by
codeboy
on
06-15-2006, 8:33 AM
Just a shot in the dark here, but make sure that your .NET 2.0 application is in a .NET 2.0 app pool. If you put both a 1.1 App and a 2.0 app in the same app pool you'll get this kind of error. I've also seen it when you mess w/ the cache isapi extensions options but that's less likely to be the problem.
-
Posted to
ASP.NET Administration
by
codeboy
on
06-15-2006, 8:16 AM
I've seen this problem as well, the server had ASPNET2 installed correctly, was a 32b machine and even had the framework mappings set to aspnet2 for that site, but there was no aspnet tab.
Scott
-
Posted to
Extensibility
by
codeboy
on
06-15-2006, 8:12 AM
Is there unmanaged sample code for the new API? I find thats how i best learned ISAPI. What would really be cool is if one of the sample filters from the ISAPI_60 part of the platform SDK and port it to the new format. I think this would really help me to understand just how things are supposed be done in the new api. ...
-
Posted to
Extensibility
by
codeboy
on
08-11-2005, 9:31 PM
If you have the source code, I would try to step through the filter and debug it. You can setup remote debugging if the iis6 box is different from your primary workstation. This will at least tell you if the relavent sections of your filter are being hit or even loaded. Hth,