iis-7.5

How can I attach the Delphi debugger to 64-bit IIS 7.5?

本小妞迷上赌 提交于 2021-02-18 22:20:46
问题 I'm running Delphi XE on Windows 7 Pro 64 and IIS 7.5, developing an ISAPI application. IIS is configured correctly (including allowing 32-bit code to run in an ISAPI process). The ISAPI process runs properly. In Delphi I'm trying to attach to the ISAPI process running on localHost to step through my ISAPI.dll code: Run->Attach to Process->InetInfo.exe. I've done this a thousand times with Windows XP and IIS 5, but in this new environment I cannot attach to the ISAPI process. I get an error

How to allow anonymous access to web-site on IIS 7.5?

房东的猫 提交于 2021-02-18 11:39:08
问题 tl;dr : Why does <allow users="?"> work on IIS Express, but not on IIS? Background I have a new asp.net web-forms project. When running locally on Windows 7 IIS Express, i can block "all users" from accessing the site by adding a deny * rule to web.config: web.config <configuration> <system.web> <authorization> <deny users="*" /> </authorization> </system.web> </configuration> this causes me to be denied access: And so that makes sense. I can deny access to anonymous users I the web.config, i

ASP.NET/IIS, When do <customHeaders> in the web.config get added to the page?

心不动则不痛 提交于 2021-02-11 08:48:26
问题 At what point in the page lifecycle do customHeaders in the web.config get added to the page? One MSN reference showed headers being added to the response before the request got to the page handler. Why are none of the headers cleared since I can see headers being cleared in 2 places? I can see in one of our page templates code behind in the OnInit override: Response.ClearHeaders(); Response.AppendHeader("Cache-Control", "no-store"); The headers in the web.config <customHeaders> <clear />

WCF Duplex - Client is unable to finish the security negotiation within the configured timeout

社会主义新天地 提交于 2021-02-10 07:35:14
问题 I have a duplex WCF, it work perfect in local host (connect my application to this WCF when it run locally). Now I tried to hosted it in my IIS (Server 2008 R2 standard), I create a windows account "GOD", and an application poll in IIS using the "GOD" identity. I can access this WCF from my pc (other than the server) from web browser and see the XML of the contract, (click on the link inside the page displayed) When try to access from my application I get the exception: Client is unable to

WCF Duplex - Client is unable to finish the security negotiation within the configured timeout

笑着哭i 提交于 2021-02-10 07:35:10
问题 I have a duplex WCF, it work perfect in local host (connect my application to this WCF when it run locally). Now I tried to hosted it in my IIS (Server 2008 R2 standard), I create a windows account "GOD", and an application poll in IIS using the "GOD" identity. I can access this WCF from my pc (other than the server) from web browser and see the XML of the contract, (click on the link inside the page displayed) When try to access from my application I get the exception: Client is unable to

What does the “time” field in the log indicate, exactly?

拜拜、爱过 提交于 2021-02-06 07:38:05
问题 I've been studying the W3C format log files in IIS 7.5 for a while on a server with some performance issues, and it seems to me that, contrary to MSDN documentation, the "time" field is not "the time, in Coordinated Universal Time (UTC), at which the request occurred" ... but rather it is the time at which the response was finished being sent. I say this because when I track the sequence of page request from users in a somewhat controlled environment, they would have to be going back in time

What does the “time” field in the log indicate, exactly?

て烟熏妆下的殇ゞ 提交于 2021-02-06 07:34:10
问题 I've been studying the W3C format log files in IIS 7.5 for a while on a server with some performance issues, and it seems to me that, contrary to MSDN documentation, the "time" field is not "the time, in Coordinated Universal Time (UTC), at which the request occurred" ... but rather it is the time at which the response was finished being sent. I say this because when I track the sequence of page request from users in a somewhat controlled environment, they would have to be going back in time

IIS replace part of url

自作多情 提交于 2021-01-28 19:16:47
问题 I'm trying to replace "se" with "sv" in a url by using url rewrite in iis. Url look like this: www.somedomain.com/ se /baadmarked/baade And should look like this: www.somedomain.com/ sv /baadmarked/baade My current rule look like this: <rule name="se to sv" patternSyntax="ECMAScript" stopProcessing="true"> <match url="(.*)" /> <action type="Redirect" url="{C:1}sv{C:3}" appendQueryString="false" /> <conditions logicalGrouping="MatchAny"> <add input="{HTTP_HOST}{QUERY_STRING}" pattern="(.*)(se)

Will all requests that appear in HttpErr logs also appear in the IIS logs, by default?

萝らか妹 提交于 2021-01-28 12:31:24
问题 I'm maintaining a website that seems to be generating a lot of connection dropped errors in the HttpErr logs. I'm trying to match up the errors in the HttpErr logs with log entries in the IIS logs, to see what additional information I can glean (eg time taken, response status code). I'm having trouble matching up records in the HttpErr logs with the corresponding requests in the IIS logs. Although I can see requests from the same IP address in both logs, there seems to be no exact match

Call to undefined function ocilogon() - IIS 7.5 - Windows 2008 R2 x64 - PHP 7.2.7

跟風遠走 提交于 2021-01-28 11:12:52
问题 I am migrating a website from a development environment (Angular 4 - WAMP Server - PHP 5.6.35) to a production environment. In development, the Angular 4 application was successfully able to connect to a PHP script and run an Oracle stored procedure so there are no issues with the code. In production, I've had to install PHP using the Web Platform Installer to successfully run a PHP site with phpinfo() showing 'PHP Version 7.2.7'. I run the application and when it attempts to run the PHP