Attaching an aspect to "org.apache.cocoon.sitemap.node.Sitemap" leads to a
ClassCastException
---------------------------------------------------------------------------------------------
Key: COCOON-2256
URL: https://issues.apache.org/jira/browse/COCOON-2256
Project: Cocoon
Issue Type: Bug
Components: - Components: Sitemap
Affects Versions: 2.1.12-dev (Current SVN)
Reporter: Andreas Pinter
Priority: Minor
I tried to attach an around-aspect for every node:
@Around("execution(* invoke(..)) && within(org.apache.cocoon.sitemap.node.*)")
This led to a ClassCastException for the first sitemap. (see attached logfile)
After excluding sitemap from my aspect, everything works just fine:
@Around("execution(* invoke(..)) && within(org.apache.cocoon.sitemap.node.* &&
!org.apache.cocoon.sitemap.node.Sitemap)")
Tested with cocoon-sample.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.