bug of JSP 1.0 EA ?

1999-07-22 Thread Jen Hsien Huang
The JSP spec. says that "page" attribute of jsp:inclue action accepts a request-time attribute value (P. 65) but the fellowing jsp code   <%     String where ="some thing to include"; %>   will translate to   application.getRequestDispatcher("<%=where%>").include(request, response);   I t

JSP 1.0 include action problem

1999-07-22 Thread Jen Hsien Huang
I have a quest about include action the fellowing is my code Hello World<%@ page buffer="none" %>Hello World= inc0.jsp , inc1jsp , inc2.jsp are the same == <%@ page buffer="none" %>Include file: inc1.jsp<%for(int i = 0; i < 5; i++) out.println(

contentType and JSWDK 1.0EA

1999-07-24 Thread Jen Hsien Huang
I want to use page directive attribute "contentType" to set the jsp output conent-type but it donest work, is it a implement bug?   -Brenden- @_@

JSP 1.0EA and contentType

1999-07-25 Thread Jen Hsien Huang
I want to use page directive attribute "contentType" to set the jsp output conent-typebut it donest work, is it a implement bug? -Brenden- @_@

Re: Changes made to bean does not reflect in JWS2.0

1999-07-26 Thread Jen Hsien Huang
Bean class is load by default ClassLoader, it's not a cache, it's a normal behavior only Servlet/JSP can be reload -Brenden- @_@ - Original Message - From: kumbhi k <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 26, 1999 8:35 PM Subject: Changes made to bean does not reflec

None ASCII encoding of JSP engine in JSWDK. So stupid

1999-07-30 Thread Jen Hsien Huang
Sorry, I know decompile the JSWDK code is illegal. I just want to say what I found and how do I solve problem of handling non-ASCII JSP page in JSWDK   Damn the JSP engine of JSWDK donesnt support Chinese. but I guess the JSP engine written with javacc. So, I cant understand why it cant s

None ASCII encoding of JSP engine in JSWDK. So stupid

1999-08-01 Thread Jen Hsien Huang
Sorry, I know decompile the JSWDK code is illegal. I just want to say what I found and how do I solve problem of handling non-ASCII JSP page in JSWDK   Damn the JSP engine of JSWDK donesnt support Chinese. but I guess the JSP engine written with javacc. So, I cant understand why it cant su

Re: JSWDK 1.0 (Tomcat) with Cocoon

1999-08-18 Thread Jen Hsien Huang
go to Engine.java , find == public void handle(PrintWriter out, HttpServletRequest request, HttpServletResponse response) throws Exception { long time = 0; if (VERBOSE) { time = System.currentTimeMillis()

Re: JRun + Japanese ???

1999-08-28 Thread Jen Hsien Huang
As I know , JRun JSP only support ASCII you may try other servlet engine, Resin is nice. - Original Message - From: ZACHCIAL Slawek <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 18, 1999 8:56 PM Subject: JRun + Japanese ??? > Hi there, > > I would like to know how c

Re: New JSWDK 1.0 Available for Download

1999-08-19 Thread Jen Hsien Huang/Brenden
The new release seems change it http stream handling behavior. The older version will convert the data , like GET's query string. for example "name=%E4%B8%AD%E6%96%87" into JVM 's default encoding, than become the correct Unicode characher, but the newer version seems like the other non-ASCII cha