Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / August 2006

Tip: Looking for answers? Try searching our database.

another Book on the shelf

Thread view: 
Print Guy - 19 Aug 2006 20:48 GMT
I got this book

Java for the Web with Servlets, JSP, and EJB: A Developer's Guide to
J2EE Solutions

working through the very first chapter... created the directory
structure, created the .java and .xml files then started up Tomcat...
no luck... 404 error.

They say in the book that if you don't have a deployer .xml file you
have to type in something like this

http://localhost:7070/myApp/servlet/TestingServlet

Which I did...

HTTP Status 404 - /myApp/servlet/TestingServlet

--------------------------------------------------------------------------------

type Status report

message /myApp/servlet/TestingServlet

description The requested resource (/myApp/servlet/TestingServlet) is
not available.

Question.. is there anyone who has seen this book and has encountered
the same error...I've checked the errata for the book and the java
class is compiled...
relogout@gmail.com - 20 Aug 2006 01:42 GMT
i sugesst you check you WEB-INF/web.xml
see whether there has a servlet mapping like following

 <servlet>
   <servlet-name>yourServlet</servlet-name>
   <servlet-class>com.test.YourServlet</servlet-class>
   <load-on-startup>1</load-on-startup>
 </servlet>
 <servlet-mapping>
   <servlet-name>yourServlet</servlet-name>
   <url-pattern>/yourServlet</url-pattern>
 </servlet-mapping>

> I got this book
>
[quoted text clipped - 26 lines]
> the same error...I've checked the errata for the book and the java
> class is compiled...
Mindundi - 20 Aug 2006 03:18 GMT
That book is from the times (2002) when the invoker servlet was active in
Tomcat, which let you call the servlet with urls like in your message.
Now you have to specify a mapping for your servlet, like you were told, or
activate the invoker (not recommended in production, security issues) in the
/conf/web.xml file of your Tomcat installation (search for the string
"invoker" and uncomment).
Also, I recommend you a more recent book, anyone that covers at least the
Servlet/JSP 2.4/2.0 Specification, including the JSTL.
You better not do JSP with scriptlets by now.

>I got this book
>
[quoted text clipped - 26 lines]
> the same error...I've checked the errata for the book and the java
> class is compiled...


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.