Andreas Christoforides

Greenhorn
+ Follow
since Jun 28, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Andreas Christoforides

Im trying to use a custom library that is in a JAR file. The JSP container is suppose to check the TLD files in all JAR files in /WEB-INF/lib and create implicit mapping between the contents of <uri> tags of the TLDs to the location of the JAR files.
This is what I have done so far:
1. Created a taglib.tld in a directory META-INF in the JAR file
2. Specified a URI in the <uri> tag of taglib.tld
3. Placed the JAR file under /WEB-INF/lib
4. Tried to access library with a taglib directive that I specified in the taglib.tld
However, when I use an absolute uri in taglib.tld and try to access the jsp that uses the library I get:
org.apache.jasper.JasperException: This absolute uri (http://www.test.com) cannot be resolved in either web.xml or the jar files deployed with this application
When i use a root relative or non-root relative uri in the <uri> tag of taglib.tld (MyTag or /Mytag) I get:
org.apache.jasper.JasperException: File "/MyTag" not found
Am I missing something ? I've been trying to find the problem for 2 days. Im using Tomcat 4.0.3
Thanks,
Andreas
22 years ago
JSP
I also received the book along with JWeb+. The email I got that provided the login for the book download page mentioned that the login is only active for a day. I guess the best thing you can do is to go to www.enthuware.com and contact support. If you provide them with your order information, maybe they will provide you with a new login. Remember to emphasize that your order was made before July 15th because the free book offer expired on the 15th
Upon receiving a request, the servlet container/engine first calls the
service(ServletRequest req,ServletResponse res) method of the servlet.
Then the
service(ServletRequest req,ServletResponse res) method will call the
service (HttpServletRequestreq,HttpServletResponse res) method.
The service (HttpServletRequestreq,HttpServletResponse res) method will then analyze the request and call the appropriate doXXX() method.
This is the flow of control from the servlet container/engine to the doXXX() methods as defined in the HttpServlet javadoc and the SCWCD Exam Kit book.
Hope that was helpfull,
Andreas
Im thiking of ordering the SYBEX book. The description mentions that the book includes a CD with an exam engine with 3 tests. Is the exam engine JWeb+ by enthuware or is it something completely different?
Also, for those who already got the book, how long did it take to get the book from the time of your order?