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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 91,635
» Latest member: lc8868vipcom0
» Forum threads: 2,418
» Forum posts: 11,355

Full Statistics

Online Users
There are currently 971 online users.
» 1 Member(s) | 966 Guest(s)
Applebot, Bing, Google, Yandex, lc8868vipcom0

Latest Threads
How to terminate HTTP Thr...
Forum: Indy
Last Post: hamstring
Yesterday, 05:14 AM
» Replies: 4
» Views: 310
VCL conversion
Forum: Delphi General Discussion
Last Post: marktuan
08-07-2026, 01:20 PM
» Replies: 0
» Views: 367
Looking for UI Design Tip...
Forum: Delphi General Discussion
Last Post: chrisjordon232
08-06-2026, 05:17 AM
» Replies: 0
» Views: 86
Simply convert PeerIp to ...
Forum: Indy
Last Post: DidierMenant
08-04-2026, 03:50 PM
» Replies: 2
» Views: 248
New CGDevTools build is a...
Forum: CGDevTools
Last Post: lfeliz
08-04-2026, 12:03 AM
» Replies: 2
» Views: 1,409
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: JuergenS
07-31-2026, 09:44 AM
» Replies: 6
» Views: 1,313
Datatables question
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-28-2026, 04:34 AM
» Replies: 2
» Views: 304
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: CharlieDunn
07-27-2026, 08:27 PM
» Replies: 1
» Views: 487
Intraweb components missi...
Forum: IntraWeb General Discussion
Last Post: valmeras
07-27-2026, 03:18 PM
» Replies: 3
» Views: 432
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
07-17-2026, 05:18 PM
» Replies: 6
» Views: 4,925

 
  how to show datalabel in iwchartjs
Posted by: cyrus.mombaini - 11-26-2023, 01:00 PM - Forum: IntraWeb General Discussion - Replies (1)

how to show datalabel in iwchartjs

Print this item

  IW v15.5.x - error in design mode
Posted by: brsoft - 11-26-2023, 10:21 AM - Forum: IntraWeb General Discussion - Replies (6)

Hi Alexandre!

Parameters: Delphi v11.3, IntraWeb v15.5.x

In IWForm design, deleting the IWRegion creates a system error (attached video)
This works fine with Intraweb v15.4.2.

Can you help me in this?

Best regards:
Robert



Attached Files Thumbnail(s)
   

.zip   demoproject.zip (Size: 6.86 KB / Downloads: 3)
.zip   screenvideo.zip (Size: 271.22 KB / Downloads: 3)
Print this item

  Error on send https.post with certificate
Posted by: Jose Antonio Begines - 11-25-2023, 12:32 PM - Forum: Indy - Replies (2)

Good morning, when trying to make an https.post request with a certificate, I get the error: 
EIdOSSLLoadingKeyError with message: 'could not load key, check password. error: 0B080074:x509 certificate routines:X509_check_private_key:key values mismatch'.

My code is:
  data := TIdMultiPartFormDataStream.Create;
  http := TIdHTTP.Create;
  IdSSLIOHandler := TIdSSLIOHandlerSocketOpenSSL.Create;
  try
    IdSSLIOHandler.SSLOptions.SSLVersions := [sslvTLSv1, sslvTLSv1_1, sslvTLSv1_2];
    IdSSLIOHandler.SSLOptions.Mode := sslmClient;
    IdSSLIOHandler.SSLOptions.Method := sslvSSLv23;
    IdSSLIOHandler.SSLOptions.CertFile := 'certificado.pem';
    IdSSLIOHandler.SSLOptions.KeyFile := 'claveprivada.pem';

    IdSSLIOHandler.OnStatusInfoEx := IdSSLIOHandlerSocketOpenSSL1StatusInfoEx;
    http.IOHandler := IdSSLIOHandler;

    http.Request.ContentEncoding := 'utf-8';
    http.Request.ContentType := 'application/xml';
    http.Request.CharSet := 'utf-8';

    data.AddFile('UploadedXml', 'File.xml', '');
    try
      queRespuesta := http.Post('https://xxxxxxx', data);

    except
      on e:Exception do begin
        ShowMessage(e.Message);
      end;
    end;

  finally
    http.Disconnect;
    http.Free;
    data.Free;
    IdSSLIOHandler.Free;
  end;


Thanks for the help.

Print this item

  time-out has occurred within IWGridDataTables
Posted by: Zee Khan - 11-25-2023, 02:16 AM - Forum: IntraWeb General Discussion - No Replies

I am just running the demo IWGridDataTables in SA. Builds fine. Start the exe using Administrator. When I access it thourough the browser I get 

