Forum Replies Created
-
AuthorPosts
-
mgmouk
ParticipantYes, exactly !
mgmouk
ParticipantThank you Mikhail for the clarifications,
Is there a feature that automatically terminates an current session after a specified period of inactivity? If so, how can we configure this setting?
mgmouk
ParticipantHello @Mikhail,
How should we proceed if we wish to apply these conditions to components such as “Dynamic Picture” or “Dynamic Text” in RapidSCADA? Do we need to create new components that inherit from these foundational classes and then add the conditions? Alternatively, can we directly integrate the conditions into these classes? (I understand this would also need to be applied to scadaweb.) Is there another approach we could consider?
This relates to the question I posed earlier at this link: https://forum.rapidscada.org/?topic=add-new-conditions
mgmouk
ParticipantTo see the w3wp.exe process in your process list, follow these steps:
1. Ensure that your IIS server is running.
2. Verify that the “ScadaAppPool” application pool is running. You can do this by opening the ‘IIS Manager’ and looking for ScadaAppPool pool under the application pools section.
3. If both of these are running and you still do not see the w3wp.exe process, you can try recycling the application pool or forcing a request onto your application to trigger the w3wp.exe process.
To do this, you can use the following script (which is also present in the svc_restart.bat file) in your terminal:
`
cd /d “%~dp0”
type nul > cmd\webreload
curl http://localhost:10008/ConfigReload
del cmd\webreload:: Alternative
:: “%windir%\system32\inetsrv\appcmd” recycle APPPOOL “ScadaAppPool”
`
These commands will force the start of the w3wp.exe process, and you should now be able to see it in your process list for debugging.
I hope this information is helpful.
-
This reply was modified 2 years, 3 months ago by
mgmouk.
mgmouk
ParticipantI am currently working on the SCADAWeb project and I am encountering the same problem “Storage is not initialized” when running the application in local debug mode. I followed the instructions in the HowToBuild.txt file to compile the project.
I have seen that this topic has already been discussed on the forum and I have tried the suggested solutions, but unfortunately, they have not solved my problem.
If anyone has already encountered this problem and found a solution that has not been previously mentioned, could you please share how you resolved it?
Thank you in advance for your help.
-
This reply was modified 2 years, 3 months ago by
-
AuthorPosts