Mike Gerd

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

Recent posts by Mike Gerd

Same here. the on line docs aren't good at all.
17 years ago
The first answer's answer.
17 years ago
JSP
Thanks both
17 years ago
JSP
Hi,
Im a newbie to J2EE. I was experimenting with doGet and doPost. and to my surprise I discovered that doPost was delegating? to doGet. I tried searching on the net for this but didnt find any such thing. so what going on here?

public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
doPost(req, res);
PrintWriter out = res.getWriter();
out.println("This is doGet");


This prints "This is doGet" on to the webpage. But the strange thing is that Im calling doPost first!! The doPost is empty!. Is the doPost turning around and calling doGet?
[ July 14, 2007: Message edited by: Mikey Gerard ]
17 years ago
I have a simple JSP in which I try to call a servlet using the servlet's URL pattern but I get an HTTP 404 error. Im wondering are we allowed to call a servlet using its url pattern with a form action element in a JSP??

Below is the JSP code that calls the servlet.

<FORM name="form" action="/control" method="GET">

And, Below is the web.xml


Any suggestions?
17 years ago
JSP
Hey thanks for the info. I will be checking it out. Thanks again.
17 years ago
Hi Jeanne,
I'm not too familiar with the versions of websphere but anything thats compliant with j2ee 1.4 and beyond. I'm guessing that v5.x and beyond? I narrowed down a few books among them was
1.)WebSphere Application Server: Step by Step by Rama Turaga(this appears to be for admins?) or
2.)IBM WebSphere: Deployment and Advanced Configuration by Roland Barcia.

Which do you recommend? are there any others I should consider.
17 years ago
Im looking a short relatively new book on websphere written with the developer and not the admin in mind. Any Suggestions?
17 years ago