isapi

Recommendations for getting started with WiX? [closed]

百般思念 提交于 2019-12-05 02:18:03
I found a WiX Tutorial , but it's really long-winded and seems like more than I wanted. What's the best way to get started quickly? My end goal is nothing really complicated: an installer that installs an ISAPI filter. I used that same tutorial a couple years ago when I needed to learn WiX. MSI (and therefore WiX) are incredibly complex, you'll need to invest some time to get it right. If you have Visual Studio, I highly recommend getting Votive (which, I think, comes bundled in WiX v3 now). It'll set up VS to recognize the WiX XML schema and make hand-editing XML files much easier. When you

App_offline.htm, CSS, images, and aspnet_isapi.dll

回眸只為那壹抹淺笑 提交于 2019-12-04 10:26:58
问题 So, the site I'm working on is using urlrewriting in coordination with aspnet_isapi.dll (everything is mapped to it). I put up my app_offline.htm file, and all the text shows, however, the CSS or images aren't being served. I'm guessing they're being processed by ASP.NET due to the wildcard mapping instead of IIS. Is this correct? If so, how can I allow IIS to serve these files? Furthermore, an issue I can see arising..in the web.config for the rewriter settings: <rewrite url="^~/images

Python import error “DLL load failed” | Python

女生的网名这么多〃 提交于 2019-12-04 06:06:28
I'm serving a Django app behind IIS6 web server. The test server runs perfectly, but when running behind the web server a module failes to import I get this error: Error loading pyodbc module: DLL load failed: The specified module could not be found Just for the record the module is pyodbc The site is served though isapi by using isapi-wsgi Any ideas? It would really make my day! :) This error is a PITA: it is often caused by missing symbols in dll (because a dependent dll was not found, etc...). You should check the .pyd with dependency walker, or look into the windows log which may log such

how to configure Delphi 2010 ISAPI.dll in IIS7 64bit? [closed]

最后都变了- 提交于 2019-12-03 21:56:47
what are minimal steps required to make ISAPI dll working in IIS7 for query www.website.com/test/bin/ISAPIGet.dll?a=b ? Please don't refer to top google searches, they are very generic and don't work. I wrote very simple ISAPIGet.dll in Delphi2010, which works great in IIS5 Win2000. Then I put it on IIS7 SBS2008, into C:\inetpub\wwwroot\website\test\bin folder. Created website for /website, Application for /test, VirtualDirectory for /bin, in HandlerMappings for /bin Added Script Map *.dll to my ISAPIGet.dll, allowed my dll in ISAPIandCgiRestrictions, created 32bit ApplicationPool NonManaged

Finding out the physical path of an ISAPI dll

陌路散爱 提交于 2019-12-03 08:56:26
I'm converting a Delphi ISAPI dll to work better on IIS 7.0 and 7.5. The ISAPI used to read its configuration from the registry but I wanted to convert that to using the web.config file in the same folder. It worked fine with CGI but the ISAPI is another matter. I'm using GetModuleFileName to get the path of the module and, of course, it's giving me back the path of the IIS worker process (C:\Windows\SysWOW64\inetsrv). Is there a way to get the physical path of the ISAPI dll itself ? RBA I'm using this function and works great. function GetDllName: string; var pName: PChar; begin GetMem(pName,

App_offline.htm, CSS, images, and aspnet_isapi.dll

泪湿孤枕 提交于 2019-12-03 05:51:19
So, the site I'm working on is using urlrewriting in coordination with aspnet_isapi.dll (everything is mapped to it). I put up my app_offline.htm file, and all the text shows, however, the CSS or images aren't being served. I'm guessing they're being processed by ASP.NET due to the wildcard mapping instead of IIS. Is this correct? If so, how can I allow IIS to serve these files? Furthermore, an issue I can see arising..in the web.config for the rewriter settings: <rewrite url="^~/images/network/(.*)/(.*).jpg$" to="~/services/ImageHandler.ashx?type=$1&id=$2"/> <rewrite url="^~/image/view/(.*)

How can I make ADO database connections in 'TISAPIApplication` before processing incoming requests?

十年热恋 提交于 2019-12-02 03:14:30
问题 TADOConnection is failing to connect in the application initialization section of Delphi ISAPI App ( TISAPIApplication ): Application is built with Delphi XE SPI, running Win 7 64/IIS 7.5 and WinServer 2008 RS2 - it cannot connect with ADO in the global ISAPI application context. (Example code is using MS-SQLServer OLEDB - but we also fail using Sybase ASE provider.) The following code fails when conn.Open is called - TADOConnection.open never returns - ISAPI app hangs in la-la land, no

IIS7 ISAPI Filter Module & HttpModule Events - How do they line up?

放肆的年华 提交于 2019-12-01 07:03:33
So IIS7 in Integrated Pipeline mode uses a IsapiFilterModule to shim ISAPI filter DLL's and fire off the correct "events" on the filters, which is quite different than previous versions of IIS or IIS7 in classic mode because this means that HttpModules fire off right along side ISAPI filters in Integrated Pipeline mode. So does anyone happen to know how ISAPI events ( http://msdn.microsoft.com/en-us/library/ms524855.aspx ) and the HttpModule events ( http://msdn.microsoft.com/en-us/library/ms998536.aspx ) line up? VMAtm HttpModule events are fired after other filters, according to the MSDN: At

Problem in running .net framework 4.0 website on iis 7.0

半世苍凉 提交于 2019-11-30 10:42:51
问题 Hey I got problem in running .NET framework 4.0 website on IIS7.0 . the error I got is like: HTTP Error 404.2 - Not Found "The page you are requesting cannot be served because of the ISAPI and CGI Restriction list settings on the Web server". Module : IsapiModule , Notification : ExecuteRequestHandler, Handler : PageHandlerFactory-ISAPI-4.0_32bit , Error Code : 0x800704ec 回答1: Go to IIS manager and click on the server name. Then click on the "ISAPI and CGI Restrictions" icon under the IIS

Can HTTP URIs have non-ASCII characters?

半城伤御伤魂 提交于 2019-11-30 07:22:06
问题 I tried to find this in the relevant RFC, IETF RFC 3986, but couldn't figure it. Do URIs for HTTP allow Unicode, or non-ASCII of any kind? Can you please cite the section and the RFC that supports your answer. NB: For those who might think this is not programming related - it is. It's related to an ISAPI filter I'm building. Addendum I've read section 2.5 of RFC 3986. But RFC 2616, which I believe is the current HTTP protocol, predates 3986, and for that reason I'd suppose it cannot be