I used the netserver and netclient from pd to create a cliente server that reads data from java into pd but I am not able to see inside pd objects and numbers boxes the values that java produces. I think the problem isn´t with java but with pd.
I use maxlib in java to get the values and send to pd with out.println(R_[]) but i can´t see them in pd where I need to work with.
Anybody can help me?
Thanx_
-
Client/server pd/java
-
Try:
out.println( R_[] + ";" )
Pd needs a semicolon to tell it it has received a complete message._ -
Thanx,
it results! It´s functioning ...