| Welcome, Guest |
You have to register before you can post on our site.
|
| 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.
|
|
|
| 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.
|
|
|
| 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
|
|
|
| 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
|
|
|
|