"Application time-out A time-out has occurred within IWGridDataTables"

This occurs with all http.sys demos.

IWGridDataTables Demo Application (Http.sys - x64)

Edition: IntraWeb Ultimate Edition
Build Date: Nov 22, 2023
IntraWeb Version: 15.5.0
64-bit Server
HTTP Server is active on port: 80

OS is Windows 10, Disabled AV. 

Print this item

  IntraWeb 15.5.1 is out!
Posted by: Alexandre Machado - 11-24-2023, 11:05 PM - Forum: IntraWeb General Discussion - No Replies

Hi guys,

There is a new update available:

https://www.atozed.com/2023/11/intraweb-15-5-1/

It fixes some important things, such as: C++Builder registration for RS12 Athens, ASPX deployment libraries and a memory leak in TIWDataModulePool.

Enjoy!  Big Grin

Print this item

Question Async refreshing data table plug-in
Posted by: David1 - 11-23-2023, 03:22 PM - Forum: IntraWeb General Discussion - Replies (1)

Hello,
I am using a data table plug-in from DataTables in my IW app.
I would like to call the reload method inside a TIWButton async click event.

Now I wrote the following code which work fine in non async event:

  FOrder.ExcludeShippingCost := not FOrder.ExcludeShippingCost;
  if (FOrder.ExcludeShippingCost) then
    EXCLUDESHIPPINGCOSTBUTTON.Caption := 'Add shipping'
  else
    EXCLUDESHIPPINGCOSTBUTTON.Caption := 'Remove shipping';
  WebApplication.CallBackResponse..AddJavaScriptToExecute('$(''#' + FDataTableId + ''').DataTable().ajax.reload();');


In async event the above code don't work (probably cause the event is already async).
How can I call the javascript function in async click event?

Thank you,
Davide

Print this item

Wink IW14 ISAPI Deploy to IIS (Delphi 10.2)
Posted by: aboldi - 11-22-2023, 11:01 AM - Forum: IntraWeb General Discussion - No Replies

We have an intranet application, written in Delphi2010 and Intraweb11 (ISAPI DLL, 32bit).
It’s running on Windows Server 2019 v1809 with IIS 10.0.17763.1.
 
We tried to upgrade it to Delphi 10.2 (Tokyo) with Intraweb 14 (also ISAPI DLL, 32bit).
The standalone version works fine.
 
But the DLL on the server gives an error message : „HTTP Error 500.0 – ISAPI is not available in your licence.” -- see attached image.
 
When we tried a very basic Intraweb application (as the wizard generated it – no other code added), that still gives us the same error message


What can we do?



Attached Files Thumbnail(s)
   
Print this item

  IntraWeb 15.5.0 with Delphi 12 support is out!
Posted by: Alexandre Machado - 11-22-2023, 05:55 AM - Forum: IntraWeb General Discussion - Replies (9)

Hi guys,

a new major update of our IntraWeb 15 version, now including Delphi and C++Builder 12 support:

https://www.atozed.com/2023/11/intraweb-15-5-0/

I'm also particularly happy to announce that our runtime code is now 100% compatible with FreePascal and Lazarus. Many of our applications have been already built with Lazarus/FPC and tested thoroughly. Results are excellent  Smile

PS: This version can't be installed in Lazarus yet. There are some missing bits, more specifically the design time support which will take a little more time.

PS2: There is a new IWServerMonitor version as well: https://www.atozed.com/intraweb/iw-server-monitor/

There are also some othere really cool new things in this version...

Enjoy!  Big Grin

Print this item

  Limit browser version
Posted by: mhammady - 11-17-2023, 04:38 PM - Forum: IntraWeb General Discussion - Replies (6)

Hi,

I'm building an app that requires the latest versions of browsers to be used. I found that IW support for the browser can be very forgiving, e.g., the app has to use Firefox v110 or newer, but IW can accept as old as 65.

Is there a way to limit the browser support?

I tried IWServerControllerBaseBrowserCheck to get the browser version, but I could not terminate the session as this event

Code:
procedure TIWServerController.IWServerControllerBaseBrowserCheck(
  aSession: TIWApplication; var rBrowser: TBrowser);
  var MinVersion: single;
  const _BrowserMinFirefox = 110;
        _sTerminateMin = ' min version is ';
begin
  if (rBrowser.BrowserName = 'Firefox') and (rBrowser.Version < _BrowserMinFirefox) then
    WebApplication.Terminate(rBrowser.BrowserName+_sTerminateMin+IntToStr(_BrowserMinFirefox)); //<-- Error here
end;



Thank you

Print this item

  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