B4J Question jnetwork library tutorial

cstangor

Member
Licensed User
Longtime User
Hi,

I'm wanting to allow quick messaging from between two machines running B4J. User at machine one sends a message.. that message appears instantaneously in a handler at machine 2.

Thanks in advance.
 

cstangor

Member
Licensed User
Longtime User
Thanks... It's not the labels I'm concerned about, it's the sharing. I'm trying to figure out how to share information quickly between two machines running B4J.
 
Upvote 0

cstangor

Member
Licensed User
Longtime User
Oh, so I found it in jRandomAccess. But I'm confused.

What exactly am I doing with these calls? A file is written but I don't understand how the data would be sent to another computer? Sorry!

Thanks

Server.Initialize(port, "server")
client.Initialize("client")
client.Connect(Server.GetMyIP,port, 30000)

astreamO.Initialize(Me, "astreamO")
astreamO.WriteObject("simple value", 3)

My astreamO_NewObject and astreamO_ObjectSent are not firing.
 
Upvote 0
Top