Do I risk losing sales by disabling SSL 2.0 and PCT 1.0 in IIS5?
Clarification: Sales would be lost by client not being able to connect via SSL to complete ecommerce transaction because SSL 2.0 or PCT 1.0 is disabled on the web server.
Microsoft kbase article: http://support.microsoft.com/kb/187498
...
I'm working with a support person who is supposed to be able to install SSL certs on a web server he maintains. He has local admin rights to the server via a domain security group. He also has permissions on our internal CA running Windows 2003 Server Certificate Authority: "Request cert" and "Issue and Manage certs".
The server he's ...
I am getting this error when trying to run internet information services on a Virtual Machine running windows XP. Anyone have any idea?
...
When I run my Visual Studio 2008 ASP.NET project (start without Debugging) on my XP Professional box, I get the following error:
System.Web.HttpException: The current identity (machinename\ASPNET) does not have write access to 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files'.
How do I resolve this?
...
Do I have to go with IIS 6 or higher to use Castle MonoRail Routing feature?
I know casini work but practically we not gonna deploy web app with casini, or do we?
...
I would like to upgrade my web projects on an IIS 5 server from .NET 2.0 to .NET 3.5. These web applications live on a server with other web applications that will not be upgraded to .NET 3.5. The server administrator is reluctant to install .NET 3.5 because he is afraid it will break the applications on that machine that are running 2...
I have the following in my Global.asax.cs
routes.MapRoute(
"Arrival",
"{partnerID}",
new { controller = "Search", action = "Index", partnerID="1000" }
);
routes.MapRoute(
"Default",
"{controller}/{action}/{id}",
new { controller = "Home", action = "Index", id = "" }
);
My SearchController looks like this
publ...
Is it possible to update IIS on Windows XP from 5.1 to 6?
If so how?
Thanks.
...
I try to use HttpForbiddenHandler to block the file without success. The web.config is as follows:
<httpHandlers>
<add verb="*" path="*.ashx" type="Castle.MonoRail.Framework.MonoRailHttpHandlerFactory, Castle.MonoRail.Framework"/>
<add verb="*" path="*.vm" type="System.Web.HttpForbiddenHandler"/>
</httpHandlers>
I have setup the virtu...
After hosting an ASP.NET 2.0 web application on a windows 2000 server(IIS 5).
I was unable to browse the web site.
The following error message was displayed on the browser and three Event Log entries were added...
Error Message on Browser
Server Application Unavailable The web application you are attempting to access on this web se...
I've been having performance issues with a high traffic ASP.NET 2.0 site running on Windows 2000. While editing the web.config file I noticed that the authentication mode was set to 'Windows'. I changed it to 'None'. The only users this site has are anonymous and it gets 25,000+ page views at day. Could this have been a caused perfor...
I've got a few sites on a Windows 2000 box that are still using Interdev/HTTP updates. I'd like to convert those to be FTP only and remove the Interdev update capability. How do I convert these with minimal disruption? I.E. How do I "remove Interdev" from these sites?
...
I've got to set up temporary SSL security on my classic ASP application on Windows 2000 server, IIS5. What do I need to do to activate SSL? I won't be able to get an official cert for a little while so I think I have to make my own.
Steps? Do I need access to the router or anything or can I just do this through IIS?
...
Running IIS5 (yes, really). I'd like to remove the eTag http header that IIS generates for me. MS has an article on how to sync eTags across the web farm, but not how to remove them ( http://support.microsoft.com/?id=922733 ).
Is there a way to remove eTags?
...
OK, deploying ASP.NET MVC seems to be painful. I want to deploy my ASP.NET MVC application on Windows XP (IIS 5.1), but can't seem to find how to do it. When I type the application name into the web browser address bar I get a "website not available" message.
There are workarounds for IIS 6.0, but what about IIS 5.1?
...
I've been contacted to see about updating an old legacy web application that was built using ASP and Access. The server is running Windows 2000 Advanced Server and I believe IIS 5.0 (I am trying to get confirmation on that, but the company isn't technical so I highly doubt Apache is running on the server).
What languages would be viable...
Apologies in advance for the long-winded question.
I'm really a database programmer, but have inherited support of a classic-ASP intranet application which has recently been migrated from IIS 5 to a new server running IIS 6. The user-base is about a dozen, all using IE 6.
The UI displays hierarchies of items returned from a database, u...
I have problem with starting processes in impersonated context in ASP.NET 2.0.
I am starting new Process in my web service code. IIS 5.1, .NET 2.0
[WebMethod]
public string HelloWorld()
{
string path = @"C:\KB\GetWindowUser.exe";
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.WorkingDirectory = Path.GetDirec...
I asked this http://stackoverflow.com/questions/313877/can-i-automate-creating-a-net-web-application-in-iis a little ago, and got solutions for IIS 6 and IIS 7:
IIS6 : iisweb /create C:\Rome "My
Vacations" /d www.reskit.com
/dontstart
IIS7 :
%windir%\system32\inetsrv\AppCmd ADD
SITE /name:MyNewSite
/bindings:http/*:81:
/physicalPath:c...
I've worked out how to interact with IIS 6.0, but I can't find anything on the net about how to talk to IIS 5.0 - if indeed it's even possible?
I would like to write a script to create a temporary application, so I can copy some ASP.NET files there, build them, and then remove the temporary application.
If needs be I am happy to call a...