XML/Flash/Socket Server
843834Mar 8 2003 — edited Mar 10 2003Hi all,
I am currently trying to develop a socket server to allow me to create multiplayer games in flash. At the moment I am able to send information from flash to the socket server like (<mymsg status="struggling" age="21" name="monkeyharris" />) and read it into the Java app using something along the lines of:
objInStream = new BufferedReader(new InputStreamReader(socket.getInputStream()));
I could do with some help with how I convert the info from the buffered reader into an XML object so that I can check the name of the nodes and their attributes etc. Would I need to use Exerces?
Any help would be greatly appreciated,
Thanks in advance.