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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 97,495
» Latest member: rr88senett
» Forum threads: 2,426
» Forum posts: 11,371

Full Statistics

Online Users
There are currently 1431 online users.
» 1 Member(s) | 1426 Guest(s)
Applebot, Bing, Google, Yandex, rr88senett

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

 
Question IW 15.4.0 and TLS etc
Posted by: rudyPos - 09-29-2023, 04:01 PM - Forum: IntraWeb General Discussion - Replies (23)

I have an application in 15.3.11 working in HTTP and HTTPS. Still working

I just started to use 15.4.0 in the exact same environment for TLS 1.0 environment. ssl1_0
HTTP is ok, but using HTTPS it 'times' out.

I have not yet downloaded or tested TLS 1.1 ssl1_1

Please advise
Thanks in advance

If I try ssl1_1 I get what I expected - unable to load the library, because i do not have it. Huh

Print this item

  WebApplication.ShowNotification BGColor
Posted by: Comograma - 09-29-2023, 03:38 PM - Forum: IntraWeb General Discussion - No Replies

Is it possible to change WebApplication.ShowNotification background color?
I know that the background color changes accordingly the AType parameter (2nd parameter passed to the function). 
Is it possible to override this?

Print this item

  Changing the Modalresult of a button on close
Posted by: BartKindt - 09-26-2023, 08:25 PM - Forum: Delphi General Discussion - Replies (3)

I feel stupid to have to ask this after all these years programming, but I never got this properly sorted out.

I have a Form which is opened with ShowModal.
There is a Cancel button and an OK button.
The Modalresult Cancel button is set at design time to mrCancel.

But the Modalresult of the OK botton cannot be set to mrOK because I need to be able to break out of it, and let the user correct all invalid settings on the form.
So:

OkBtn.Modelresult = mrNone;

Form.OkBtnClick();
begin
  if SomethingWrong then
  begin
     ShowMessage(Fix it!);
     OkBtn.Modelresult := mrNone;
     exit; // Form should NOT close
  end else
  begin
     All okay, Close Form with Modalresult mrOK;
     OkBtn.Modelresult := mrOK; // Nothing happens...
     Form.Modalresult := mrOK; // has no effect
     CLose; // Does NOT close with mrOK.
  end;

This does not work.
What is the correct way to deal with a Modal form in such a way that the final Modalresult is mrOK but while still working it is possible to intercept the OKBtn from closing the form?

Print this item

  HTML5 segment read/write with Async at runtime
Posted by: mhammady - 09-26-2023, 04:17 PM - Forum: IntraWeb General Discussion - No Replies

Hi,

I tried to find an answer to this question without success, so I apologize if it was duplicated.

I need to read and write at runtime (with async) into HTML5 segments as DIV using its ID, e.g.


Code:
    <div id="myArea" class="content">
       This is what I want to inject and be able to read
    </div>

Thank you...

Print this item

  Indy reverse DNS lookup IP4
Posted by: BartKindt - 09-25-2023, 06:48 PM - Forum: Indy - Replies (2)

I am getting lots of attemps to login to my server. I have the IP address, but would like to display in the Debug Log the reverse DNS name of the offending IP.
I just found the IdDNSResolver, but cannot seem to find an example of a reverse DNS looklup (IP4).

Thanks

Print this item

  TIWButton.Image bug
Posted by: RenSword - 09-25-2023, 04:56 AM - Forum: IntraWeb General Discussion - Replies (3)

When using TIWButton.Image.WebFontClass to create icon button, adjusting some property of the button (Css, Visible, Enabled) asynchronously will make the icon disappear.
To replay, create a IW project
1) In IWAppForm, add font awesome to contentFile (https://cdnjs.cloudflare.com/ajax/libs/f...me.min.css).
2) Add 2 TIWbutton.
3) 1st button set TIWButton.Image.WebFontClass to 'fa fa-plus'.
4) 2nd button create OnAsyncClick Event.

Code:
procedure TIWForm1.btnBugAsyncClick(Sender: TObject; EventParams: TStringList);
begin
// TIWControlImage for icon button break if change any of the below one in async
  btnIcon.Css := 'test';
