May be you are looking for this:
public abstract class ExecutorUtil {
private final static Log logger = LogFactory.getLog(ExecutorUtil.class);
/**
* @param <T>
Type: Posts; User: exgorth; Keyword(s):
May be you are looking for this:
public abstract class ExecutorUtil {
private final static Log logger = LogFactory.getLog(ExecutorUtil.class);
/**
* @param <T>
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.
...
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...
Most graceful, Greg. Cheap but good!
Really, is there any way to out.print the web service client's ip address?
ok. thanx.
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...
sure. I could post it within few hours.
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...
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...
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"...
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...
I have tried your advice and created MethodInterceptor for the txManager:
public class MyAdvisor implements MethodInterceptor {
Log LOG = LogFactory.getLog(MyAdvisor.class);
/**
* @see...
Sorry, don't get that thing about advising PlatformTransactionManager.
To be absolutely clear:
Say i have:
interface Service {
void interestingCalculation(Object param);
void...
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...
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...
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...
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;...
:) :)
WOW!
Arjen, does WS-Addressing support will cover service consumers?
Does WS-Addressing support will be available to WebServiceTemplate users?
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.
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...
you can add log4j.properties to your runtime classpath to see xml:
log4j.rootLogger=ALL, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender...
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...
Thanx, Arjen. I've already done it. Still researching..