Giter Site home page Giter Site logo

Comments (3)

Metetron avatar Metetron commented on August 21, 2024 1

Yes, I found the issue. You should not directly access the connection in the ConnectionChanged handler. I don`t know if this is a problem in the library or a difference in behaviour in .Net Framework and .Net Core.

This is the code I wrote to send the S1F13 command in the equipment in the original example:

connection.ConnectionChanged += async (sender, state) =>
{
    Console.WriteLine(state);

    if (state == ConnectionState.Selected)
    {
        var reply = await connection.SendAsync(establishConnectionRequest);
        Console.Write(reply);
    }
};

If you want to send a message on state change, you have to write the code like this, then it works:

connection.ConnectionChanged += async (sender, state) =>
{
    Console.WriteLine(state);

    if (state == ConnectionState.Selected)
    {
        await  Task.Run(() => await connection.SendAsync(establishConnectionRequest));
    }
};

I have built a host, that is used in production with the RC01 version and it is working fine.

from secs4net.

OrangeUtan84 avatar OrangeUtan84 commented on August 21, 2024

I can also reproduce this behavior. When I'm using active host and passive equipment and the host sends S1F13 and the equipment replies with S1F14 + MDLN + SOFTREV. But the reply doesn't reach the host and the host waits until T3 timeout.

@Metetron You closed the issue. Could you find out anything to fix this issue?

Kind regards

from secs4net.

OrangeUtan84 avatar OrangeUtan84 commented on August 21, 2024

@Metetron Thanks a lot!! After modifying the code to send S1F13 in a new task it worked like charm.

from secs4net.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.