VMWare for test IIS Server
I'm wondering if anyone can help. I'd like to run IIS on a VMWare server, but I'd like to be able to access the IIS server on it using a browser on the PC. Can anyone tell me if this is possible? ...
I'm wondering if anyone can help. I'd like to run IIS on a VMWare server, but I'd like to be able to access the IIS server on it using a browser on the PC. Can anyone tell me if this is possible? ...
Hi, I have saved my website in the wwwroot folder. when i am running it through Visaul Studio 2008 it s running absolutely fine with path http://localhost:3840/GettingUserId/default.aspx but through IIS it is unable to resolve the images URL , not even the links to other pages r working (Parser Error). The path is ...
Hello I'm not that familiar with COM and was hoping that someone out there, who is, could help verify what I have below is correct. If I have two completely separate Requests (request 1 & request 2), then this creates two separate instances of my WebApplication. So far so boring. If each instance then contacts the SAME web service,...
Hello, I have ASP.NET MVC Beta on our web server running a few apps. My latest app is getting close to done and it uses the Version 1 of ASP.NET MVC. My idea was I could bin deploy the V1 assemblies and leave Beta installed so it was used by default. This idea doesn't work as it ignores the bin folder and grabs from the GAC (both are...
I have a Visual Studio solution containing a web site project plus a bunch of supporting projects (domain model, data access, etc). I want to expose an API to the same underlying data, via urls under the same domain, so I developed a WCF/REST project to do this (which has dependencies on the same set of domain/data access projects). No...
I have a site that uses aspnet_setreg.exe to encrypt the username and password of the identity user into the registry. It has always worked fine but when I run it on a Windows 2008 i get this: C:\aspnet_setreg>aspnet_setreg.exe -k:SOFTWARE\MYCODE\identity -u:"domain\user" -p:"password" Please edit your configuration to contain the foll...
Hi All, I have a web site hosted on IIS with windows authentication. I am trying to access it in one of my iPhone web application. Presently i am using this code, but it is not working. NSString *authString = [[[NSString stringWithFormat:@"%@:%@", @"myusername", @"mypassword"]dataUsingEncoding:NSUTF8StringEncoding] base64Encoding]; a...
hello, i was talking with a friend about what iis does when u put a new file inside a virtual directory. he tolds me that IIS recompile the entire website when u put a file anywhere in the website, i think it just happens (if happen) when u put a file inside your Bins folder. the conversation comes because a website in the company is ...
Why do I am getting "Platform Not Supported Exception" while adding new Response Header? I am debugging website using Visual Studio webserver. code: Response.Headers["X-XRDS-Location"] = url Exception Message: "This operation requires IIS integrated pipeline mode." Any help would be appreciated... ...
I have a very strange behavior with Request.Form. Here are two IIS 7 servers running the same ASP.NET application. On the first instance it's all ok. But the second one have very slow performance. Profiler showed that this line: context.Request.Form["id"] takes more than 130 ms each time! Profiler log: 0,60% get_Form - 4536 ms - 6...
I have a Java Enterprise Edition web application, a standard WAR. I want to integrate this with an existing .NET infrastructure running IIS. To be specific, I need to be able to share user sessions between the two applications in some secure manner. Is there a "standard" way of doing this? Edit: I do not need full session sharing, sorr...
First off, I know how to and has Integrated Windows Authentication in IIS7. This works great for seeing the Active Directory user logged on the computer. But, the need is to get the username of a Novell authenticated user. I don't want the password or anything more than the username. Other restrictions: Can't install anything on the...
ASP.NET - IIS 6 - we currently have a public-facing site that has a domain mapped against it. We are going to add a new web site in IIS 6, with its own IP, its own SSL cert, and its own domain name on the same server as the original web site/domain. Let's say I want c:\inetpub\wwwroot\example to be be served up to the two different site...
I understand that Web Site Projects compile source on-the-fly, and Web Application Projects pre-compile source into a DLL (much like ASP.Net 1.x). But how is the difference specified in IIS? I know that Visual Studio knows -- there are different projects for each, etc. But the running instance (IIS + Framework) has to know which compi...
I have a Windows 2003 Server with IIS, I installed VisualSVN Server on it. I have two developers, who are going to use TortoiseSVN. Since this is my first time ever setting up a SVN server I am kind of confused on how this will all work. The way I see it, each developer would have a copy of the repository on his or her local pc, would ...
Scenario: I've an n-Tier enterprise ASP.NET application deployed using Web Deployment Projects. All tiers produce independent assemblies that is consumed by the ASP.NET application. Problem: When I run the app. for the first time after deployment it takes lot of time to load dependent assemblies in memory. But once loaded its lighting f...
I recently moved my asp.net appliaction from windows 2003 / IIS 6 to windows IIS7. No other changes, but now the file upload for the fckeditor doesn't work anymore. Anyone know the obvious mistake I made here. :) Thanks ...
DirectoryEntry oDirectoryEntry = new DirectoryEntry(virtualDirMetaPath); oDirectoryEntry.DeleteTree(); This throws a COMException 0x80005000. Any pointers welcome. Creation of virtual directory is fine. Its only at uninstall I get this error logged in Event Viewver. ...
Hi all We are installing WordPress MU onto an IIS 7 sever We need to enable single sign on against the AD. We are happy to code the PHP to auto login / create accounts for the users etc. What we need help with is how to we get the users Credential (username,email,name etc.) from the IIS / windows server into PHP variables so we can ...
Hi, I am trying to configure rewrite rules for a Wordpress MU 2.7 on IIS7 with PHP5 (fastcgi). At the moment I only have the following rewrite rule in Web.config: <rule name="Canonical Host Name" stopProcessing="true"> <match url="(.*)" /> <conditions logicalGrouping="MatchAll"> <add...