Mikhail

Forum Replies Created

Viewing 15 posts - 436 through 450 (of 6,128 total)
  • Author
    Posts
  • in reply to: Webstation issues on Win11 #16255
    Mikhail
    Moderator

    When an error occurs, the details are written in ScadaWeb.log. Please check the log file for additional info.

    in reply to: Webstation issues on Win11 #16253
    Mikhail
    Moderator

    ScadaWeb.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.

    in reply to: Webstation issues on Win11 #16248
    Mikhail
    Moderator

    Hi,
    Screenshots of the settings and results would help to solve the issue.

    in reply to: DrvParserTextJP #16247
    Mikhail
    Moderator

    The driver has been added to Store
    https://rapidscada.net/store/Module/en/DrvParserTextJP

    in reply to: Table View Invalid DateTime Error #16238
    Mikhail
    Moderator

    Hello,

    Please open the browser tools (F12), select the Network tab, and make screenshots of the HTTP request details.

    in reply to: DrvParserTextJP #16236
    Mikhail
    Moderator

    Thank you 🙂

    in reply to: Web Station Error 500 #16231
    Mikhail
    Moderator

    I 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.

    in reply to: Web Station Error 500 #16230
    Mikhail
    Moderator

    How 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.

    in reply to: The page transitions are slow #16229
    Mikhail
    Moderator

    Hello,
    Could you provide a screenshot or video?

    in reply to: Web Station Error 500 #16223
    Mikhail
    Moderator

    Hi,
    Check the above.

    in reply to: Average value from 5 last values #16222
    Mikhail
    Moderator

    May be you should set an input formula of the channel 145 to blank, and try again.

    in reply to: Average value from 5 last values #16218
    Mikhail
    Moderator

    If you remove Val(145) in that channel, where do you set the channel’s 145 value? Which place the TimeUpdate() function is called?

    in reply to: Send values and commands #16216
    Mikhail
    Moderator

    The Format field affects a command sending dialog. Could you make a screenshot of the command dialog?

    in reply to: Send values and commands #16215
    Mikhail
    Moderator

    Hello,

    Have you tried the Toggle component?
    A draft of UI element may help to understand the question more precisely.

    in reply to: how to modify the string through send command. #16212
    Mikhail
    Moderator

    The 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;
    }
Viewing 15 posts - 436 through 450 (of 6,128 total)