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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 92,861
» Latest member: wwwbetbdtnet
» Forum threads: 2,419
» Forum posts: 11,358

Full Statistics

Online Users
There are currently 555 online users.
» 0 Member(s) | 552 Guest(s)
Applebot, Bing, Google

Latest Threads
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
6 hours ago
» Replies: 1
» Views: 16
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 423
VCL conversion
Forum: Delphi General Discussion
Last Post: marktuan
08-07-2026, 01:20 PM
» Replies: 0
» Views: 389
Looking for UI Design Tip...
Forum: Delphi General Discussion
Last Post: chrisjordon232
08-06-2026, 05:17 AM
» Replies: 0
» Views: 121
Simply convert PeerIp to ...
Forum: Indy
Last Post: DidierMenant
08-04-2026, 03:50 PM
» Replies: 2
» Views: 285
New CGDevTools build is a...
Forum: CGDevTools
Last Post: lfeliz
08-04-2026, 12:03 AM
» Replies: 2
» Views: 1,439
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: JuergenS
07-31-2026, 09:44 AM
» Replies: 6
» Views: 1,393
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: CharlieDunn
07-29-2026, 10:02 AM
» Replies: 3
» Views: 540
Datatables question
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-28-2026, 04:34 AM
» Replies: 2
» Views: 353
Intraweb components missi...
Forum: IntraWeb General Discussion
Last Post: valmeras
07-27-2026, 03:18 PM
» Replies: 3
» Views: 470

 
  IW 15.4.0 - 401 - Authentication Failed
Posted by: matija - 10-03-2023, 06:15 AM - Forum: IntraWeb General Discussion - Replies (4)

I install new IW. Run my app and then this message:

401 - Authentication Failed
Authentication Failed in
In order to go back to the previous page, please click the link below:

Click here to go back

If this condition persists, please report it to the administrator.


My IW:
Free updates until: Feb. 10, 2024
Build Date: Sep. 21, 2023
Edition: IntraWeb Ultimate Edition
IntraWeb Version: 15.4.0
64-bit Server

Only work 15.2.65!

Print this item

  IntraWeb in Lazarus??
Posted by: Alexandre Machado - 10-03-2023, 05:25 AM - Forum: IntraWeb General Discussion - No Replies

Yes, it works  Tongue

   

Still a long way to go, especially the design time support which won't be easy, but (almost) everything is working

Print this item

  False Positive Trojan warning major problems
Posted by: BartKindt - 10-02-2023, 07:02 PM - Forum: Delphi General Discussion - Replies (7)

I have several Free programs out for Search and Rescue , which keep showing up a "false positive" for some kind of virus.

As a result, in the last 6 months or so, it has become nearly impossible for people to install my programs.
Firefox blocks the installation package on download.
Microsoft windows 10 tries to block it with both an anti-virus system followed by a Certifcate problem (I have no certificate as I cannot afford the huge yearly fees).

Yesterday I got a panic call from a New Zealand Search and Rescue organisation, that suddenly on all their computers the main program litterally dissapeared while they where using it, including the Icon of the desktop. Right in the middle of a life-and-death Operation.

So, somewhere in my 250,000 lines of source code is something which generates a sequence of bytes in the Executable which triggens some anti-virus programs.

- How can I locate the exact position of this sequence in the executable?
- How can I somehow reverse engineer (de-compille) the executable to the point that I can then locate where in the Source code the problem is?

Bart

Print this item

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