//  btnIcon.Visible := not btnIcon.Visible;
//  btnIcon.Enabled := not btnIcon.Enabled;
end;
- For sample attached (IWButtonBug.zip), click on bug button to replay the issue



Attached Files
.zip   IWButtonBug.zip (Size: 7.42 KB / Downloads: 2)
Print this item

  What we've been cooking in our labs?
Posted by: Alexandre Machado - 09-22-2023, 08:07 AM - Forum: IntraWeb General Discussion - Replies (2)

Please, don't tell anyone 

   

Angel

Print this item

  Rename Service Name
Posted by: svenheuer - 09-21-2023, 06:44 PM - Forum: IntraWeb General Discussion - Replies (6)

Hi,

I knew, there was an old discussion about this. 

On a server farm I want to install several intraWeb server (for load balancing). The app should running as a service on each server as

Node.1 - using port 81
Node.2 - using port 82


Each has it own folder and should have the service name node.1, node.2 The config should be read out a ini file.

Running as stand alone work nice but as a service seemed to complicated.

in IWServerControllerBaseConfig i try

AppName := inifile('main', 'nodename', 'node');

but nothing happen. Appname /install - nothing happens (exception?). If I remove the line I can install the service

What would be the right way to install as service with different service name?

Thanks
Sven

Print this item

  IntraWeb 15.4.0 está aqui!
Posted by: Alexandre Machado - 09-21-2023, 08:41 AM - Forum: IntraWeb Dúvidas Gerais - No Replies

Olá devs

temos o orgulho de anunciar a nova versão do IntraWeb 15.4.0

https://www.atozed.com/2023/09/intraweb-15-4-0/

Entre outras coisas, traz o novo Indy, compatível com OpenSSL 1.1.1, que usa HTTPS com TLS 1.3. Sim, somos os primeiros  Big Grin

As aplicações IW com o novo servidor Indy + OpenSSL 1.1.1 obtiveram:

Pontuação "A" nos testes https://www.ssllabs.com/ssltest
Pontuação "A" nos testes https://www.immuniweb.com/ssl/

Além disso, o novo servidor Indy foi ajustado para o IntraWeb, e apresentou aumento de desempenho de 20 a 25% em relação à versão anterior

Excepcionalmente, por um período de 30 dias, ofereceremos a todos os clientes IntraWeb com licença IntraWeb paga o mesmo desconto que oferecemos para renovação de assinatura, independente da data de vencimento da assinatura anterior. Nós realmente queremos que todos os clientes IntraWeb atualizem seus aplicativos IW e comecem a usar HTTPS/TLS 1.3 e, como bônus, obtenham um aumento de desempenho de 25%  Shy

Se precisar de qualquer outra informação, basta me enviar um e-mail (alexandre at atozed . com)

Enjoy! [Image: biggrin.png]

Print this item

  IntraWeb 15.4.0 is here!
Posted by: Alexandre Machado - 09-21-2023, 08:28 AM - Forum: IntraWeb General Discussion - No Replies

Hi guys,

we are proud to announce the new IntraWeb 15.4.0 version

https://www.atozed.com/2023/09/intraweb-15-4-0/

Among other things, it brings the new Indy branch, compatible with OpenSSL 1.1.1, that can handle HTTPS using TLS 1.3. Yes, we are the first  Big Grin

IW applications built with the new Indy server + OpenSSL 1.1.1 got, out of the box:


Besides that, the new Indy server has been tweaked for IntraWeb, and showed 20 to 25% performance increase compared to previous version

Exceptionally, for a period of 30 days, we will be offering to all IntraWeb customers with a paid IntraWeb license the same discount that we offer for subscription renewal, regardless of the subscription expiration date. We really want that all existing IntraWeb customers update their IW applications and start using HTTPS/TLS 1.3 and, as a bonus, get a 25% performance increase  Shy

If you need any other information, just drop me an email (alexandre at atozed dot com)

Enjoy!  Big Grin

Print this item