Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Java > another Book on the shelf

Reply
Thread Tools

another Book on the shelf

 
 
Print Guy
Guest
Posts: n/a
 
      08-19-2006
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...

 
Reply With Quote
 
 
 
 
relogout@gmail.com
Guest
Posts: n/a
 
      08-20-2006
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>


Print Guy wrote:
> 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...


 
Reply With Quote
 
 
 
 
Mindundi
Guest
Posts: n/a
 
      08-20-2006
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.

"Print Guy" <> escribió en el mensaje
news: oups.com...
>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...
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Midwest Book Review: The Library DVD Shelf Midwest Book Review DVD Video 0 03-30-2010 05:53 PM
Midwest Book Review: The Library DVD Shelf Midwest Book Review DVD Video 0 09-05-2008 04:03 AM
Midwest Book Review: The Library DVD Shelf Midwest Book Review DVD Video 0 07-07-2008 12:42 PM
Midwest Book Review: The Library DVD Shelf Midwest Book Review DVD Video 0 05-10-2008 06:07 AM
Cat 65xx rack mount vs shelf Lester Cisco 2 12-06-2003 09:44 PM



Advertisments