Hello doggie,
I can't find the <jsp:declaration> tag anywhere in the spec, but it
sounds like the <%! %> directive.
Try using:
<%!
     private static final String[] toStringArray(int[] ori_array){
         String [] str_array = new String[ori_array.length];
             for (int i = 0; i < ori_array.length; i++){
                 str_array[i] = String.valueOf(ori_array[i]);
             }
         return str_array;
     }
%>

> It seems that orion ignored the jsp tag <jsp:declaration> completely.

-- 
Best regards,
 Rafael                            mailto:[EMAIL PROTECTED]



Reply via email to