| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 98,815
» Latest member: jb2333
» Forum threads: 2,426
» Forum posts: 11,371
Full Statistics
|
| Online Users |
There are currently 789 online users. » 2 Member(s) | 782 Guest(s) Applebot, Bing, Google, Internet Archive, Yandex, jb2333, soneyodan
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 285
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 220
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 246
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 543
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 292
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 714
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 264
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,355
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 406
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 1,063
|
|
|
| passing Delphi variable to javascript variable |
|
Posted by: Joe Sansalone - 08-15-2021, 02:28 PM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Hi,
Is there a way to pass Delphi var to a javascript variable?
I know that I can call WebApplication.CallBackResponse.AddJavaScriptToExecute
to execute a javascript function and pass it the actual string (i.e. value of the variable).
But if I don't want to expose the contents of the delphi variable in html/javascript,
how do I pass it?
Thanks,
Joe
|
|
|
| Documents confirming the purchase of the Ultimate license. |
|
Posted by: Сергей Александрович - 08-13-2021, 06:30 AM - Forum: IntraWeb General Discussion
- Replies (6)
|
 |
Good afternoon! I recently bought a license for Ultimate. Please explain how to get the documents confirming the purchase? My accounting department requires a document that confirms that the purchase has been made.
I apologize that I have to write this question on the forum, but there is no answer to my appeal to the personal account.
I need some kind of document that would confirm that my money was spent on the purchase of the Ultimate Intraweb license.
|
|
|
| IWServer as service become unresponsive |
|
Posted by: dabuzu - 08-12-2021, 08:48 AM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
I am using IW 14.2.9 ultimate with Delphi 10 Seattle
Installed components : TMS and CGDevTools
External connection is done thru an proxy server.
I encounter a strange situation, service is running ok several days, but are moments when become unresponsive.
Server processor goes above 25 % and everything respond in 10-20 sec or even get timeouts.
Restarting service do not solve the problem, because instantly server get back to 25-30 %. Memory consumption is not height and third server (database layer) is working ok for other clients as well.
I did also a new installation of IW service on second server and from proxy I activate which server to run. But when are problems, Proc constantly > 25 % switching servers do not solve anything. Second server goes instant to the same proc usage and also become unresponsive.
That takes from 5 min to 40 min, till everything goes back to normal and server respond in milliseconds.
What I didn't understand, is , when busy, why do not show at list page of login (that is simple and do not connect to any third party service) when start.
Why server does instantly at 25-30 % when restarting ?!
In logs are nothing strange, no exceptions reported.
Please, any suggestion is very welcome.
config:
self.RestartExpiredSession := True;
Self.BoundIP := FConfig.CFG.ReadString('Server','BoundIP',False);
self.Port := FConfig.CFG.ReadInteger('Server','BoundPort',False);
self.AllowMultipleSessionsPerUser := false;
Self.SessionTimeout := 120; {2 hours}
Self.FilesDir := Self.ContentPath + FConfig.CFG.ReadString('Server','SharedFilesDir',False);
Self.InternalFilesDir := Self.ContentPath + FConfig.CFG.ReadString('Server','SharedFilesDir',False);
TIWSecurityOptionsAccess(Self.SecurityOptions).mCheckSameIP := False;
TIWSecurityOptionsAccess(Self.SecurityOptions).mCheckSameUA := true;
TIWSecurityOptionsAccess(Self.SecurityOptions).CheckFormId := true;
SecurityOptions.ShowSecurityErrorDetails := False;
CookieOptions.SessionCookies := false;
CookieOptions.HttpOnly := true;
CookieOptions.UseCookies := True;
self.JavaScriptOptions.AjaxErrorMode := emNone;
self.LogCommandEnabled := true;
self.LogSessionEvents := true;
self.ExceptionLogger.RegisterIgnoreException(EConvertError);
self.ExceptionLogger.RegisterIgnoreException(EUnknownBrowserException); {Unknown browser type}
self.ExceptionLogger.RegisterIgnoreException(EInvalidSession); {Invalid session}
self.ExceptionLogger.RegisterIgnoreException(EExpiredSession); {Expired session}
self.ExceptionLogger.RegisterIgnoreException(EIWNoSessionId); {No session ID}
self.ExceptionLogger.LogType := ltFile; // ltEventLog;
self.ExceptionLogger.FilePath := Self.ContentPath + 'Exceptions\';
self.ExceptionLogger.FileName := 'Exceptions.log';
self.ExceptionLogger.PurgeAfterDays := 1;
self.ExceptionLogger.Enabled := True;
|
|
|
|