I'm writing a distributed application in Java and I have a quick question. Java itself is quite simple to learn, but I'm finding that that the other things you can do with Java are immense.
For example, my application consists of a central server app, which receives data from a client, and disperses it to other clients on the net. It's sort of a form of an Instant Messenger, so being able to getupdates from the central server asap is necessary.
I'm wondering how I can make a web interface for a client to fit into the application. My confusion is that Java now offers a TON of options for web development. Would this need to be an applet on a page?? Or is JSP/Servlet technology suited for this?
Thanks
For example, my application consists of a central server app, which receives data from a client, and disperses it to other clients on the net. It's sort of a form of an Instant Messenger, so being able to getupdates from the central server asap is necessary.
I'm wondering how I can make a web interface for a client to fit into the application. My confusion is that Java now offers a TON of options for web development. Would this need to be an applet on a page?? Or is JSP/Servlet technology suited for this?
Thanks