isapi

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 configure IIS to map an ISAPI DLL off of a domain root

瘦欲@ 提交于 2021-02-05 09:15:30
问题 I have an ISAPI DLL installed under a directory like: c:\inetpub\wwwroot\emsserver\emsserver.dll This is a Delphi RAD Server app. In IIS Manager (Windows 10), under Root (computer name) -> Sites -> Default Web Site -> Emsserver, I have a handler set up to handle "*.dll" requests with that DLL. The end result is I can access the app like: http://localhost/emsserver/emsserver.dll/some-action That works fine. All good there, output as expected. But the URL isn't very end user friendly. Question:

How to configure IIS to map an ISAPI DLL off of a domain root

不问归期 提交于 2021-02-05 09:14:04
问题 I have an ISAPI DLL installed under a directory like: c:\inetpub\wwwroot\emsserver\emsserver.dll This is a Delphi RAD Server app. In IIS Manager (Windows 10), under Root (computer name) -> Sites -> Default Web Site -> Emsserver, I have a handler set up to handle "*.dll" requests with that DLL. The end result is I can access the app like: http://localhost/emsserver/emsserver.dll/some-action That works fine. All good there, output as expected. But the URL isn't very end user friendly. Question:

ISAPI ZEND url rewrite adding extra “/index.php/” into url

早过忘川 提交于 2020-01-15 03:53:20
问题 We recently reinstalled our web site on our server, the sys admin says it is an exact rebuild, and it indeed looks to me that it is, but there is something different going on. I did not originally develop the site, and those who did are no longer available. urls for the admin site are now //admin.site.com/index.php/schedules and used to be, and should be //admin.site.com/schedules The extra index.php is getting inserted in the url. But all links within the admin site do not include the index

ISAPI_Rewrite and Coldfusion Rules

我与影子孤独终老i 提交于 2020-01-06 21:32:48
问题 This is the first time that I am trying to use ISAPI_Rewrite and ColdFusion. My hosting company has a wiki which says I need to create an .htaccess file and add the following rules to it: RewriteEngine on RewriteRule ^(.*?\.cfm)/([^/]*)/([^/]*)(/.+)? $1$4?$2=$3 [NC,LP,QSA I have 8 main pages for my website: index.cfm products.cfm product-detail.cfm brands.cfm about.cfm contact.cfm specials.cfm gallery.cfm I have done that. What I would like to know is: Since I am new to this, are there any

ISAPI_Rewrite and Coldfusion Rules

匆匆过客 提交于 2020-01-06 21:31:34
问题 This is the first time that I am trying to use ISAPI_Rewrite and ColdFusion. My hosting company has a wiki which says I need to create an .htaccess file and add the following rules to it: RewriteEngine on RewriteRule ^(.*?\.cfm)/([^/]*)/([^/]*)(/.+)? $1$4?$2=$3 [NC,LP,QSA I have 8 main pages for my website: index.cfm products.cfm product-detail.cfm brands.cfm about.cfm contact.cfm specials.cfm gallery.cfm I have done that. What I would like to know is: Since I am new to this, are there any

Delphi XE ISAPI WebBroker file upload

大憨熊 提交于 2019-12-30 11:09:15
问题 I need some help accepting file uploads on an ISAPI in Delphi XE2. In Delphi 2007 I use Shiv's TMsMultipartParser and it works 100%. Trying to use this in XE2 doenst work. From what I can tell the contents length is read incorrectly and then the buffer's lenght is set incorrectly. My testes between 2007 and XE2 shows that the length on XE2 is 3 bytes larger for the same file. Unfortunately I dont know how to fix this, nor can I find anything else on how to accept the files from the upload

Has there been a change to the way asp.net authorization / authentication deals with non asp.net files?

删除回忆录丶 提交于 2019-12-24 22:56:46
问题 Whenever I've worked with asp.net authentication / authorization in the past, I can remember that it never used to secure .htm .js .css files (actually, any file that isn't processed by asp.net isapi dll). After a while of doing other work I've now come back to doing some web development, this time using VS2010 and now the opposite is true. It appears as if all files are secured because the images and .js files on my login page aren't working. My question is, was my initial assumption about

IIS and ISAPI-WSGI = very slow

☆樱花仙子☆ 提交于 2019-12-23 23:33:32
问题 I have loaded 2 Django apps on IIS using isapi-wsgi. These are both server setups: Windows Server 2003, IIS6 and SQL Server 2005 Windows Server 2008 R2, IIS7.5 and SQL Server 2008 The Django apps are completely different from each other. They both take random periods of time for each requests between 1 and 10 seconds . This is painfully slow compared to 100ms-500ms of an Apache+mod_wsgi setup, so there must be something wrong. Any ideas? Would really be great if I could fix this. :) Solved!

Modify ISAPI and CGI extensions

夙愿已清 提交于 2019-12-23 12:09:17
问题 I have a problem with IIS server, How can I modify ISAPI elements with using C# language? Forexample : ASP.net V4.0 restriction is "Not Allowed". And I want to set as "Allowed" like below picture. I can add an elements with this Code. But I cant modify. using System; using System.Text; using Microsoft.Web.Administration; internal static class Sample { private static void Main() { using (ServerManager serverManager = new ServerManager()) { Configuration config = serverManager