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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 98,078
» Latest member: nohu90scoza
» Forum threads: 2,426
» Forum posts: 11,371

Full Statistics

Online Users
There are currently 1397 online users.
» 6 Member(s) | 1388 Guest(s)
Applebot, Bing, Google, betzillopokiesonline, e39gamecom, hm88actor1, nohu90scoza, onlinegamingmycom, rlebeau

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?

Print this item

  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

Print this item

  Switching to a calculated link
Posted by: Сергей Александрович - 12-03-2022, 05:10 PM - Forum: IntraWeb General Discussion - Replies (1)

During the operation of the program, the text of the link is formed, which you need to direct the user to.

procedure GoToLink;
var
mLink : String;
begin          
          mLink := CreateLink(mParameters);
          ???
end;

Please tell me how to do it?

Print this item

Bug Indy documentation doen't available
Posted by: -zio3d- - 12-02-2022, 10:06 AM - Forum: Indy - Replies (2)

I point out that on the documentation page "https://www.indyproject.org/documentation/" the download links do not work, for example "http://ww2.indyproject.org/downloads/IndyDocs_10.1.5.0_HtmlHelp.7z" (DNS_PROBE_FINISHED_NXDOMAIN).

Am I doing something wrong?
Thanks

Print this item

  listening for windows messages in HttpSys service
Posted by: iwuser - 12-02-2022, 03:16 AM - Forum: IntraWeb General Discussion - No Replies

I've just realised that in HttpSys services, there are no Applications, and no Windows forms, therefore no way to listen for any windows messages. There are even no TService descendants.

Has anybody else run into this? What did you do?

Print this item

  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

Print this item

  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.

Print this item

  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;

Print this item

  IWAppFormResize not updating properties
Posted by: Lenfors - 11-29-2022, 02:31 PM - Forum: IntraWeb General Discussion - No Replies

Hello!

I put a TIWButton on a form. In the IWAppFormResize event I execute:

Procedure TScreenInterfaceForm.IWAppFormResize(Sender: TObject);
Begin
   IWButton13.Caption := FormatDateTime('hh:nnConfuseds', Now);
End;


When I'm resizing the form nothing changes on the button even as I can see that the event is executed!? 

But if I add a click event to the button and execute the same code it is updated.

procedure TScreenInterfaceForm.IWButton13Click(Sender: TObject);
begin
IWButton13.Caption := FormatDateTime('hh:nnConfuseds', Now);
end;


Whats the difference? Why does changed to properties not reflect on screen? Do I have to invalidate or refresh for changes to be sent to screen?

Best regards, Mikael


I also tried to solve this with a timer:

Procedure TScreenInterfaceForm.IWAppFormResize(Sender: TObject);
Begin
   IWTimer1.Enabled := True;
End;

procedure TScreenInterfaceForm.IWTimer1Timer(Sender: TObject);
begin
   IWTimer1.Enabled := False;
   IWButton13.Caption := FormatDateTime('hh:nnConfuseds', Now);
end;

The strange thing is that  "IWTimer1.Enabled := True;"  is executed, but the timer event never fires!?

Why? I'm so fustrated over IntraWeb.....

Best regards, Mikael

Print this item

  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

Print this item