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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 97,484
» Latest member: icm88com001
» Forum threads: 2,426
» Forum posts: 11,371

Full Statistics

Online Users
There are currently 1005 online users.
» 2 Member(s) | 1000 Guest(s)
Applebot, Bing, Google, icm88com001, pertheparttu1983

Latest Threads
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
Yesterday, 09:49 PM
» Replies: 1
» Views: 116
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 112
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 123
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 406
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 207
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 568
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 199
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,150
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 328
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 939

 
  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

  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