iis-7.5

Getting FTP working on an Azure VM, overcoming 'connection closed' on ftp client

烂漫一生 提交于 2019-12-24 00:35:34
问题 I'm struggling to connect to FTP on a new VM in Azure. I made a new Virtual Machine from the default image (Windows Server 2012 Datacenter) and RDPed into the new VM. I then enabled the Web Server (IIS) role including the FTP Server and configured IIS using the recommended setting from the Web Platform Installer. I then used the IIS Manager "Add FTP Site..." wizard to add an FTP site with root %systemdrive%\inetpub\ftproot and set the ftp site to have Anonymous Authentication enabled, Allow

Node.js installation troubles

谁说胖子不能爱 提交于 2019-12-24 00:07:37
问题 I followed the installation instructions provided by Hanselman but the only thing I can do calling the hello.js is actually downloading the js file... I checked the module - it is registered in IIS. I am running on version IIS 7.5. What can be the problem? 回答1: Thanks everybody for your advice. Few days ago Hanselman posted this one that make life easier if you want to start using node.js with IIS on windows 来源: https://stackoverflow.com/questions/7410145/node-js-installation-troubles

Problems hosting multiple ASP.Net MVC3 applications in an IIS7.5 website

痞子三分冷 提交于 2019-12-23 23:05:06
问题 Some specs: IIS 7.5 ASP.Net MVC3 I have three MVC3 applications I would like to host: Project A Project B Project C I want to get the URLs to be like this, respectively: http://domain/ http://domain/ProjectB http://domain/ProjectC So in IIS, I have the default website, which points to the folder for ProjectA. I then added two Applications to it, one pointing to ProjectB, and one to ProjectC, and their respective folders on the hard drive. I am storing the sites in C:\sites. Each project has a

Implementing Oracle.Web.dll, Oracle.DataAccess.dll 64-bit failed on Windows Server 2008 with IIS 7.5 32-bit disabled

我怕爱的太早我们不能终老 提交于 2019-12-23 22:31:53
问题 After successfully testing my MVC4 programs using this environment I tried to publish it to 64-bit Windows 2008 Server with the IIS that disallows 32 bit apps, then I start getting stuck with the exception : the referenced dll's dependencies cannot be found! I tried every advice the internet can give me including modifying web.config to reflect their dlls' on deploy-to server win 2008 using global cache cmd's on the prompt! Yet nothing works. 32-bit is working but 64-bit is flat broke! 回答1:

Classic ASP Request.Form not working when using integrated pipeline

此生再无相见时 提交于 2019-12-23 20:08:57
问题 I have a large corp. web site with mixed classic asp and asp.net currently hosted with a Win 2003 server, IIS 6. I need to modify all the pages output with some html modifications regardless the world they comes from. The asp part it's really old and badly structured, thus I can't act on any kind of "general include" to apply all the changes we need. Lastly some asp pages outputs code from multiple OCX/COM objects... We are already planning a whole rewrite/migration to .net, but unfortunately

Custom 401 page in IIS with ASP.NET

淺唱寂寞╮ 提交于 2019-12-23 18:42:54
问题 I have an internet facing ASP.NET website which I want to secure via Windows Authentication. I set my web.config file as: <system.web> <authentication mode="Windows" /> <authorization> <allow users="*"/> <deny users="?"/> </authorization> I have then disabled Anonymous Access and enabled Windows Authentication in IIS 7.5. This results in the prompt box being displayed for my Windows credentials, however clicking 'Cancel' gives me a standard 401 error page. I would like to display a static

How to give NT AUTHORITY\IUSR access to shared folder content?

我是研究僧i 提交于 2019-12-23 09:03:39
问题 I find something related, but not same thing. The error "Login failed for user 'NT AUTHORITY\IUSR'" in ASP.NET and SQL Server 2008 My issue is that the files are shared on the network, and I would like to debug from local IIS, I find that all static files seems to be access denied (401.3) I have used the trace system, and find that the IIS is accessing the source using "NT AUTHORITY\IUSR" Url http://localhost:8451/umbraco_client/panel/images/panel_boxhead_h2_bg.gif App Pool Debug451

Disable windows authentication on single location

≡放荡痞女 提交于 2019-12-23 08:53:03
问题 I have a web application and I want to provide anonymous access to a couple of the web services in it so that we can access the web services from computers without a windows login on our network. I've tried the stuff here Disable authentication on subfolder(s) of an ASP.NET app using windows authentication. I've done this: <authentication mode="Windows" /> <authorization> <deny users="?" /> </authorization> ... <location path="Tests/QService.asmx"> <system.web> <authorization> <allow users="?

Disable windows authentication on single location

旧时模样 提交于 2019-12-23 08:52:39
问题 I have a web application and I want to provide anonymous access to a couple of the web services in it so that we can access the web services from computers without a windows login on our network. I've tried the stuff here Disable authentication on subfolder(s) of an ASP.NET app using windows authentication. I've done this: <authentication mode="Windows" /> <authorization> <deny users="?" /> </authorization> ... <location path="Tests/QService.asmx"> <system.web> <authorization> <allow users="?

Is it possible to connect do remote desktop with windows azure websites?

房东的猫 提交于 2019-12-23 04:35:22
问题 I have been doing this with webrole. But as I understand windows azure websites: multiple sites hosted in a single webrole. Q.1. Is it possible to connect to webrole? Q.2. Is it possible to atleast connect to Azure IIS management console? 回答1: No, with Windows Azure Web Sites it is a managed solution. You can edit web.config and use the management portal, but there is no more direct ways to access the underlying compute resource. 回答2: Adding to Jeff's answer, while you can't remote debug your