Simon, thanks for your feedback.
> Have you tried this? > Object bean = ...; > while (bean instanceof ScopedObject) > bean = ((ScopedObject) bean).getTargetObject(); I tried your suggestion. > I think the CurrentConversationAdvice can also be cast to > ScopedObject. Unfortunately this does not seem to work out. The object of class CurrentConversationAdvice is not instance of ScopedObject. The body of the while loop is executed just once. Any other ideas? Thanks malte.

