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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 34,132
» Latest member: mrvlbtcom
» Forum threads: 2,323
» Forum posts: 11,057

Full Statistics

Online Users
There are currently 147 online users.
» 1 Member(s) | 142 Guest(s)
Applebot, Bing, Google, Yandex, mrvlbtcom

Latest Threads
overriding session creati...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
Yesterday, 04:23 AM
» Replies: 1
» Views: 98
TIWFileUploader with 500 ...
Forum: IntraWeb General Discussion
Last Post: Airlizard
Yesterday, 03:54 AM
» Replies: 3
» Views: 116
Problem with sendfile in ...
Forum: Delphi General Discussion
Last Post: rozedecay
Yesterday, 02:06 AM
» Replies: 0
» Views: 538
Standalone to ISAPI
Forum: IntraWeb General Discussion
Last Post: deridan
06-10-2025, 01:11 AM
» Replies: 2
» Views: 81
TIWIPGeolocationClient::E...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
06-09-2025, 09:05 AM
» Replies: 9
» Views: 450
IntraWeb 16.0.11 is out!
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
06-09-2025, 09:00 AM
» Replies: 0
» Views: 79
Atozed site is down
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
06-08-2025, 08:44 PM
» Replies: 2
» Views: 155
Unable to download Intraw...
Forum: IntraWeb General Discussion
Last Post: dbrain23
06-04-2025, 02:02 AM
» Replies: 9
» Views: 408
Web Cache (JavaScript, PN...
Forum: IntraWeb General Discussion
Last Post: s.noel
05-28-2025, 09:37 AM
» Replies: 0
» Views: 128
C++ Builder 12 Error Afte...
Forum: IntraWeb General Discussion
Last Post: rlebeau
05-21-2025, 04:57 PM
» Replies: 5
» Views: 774

 
  IW 14 on Win11 - Install und Uninstall Problems/Errors
Posted by: berni123 - 03-06-2025, 08:46 AM - Forum: IntraWeb General Discussion - Replies (1)

Hi,

recently installed RAD Studio XE4 and upgraded to IW 14 with bundled key on new Windows 11.
Problem: after cleaning up the bundled with removal tool as usual and installed iw14.2.13.exe
in RAD Studio there are no IW-Tool. No Paths are set. No Modules available. So something must be wrong.
The file Registration.log showed successfull messages but no IW in RAD at all.

Code:
- Validating license
License validated
License written to registry
Checking if Gtk2Hs\bin dir is already on the %PATH%
HKCU\Environment\PATH = %USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
Looking for application\bin dir in %PATH%: C:\dev\IntraWeb XIV\bin in %USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
Did not find application\bin dir in %PATH% so will add it
- UpdateSearchPathOnRegistry
Reading registry: Software\Embarcadero\BDS\11.0\Library\Win32
Updating registry: adding C:\dev\IntraWeb XIV\Libxe4W32 to Search Path
- UpdateSearchPathOnRegistry
Reading registry: Software\Embarcadero\BDS\11.0\Library\Win64
Updating registry: adding C:\dev\IntraWeb XIV\Libxe4W64 to Search Path
- UpdateGlobalsOnRegistry
SOFTWARE\Embarcadero\BDS\11.0\Globals - ForceEnvOptionsUpdate
- UpdateCPPPathsOnRegistry
Reading registry: Software\Embarcadero\BDS\11.0\C++\Paths\Win32
Updating registry: adding C:\dev\IntraWeb XIV\Libxe4W32 to Search Path
Updating registry: adding C:\dev\IntraWeb XIV\Libxe4W32 to Search Path
- UpdateCPPPathsOnRegistry
Reading registry: Software\Embarcadero\BDS\11.0\C++\Paths\Win64
Updating registry: adding C:\dev\IntraWeb XIV\Libxe4W64 to Search Path
Updating registry: adding C:\dev\IntraWeb XIV\Libxe4W64 to Search Path
- RegisterDesignTimePackage
Removing old IntraWeb Design Packages registration on: HKCU Software\Embarcadero\BDS\11.0
Updating registry: Software\Embarcadero\BDS\11.0\Known Packages adding C:\dev\IntraWeb XIV\Bin\dclIntraweb_14_DXE4.bpl
- RegisterDesignTimePackage OK
- CreateWin32LicenseFile in C:\dev\IntraWeb XIV\LiXE4W32
- CreateBCBBatchFile in C:\dev\IntraWeb XIV\LiXE4W32
- CreateWin64LicenseFile in C:\dev\IntraWeb XIV\LiXE4W64
- CreateBCBBatchFile x64 in C:\dev\IntraWeb XIV\LibXE4W64


When using the IW uninstaller unins000.exe, Windows shows error:
Runtime Error (at: 91:259): Could not call proc.

Seems that IW 14 is unable to run unter Windows 11 (23H2 used wirh all updates).

Under Windows 10 there are no problems.

Any hints whot to do and how to remove the broken install?

Regards,
Bernd

Print this item

  Include a session specific url parameter in the session timeout page
Posted by: magosk - 03-05-2025, 09:40 AM - Forum: IntraWeb General Discussion - Replies (4)

We have a web application with a static session timeout page looking like this:

Code:
<html>

<head>
<meta http-equiv="Content-Language" content="en">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>RapidReach logout</title>
</head>

<body>

<table border="0" width="100%">
  <tr>
    <td width="100%" bgcolor="#FFFFFF"><img border="0" src="/img/TopImage_RR.png" width="594" height="48"></td>
  </tr>
  <tr>
    <td width="100%"><b>Your session is no longer valid. You have been logged out due to inactivity or too many simultaneous sessions.</b></td>
  </tr>
  <tr>
    <td width="100%"><a href="/">Click here to login again.</a></td>
  </tr>
</table>
&nbsp;
</body>

</html>

A user in the web application is associated to an account. Some accounts have a url-parameter in their login-url. For a session that belongs to such account, I would like to include that url parameter in the "Click here to login again." link, e.g. href="/?sso=MyAccount". Always including the sso url parameter but having it empty for some (most) accounts would also work. How would I do this in the best way?

Also, I would like to do the same thing in the default logout page (with very similar HTML code as above) (although I suspect that most customers in question would override the logout url). So same question on this (I suspect in might be easier than the session timeout case?).

Best regards

Magnus Oskarsson

Print this item

  IW 16.0.6 is out
Posted by: Alexandre Machado - 03-03-2025, 08:37 AM - Forum: IntraWeb General Discussion - No Replies

Hi guys,

there is a new update for IntraWeb full of new features:

https://www.atozed.com/2025/03/intraweb-16-0-6/

Enjoy  Big Grin

Print this item

  Intraweb Form can't be added in D12.1 CE
Posted by: v.lasquibar@telefonica.net - 03-01-2025, 04:33 PM - Forum: IntraWeb General Discussion - Replies (4)

Hi,
I've recently installed IW16 (16.0.5) on a fresh installation of Delphi 12.1 CE. I've imported an old project created with Delphi 10.2.3 and IW15, and I've tried to add them a new form. I was surprised when, in the Project context Menu "Add New" I can only add "VCL Forms", and not "Intraweb Form". This implies that, when I add a component (for instance, a Region), I receive following message: "Intraweb controls are not valid on non-Intraweb Forms".
How can I fix this issue?

Venancio Lasquibar

Print this item

  New Google Security Requirements for smtp access
Posted by: OldBob1938 - 02-25-2025, 06:28 PM - Forum: Indy General Discussion - Replies (1)

I don't know if this is the correct place to ask this question.  Have tried google but only get answers that don't answer my question.

I am using TidSMTP version 10.6.2.  I have 3 apps that run daily by themselves to perform specific tasks and to report the results of the tasks.  I don't understand google's requirement that accounts with app passwords must have 2 step verification.  How can this work for automatic tasks?  Also, don't understand the requirements for OAuth 2 starting next month.  

Am out of my depth here and any pointers will be appreciated

Print this item

  ADA accessibility support
Posted by: PDSBILL - 02-14-2025, 04:46 PM - Forum: IntraWeb General Discussion - Replies (1)

We develop web applications using Intraweb for city and county government web sites. We have been asked to update our web apps meet ADA accessibility requirements.  Does Intraweb have any capability to assist in rendering the HTML pages to meet the current ADA accessibility requirements.

Print this item

  Request for Detailed IntraWeb 16 Documentation
Posted by: efecan.erdem - 02-13-2025, 12:11 PM - Forum: IntraWeb General Discussion - Replies (4)

Hello Atozed Team,

I am using IntraWeb 16, but I couldn’t find any official documentation for this version. If a detailed technical documentation is available, could you please share it or provide a link where I can access it?

Having comprehensive documentation would be really helpful for understanding and utilizing all features efficiently.
Thanks in advance for your support!

Best regards

Print this item

  CGI Mode
Posted by: andrercmeira - 02-10-2025, 12:43 PM - Forum: IntraWeb Dúvidas Gerais - No Replies

Bom dia, estou a procura de um componente que permita a execução em modo CGI para não necessitar de wine ou outro modo de emulação, pois possuo apenas VPSs linux. E gostaria de retornar ao mercado de programação delphi, porém focando em web.

Para esse caso o intraweb seria uma solução?

Print this item

  SAML
Posted by: marko@mikrobit.si - 02-10-2025, 06:06 AM - Forum: IntraWeb General Discussion - Replies (3)

Hello,

How can I implement  SAML authentication with Microsoft Entra ID with Intraweb application, ASPX deployment under IIS? Is there any sample or working project already?
Thanks for any advice.

Print this item

  IntraWeb 16.0.3 is out
Posted by: Alexandre Machado - 02-10-2025, 05:56 AM - Forum: IntraWeb General Discussion - Replies (6)

Hi guys,

a new update is avaialble containing a few urgent bug fixes and some new stuff.

https://www.atozed.com/2025/02/intraweb-16-0-3/

Enjoy!  Big Grin

Print this item