Mikhail

Forum Replies Created

Viewing 15 posts - 5,701 through 5,715 (of 6,219 total)
  • Author
    Posts
  • in reply to: System Crash #1358
    Mikhail
    Moderator

    Hello,

    Try the same but close a web browser. The web application may cause browser memory leak, unfortunately. The new web app works well, it will be released soon. If needed, I can send you the prototype of the new web app.

    in reply to: modbusTCP #1355
    Mikhail
    Moderator

    Definitely.
    If Communicator interacts with Server, communication settings of Communicator app are overridden by the configuration database.

    P.S. You can also use Russian forum if it’s more suitable.

    in reply to: How to modify many database fields content easily? #1349
    Mikhail
    Moderator

    Hi,
    A simple application is needed to update data because the archive is not SQL database.

    in reply to: Error in TCP modbus simulation #1346
    Mikhail
    Moderator

    Can you see input channel numbers in the Channel column of Device Data page in Communicator? If not, it means that input channels are not bound to the device tags, so data are not passed from Communicator to Server.

    in reply to: create new type Static Link #1344
    Mikhail
    Moderator

    Go to SchemeViewAction class defenition in ScadaScheme silverlight project (by pressing F12). It’s in the file Reference.cs that is “generated by a tool.” You have to right click ScadaSchemeSvc in solution explorer and update service reference. You need the value “OpenLink” be added to the service reference class defenition.

    in reply to: create new type Static Link #1342
    Mikhail
    Moderator

    Hi,

    It’s difficult to answer without debugging. I assume that web service autogenerated code must be updated using VS.

    The core of schemes will be significantly redesigned this year. It may cause double work for you. The prototype of the new web app is here http://demo.rapidscada.net
    Login and password are admin/12345

    It is planned to support 3rd party controls to allow developers creating their own components, but API hasn’t been developed yet.

    in reply to: OPC Server in RapidSCADA #1341
    Mikhail
    Moderator
    in reply to: Communication is not established with MODBUS simulator #1340
    Mikhail
    Moderator

    OK 🙂

    in reply to: Signal Number ? #1339
    Mikhail
    Moderator

    Hi,
    To publish an image you need external hosting, e.g. postimage.org
    Could you provide more information about your questions?

    in reply to: Communication is not established with MODBUS simulator #1331
    Mikhail
    Moderator

    Use postimage.org and post links.

    in reply to: Communication is not established with MODBUS simulator #1329
    Mikhail
    Moderator

    Post screenshots for such questions, please.

    in reply to: Communication is not established with MODBUS simulator #1327
    Mikhail
    Moderator

    Probably the Simulator doesn’t support more than 1 connection.
    You can set another TCP port followed by IP address: 127.0.0.1:503

    in reply to: Error in TCP modbus simulation #1326
    Mikhail
    Moderator

    The formula is applied in SCADA-Server. That’s why you can’t see a result in Communicator. You have to configure displaying data by SCADA-Web app and you will be able to see calculation results.

    in reply to: Communication is not established with MODBUS simulator #1321
    Mikhail
    Moderator

    Do the both communications the old and the new work in parallel?
    Post a piece of communication log, please.

    in reply to: Error in TCP modbus simulation #1319
    Mikhail
    Moderator

    You should use a formula of the appropriate input channel in SCADA-Administrator application.

    The formula below will be useful. Add it in the Formulas table and use in the formula of the input channel.

    public double GetByte(double val, int n)
    {
        UInt64 uintVal = (UInt64)val;
        return (uintVal >> (n*8)) & 0xFF;
    }
    

    The formula of the input channel is like

    (((256*GetByte(Cnl,3))+GetByte(Cnl,2))+(GetByte(Cnl,1)/256)+(GetByte(Cnl,0)/(256*256)))/10
    

    I haven’t tested it.

Viewing 15 posts - 5,701 through 5,715 (of 6,219 total)