Hi, My servlet accepts a request via the POST method which works fine. Then I also send an encoded URL (GET) to the same servlet i.e http://localhost/servlet/myServlet?name=me, but my servlet does not receive it, it seems that it is still trying to process the first request from my post. I pass all requests to my post method i.e public void doPost(HttpServletRequest req, HttpServletResponse res) { do operation here... } public void doGet(HttpServletRequest req, HttpServletResponse res) { doPost(req,res); } I am using JRUN 2.3 on NT server 4.0 with Netscape Enterprise 3.6. any help/suggestions would be greatly appreciated. gerardo ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
