| 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
09-11-2026, 09:49 PM
» Replies: 1
» Views: 181
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 148
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 163
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 469
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 237
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 638
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 224
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,238
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 356
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 980
|
|
|
| Client Certificate in a HttpSys server |
|
Posted by: iwuser - 12-06-2022, 05:16 AM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
Under IIS/ISAPI, this worked for me practically out of the box. But with HttpSys I do not seem to be getting any client certificate data.
1) Certificate installation IW app does not enable "clientcertnegotiation" httpsys parameter, which is off by default, so one has to manually run "netsh http update sslcert [...]" command in powershell to enable it. DONE!
2) Then you need to add ServerVariables.Add commands in BaseConfig. DONE!
3) And finally read the data using WebApplication.Request.GetServerVariableValue in the form event. DONE!
The client browser does get a prompt and confirms it, so the server must be asking for it. But the data read back is empty.
I suspect this may just be an omission in the IW httpsys implementation.
Is anyone doing this? Is it working for you? Have I missed anything?
|
|
|
| Running IW 8 Application Windows Server 2019 |
|
Posted by: dmillam - 12-05-2022, 08:26 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
We have a application written in Delphi 2007 with IntraWeb 8. We are trying to deploy it on a web server running Windows Server 2019. The application appears to work at first. But after a short time and with a few users accessing, we appear to start to have application errors occurring when the application attempts to access Session data from IWApplication.SessionsList. I'm wondering if anyone has ever successfully deployed an IW 8 Application on a server running Windows Server 2019?
Thanks for any help anyone can provide.
Dean
|
|
|
| IW15: Access violation when access public declared variable in UserSession |
|
Posted by: mhammady - 11-30-2022, 03:26 AM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hi,
I have many variables declared as public variables in the UserSession. It is used to keep session-specific variables. They can be accessed fine within the UserSession unit, other procedures and functions can be accessed as well, but I'm getting an "Access violation" when trying to read any of these variables from another unit.
This was working fine in IW14, but not after migration to IW15
Any idea what is going wrong here?
Thank you
|
|
|
| Intraweb using HTTPS |
|
Posted by: robhercarloz - 11-29-2022, 09:35 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
I've recently purchased the ultimate version of intraweb 15 to be able to use the HTTPS feature, but have not been able to successfully get it to work. I have tried doing what the StandAloneSSL Demo has done but still no luck. The error message that I get is "EidOSSLLoadingCertError with message 'Could not load certificate. error: 00000000:lib(0):func(0):reason(0)'."
- I have my 3 PEM files(cert.pem, root.pem, key.pem) and my 2 SLL .dll files(libeay32.dll, ssleay32.dll) in the same directory as my .exe file.
- I have set the SSL PORT in ServerController properties to 443
- I have set ConnectionMode to cmSecure in Main.dfm file(The only page for my site).
And still nothing. Could Someone please help me with step-by-step instructions on how to correctly implement the usage of https instead of http.
Thank you! All the help I can get is really appreciated.
|
|
|
| Get active sessions list IW15 |
|
Posted by: mhammady - 11-29-2022, 08:26 PM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
I recently upgraded to IW15.2.65
What is the proper way to get a list of the active sessions?
In IW14.x the following code was OK, but the GSession is not the same in IW15
Code: LSessions:=GSessions.LockList;
try
for i := 0 to (LSessions.Count-1) do
begin
LSession:=LSessions[i];
LSession.Lock;
try
Result := Result + '|' + TIWUserSession(LSession.Data).gSessionID;
finally
LSession.Unlock;
LSession:=nil;
end;
end;
finally
GSessions.UnLockList(LSessions);
end;
|
|
|
| TIWTabControl TabHeight, TabPadding and TabRowHeight |
|
Posted by: Lenfors - 11-29-2022, 01:39 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hello!
Having problems to figure out the relation between TabHeight, TabPadding and TabRowHeight in the TIWTabControl.
I want to set the TIWTabControl.ActiveTabFont.Size to soething dependent of my current scereen size, Eg. 16.
I figured out setting the TIWTabControl.TabPadding to (ActiveTabFont.Size Div 4) looks nice.
Then I set TIWTabControl.TabHeight to Round(ActiveTabFont.Size * 1.5)
The problem is, how do I now calculate a value for TIWTabControl.TabRowHeight? There must be some relation between these parameters!
Best regards, Mikael
|
|
|
|