Author |
Message |
Mine GO BOOM Hunch Hunch What What

Age:42 Gender: Joined: Aug 01 2002 Posts: 3615 Location: Las Vegas Offline
|
Posted: Tue May 16, 2006 10:28 pm Post maybe stupid Post subject: Google Web Toolkit |
 |
|
|
|
http://code.google.com/webtoolkit/
Quote: | Google Web Toolkit (GWT) is a Java software development framework that makes writing AJAX applications like Google Maps and Gmail easy for developers who don't speak browser quirks as a second language. Writing dynamic web applications today is a tedious and error-prone process; you spend 90% of your time working around subtle incompatabilities between web browsers and platforms, and JavaScript's lack of modularity makes sharing, testing, and reusing AJAX components difficult and fragile.
GWT lets you avoid many of these headaches while offering your users the same dynamic, standards-compliant experience. You write your front end in the Java programming language, and the GWT compiler converts your Java classes to browser-compliant JavaScript and HTML. |
This might be a great time for you Java players to go out and make an ASSS chat client using AJAX. |
|
Back to top |
|
 |
Dr Brain Flip-flopping like a wind surfer

Age:39 Gender: Joined: Dec 01 2002 Posts: 3502 Location: Hyperspace Offline
|
Posted: Tue May 16, 2006 10:42 pm Post maybe stupid 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. _________________ Hyperspace Owner
Smong> so long as 99% deaths feel lame it will always be hyperspace to me |
|
Back to top |
|
 |
D1st0rt Miss Directed Wannabe

Age:37 Gender: Joined: Aug 31 2003 Posts: 2247 Location: Blacksburg, VA Offline
|
Posted: Wed May 17, 2006 11:48 am Post maybe stupid 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. _________________
 |
|
Back to top |
|
 |
Dr Brain Flip-flopping like a wind surfer

Age:39 Gender: Joined: Dec 01 2002 Posts: 3502 Location: Hyperspace Offline
|
Posted: Wed May 17, 2006 11:59 am Post maybe stupid Post subject: |
 |
|
|
|
If that's the case then it would indeed be a pain. |
|
Back to top |
|
 |
Cerium Server Help Squatter

Age:43 Gender: Joined: Mar 05 2005 Posts: 807 Location: I will stab you. Offline
|
Posted: Wed May 17, 2006 9:13 pm Post maybe stupid Post subject: |
 |
|
|
|
Setting up a site using AJAX is a pain in itself; what exactly were you expecting? _________________ There are 7 user(s) ignoring me right now. |
|
Back to top |
|
 |
Dr Brain Flip-flopping like a wind surfer

Age:39 Gender: Joined: Dec 01 2002 Posts: 3502 Location: Hyperspace Offline
|
Posted: Wed May 17, 2006 10:13 pm Post maybe stupid Post subject: |
 |
|
|
|
Calling writing a TCP/IP library with Javascript a pain is like calling a tire iron to the head a headache. |
|
Back to top |
|
 |
Mine GO BOOM Hunch Hunch What What

Age:42 Gender: Joined: Aug 01 2002 Posts: 3615 Location: Las Vegas Offline
|
Posted: Thu May 18, 2006 12:12 am Post maybe stupid 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. |
|
Back to top |
|
 |
|