iis-6

Looking for real-time web server analytics package [closed]

混江龙づ霸主 提交于 2019-11-30 07:59:36
I am the programmer for the Education department at a county hospital. I would like to be able to see some real-time stats on an IIS6 web server that is only accessible in-house. I'm looking for something similar to what 1and1.com provides for their customers (if you're familiar with what they offer). I have a Classic ASP/VBScript based Learning Management System that I would like to do some traffic analysis on, and the last package I tried (the site for it no longer exists) ran fine for a year, and then started massively slowing down the server. In no particular order, I would like: I would

What might be causing the “The client disconnected” ASP.NET exception?

ぐ巨炮叔叔 提交于 2019-11-30 07:56:14
My .NET 3.5 application sporadically throws the following exception System.Web exception: The client disconnected Why is this exception occurring? My application is running on a load balanced Windows Server 2003 IIS 6.0 server. Paul Prewett The vbdork.net domain seems to now be defunct. In searching on this error, I found several references to this article. So I found a google cached version of it and am now posting it here for reference. The original URL was: http://vbdork.net/post/2009/02/10/The-client-disconnected.aspx You get the message The client Disconnected. You're likely to

Certificates: Cannot find the certificate and private key for decryption Error when sign

风流意气都作罢 提交于 2019-11-30 07:17:23
问题 I work in company with many servers and Pcs for developers. Servers are win2003, PC developers Windows XP. In a server Win2003 named preiis01, in preproduction environment, other people in company install a client certificate using any other user (domainCompany\adminsystems) for logging in server preiis01. Anyone admin uses the user "domainCompany\adminsystems" for log in server preiis01 (using Terminal Server, Remote Desktop for Windows XP). the admin user is domainCompany\adminsystems",

IIS6: Create/install SSL self-signed cert from command line

天大地大妈咪最大 提交于 2019-11-30 07:05:54
I want to automate the setup of SSL for a website in IIS6. It appears selfSSL and certutil can be used to do this but certificates are new to me and I'm unsure how to put them together. From what I understand I need to: create a certificate assign the certificate to the website add a secure (SSL/443) binding to the website I would also like to avoid creating a new certificate if the site cert has already been created. That way I don't end up with a bunch of redudant certs. I would suggest you look at the IIS 6 Resource Kit: http://www.microsoft.com/download/en/details.aspx?displaylang=en&id

ASP.NET routing on IIS 6

老子叫甜甜 提交于 2019-11-30 06:29:22
I have created a basic site using ASP.NET routing according to Mike Ormond's example "Using ASP.NET routing Independent of MVC". This works fine on my local machine running the built-in web server. However, when I deploy it to my server ( Windows Server 2003 , IIS 6, ASP.NET 3.5 SP1) it just shows a 404 error. I have read somewhere that I am meant to set up wildcard routing. How can I do this? What other configuration changes needs to be done to make it work on my server? Johnno Nolan You will find some good information on Steve Sanderson’s blog post " Deploying ASP.NET MVC to IIS 6 ." Chris

How do I recycle an IIS AppPool with Powershell?

你离开我真会死。 提交于 2019-11-30 06:06:18
I haven't really done any Windows scripting at all, so I am at a loss on how to pull this one off. Anyway, basically what we want to do is have a script that will take an argument on which IIS AppPool to recycle. I have done some research on Google and haven't had much success on getting things to work. Here is what I am trying now: $appPoolName = $args[0] $appPool = get-wmiobject -namespace "root\MicrosoftIISv2" -class "IIsApplicationPools" Where-Object {$_.Name -eq "W3SVC/APPPOOLS/$appPoolName"} $appPool.Recycle() and the error I get: Get-WmiObject : A parameter cannot be found that matches

ASP.NET MVC compression options in IIS6

丶灬走出姿态 提交于 2019-11-30 05:44:25
For now I'm stuck with IIS6 for ASP.NET-MVC (as in I cant upgrade to Server 2008 yet). It doesnt seem to know that my RESTful URLS are dynamic files and isn't compressing them. All my old .aspx files are compressed (as seen in Fiddler), but not the '/products/1001' type URLS. Is there any way to get IIS6 to compress my ActionResults in IIS6 without using something like an ActionFilter for compression . I'm assuming IIS7 is clever enough to know they're dynamic right. Bonus points if you can tell me how IIS6 even knows which files are dynamic in the first place! As HTTP compression for ASP.NET

Deploying Asp.Net MVC 2 /C# 4.0 application on IIS 6

回眸只為那壹抹淺笑 提交于 2019-11-30 03:38:51
I got a problem migrating from VS.Net 2008 / MVC 1 to VS.NET 2010 (+C# 4.0) / MVC 2 The web.config has been updated , the site runs well in Cassini, but my problem now is deploying on IIS 6. I updated the web site to run using ASP.Net 4 , but whatever URL I try, I always have a 404 error. It's as if the routing was not taken into account (yes, the wildcard mapping has been done). I do not understand this mess and could not google anything interesting... Thanks for your suggestions ! Ok I got y answer (thanks to a colleague) When migrating from ASP.Net 2.0 to ASP.Net4.0, if you meet the same

How do I configure IIS to handle really large file uploads?

我们两清 提交于 2019-11-30 02:24:20
Platform: IIS 6, ASP.Net 2.0 (.Net 3.5), Server 2003. I'm building an application that accepts files from a user, processes them, and returns a result. The file is uploaded using HTTP POST to an ASP.Net web form. The application is expecting some large files (hundreds of MB). I'm using SWFUpload to accomplish the upload with a nice progress bar, but that's not contributing to the issue, because when I bypass it using a standard HTML form pointing at my upload accepter page, I get the exact same error. When using the progress bar, the upload continues to 100%, then fails. With a standard form,

IIS 6 ignores Web.config authorization settings

半世苍凉 提交于 2019-11-29 23:31:01
问题 Context: IIS 6 on Windows 2003 Server ASP.NET 3.5 sp1 C# Web Application running from a virtual directory There are a few files that I would like not to serve. For example, there's a hibernate.cfg.xml in the root directory that should not be accessible. There are also log files in a logs directory. On the local development server (Visual Studio 2008) The NHibernate config file can be protected in a couple of ways through Web.config: <location path="hibernate.cfg.xml"> <system.web>