Forum Replies Created
-
AuthorPosts
-
MikhailModeratorWhen an error occurs, the details are written in ScadaWeb.log. Please check the log file for additional info.
MikhailModeratorScadaWeb.log is OK.
Errors like “Dictionary file not found” are not critical.
What do you get when open http://localhost:10008/ in browser?Would you be able to explain the process of how the data from the Communication lines is transferred to the WebStation?
The Webstation app connects to the Server app using TCP port 10000 and requests data.
MikhailModeratorHi,
Screenshots of the settings and results would help to solve the issue.
MikhailModeratorThe driver has been added to Store
https://rapidscada.net/store/Module/en/DrvParserTextJP
MikhailModeratorHello,
Please open the browser tools (F12), select the Network tab, and make screenshots of the HTTP request details.
MikhailModeratorThank you 🙂
MikhailModeratorI keep seeing in the log that the Webstation is stopped. Now what?
This is a normal behavior. If the web application has not been used for some time, it is stopped. When you open it again, it will be started. You can see than in the log file.
MikhailModeratorHow can I totally uninstall the program and servers so that I can install it again?
Usually it’s reinstallation needed to fix an issue.
Website with the same name exists and Application pool item already exists.
How so I deal with this, please?You can delete the pool and website manually in the IIS management console. If you are not sure, provide screenshots.
MikhailModeratorHello,
Could you provide a screenshot or video?
MikhailModeratorMay be you should set an input formula of the channel 145 to blank, and try again.
MikhailModeratorIf you remove Val(145) in that channel, where do you set the channel’s 145 value? Which place the TimeUpdate() function is called?
MikhailModeratorThe Format field affects a command sending dialog. Could you make a screenshot of the command dialog?
MikhailModeratorHello,
Have you tried the Toggle component?
A draft of UI element may help to understand the question more precisely.
MikhailModeratorThe function below takes a data length into account for Unicode strings.
public byte[] SetUnicode() { if (ArrIdx == 0) { string s = CmdData == null ? "null" : Encoding.UTF8.GetString(CmdData); int dataSize = Channel.DataLen ?? 1; for (int i = 0; i < dataSize; i++) { string part = Substring(s, i * 4, 4); SetData(CnlNum + i, EncodeUnicode(part), 1); } } return CmdData; } -
AuthorPosts