Forum Replies Created
-
AuthorPosts
-
MikhailModeratorThis issue is interesting and unusual. Considering the fact that we anyway will rewrite the entire web application, I suppose, we should check the new web app if this issue still occurs and then fix it.
dotNET5 doesn’t support WebForms technology that is currently used that’s why we have to create the web app from scratch.March 30, 2021 at 2:17 pm in reply to: RSAdmin: TreeView OutputChannel only show InputChannel Nodes #8605
MikhailModeratorThe subnodes are the channels grouped by device. That’s why subnodes are the same. All devices are displayed.
MikhailModeratorHi,
In formulas, only limited amount of information is accessible. To access to the configuration database and archives, you need to develop a module using C#.
MikhailModeratorYes, the issue is reproduced. But demo server has very low CPU and RAM.
What are the parameters of your server? Is it Linux or Windows?
MikhailModeratorAs an option, I would develop a utility to export XML and/or DAT files to the required RDBMS.
MikhailModeratorIf we found a sponsor, we can implement uploading a project from Administrator to PostgreSQL database.
In my opinion, SQLite is not enough, because remote access is quite useful in many cases.
MikhailModeratorYes it is, see v5.1.4.2
Server update for testing.
The command queue is in the Server service.-
This reply was modified 5 years ago by
Mikhail.
MikhailModeratorThanks for the useful notes. Some comments below.
I then went through Administrator on windows and changed all localhost settings to now look at the remote server eg. 192.168.1.10
Could you provide a screenshot of this to check?
This is most likely a config issue but I had to re transfer all the plugins to the Rpi opt/scada/ folder
DLLs of the modules should be presented on RPi. WinSCP is good for file transfer.
To activate the ChartPro plugin, I had to go chmod ug+rw WebSettings.xml
This is a known issue. We will fix it in the future.
MikhailModeratorPlease open the properties of KpEmail.dll and check the version. What is the file version?
Also try specifying a particular email:
test@gmail.com; Subj; Text
MikhailModeratorHi,
You can’t send a command from a formula. However, you can set input channel value from a formula.
To send commands according to conditions, Automatic Control Module was created.
MikhailModeratorCurrently to export data on change, use the existing DB export module.
The version 5 can only export data to 3rd party DB. Flexible archives possible in v6.
MikhailModeratorOutput channel only declares a command. It doesn’t send command itself, and it doesn’t store any value.
To display any kind of value, you need an input channel which stores a value.
MikhailModeratorHi,
If you need to send commands automatically according to some conditions, Automatic Control Module would help you.
MikhailModeratorI hope till the end of 2021. But it is not exactly.
MikhailModeratorHi,
Led can blink if you bind it to input channel. You should create a formula that changes input channel value every second, for example.
Something like
public double Blink() { return DateTime.UtcNow.Second % 2 > 0 ? 1 : 0; }Then use this formula in the input channel row.
-
This reply was modified 5 years ago by
-
AuthorPosts