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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 97,065
» Latest member: b4betmyr
» Forum threads: 2,426
» Forum posts: 11,370

Full Statistics

Online Users
There are currently 778 online users.
» 3 Member(s) | 771 Guest(s)
Applebot, Bing, Google, Yandex, b4betmyr, mahkotatravel, SpeakSay

Latest Threads
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
Yesterday, 03:02 AM
» Replies: 0
» Views: 72
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 69
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 81
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 345
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 173
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 527
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 171
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,068
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 305
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 868

 
  AddRootHandler doesn't work in IW 16.
Posted by: freshslo - 05-15-2025, 11:45 AM - Forum: IntraWeb General Discussion - No Replies

Hello,

Why in IW16 doesn't work any more AddRootHandler??? It just closes the application when reach to this point.


procedure TIWServerController.IWServerControllerBaseConfig(Sender: TObject);
var FormHandler: TContentForm;
begin
  Self.RewriteURL := '/';

  TIWMimeTypes.RegisterType('.html', MIME_HTML, True);

  RegisterContentType('application/json');

  FormHandler := TContentForm.Create(TIWMainform);
  FormHandler.CanStartSession := true;
  FormHandler.RequiresSessionStart := true;
  THandlers.AddRootHandler('', '/', FormHandler);

  FormHandler := TContentForm.Create(TIWCheckout);
  FormHandler.CanStartSession := false;
  FormHandler.RequiresSessionStart := false;
  THandlers.Add('', '/checkout', FormHandler);

Print this item

  IntraWeb 16.0.10 is out!
Posted by: Alexandre Machado - 05-13-2025, 08:57 AM - Forum: IntraWeb General Discussion - No Replies

Ever wanted to have all your IWGrids/IWDBGrids rendered using DataTables styles with 1 click and zero code?

Now you got it:

https://www.atozed.com/2025/05/16-0-10-h/

Enjoy!  Big Grin

Print this item

  openssl version for aplication https
Posted by: masterlaf - 04-30-2025, 01:19 PM - Forum: IntraWeb General Discussion - Replies (3)

Good morning

Along with greetings, my question is, to work with Intraweb and have an app, standalone Indy or standalone http.sys, what version of Openssl do you use? I have Intraweb version 16.0.8, please.

Thank you, sincerely.

Pascual Aguayo

Print this item

  C++ Builder 12 Error After Install of IntraWeb
Posted by: deridan - 04-22-2025, 11:37 PM - Forum: IntraWeb General Discussion - Replies (5)

Hello All,

After installing IntraWeb 16.0.9, I am getting the attached error message when starting an IntraWeb application for 
C++ Builder 12 Community Edition

I installed it for Delphi 12 Community Edition and had no issues.

Error: LibDeflate in C++ Builder requires external IWLibDeflate.dll

Any ideas?



Attached Files Thumbnail(s)
   
Print this item

  Can't use components on mainform from usersession
Posted by: freshslo - 04-22-2025, 11:32 AM - Forum: IntraWeb General Discussion - No Replies

Hello,

Why I can't use components which are on IWMainform from usersession unit?

I have IWMainform which is mainfrm.pas and mainfrm.dfm. Then I place IWLabel on IWMainform.

Then I open Usersession unit and I create procedure:

uses mainfrm;

Procedure IWUsersession.BLA;
begin
  IWMainform.IWLabel1.caption:='blabla';   <<< Here i got error Undeclared identifier 'IWMainform' ??
end;

I use latest version 16.0.9

Print this item

  IntraWeb 16.0.9 is out!
Posted by: Alexandre Machado - 04-22-2025, 03:58 AM - Forum: IntraWeb General Discussion - No Replies

Hi guys,

there is a new update available with many interesting new features + more fixes.

https://www.atozed.com/2025/04/intraweb-16-0-9/

Enjoy!  Big Grin

Print this item

  OAuth Callback URI for IntraWeb 15 Stand‑Alone (SA) – confirmation needed
Posted by: giorgio_c - 04-21-2025, 03:33 PM - Forum: IntraWeb General Discussion - No Replies

Hi everyone,
I’m integrating the new OAuth engine in IntraWeb 15 into a stand‑alone application that runs locally at http://localhost:8888.
I couldn’t find the required redirect/callback URI in either the shipped OAuth demo or the official documentation.
After a fair bit of digging — and with the help of a couple of LLMs — I arrived at this URI: http://localhost:8888/$/oauth/v2
Before I proceed, could someone please confirm that this is indeed the correct endpoint for SA (Indy) deployments?

Also, if I later switch to ISAPI/http.sys, am I right in thinking the URI would simply include the DLL name, e.g.

Code:
https://mysite.com/MyApp.dll/$/oauth/v2
?
Suggestion: Given how crucial this information is, it would be great to have it clearly stated in the docs and/or demo comments. I wasn’t able to locate it there and only surfaced it after quite a bit of trial‑and‑error.
Thanks in advance for the clarification!

After attempt I successfully can run the demo using: http://localhost:8888/$/oauth/v2

Print this item

  Problem with https
Posted by: Stéphane Aquilina - 04-18-2025, 03:44 PM - Forum: IntraWeb General Discussion - No Replies

Hello,

I'm using Intraweb 15.2.26.
I'm trying to switch my Intraweb project to HTTPS.
To do this, I'm following the instructions in the IndyHttpsDemo project step by step.
When I send an HTTPS request to my modified site, I get the following message:
"Timeout exceeded.

The server at 127.0.0.1 is taking too long to respond.

The site may be temporarily unavailable or overloaded. Try again later.

If you can't browse any sites, check your computer's network connection.

If your computer or network is behind a firewall or proxy, make sure Firefox is allowed to access the web."

Do you know what could be causing the problem?

Thanks, Stéphane

Print this item

  CrossTalk 2.0.36 is available
Posted by: Alexandre Machado - 04-11-2025, 09:57 PM - Forum: CrossTalk General Discussion - No Replies

Hi guys,

there is a new update available for CrossTalk:

https://www.atozed.com/2025/04/crosstalk-2-0-36/

Several important bug fixes

Enjoy!  Big Grin

Print this item

  FastMM4 & C++Builder 11.3 & IntraWeb 15.6.7
Posted by: StephanM - 04-11-2025, 09:41 PM - Forum: IntraWeb General Discussion - Replies (3)

Has anyone successfully used FastMM4 with C++Builder 11.3 and IntraWeb 15.6.7 (or even IW 16)?

I followed the instructions in FastMM4BCB.cpp. I get many compiler errors, like these:


[bcc32 Error] typeinfo.h(154): E2367 Can't inherit RTTI class from non-RTTI base 'exception'
    typeinfo.h(154): class  bad_cast : public std::exception {};

[bcc32 Error] xlocale(670): E2238 Multiple declaration for 'codecvt<char16_t,char,int>::in(int &,const char *,const char *,const char * &,char16_t *,char16_t *,char16_t * &) const'
    xlocale(667): 
result  in(_Statype& _State,

const _Byte *_First1, const _Byte *_Last1, const _Byte *& _Mid1,
_Elem *_First2, _Elem *_Last2, _Elem *& _Mid2) const
{ // convert bytes [_First1, _Last1) to [_First2, _Last)
return (do_in(_State,
_First1, _Last1, _Mid1, _First2, _Last2, _Mid2));
}



Any advice?

Print this item