Search:

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

Page 1 of 3 1 2 3

Search: Search took 0.14 seconds.

  1. Replies
    2
    Views
    1,091

    May be you are looking for this: public...

    May be you are looking for this:



    public abstract class ExecutorUtil {

    private final static Log logger = LogFactory.getLog(ExecutorUtil.class);

    /**
    * @param <T>
  2. Replies
    3
    Views
    2,638

    Try to explore the target/surefire-reports to...

    Try to explore the target/surefire-reports to find the real error in the com.mycompany.hr.ws.HolidayEndpointTest.txt, which must be there.

    By the way, you shouldn't use 1.0.4 as 1.5.2 exist.
    ...
  3. Replies
    3
    Views
    2,638

    The 'tutorial' application in the Spring-WS...

    The 'tutorial' application in the Spring-WS distro 'samples' is one you are looking for.
    Just deploy it, move ./WEB-INF/hr.wsdl out of the WEB-INF to make it accessible, test if you could access it...
  4. Thread: Access Logging

    by exgorth
    Replies
    8
    Views
    1,948

    Most graceful, Greg. Cheap but good!

    Most graceful, Greg. Cheap but good!
  5. Thread: Access Logging

    by exgorth
    Replies
    8
    Views
    1,948

    Really, is there any way to out.print the web...

    Really, is there any way to out.print the web service client's ip address?
  6. ok. thanx.

    ok. thanx.
  7. Howto reply with soap fault from endpoint interceptor

    Hello.

    I've created custom interceptor for endpoint by implementing org.springframework.ws.server.EndpointInterceptor;

    if i return false from the handleRequest method than client does not...
  8. sure. I could post it within few hours.

    sure. I could post it within few hours.
  9. Replies
    5
    Views
    5,322

    I've read that post. It suggessts to setup...

    I've read that post. It suggessts to setup deployment environments which is a GOOD option for small number of environments.

    Howerer we have 3 webapps (2 on jboss and 1 on tomcat), web-service...
  10. Replies
    5
    Views
    5,322

    Yes, our dba forces us to externalize database...

    Yes, our dba forces us to externalize database settings. All applications should use databases, but configuration of data sources must be defined in single place.
    Are there any other way to...
  11. Replies
    5
    Views
    5,322

    Failed to import spring xml config from http

    Hello

    I'm trying to import some bean definition as following:


    <beans xmlns="http://www.springframework.org/schema/beans" xmlns:util="http://www.springframework.org/schema/util"...
  12. Hello. you are not the one striking this problem....

    Hello. you are not the one striking this problem.

    The brute-force hack before Spring team releases the solution (http://jira.springframework.org/browse/SPR-4728)

    is to parse post request and...
  13. Replies
    6
    Views
    1,647

    I have tried your advice and created...

    I have tried your advice and created MethodInterceptor for the txManager:


    public class MyAdvisor implements MethodInterceptor {
    Log LOG = LogFactory.getLog(MyAdvisor.class);

    /**
    * @see...
  14. Replies
    6
    Views
    1,647

    Sorry, don't get that thing about advising...

    Sorry, don't get that thing about advising PlatformTransactionManager.

    To be absolutely clear:

    Say i have:


    interface Service {
    void interestingCalculation(Object param);
    void...
  15. Replies
    6
    Views
    1,647

    I think, i need a declarative approach. The...

    I think, i need a declarative approach.

    The problem i'm trying to solve is the following:

    I need to invoke some DBMS_APPLICATION_INFO functions (SET_MODULE procedure, see...
  16. Replies
    6
    Views
    1,647

    Advice around transaction

    Hello. I want to add an 'interceptor' that will perform custom action each time after new transaction is started and right before it is committed.

    I want to add something like:

    1. client call...
  17. Replies
    2
    Views
    897

    Try Jaxb2 without validation. You should omit the...

    Try Jaxb2 without validation. You should omit the schema* property of the org.springframework.oxm.jaxb.Jaxb2Marshaller in configuration, or more generally, the JAXBContext must be instantiated...
  18. The following may be chained on client to...

    The following may be chained on client to add/extract specific info to/from WebServiceMessage:



    package ru.invito.ws.client.bronni;

    import java.io.IOException;
    import java.util.HashMap;...
  19. Replies
    7
    Views
    1,668

    :) :)

    :) :)
  20. Replies
    21
    Views
    5,986

    WOW! Arjen, does WS-Addressing support will...

    WOW!


    Arjen, does WS-Addressing support will cover service consumers?
    Does WS-Addressing support will be available to WebServiceTemplate users?
  21. Replies
    7
    Views
    1,777

    I'm sure the jaxb2 (2.1.3) not a problem here. ...

    I'm sure the jaxb2 (2.1.3) not a problem here.

    I've attached the test project witch generates from your xsd, marshalls/unmarshalls MyRequest, sets and gets valid date.
  22. Replies
    0
    Views
    1,105

    SAAJ0537: Invalid Content-Type.

    This error is raised on client when server fails to respond with soap message (server bug).

    This SWS thrown is: org.springframework.ws.soap.SoapMessageCreationException

    The question is: how to...
  23. Thread: Client logging

    by exgorth
    Replies
    2
    Views
    845

    you can add log4j.properties to your runtime...

    you can add log4j.properties to your runtime classpath to see xml:


    log4j.rootLogger=ALL, stdout
    log4j.appender.stdout=org.apache.log4j.ConsoleAppender...
  24. Replies
    3
    Views
    1,143

    Have solved it, at last! With a help of xwss...

    Have solved it, at last! With a help of xwss mailing list.

    Implemented an SWS-1.0.2-SNAPSHOT client working with WSE 2.0 service, requiring ws-addressing, ws-security-1.0.

    Policy: sign...
  25. Replies
    3
    Views
    1,143

    Thanx, Arjen. I've already done it. Still...

    Thanx, Arjen. I've already done it. Still researching..
Results 1 to 25 of 68
Page 1 of 3 1 2 3