-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generate NuGet package #16
base: master
Are you sure you want to change the base?
Conversation
Any chance this is going to happen? Making the library available on nuget would be highly appreciated. I did have hunch that the project was stalled but these recent activities gives hope. If the library is published on nuget and PRs are welcome, I will contribute with a couple of PRs (including support for multiple implicit messaging devices, connection exception handling) |
Sorry to hijack this, but @ralftar could you explain how you implemented multiple implicit connections? Do you use a single receiving socket on port 2222 or did you manage to get it working on a different port? I'm trying to deal with this issue, one way or another I might end up forking the library to get this into working condition. For what it's worth, I'm also maintaining S7 communication libraries (Sally7 and S7NetPlus), so I can probably get this into a usable state. I just don't own any devices to test with. |
@mycroes Yes, my team used a single socket on port 2222, aligning with the EIP protocol. Below is our change log for the internal version. We are currently building to our private NuGet repo., but are happy to switch to public GitHub + NuGet repo. It's a side project for us, so maintainers are welcomed and appreciated! The big question is how does @rossmann-engineering feel about this? Change log
|
@ralftar I don't have any concerns at all - would be happy if someone is willing to contribute in any possible way. You are welcome to publish your work to NuGet or GitHub. |
Would certainly appreciate if this is open sourced. Are there any freely available specifications of the EIP protocol or is the only option to purchase them from ODVA? I'm quite amazed that apparently the UDP port is communicated, but not used (or so it seems). If that is what it is then I'll have to deal with it, but it would certainly make my life easier if other ports can be used as well... Anyway, thanks for your quick replies! |
Let's do this 🚀
These documents might be good starting points: |
I faced the same issues.
Oddly enough, changing |
This patch does a few things:
Addresses #2