Possible Duplicate:
Java: How to invoke code running on a server from a browser?
I just asked: Java: How to invoke code running on a server from a browser?
I got back numerous suggestions. Here is a short summary:
- Java Servlets
- Java Server Pages
- Java EE
- Tomcat
- Axis
- Glassfish
I am not sure what I should prioritize. I have a small class project that I need to execute some code on a server. I basically need to:
- Get some info from user via browser
- Pass info to Java code running on the server
- Display results to user
I have an Apache server that I just setup (I have put an index.html there but that is it). I am not sure how to proceed. Could someone point me to a tutorial? I have tried doing some Googling but I am not entirely sure what I should be searching for.
Edit: I am using Eclipse right now, and I just noticed that under new it has a Java EE option. I am exploring that.