You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@plc4x.apache.org by "Julian Feinauer (JIRA)" <ji...@apache.org> on 2019/07/11 13:01:00 UTC

[jira] [Commented] (PLC4X-134) S7 is terminating the connection during handshake

    [ https://issues.apache.org/jira/browse/PLC4X-134?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16882928#comment-16882928 ] 

Julian Feinauer commented on PLC4X-134:
---------------------------------------

Hi [~generalkelly], first, thanks for the Ticket!
I guess we have to include a switch or something there.
Did you test what happens with a S7 1500 or something?

Perhaps [~timbo2k] could check it otherwise.

If you want, we would be happy for a PR otherwise, Tim or I can also prepare a patch for that. Thank you very much for the contribution!

> S7 is terminating the connection during handshake
> -------------------------------------------------
>
>                 Key: PLC4X-134
>                 URL: https://issues.apache.org/jira/browse/PLC4X-134
>             Project: Apache PLC4X
>          Issue Type: Bug
>          Components: Driver-S7
>    Affects Versions: 0.5.0
>            Reporter: Mirko Pohland
>            Priority: Critical
>         Attachments: stack_trace.txt
>
>
> When trying to connect to my S7-300 I get the following error (stack trace attached): 
> {color:#FF0000} org.apache.plc4x.java.api.exceptions.PlcIoException: Connection terminated by remote{color}
> After some debugging I found out that I can fix this issue by doing a small change in S7PlcConnection.java
>  
> From
>         short calledTsapId = S7TsapIdEncoder.encodeS7TsapId(DeviceGroup.OS, 0, 0);
>         short callingTsapId = S7TsapIdEncoder.encodeS7TsapId(DeviceGroup.PG_OR_PC, rack, slot);
> where calledTsapId does not contain rack and slot to
>         short calledTsapId = S7TsapIdEncoder.encodeS7TsapId(DeviceGroup.OS, rack, slot);
>         short callingTsapId = S7TsapIdEncoder.encodeS7TsapId(DeviceGroup.PG_OR_PC, 0, 0);
> Now I can connect to the S7.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)