|
<< Click to Display Table of Contents >> Navigation: Telegram > 2018 > 05 > 18 > Telegram_2018-05-18T07 |
2018-05-18T07:00:08
start you application type: bot_command /login type: bold .html instead of type: bold /$ type: bot_command /start
2018-05-18T07:01:09
Sorry, my english is so bad. Sometimes i can't express correctly.
2018-05-18T07:01:48
OK, all works just like you said. Thanks so much!
2018-05-18T07:01:56
??
2018-05-18T07:02:00
??
2018-05-18T07:02:59
Now the only outstanding thing is the intermediate certificate issue. I'm waiting on Indy to answer my question as to how the IW application responds to the certificate properly.
2018-05-18T07:04:10
I use IIS and install the certificate on Windows
2018-05-18T07:04:44
OK, is there some sort of documentation that tells me how to convert a SA to IIS?
2018-05-18T07:05:22
Is very, very difficult, :)
2018-05-18T07:06:11
??
2018-05-18T07:06:42
I only have one unit besides the server controller
2018-05-18T07:06:47
SA:
program yourprogram;
uses
IWRtlFix,
Forms,
IWStart,
ServerController in '..\\IW_Fontes\\ServerController.pas' {IWServerController: TIWServerControllerBase},
UserSessionUnit in '..\\IW_Fontes\\UserSessionUnit.pas' {IWUserSession: TIWUserSessionBase},
{ type: cashtag $R *.res}
begin
TIWStart.Execute(True);
end.
2018-05-18T07:06:48
very small app
2018-05-18T07:07:30
ISAPI:
library Yourprogram;
uses
IWRtlFix,
IWInitISAPI,
ServerController in '..\\IW_Fontes\\ServerController.pas' {IWServerController: TIWServerControllerBase},
UserSessionUnit in '..\\IW_Fontes\\UserSessionUnit.pas' {IWUserSession: TIWUserSessionBase},
{ type: cashtag $R *.res}
exports
GetExtensionVersion,
HttpExtensionProc,
TerminateExtension;
begin
IWRun;
end.
2018-05-18T07:07:37
ALL this, :)
2018-05-18T07:08:34
OK, so you were kidding! It is easy?
2018-05-18T07:09:14
I'm not sure where that code goes...
2018-05-18T07:09:35
Yeah i'm kidding.
2018-05-18T07:10:05
create 3 folders
2018-05-18T07:11:31
Where, under the root where the project is located?
2018-05-18T07:13:00
Where do I create those folders?
2018-05-18T07:19:44
This is an idea
2018-05-18T07:20:35
How about I cretae a new project and just add my single for to it?
2018-05-18T07:26:32
OK, all created with new app
2018-05-18T07:26:41
It created the DLL
2018-05-18T07:29:02
There must be some sort of documentation that goes through deploying an ISAPI in IIS, correct? Do you have a link to that?
2018-05-18T07:33:44
The main idea is maintain 2 projects and a third folder with fonts.
2018-05-18T07:38:42
when you test, you use SA
2018-05-18T07:38:49
when you deploy use ISAPI
2018-05-18T07:38:55
with the same fonts
2018-05-18T07:40:42
?? good tip type: mention @JNPace , I currently use this approach and works fine...
2018-05-18T07:42:37
I'm too new at this to understand what you are talking about. Sorry. If there were documentation that I could read, that would be wonderful. Please point me to any on-line links or books that dig into IW.