[CLOSED] Seasion Timeout

Closed
0
0

I set seasion time out 0 but , after a certain period of time, without any message, the system automatically throws the login screen ,I can’t find a solution

 

Please help this topic

Thanks

 

“url”: “Default.html”,
“dropDuplicateClicks”: true,
“options”: {
“mobile.mode”: true
},
“startup”: “CargoV4.Program.Main, CargoV4”,
“sessionTimeout”: 0

Attachment
  • You must to post comments
0
0

Probably not. AnyCPU is allowing your app to load a x86 assembly. If you force x64 then you will get a loading error when the x86 assembly is getting loaded. You need to check the references in your project. Check sqlite, json serialization, any nuget package you may be loading, etc. Wisej doesn’t need nor load any x86 code. It’s AnyCPU.

Check also if you are using the the Brotli extension. That one uses two native assemblies from google: brolib_x64 and brolib_x86.

  • HSoft
    • HSoft
    • Jan 2, 2020 - 6:16 pm
    I use brotli extension , Should I delete it from the project and test it again, what would you recommend?
  • Luca (ITG)
    Delete it and see if it solves the 32 bit issue,
  • You must to post comments
0
0

I set any cpu on my project , when I set x64 and puplish as x64 , Will my problem be solved?

Thanks

  • You must to post comments
0
0

You may have the IIS idle timeout terminating the app pool.

 

https://docs.microsoft.com/en-us/iis/get-started/whats-new-in-iis-85/idle-worker-process-page-out-in-iis85

 

Set the timeout to 0.

  • HSoft
    • HSoft
    • Jan 2, 2020 - 3:40 pm
    Hi Luca When I my wisej app use high cpu , w3wp.exe restarted , I looked error log A process serving the application pool ‘system.express.com (domain) (4.0) (pool)’ encountered a critical error while communicating with the Windows Process Activation Service. Process ID: ‘17316’. The data field contains the error number. what can i do about this problem Thanks advice
  • Levie (ITG)
    Hi HSoft, it sounds like your application could be restarting because of a stack overflow issue (and explains the high CPU usage). You’ll need to catch the error with the VS debugger. Enable the Exception Settings window and turn on Common Language Runtime Exceptions AFTER your program has completely loaded in the browser. A 0x000000fd error code refers to a stack overflow issue. Is there a specific action that triggers the high cpu usage or a background task? Levie
  • HSoft
    • HSoft
    • Jan 2, 2020 - 5:41 pm
    Hi levie when I Set ‘Enable 32 bit Applications’ to True. its work , but when I disable , sometimes w3wp.exe restarted , solution is Enable 32 bit, but 32 bit very poor performance , What should I do to work smoothly with a 64?
  • HSoft
    • HSoft
    • Jan 2, 2020 - 5:42 pm
    Application Pool Enable 32 bit Applications’ to True. its work
  • Luca (ITG)
    We don’t have any x64 code, If you need that flag on it means that your app is loading an x86 assembly.
  • You must to post comments
Showing 3 results