I amn't really sure to understand well the question.So normally your
servlet contains the follows code:
public void service(HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException
{
//set the MIME of the response
res.setContentType("text/plain");
ServletOutputStream out = res.getOutputStream()
normally you have to use the follows to answer to the browser that has invoked the
servlet:
out.println("string to the browser");
so for your problem I think that you have not to use the line above.
Antoni Mancuso
Mirko Wolf <[EMAIL PROTECTED]>@java.sun.com> on 11/08/99 03:39:37 PM
Please respond to "A mailing list for discussion about Sun Microsystem's
Java Servlet API Technology." <[EMAIL PROTECTED]>
Sent by: "A mailing list for discussion about Sun Microsystem's Java
Servlet API Technology." <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
cc:
Subject: No Response requiered
Hey Gurus,
i've a question, i would send some Data
to my servlet, but didn't expect any response,
so the current display should not change.
I wouldn't send a redirection to the browser.
Is there another possibility to solve this??
Best regards
Mirko Wolf
___________________________________________________________________________
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
___________________________________________________________________________
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