Results 1 to 6 of 6

Thread: general java web server question

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Aug 2004
    Posts
    20

    general java web server question

    hello again,

    I am not sure how exactly I should point my question so please bear with me.

    I was asked to develop a search page which checks the access database. This search page will be accessed by maximum of 500 different users with maximum of 10 concurrent users on that moment. Daily there might be atleast 10 hits to the maximum of 50 per day.

    I chose Java webserver to host webpages. JSP and beans just because I know how to do programming in java and its easy to install compared to others .

    While I was developing the code for the page I used this link for testing.
    http://my pc name:8080/examples/jsp/Planning_databaseSearch/InitialPage.jsp
    as you know it only works if server is started by double clicking startserver.bat that is in my C:\ when I am done for the day I usually stop the server.
    Now that the development of the search page is completed. I was asked to move all the work to central server which is up 24/7 from where every one can easily access the search page on any given day.

    My question is, is it ok if I leave the server.bat open all the time ie 24/7? How effective is Java web server for the number of users and hits I have given above? or Do I have to go for some other webserver ?

    please,please advise,

    Thanks in advance,
    nubee

  2. #2
    Dazed Member
    Join Date
    Oct 1999
    Location
    Ridgefield Park, NJ
    Posts
    3,418

    Re: general java web server question

    Im not familiar with Java Web Server so i really couldn't tell you if you should stick with it or not. I use Apache Tomcat myself. When you said that you were asked to develop a search page which checks the access database. Are you refeerring to Microsoft Acess?

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Aug 2004
    Posts
    20

    Re: general java web server question

    Thanks for the reply.
    Yes, I am meant MS Access.
    Tomcat Apache??
    Can I just migrate from Java web server to Tomcat and still use same JSP and beans? is it a wise thing to do?
    Is installation for tomcatApache easy?

  4. #4
    Dazed Member
    Join Date
    Oct 1999
    Location
    Ridgefield Park, NJ
    Posts
    3,418

    Re: general java web server question

    Tomcat installation is pretty straight forward. Yes you can still use the same beans.

    Also Acess is a product that's intended as a single-user database, and it doesn't work well with the number of accesses typical for a web application. For a real site, you should use a more robust multiuser database such as Oracle, Sybase, DB2, or Microsoft SQL Server. I use MySql and i highly recommend it.

  5. #5

  6. #6

    Thread Starter
    Junior Member
    Join Date
    Aug 2004
    Posts
    20

    Re: general java web server question

    Thank You.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width