CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    How to run jsp in tomcat ???

    I've just installed tomcat in NT, and I have some examples jsp and beab,
    but I don't know how to run them in tomcat, do I have to put them in a special directory in tomcat directory, and what should I type in the browser.
    Thanks in advance.


  2. #2
    Join Date
    May 2000
    Posts
    15

    Re: How to run jsp in tomcat ???

    Running Tomcat is quite easy. Once you have intalled it you should run it, by writing:
    tomcat start

    Once this is started (which should go smooth in latest version), you can go to the Tomcat webserver by writing in your browser:
    http://127.0.0.1:8080/
    which actually refers to your computer (loopback) on port 8080, which is the default port for tomcat.
    There, you will see all the examples.

    You should read the Jakarta-Tomcat manuals, btw. They say it all.

    Udi.



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

Featured