I am using spring exception translator to wrap java exception into flex exception. eg

 public void testException()throws Exception{
       throw new Exception("my exception");
}

But for some reason, I am getting IllegalAccessError. The code sections are entering the testException and the Translator class.

Question: why it trying to get log target level ? Can someone help me resolve this please.

Below is the lines from the log:

MyExceptionTranslatorImpl.translate()class java.lang.IllegalAccessError

MyExceptionTranslatorImpl.translate()java.lang.IllegalAccessError: tried to access method flex.messaging.log.Log.getTargetLevel()S from class flex.messaging.MessageException

MyExceptionTranslatorImpl.translate()tried to access method flex.messaging.log.Log.getTargetLevel()S from class flex.messaging.MessageException [BlazeDS] tried to access method flex.messaging.log.Log.getTargetLevel()S from class flex.messaging.MessageException
[BlazeDS] Serializing AMF/HTTP response

link|improve this question

75% accept rate
2  
Sounds as a mismatch between jars. Can you please post the full stack trace and the blazeds/spring version? – Cornel Creanga Jun 17 '10 at 9:25
Your are probably right, Sorry for the delay in replying. Unfortunately our jars are stripped of their version info. So, I tried a fresh download and a sample project. The code works. I will further try to narrow down the jars. Thanks for the help. – Shah Al Jun 20 '10 at 2:59
feedback

1 Answer

up vote 0 down vote accepted

This turned out to be mismatch in jars. Thank you Cornel Creanga for the initial response. I also verified that throwing an java.lang.exception was enough to catch the error on the client side.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.