|
<< Click to Display Table of Contents >> Navigation: Telegram > 2021 > 06 > 03 > Telegram_2021-06-03T19 |
2021-06-03T19:04:35
I am installing IIS on my dev workstation and will see if I can't get it to debug the ISAPI locally.
2021-06-03T19:07:00
type: mention_name Phillip user_id: 1342692434 I suggest you convert to http.sys, run far far way of isapi ??
2021-06-03T19:08:11
I will put that on my to-do list. For now I just need to try and get these params working again. I have not done anything with http.sys yet.
2021-06-03T19:10:47
It's very very hard, ??
2021-06-03T19:10:57
Converting an Indy SA into an Http.sys application
It is REALLY easy! Your existing IntraWeb 14 SA application can be modified to run as an Http.sys application editing 2 lines in your DPR file!
Follow these simple steps:
1) Replace IWStart unit by IWStartHSys
2) Replace the call to TIWStart.Execute() by TIWStartHSys.Execute()
Build and run your application. Everything should just work, now using Http.sys as the Http server instead of Indy server.
2021-06-03T19:11:05
type: link https://doc.atozed.com/en/iw15/develop/creating-http-sys-applications-with-intraweb/
2021-06-03T19:13:43
Can that be deployed as an ASPX app?
2021-06-03T19:16:30
I see they are deployed as an executable
2021-06-03T19:16:40
I will look into that as soon as I can