Argh!!! :eek: My bad. In very sneaky way (as m2e transitive optional dependency of SNAPSHOT dependency) spring-ws 1.5.9 jars found their way to be involved...
Type: Posts; User: anthavio; Keyword(s):
Argh!!! :eek: My bad. In very sneaky way (as m2e transitive optional dependency of SNAPSHOT dependency) spring-ws 1.5.9 jars found their way to be involved...
I have spring 3.0.5 and spring-ws 2.0.0-RC1 (I'm pretty sure that I do not mix other versions) but
<bean id="NkcPayloadRootAnnotationMethodEndpointMapping"...
Now you have to choose one of several remoting techniques spring supports http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/remoting.html
RTFM? http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/ch05.html
But in short:
xml config
<mvc:annotation-driven...
Well, schemas an handlers are located in spring-webmvc-3.0.x.jar. Make sure that you have 3.0.x version of jar
1. try
Use annotayion @Size(min=1). Empty form field is not null, it is empty string
2. try
step down from <mvc:annotation-driven/> to
<bean id="AnnotationMethodHandlerAdapter"...
Looks that http://www.graniteds.org has far more superior solution regarding flex JPA usage.
I was solving same puzzle, but after looking at GlobalMethodSecurityBeanDefinitionParser source, this is working result. Enjoy
<!--
<security:global-method-security...
Hi guys,
I'm very very very happy with cool annotation based 2.5 mvc. Now less happy happy thing occured. I've runned into something strange. I have correct custom property editor registered inside...
Hi spring-ws gurus,
I have to use multiple SSL keystores, different for every webservice client. I can create multiple jakarta HttpClient CommonsHttpMessageSenders, every with different...
Fun never ends with OracleAS. Those lunatics created something called "tld caching" which combined with maven2 skinny WAR (configuration described in this thread) results in error when using any tag...
Hurray, solved! So here comes solution for any another poor developer forced to deploy on OracleAS.
Because oc4j uses ear manifest for its proprietary "shared module" classpath modification, I've...
Yeah, I've got this done via maven2 skinny war trick. I've deployed ear into jboss and it works nicely, so it looks like that OracleAS deploy classloader does something smelly.
Thank's a lot for...
Log file showing that root context is loaded twice.
Nov 13, 2007 6:54:06 PM org.springframework.web.context.ContextLoader initWebApplicationContext
INFO: Root WebApplicationContext:...
Hello. I've took example classic ear shared context application, but I'm surprised that root context which is parent of several web application is initialized for every web app again and again. I'd...
Sounds reasonable. Thank you for clarification.
Thanks, I've used configs from Joris' ear and it worked.
Now I'm just curious about in what relation are those contexts. One is build from implicit spring-ws-servlet.xml and one is build from...
Hello,
I'm trying to get ear "shared context" (link) working, but no luck. Is it possible to use spring parentContextKey in web.xml while using MessageDispatcherServlet? I've tried so, but my shared...
Hi,
when using more than one Jaxb2Marshaller, SoapMessageDispatcher always choses first one because of very benevolent Jaxb2Marshaller.supports method which accepts every jaxb annotated class.
I've...
Little update. I have been expetimenting with more stax parsers and forget slower sun parser stax in classpath, so after changing it to WoodSToX the spring-ws performance is same as jax-ws. Cool huh?...
Hi. Since I'd like to switch from jax-ws ri, I've made some performance tests with poor results, so I've profiled a little bit and I've found that when using AxiomSoapMessageFactory and...
OK, I created Process interface, and everything is working now. In doc it is not clearly written when cglib proxy is created. I was thinking that <aop:aspectj-autoproxy proxy-target-class="true" />...
Hello,
I'm trying to create thread an process instance pooling service, but TaskExecutor's execute() metod parameter has to be Runnable. When this parameter is constructed by String, it will be...