Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 92,861
» Latest member: wwwbetbdtnet
» Forum threads: 2,419
» Forum posts: 11,358

Full Statistics

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

 
  Intraweb component for automatic phone calls on mobile devices (Priority support)
Posted by: valmeras - 11-15-2023, 08:45 PM - Forum: IntraWeb General Discussion - Replies (1)

I am using C++ Nuilder 10.2 with Intraweb 15.4.2
With Intraweb XI, TMS Sofwtare had components like TIWiPhonePhonelabel to make automatic phone calls on iPhone based on Dr Bob document.
I would like to know if Intraweb has a component which can be used for similar purpose: send SMS and make automatic phone calls on mobile devices ?

Print this item

  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?

Print this item

  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

Print this item

  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

Print this item

  RAD Studio 12 Support
Posted by: ategus - 11-09-2023, 07:43 PM - Forum: IntraWeb General Discussion - Replies (4)

How can I install the latest IW release (15.4.2) into RAD Studio 12 Athens?

Print this item

  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

Print this item

  UTF8 Problem since switch iw15.2.53 to iw15.4.2
Posted by: Victoria - 10-31-2023, 04:01 PM - Forum: IntraWeb General Discussion - Replies (3)

Hello,
i discover a new Problem which appears nows.
Explaining is simple. I like to use UTF8 Symbols for some Buttons.
But in new Version he Translates now everything to questionmark.
Can you check please what is going wrong?

Demopicture:
   


with friendly regards
Victoria

Print this item

  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!

Print this item

  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

Print this item

  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?

Print this item