-
-
Notifications
You must be signed in to change notification settings - Fork 375
Closed
Description
When i create a simple Sample Project where i start the mvc framework with this code:
LServerListener := TMVCListener.Create(TMVCListenerProperties.New
.SetName('Listener1')
.SetPort(APort)
.SetMaxConnections(1024)
.SetWebModuleClass(TMyWebModule)
);
LServerListener.Start;
i am getting e EInvalidPointer Exception frequently
i attached my eurekalog logfile where you can see the stacktarce. i also attached a screenshot of the stacktrace.
There seems to be a concurrency issue when the TWebModule Create is called. The Problem occurs on TRttiContext.DropContext in EndGlobalLoading. The Problem only occurs when i start dmvc with the TMVCListerner - Code from above