View previous topic :: View next topic |
Author |
Message |
Snurl -
Joined: 02 May 2006 Posts: 3
|
Posted: Tue May 02, 2006 9:04 am Post subject: Isapi: How to change .../MyApp.dll/test.htm in address bar? |
|
|
Thanks to the manual and the forum I got my ISAPI-extension running under Abyss in no time :D
However, to use the application I need to use the following address on my local pc: http://127.0.0.1/MyApp.dll/test.htm, including the name of my Isapi-Dll. I would prefer to use something like http://127.0.0.1/test.htm - without 'MyApp.dll'.
By using an Alias in Abyss I managed to open the page as I would like (by http://127.0.0.1/test.htm), but... as soon as the test.htm is loaded, the address including the MyApp.dll is shown.
My question is: how can I set Abyss up so that I can use *and* see the address without the MyApp.dll name in it?
By the way, I created the dll with Intraweb, a web application development framework for Delphi. The manual of Intraweb states that the application can be called by "http://xxx.xxx.xxx.xxx/{alias}/{application_name.dll}/{start_command}", so I suspect I cannot omit the MyApp.DLL-part.
As I don't like to show the DLL-part, I still hope for a solution.
Is there anyone with experience on this who can help me? |
|
Back to top |
|
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Tue May 02, 2006 10:03 am Post subject: Re:Isapi: How to change ./MyApp.dll/test.htm in address bar? |
|
|
Snurl,
You need here to rewrite the URL at the server level. Since this feature is not yet available (we're going to make add it in the next version), we suggest using the idea/script in http://www.aprelium.com/forum/viewtopic.php?p=46856#46856 . _________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
Snurl -
Joined: 02 May 2006 Posts: 3
|
Posted: Tue May 02, 2006 10:10 am Post subject: |
|
|
Thank you for this really quick reply. Now I'll try to find out how to do this in Delphi :) |
|
Back to top |
|
 |
eznetlinks -
Joined: 27 Sep 2003 Posts: 144
|
Posted: Tue May 02, 2006 7:11 pm Post subject: |
|
|
would it be possible to execute the dll using the system() command in php or C++ like: system("MyApp.dll/test.htm"); |
|
Back to top |
|
 |
Snurl -
Joined: 02 May 2006 Posts: 3
|
Posted: Wed May 03, 2006 7:25 am Post subject: |
|
|
Thanks eznetlinks, I will have a look at this. |
|
Back to top |
|
 |
|