only device that performs 'accept' receives data #186
-
I downloaded the example project and encounter the issue where the accepting device successfully reads and write data, however the other side fails to receive data. the accepting side claims to have sent that data, but the onReceivedData(event) function is never called on the receiving side. is this a known issue? is there supposed to be an asymetry in the communication or any reason to expect this? Attached is your example code files if it helps. I had to change it a bit as many dependencies were no longer supported. the root component is 'AppCheck'. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
Generally the issue is with the delimiter, the default is /n, if your device is different then you'll have to change it. If the configuration is correct then yes, the two way communication works just fine. It's all in the configuration for the inbound messages. If you want to change code commit it back to your fork and I will compare. But at this time the app works for my purposes so I won't be pulling any changes. At some point I'll need to update the dependencies, but I'll need to rewrite some of the library when that happens anyhow. |
Beta Was this translation helpful? Give feedback.
-
Evening good sir, seems like i am having a similar problem. i am connecting to a socket created using python in the code below:
your help is much appreciated. |
Beta Was this translation helpful? Give feedback.
Generally the issue is with the delimiter, the default is /n, if your device is different then you'll have to change it. If the configuration is correct then yes, the two way communication works just fine. It's all in the configuration for the inbound messages.
If you want to change code commit it back to your fork and I will compare. But at this time the app works for my purposes so I won't be pulling any changes.
At some point I'll need to update the dependencies, but I'll need to rewrite some of the library when that happens anyhow.