Hi, Just stumbled to the same problem with *very* strange symptoms, eg.
WORKED: //log.debug(user.getUserid()); log.debug(user.getEmail()); DID NOT WORK: log.debug(user.getUserid()); log.debug(user.getEmail()); User in this case was just a plain pojo, no injections or proxies involved - userid and email both just regular string properties. These statements were in a service *not referenced* by a page being requested when the error occurred - the constructor lookup on internal.services.ReflectiveInstantiator was looking up a completely irrelevant class by the time of error... Turns out I had Eclipse Europa (running on Sun JDK 1.6.0_03-b05 on Windows) project configured for Java 6 compliance. Switched to 5.0 compliance from project settings and so far everything works now... might be some thing with Eclipse jdt. Hope this helps to track down the bugger! Cheers, -- Nikla 2007/10/24, Howard Lewis Ship <[EMAIL PROTECTED]>: > > Please identify the JDK and platform you are using, and the *complete* > source file being compiled. > > On 10/23/07, mad7777 <[EMAIL PROTECTED]> wrote: > > > > > > We are having the same issue. We've tried three different environments > so > > far... Always the same problem. Getting a bit worried. > > > > Do you have a workaround? > > > > > > > > Howard Lewis Ship wrote: > > > > > > I was hoping we were past that. Had some problems with Javassist > > > generating bad code for component classes with inner classes. > > > > > > On 10/4/07, Heck, Bob <[EMAIL PROTECTED]> wrote: > > >> (pardon, did not mean to send the original question twice - sorry > about > > >> that) > > >> > > >> Bob > > >> > > >> --------------------------------------------------------------------- > > >> To unsubscribe, e-mail: [EMAIL PROTECTED] > > >> For additional commands, e-mail: [EMAIL PROTECTED] > > >> > > >> > > > > > > > > > -- > > > Howard M. Lewis Ship > > > Partner and Senior Architect at Feature50 > > > > > > Creator Apache Tapestry and Apache HiveMind > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > > > > > -- > > View this message in context: > > > http://www.nabble.com/StackMapTable-format-error%3A-bad-class-index-tf4571416.html#a13370981 > > Sent from the Tapestry - Dev mailing list archive at Nabble.com. > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > -- > Howard M. Lewis Ship > Partner and Senior Architect at Feature50 > > Creator Apache Tapestry and Apache HiveMind >
