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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Web based to CD based format

Status
Not open for further replies.

MarkShark

Programmer
Aug 22, 2001
36
US
I have a site that I want the data to be accessable to those without web access. My question is what steps do I need to take to make the data (Java, XML, HTML, MySQL) operate on a stand alone CD version. I believe I will have to dump my servlets and use applets all the way, am I right or just confused? Thanks for any help anyone can give me.
 
Yeah, unless you want the user to have to install a Servlet Engine you are going to need to use a Java Application. I would suggest writing a version of the application in Servlets/JSP and one in Swing. You could reuse a lot of classes and functionality between the two versions if you adopt a Model-View-Controller Design.

The main problem with the stand-alone version will be the database. You will be best off using Access or even a standard text file. It is a bit much to expect a regular user to install MySQL to use your application.

Also, I haven't gotten the time to look through that stuff for you. I have been pretty busy. I will try to do it sometime this week if you are still having problems. Wushutwist
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top