posted 24 years ago
hi Russell,
i've read your msg a few times and am still quite confused... are you worried that if many connections are made to the port you are listening on, that the incoming data will become interleaved and corrupted?
if that is your fear, i think it is unfounded - although multiple (in your case, VB) clients share the same (java) server port they get individual socket connections. each socket connects one (VB) client and one (java) server. if you want to cope with multiple clients, you have to accept one socket connection for each client.
otherwise, you may have to explain a bit further (for me!).
hope that helps,
cheers, dan.