Atozed Forums
Application does not load after installing 15.2.18 - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: Application does not load after installing 15.2.18 (/thread-2080.html)



Application does not load after installing 15.2.18 - Rolphy Reyes - 10-26-2020

Hi!

After installing Intraweb 15.2.18 my application start to fail.

As soon as I start the application I get an error message, see the attachmet.


RE: Application does not load after installing 15.2.18 - Alexandre Machado - 11-02-2020

Can you please tell me what's if you are using Delphi or C++ Builder and the exact version number?


RE: Application does not load after installing 15.2.18 - Alexandre Machado - 11-02-2020

BTW, I suggest you install the latest IW 15.2.19 and see if the problem is fixed


RE: Application does not load after installing 15.2.18 - Rolphy Reyes - 11-10-2020

Hi!

I just install IW 15.2.20 and I'm getting the same error.

I use Delphi Berlin Update 2.

The IW 15.2.10 is the one that is working fine for me.

The strangest thing for me is that the application does not execute the event OnNewSession from the ServerController.

Our projects use heavily the controls from TMS.

This is the DFM from the ServerController:
Code:
object IWServerController: TIWServerController
  OldCreateOrder = False
  AppName = 'SistemaPraxis'
  ComInitialization = ciMultiThreaded
  Description = 'Sistema Praxis'
  DisplayName = 'Sistema Praxis'
  ExceptionDisplayMode = smAjaxNotify
  HTMLHeaders.Strings = (
    '<meta charset="utf-8">'
    
      '<meta name="viewport" content="width=device-width, initial-scale' +
      '=1">'
    '<meta http-equiv="x-ua-compatible" content="ie=edge">')
  Port = 8897
  SSLOptions.SSLVersion = SSLv3
  SSLOptions.EnableACME = False
  Version = '15.2.20'
  ShowStartParams = False
  ExceptionLogger.ReportInfos = [riAppInfo, riExceptionInfo, riIWAppInfo, riStackTrace]
  ExceptionLogger.Enabled = True
  ExceptionLogger.PurgeAfterDays = 2
  CookieOptions.UseCookies = False
  HttpKeepAlive = True
  SecurityOptions.CorsOrigin = '*'
  SessionOptions.SessionTimeout = 240
  SessionOptions.RestartExpiredSession = True
  OnCloseSession = IWServerControllerBaseCloseSession
  OnConfig = IWServerControllerBaseConfig
  OnNewSession = IWServerControllerBaseNewSession
  OnMetaTag = IWServerControllerBaseMetaTag
  Height = 449
  Width = 823
end



RE: Application does not load after installing 15.2.18 - Alexandre Machado - 11-11-2020

I'll test it with Berlin. Are you building it as x64 or x32? can you please test both and see what you get?


RE: Application does not load after installing 15.2.18 - Alexandre Machado - 11-11-2020

I can reproduce the problem with x64 compiler, not x86, though. It is a linker issue that was caused by a recent update in zlib object files.

We'll get it sorted out and release an update soon.

Thanks for your report.


RE: Application does not load after installing 15.2.18 - Rolphy Reyes - 11-11-2020

(11-11-2020, 10:10 AM)Alexandre Machado Wrote: I can reproduce the problem with x64 compiler, not x86, though. It is a linker issue that was caused by a recent update in zlib object files.

We'll get it sorted out and release an update soon.

Thanks for your report.

Hi!

I'm sorry, I forgot to mention that, I use the x64 mode.

Thanks for your time.