Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Real World Application Ideas

Status
Not open for further replies.

jafisher2000

Programmer
May 5, 2002
25
JM
Does anyone have an idea of a real world application that five people can develop in 30 days. Technologies that they know are servlets, RMI, JDBC, Java Networking. Bear in mind that a full application idea is needed.

Email me at jafisher2000@hotmail.com
 
I remember implementing a forum alot like this one when I was in school. I think we used servlets, rmi, and a mySql database at that time.

-gc "I don't look busy because I did it right the first time."
 
Why not try an online banking solution ... you would need to have a database (MySQL, free, easy and downloadableif you dont have a DBMS already) with some account details - then write :

1)A database server engine on localhost ports to recieve requests from a webserver, and processes SQL transactions.

2)A webserver that listens on an IP/port for incoming data requests, and then parses/validates those requests, and then passes those requests onto the database server.

3)A webpage/jsp that has a form which then connects to your webserver and passes the data requests.

If you write all of this too quickly, then you could include some heavy duty webserver security gui which allows you to change access restrictions on the fly...

I've been writing a similar project, am most of the way there, and have been doing it part-time for a couple of weeks.

Ben
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top