When using XBeans configuration slang, you can use the attribute impl of the wss:service element.
See documentation here:...
Type: Posts; User: Dr_Java; Keyword(s):
When using XBeans configuration slang, you can use the attribute impl of the wss:service element.
See documentation here:...
Already created the JIRA entry: SEC-563. But thx for outlining the preferred change procedure.
I am thinking about an even better version using Spring AOP 2.0 and per-JoinPoint instantiation. This...
Hi Chris,
your reply makes me feel stupid - because I hadn't thought about this myself. ;-)
Created an entry in JIRA (IDE-710), but only for doc enhancement. I don't see a way how the IDE could...
I had to sub class AnnotationAwareAspectJAutoProxyCreator (to customize selection of proxy mechanism, CGlib vs. JDK proxy).
I have a bean of my subclass in my Spring AppContext, but Sping IDE does...
Hi Jörg,
thx for the info.
Do you think a workaround is possible?
I found information about PRESERVE_TARGET_CLASS_ATTRIBUTE in the Spring docs. If I read this correctly, then I just need a...
I have a similar issue w/ JAX-WS, but unlike fudster mine is really keeping me from progressing (see http://forum.springframework.org/showthread.php?t=44129).
The problem is that JAX-WS uses JDK...
I try to get some aspects wrapped around my JAX-WS 2.1 WebServices, clients and service providers.
Now I have the problem that the service provider side requires CGLib proxies (to preserve...
Hello Veit,
AOP + JAX-WS + Spring works if you use the setImpl() property of SpringJaxWs. Just give the class name of the real (unproxied) implementation class. You still have to use...
I think I may have created a better AspectJ method level security interceptor, that works well on
Java5
with Annotations
I think the code is better because
Doesn't require the callback...