This might be a great time for you Java players to go out and make an ASSS chat client using AJAX.
Dr Brain - Tue May 16, 2006 10:42 pm
Post subject:
I've already got a Java chatnet framework that I'm quite happy with. Maybe when I get back from vacation I'll give it a go.
D1st0rt - Wed May 17, 2006 11:48 am
Post subject:
What will Google think up next?
This is neat, but it doesn't have support for the java.net package. It's only got lang and util which makes a chatnet client kinda tricky.
Dr Brain - Wed May 17, 2006 11:59 am
Post subject:
If that's the case then it would indeed be a pain.
Cerium - Wed May 17, 2006 9:13 pm
Post subject:
Setting up a site using AJAX is a pain in itself; what exactly were you expecting?
Dr Brain - Wed May 17, 2006 10:13 pm
Post subject:
Calling writing a TCP/IP library with Javascript a pain is like calling a tire iron to the head a headache.
Mine GO BOOM - Thu May 18, 2006 12:12 am
Post subject:
Who said you need to use javascript for the networking? The server can run a backend, in any language you want, you just need to use the javascript to interact with it to update itself.
Webserver runs some master server which does the TCP/IP with ASSS. It also has another means of communication with the AJAX system. Player goes to website, logs in, which connects to the backend. The backend itself is what connects to ASSS and does all the handshaking needed. It responds back saying if connected or not, and you go from there. Can be as simple as using file streams to communicate with the backend server.