It works like a charm!
mvg
Joost
Type: Posts; User: jwijgerd; Keyword(s):
It works like a charm!
mvg
Joost
Thanks Joris, I will add the statement to the manifest as you suggest
mvg
Joost
Hi,
I have a couple of servlets that use the CometEvent from catalina. When I deploy to a normal tomcat instance this works fine but when i deploy my war in the dm server I get the following...
I don't agree with you, take the following javadoc for the params property of the RequestMapping annotation:
/**
* The parameters of the mapped request, narrowing the primary mapping.
*...
There is an error in the AnnotationMethodHandlerAdapter
method: AnnotationMethodHandlerAdapter.resolveHandlerMethod(HttpServletRequest request) throws ServletException
this method is...
This is due to the fact that you now need to use the AspectJ weaver (either compile- or load-time) on your classes. I use the compile time weaver, in IntelliJ idea you can download a plugin to do...
Hi,
Yes, I fixed it. Forgot to post the solution. You need to explicitly set the transaction annotation mode to aspectj, like this:
<tx:annotation-driven mode="aspectj"/>
Hope this helps
...
Hi,
We're using @Configurable to wire our domain objects with AspectJ. Our domain objects are loaded by hibernate and are then autowired to inject dao's and other infrastructure services. This...
Apparantly one of the modules we link to was specifying maven 2.0.6 and got loaded too ... apparently maven2 is not detecting that 2.5 is a new version of spring correctly...
damn this transitive...
Hi,
We just upgraded to spring 2.5 and also to spring-test 2.5. We are using the AbstractJpaTests and our tests run fine with 2.0.7. Now when we upgrade to 2.5 we get the following error:
...
Hi,
This is related to this forum thread: http://forum.springframework.org/showthread.php?t=42411
and this jira issue: http://opensource.atlassian.com/projects/spring/browse/SWS-164
The issue...
I get a NullPointer exception when I issue a web service request with an empty input message. This results in an empty soap body which is totally legal (and works with other webservice frameworks)
...
Hi,
Is there any work being done to implement xss4j for the security of Spring-WS?
This is the default used with websphere 6. would be nice to have.
rgds
Joost
It is a bug in RC2, see jira issue 150.. it is resolved in future releases
kind regards
Joost
I have found the problem:
Axis1 (and I believe this is what the core saaj implementation of websphere is based on) caches the InputStream for later use.
When calling the...
I have the same problem in WAS 6.0.2.15, seems to me that it is due to the saaj implementation of WAS. Is there another way of parsing the soap message instead of saaj?
btw, isn't WAS 6.1 java 5 ?...
Hi,
I just had the same problem, it was caused by the fact that I didn't have an aop.xml in my META-INF.
If you don't have this all classes will be instrumented while generally you will only...