Search:

Type: Posts; User: anthavio; Keyword(s):

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    2,258

    Spring Framework Compatibility

    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...
  2. Replies
    2
    Views
    2,258

    Spring Framework Compatibility

    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"...
  3. Replies
    2
    Views
    1,051

    Now you have to choose one of several remoting...

    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
  4. Replies
    1
    Views
    3,740

    RTFM?...

    RTFM? http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/ch05.html
    But in short:

    xml config

    <mvc:annotation-driven...
  5. Well, schemas an handlers are located in...

    Well, schemas an handlers are located in spring-webmvc-3.0.x.jar. Make sure that you have 3.0.x version of jar
  6. 1. try Use annotayion @Size(min=1). Empty form...

    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"...
  7. Replies
    7
    Views
    3,946

    GraniteDS

    Looks that http://www.graniteds.org has far more superior solution regarding flex JPA usage.
  8. Replies
    3
    Views
    7,741

    I was solving same puzzle, but after looking at...

    I was solving same puzzle, but after looking at GlobalMethodSecurityBeanDefinitionParser source, this is working result. Enjoy


    <!--
    <security:global-method-security...
  9. Failed to convert value of type [java.lang.String[]] to required type

    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...
  10. WebServiceTemplate & CommonsHttpMessageSender both require absolute defaultUri

    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...
  11. Replies
    7
    Views
    1,332

    Fun never ends with OracleAS. Those lunatics...

    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...
  12. Replies
    7
    Views
    1,332

    Hurray, solved! So here comes solution for any...

    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...
  13. Replies
    7
    Views
    1,332

    Yeah, I've got this done via maven2 skinny war...

    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...
  14. Replies
    7
    Views
    1,332

    Log file showing that root context is loaded...

    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:...
  15. Replies
    7
    Views
    1,332

    Shared context got loaded mutliple times

    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...
  16. Sounds reasonable. Thank you for clarification.

    Sounds reasonable. Thank you for clarification.
  17. Thanks, I've used configs from Joris' ear and it...

    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...
  18. parentContextKey and MessageDispatcherServlet

    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...
  19. Replies
    0
    Views
    696

    Multiple Jaxb2Marshallers

    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...
  20. Little update. I have been expetimenting with...

    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?...
  21. AxiomSoapMessageFactory allways falls to DOM

    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...
  22. OK, I created Process interface, and everything...

    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" />...
  23. TaskExecutor + Method Injection = ClassCastException

    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...
Results 1 to 23 of 23