iis-7.5

AjaxToolkit IIS7 Asp.Net 4.0: Sys is not defined; handler mapping issue?

≯℡__Kan透↙ 提交于 2019-11-27 18:35:28
问题 I have moved my asp.net 3.5 app to asp.net 4.0 and moved from windows 2003 (iis6) to windows 2008 r2 (iis7.5) and now i have this sys is undefined error. i have the app running in an integrated application pool. everything works except my ajaxtoolkit 3.0.20820.0 dll now I have read several blog posts, most of them cover asp.net 2.0 web.config files and not the minimized asp.net 4.0 config files. here are some parts from my current config file: <system.webServer> <modules

Does an IIS 7.5 web app with windows authentication require end users to have file permissions?

十年热恋 提交于 2019-11-27 18:10:55
Short version: For IIS 7.5 web applications with Windows Authentication does the end user need to have Read file access? Long version: I have an intranet ASP.NET web app that uses windows authentication. It's installed at dozens of different companies and normally the authentication works fine: users navigate to the site e.g. http://appserver/MyApp , the app recognizes who they're logged in as and displays pages accordingly. I just installed it at a new client and encountered a problem: When connecting e.g. to http://appserver/MyApp I'm prompted for windows credentials but after entering them

500.19 error with IIS7.5

非 Y 不嫁゛ 提交于 2019-11-27 18:08:22
问题 I am getting the following error, even after I unlock my website. Any reasons? HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid. Module CustomErrorModule Notification SendResponse Handler StaticFile Error Code 0x80070021 Config Error Lock violation Config File \\?\C:\Web\En\web.config <validation validateIntegratedModeConfiguration="false"/> <httpErrors errorMode="DetailedLocalOnly" defaultPath="

HTTP Error 404.3-Not Found in IIS 7.5

谁说我不能喝 提交于 2019-11-27 17:56:41
I'm using IIS 7.5 on Windows Server 2008 R2 x64 Enterprise Edition. In the project we have developed with ASP.NET 4.0 we used WCF Service. But it doesn't run over domain when the software is running from local computer. Otherwise, I am getting the following error: HTTP Error 404.3-Not Found The page you are requesting cannot be served because of the extension configuration. If the page is script, add a handler. If the file should be downloaded, add a MIME map. Mekanik You should install IIS sub components from Control Panel -> Programs and Features -> Turn Windows features on or off Internet

Impersonate Domain User with Integrated Pipeline

时光总嘲笑我的痴心妄想 提交于 2019-11-27 17:32:30
This is a question that continues to haunt me... In an local Intranet environment, are we doomed to use "Classic" pipeline mode in our App Pool if we want to use Impersonate our Windows domain users, or is there a new way to declaratively "run as" them (so-to-speak)? My goal is to use Windows Authentication for local web applications on my Intranet so users can authenticate and run apps under their active directory account (principle). Every time I try this (Using the NetworkService identity of course), I get this error: Thanks! ;) I wrote a small app to display the current user's network

How to Run PHP on IIS7.5 Express?

爱⌒轻易说出口 提交于 2019-11-27 17:30:43
问题 I have Win XP SP3 and have installed IIS7.5 Express and want to run PHP on it. I am able to run simple HTML code on the server, I am able to start and stop the server by running iisservices.exe, but I am not able to run php scripts on it. If I have the following PHP file: <? php echo "hello world"; ?> <html>HI</html> The output is HI but the PHP script doesn't run. I have followed the steps described in this article to install PHP: http://learn.iis.net/page.aspx/724/install-and-configure-php/

ASP.NET 5 An error occurred while starting the application

我是研究僧i 提交于 2019-11-27 17:22:17
问题 After publishing an ASP.NET Web App, I'm trying to host the website on my local server. However, when I start it up, it gives me this error in my browser: Oops. 500 Internal Server Error An error occurred while starting the application. How can I debug what this error is? The website works (both Debug and Release configurations) when starting using IISExpress and "web" in Visual Studio. I am using the Development environment, and I have already specified app.UseDeveloperExceptionPage(); . I

Detecting Memory Leaks in ASP.NET [closed]

我只是一个虾纸丫 提交于 2019-11-27 17:15:38
My development team is using ASP.NET 3.5 / 4.0 right now, and our sites are running on IIS 7.5. Recently, we've been having problems (about once a week) that are causing Out of Memory exceptions to be thrown in our ASP.NET applications. The "Solution" is to restart the application pool on our website. I say "Solution" because it's hardly a solution; it's more of a bandage that's just keeping our application pool running at a reasonable state. It seems to me that some application or many applications are leaking memory, which is building up over time and causing the out of memory exception.

How to set up FTP on Azure VM

非 Y 不嫁゛ 提交于 2019-11-27 17:13:06
I need some help setting up FTP on my Azure VM instance. The VM is Windows Server 2012 R2. I have set up the Web Server Role and created an FTP site in IIS. I have confirmed that I can access the FTP server with ftp command: open localhost I have also configured an FTP end point for the VM on the Azure Portal configured for the standard port 21. Lastly, I have created a firewall rule to allow all traffic in/out of port 21. Now when I try to FTP to it from my home machine I can see the server public DNS name is resolving to the proper IP and port but no connection can be made. Am I missing a

HTTP Error 405.0 - Method Not Allowed in IIS Express

自闭症网瘾萝莉.ら 提交于 2019-11-27 14:51:18
问题 When issuing a perfectly cromulent verb to a local IIS Express web-site under Visual Studio 2013: CROMULENT http://localhost:7579/Handler.ashx HTTP/1.1 Host: localhost:7579 the server responds with the error: HTTP/1.1 405 Method Not Allowed Allow: GET, HEAD, OPTIONS, TRACE That is a request to a "generic handler" (i.e. .ashx ) . If if i try again to a static resource: SCHWIFTY http://localhost:7579/Default.htm HTTP/1.1 Host: localhost:7579 the server responds with the error: HTTP/1.1 405