-
Notifications
You must be signed in to change notification settings - Fork 113
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
Connect a hosted TCP service #33
Comments
Yes, possible if you can implement the same protocol on the pairing application. You can understand protocol (used BinarySerializationProtocol by default) from the document (https://www.codeproject.com/Articles/155282/A-Complete-TCP-Server-Client-Communication-and-RMI) and source code. Hint: See to understand the message format of the BinarySerializationProtocol class: There is a 4-bytes "message length" followed by the binary serialized object (for each message). |
Thank you Halil,
I will give it a try.
Regards,
Abhijeet
…On Tue, May 15, 2018 at 11:12 PM, Halil İbrahim Kalkan < ***@***.***> wrote:
Is it possible to connect to the service normally without HIK SCS client?
Yes, possible if you can implement the same protocol on the pairing
application. You can understand protocol (used BinarySerializationProtocol
<https://github.com/hikalkan/scs/blob/master/src/Scs/Communication/Scs/Communication/Protocols/BinarySerialization/BinarySerializationProtocol.cs>
by default) from the document (https://www.codeproject.com/
Articles/155282/A-Complete-TCP-Server-Client-Communication-and-RMI) and
source code.
Hint: See to understand the message format of the
BinarySerializationProtocol class:
https://github.com/hikalkan/scs/blob/master/src/Scs/Communication/Scs/
Communication/Protocols/BinarySerialization/BinarySerializationProtocol.
cs#L60
There is a 4-bytes "message length" followed by the binary serialized
object (for each message).
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#33 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AQO19thjrDlaPeBYjQ5dGauuaPauP1yfks5tytRQgaJpZM4T-wMI>
.
|
Hi,
We have a logging service hosted in our infrastructure, that is built using HIK SCS library.
Is it possible to connect to the service normally without HIK SCS client?
I am getting issues.
The text was updated successfully, but these errors were encountered: