Re: Re[2]: parsing error

2001-04-20 Thread doggie
; alone. I just wonder why the declaration tag has been "chosen" to be left alone while the rest are supported. - Original Message - From: "Rafael Alvarez" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Saturday, April 21, 20

Re: parsing error

2001-04-20 Thread doggie
PROTECTED]> Sent: Friday, April 20, 2001 10:00 PM Subject: Re: parsing error > Hello doggie, > I can't find the tag anywhere in the spec, but it > sounds like the <%! %> directive. > Try using: > <%! > private static final String[] toStringArray(

parsing error

2001-04-20 Thread doggie
It seems that orion ignored the jsp tag completely. The version is 1.4.5: ## # jsp code fragment: ## ...skip... FormBuilder fb = new FormBuilder(lp_context); private static final String[] toStringArray(int[] ori_array){

the setCharacterEncoding method in 1.4.4 doesn't work

2000-12-22 Thread doggie
Try the following: -- System.out.println("before=" + request.getCharacterEncoding() ); request.setCharacterEncoding("UTF-8"); System.out.println("after=" + request.getCharacterEncoding() ); -