RE: What is the method of direct acces to an array element?

2004-06-24 Thread Martin Cooper
On Thu, 24 Jun 2004, Wendy Smoak wrote: From: Sergei P. Volin [mailto:[EMAIL PROTECTED] I have a set of arrays of the same length and i want to iterate over all of them in a turn. So what is the best practice to do this? Is there any direct method of direct acces to the element of an array? Like

Re: Undeterministic Reflection Exception, Using EL, JSTL, and Torque Objects

2004-06-24 Thread Georg Filios
Hi Martin, hmm, It was my guess from the last line of the Stacktrace (as I pasted it), that the root is in the CompiledJspPage: > at org.apache.jsp.WEB_002dINF.jsp.app.security.manage.user_jsp._jspx_meth_c _out_0(user_jsp.java:338) Here is the Line 338 of user_jsp.java. As I understand this

Re: Undeterministic Reflection Exception, Using EL, JSTL, and Torque Objects

2004-06-24 Thread Martin Cooper
Something doesn't jibe here. You are saying that the evaluation of ${User.userName} is failing, but the stack trace you provide shows ArraySuffix in the call stack. I can't see how that class could be involved in evaluating the expression you give. Are you sure that is the expression that's fai

Undeterministic Reflection Exception, Using EL, JSTL, and Torque Objects

2004-06-24 Thread Georg Filios
Hi, I do hope that I am here in the right group. I have a unpleasent error, for which I havent found a solution on several days research. Here is my Scenario: I do have a bug i.e. an Exception which occurs ocassionally but not always. Using Tomcat 5.0.24 and Servlet 2.4 I try to display a User

RE: What is the method of direct acces to an array element?

2004-06-24 Thread Wendy Smoak
> From: Sergei P. Volin [mailto:[EMAIL PROTECTED] > I have a set of arrays of the same length and i want to > iterate over all of them in a turn. > So what is the best practice to do this? > Is there any direct method of direct acces to the element of an array? > Like this: Are you sure this

What is the method of direct acces to an array element?

2004-06-24 Thread Sergei P. Volin
Hi, I have a set of arrays of the same length and i want to iterate over all of them in a turn. So what is the best practice to do this? Is there any direct method of direct acces to the element of an array? Like this: Thanks, Sergei Volin.