Home Forums Support Non .net clients one NetworkCommsDotNet Server to rule them all.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #2553
    Anonymous
    Inactive

    Hello, I really hope the NetworkCommsDotNet Library can help to implement a server application that can receive and send replys to non .net application clients. Can your library do this?

    #2554
    Anonymous
    Inactive

    Heya John,

    Welcome to our forums and many thanks for your interest in our network library. You can indeed achieve that using NetworkComms.Net. All you have to do is disable our custom application layer protocol:

    ConnectionInfo info = new ConnectionInfo("192.168.0.1", 1024, ApplicationLayerProctocolStatus.Disabled);
    Connection conn = TCPConnection.GetConnection(info);
    
    // conn is now a RAW TCP connection
    // use as desired ...

    Regards,
    Marc

    #2557
    Anonymous
    Inactive

    Thank you! This library is very powerful.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.