Hi Everyb'dy!

I had developed a couple of pages using [.jhtml].
As those are not supported by jswdk and I was unable to find JavaWebServer.
So I did minor changes (like changed <java> to <% and </java> to %>).

And got bonus server side file include (SSI)
<%@include file ... %> which is not there in [.jhtml]

I have user authorization on every page that is something like:
{--------
String gLogin = (String) session.getValue("ShopMart.Login");
if (gLogin.length()<8)
        response.sendRedirect("validate.jhtml");
--------}

PROBLEM: Now the problem is on every page, I get exception on the jswdk's
command window, that says:
{--------
HANDLER THREAD PROBLEM: java.io.IOException: Socket Closed
java.io.IOException: Socket Closed
        at java.net.PlainSocketImpl.getInputStream(PlainSocketImpl.java:421)
        at java.net.Socket$1.run(Socket.java:335)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.Socket.getInputStream(Socket.java:332)
        at
com.sun.web.server.ConnectionHandler.run(ConnectionHandler.java:161)
--------}
Otherwise, the site works fine, even if I just ignore what ever is displayed
on the command window.

Anyb'dy has any idea??

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to