HTTP.SYS Kernel mode driver
What is the big deal with HTTP.SYS in IIS 7? From what I understand, it is low level which is good for security. Why? There is no context switching which could be expensive. Why? Please explain. Thanks! ...
What is the big deal with HTTP.SYS in IIS 7? From what I understand, it is low level which is good for security. Why? There is no context switching which could be expensive. Why? Please explain. Thanks! ...
Can i put my java web application into Windows IIS server .Now its working fine under Tomcat 6 server .But i want to put it in IIS server .Is it possible ..If yes pls let me know whats the Procedure ...... ...
How do stop application pools from recycling in IIS 7.5? I have configured the following settings: ProcessModel -> Idle Time-out (minutes) = 0 Recycling -> Regular Time Intervals (minutes) = 0 Are these settings enought to stop an application pool from recycling? ...
Are Etags on by default in IIS? If no then please let me know how to turn them on?? ...
can we host a java web application on IIS server ...
I have a hyperlink to an executable like so: <a href="xxx.exe"> Run Now </a> I'm trying to make the download dialog box appear without the save function as it is to only run only on the user's computer. Is there any way to manipulate the file download dialog box? FYI: Running on Windows Server '03' - IIS. Please no suggestions for a W...
I have joomla install on IIS with a domain that's not registered yet, so we are still using the IP address.. So whenever you go "home" or do some actions in the admin panel it keeps trying to go back to localhost - how do I change it - or do I need to wait for the domain to come on... The website is here btw - http://12.148.212.142/ ...
I have just bought a new Windows server with IIS on it and plesk panel. Good times (I thought...) I have about 10 client sites that run on PHP which shouldn't be a problem. But I can't seem to get an answer from my hosting provider on how to get my .htaccess working on the windows server so I'm getting stung for two lots of hosting and ...
Hi all, I just installed .NET 4.0 on my Win 2003 Server running IIS. I didn't have any problems using ASP.NET 2.0 built websites, but now if I set the ASP.NET version to 4.0 and I deploy a website built using vs2010, I get HTTP 400 http://localhost/mysite/Default.aspx homepage. I have an.xml file in the same folder and browsing to that...
after deploying my web site to IIS server when i brows my web site kept under default web site it's displaying error message "You are not authorized to view this page"...please solve this issue ...
My production web environment contains two clustered servers. I need to redirect any direct requests to the two nodes to the main www URL. I also need to make sure my non-www redirect (with ISAPI_Rewrite) remains in tact. So essentially, I need: domain.com -> www.domain.com node1.domain.com -> www.domain.com node2.domain.com -> www.doma...
I have a local development webserver set up using Win7 and IIS7. I often have to test the applications and websites I develop on all browsers using "very slow" internet connections to determine how all the clients scripts execute and if the images and all linked resources load properly and in order on all browsers. Now, this involves ...
I have 2 asp.net sites (site1 and site2). site1 have a directory inside in called images. In images directory there are images. I need to upload files using site2 aspx page, but need to upload them to images folder of site1. how can I do that? ...
I'm using the following code to start website when it is stopped. DirectoryEntry DE = new DirectoryEntry(string.Format("IIS://localhost/W3SVC/{0}", siteID)); if ((Int32)DE.InvokeGet("ServerState") != MD_SERVER_STATE_STARTED) DE.Invoke("Start"); But it works only if the website is stopped and not works if it is PAUSED. How can i s...
hi I have asp.net application. I'm using external javascript files in my application. When I test my site with page speed tool from google it says that following resources are missing a cache expiration. also some of the images and css files. Can you give me please some examples how to set it and where exactly I need to set it. ...
I found some manual here : http://support.microsoft.com/kb/316898/ru but can't make a step with : The Certificate Request Wizard dialog box opens. Click Next. Select Certificate type is "computer". On "Registration politics" step there is Active Directory registration politic by default and so it requests some registration serv...
I've a ASP.Net application which utilizes SQL Server Stored Procedures and Web Services using Windows Authentication. The idea is to use the logged in user credentials for invoking the web service (This is critical since the web service use the authentication credentials to assign the owner of the created or updated record) and for execu...
I have an ASP.NET MVC application which returns 404 and occasionally, 500 status codes at various, appropriate points. Response.StatusCode = (int)HttpStatusCode.NotFound; When I set one of these status codes, I also set the TrySkipIisCustomErrors property appropriately. Response.TrySkipIisCustomErrors = true What I would like to do...
Does anyone know of any articles/blogs that have been written describing the security implications with setting the Trusted Zone in Internet Explorer to "Automatically logon with current username and password"? ...
Hi, I just noticed to my surprise that whitespace at the start or end of form parameters is not automatically removed in ASP.NET MVC 2 (browser: Firefox). I always assumed this would be the case, simply because I could not see a scenario where I would NOT want trimming to happen by default. This can be fixed very easily by implement...