| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 554 online users. » 0 Member(s) | 550 Guest(s) Applebot, Bing, Google, Yandex
|
| Latest Threads |
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
6 hours ago
» Replies: 1
» Views: 16
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 423
|
VCL conversion
Forum: Delphi General Discussion
Last Post: marktuan
08-07-2026, 01:20 PM
» Replies: 0
» Views: 389
|
Looking for UI Design Tip...
Forum: Delphi General Discussion
Last Post: chrisjordon232
08-06-2026, 05:17 AM
» Replies: 0
» Views: 121
|
Simply convert PeerIp to ...
Forum: Indy
Last Post: DidierMenant
08-04-2026, 03:50 PM
» Replies: 2
» Views: 285
|
New CGDevTools build is a...
Forum: CGDevTools
Last Post: lfeliz
08-04-2026, 12:03 AM
» Replies: 2
» Views: 1,439
|
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: JuergenS
07-31-2026, 09:44 AM
» Replies: 6
» Views: 1,393
|
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: CharlieDunn
07-29-2026, 10:02 AM
» Replies: 3
» Views: 540
|
Datatables question
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-28-2026, 04:34 AM
» Replies: 2
» Views: 353
|
Intraweb components missi...
Forum: IntraWeb General Discussion
Last Post: valmeras
07-27-2026, 03:18 PM
» Replies: 3
» Views: 470
|
|
|
| Not Thread Safe |
|
Posted by: CHMATT - 11-13-2023, 09:27 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
I created a standalone app using Delphi XE2 and Intraweb 12.2.37. The app functions properly with one user but when a second user is active, keystrokes from user one are affecting user 2 and windows messages intended for user one are displayed to user 2. Server app show 2 sessions. What am I missing?
|
|
|
| Screen Center |
|
Posted by: wmyhal - 11-11-2023, 03:55 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Is there a way to calculate the width of the browser so that I can set the left property of the iwlabel.
I'm trying to make sure the Label is in the horizontal center of the screen no mater what device is used?
Thanks
|
|
|
| TIWIndyHTTPClient.CustomHeaders value not included in request (v15.4.x) |
|
Posted by: brsoft - 11-10-2023, 09:13 AM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hi!
IWIndyHTTPClient does not insert the CustomHeaders value into the request as of Intraweb 15.4.x.
(This worked fine in version 15.3.12.)
Example: the 'Signature' parameter was not included in the sent request (v.15.4.2):
xHTTP := TIWIndyHTTPClient.Create;
xHTTP.CustomHeaders.Add( 'Signature:abcdef123456' );
xHTTP.Post( address, req, contenttype);
But it works fine with this code:
xHTTP:=TidHTTP.Create(nil);
xHTTP.Request.ContentType:=contenttype;
xHTTP.Request.CustomHeaders.Add( 'Signature:abcdef123456' );
response:=iHTTP.Post( address, req );
Will there be a fix for TIWIndyHTTPClient?
Best regards:
Robert
|
|
|
| Event OnClose for IW |
|
Posted by: matija - 11-06-2023, 12:36 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
I am looking for a solution like VCL Forms event OnClose for IWForm?
When i leave the IWform (change URL link) i want clear something objects I release my memory in browser.
I use THandlers where define URL link
|
|
|
| IWSelect - What is the trick |
|
Posted by: Lorbass - 10-31-2023, 10:16 AM - Forum: IntraWeb General Discussion
- Replies (7)
|
 |
Hi @all,
An IWSelect with SelectOption soServerSide works fine.
But how to set an initial/default item?
I tried with IWSelect.ItemIndex := IWSelect.Items.Add(AText) but without success.
Anyone has an solution for this?!
Thanks for hints in advance!
|
|
|
| TidIcmpClient.Ping emulation |
|
Posted by: Boba TC - 10-30-2023, 03:23 AM - Forum: Indy
- Replies (5)
|
 |
Seasonal greetings to y'all;
When I go to DOS prompt (a.k.a. Command Prompt) and run ping like this
Code: C:\Users\Boba> ping -4 10.76.201.171
the reply comes back OK:
Code: Pinging 10.76.201.171 with 32 bytes of data
Reply from 10.76.201.171: bytes=32 time=137 TTL=105
...
Ping statistics for 10.76.201.171:
...
but with Indy.10's TidIcmpClient:
Code: TidIcmpClient *pIcmpClient;
...
pIcmpClient->Host = "10.76.201.171";
pIcmpClient->RecieveTimeout = 4000;
pIcmpClient->Ping();
About 4 seconds later I get 0[zero] (TReplyStatusTypes::rsTimeOut).
What do I miss to mimic the DOS ping behaviour? TIA
|
|
|
| Maximum Concurrent Connections in ISAPI |
|
Posted by: ebob42 - 10-27-2023, 01:46 PM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Delphi says TWebRequestHandler.MaxConnection is 32, which means 32 requests can be handled concurrently (of course, more client sessions can exist, but only 32 of them can be concurrently active and being processed).
Does this also account for IntraWeb? The maxmum number of sessions is very high (thousands, at least), but can we "only" have 32 concurrent active sessions being processed in ISAPI DLLs?
|
|
|
|