Hi,
Can you post your config file ?
Type: Posts; User: Thibault.B; Keyword(s):
Hi,
Can you post your config file ?
Hi everybody, (sorry for my poor english)
I face a problem in the project I am working on, my webservice makes request in a database which can return null. I fill objects properties with these...
Yep, no need to extends, I got my problem fixed, sorry guyrs, see http://forum.springsource.org/showthread.php?t=75747 if you have this kind of problem.
thanks portlet2 for taking time to answer!
Yes there is a reason, I forgot to speak about that:
at first I just had this:
<bean id="Validating"...
Thank you, yes I finally understand how the PayloadLoggingInterceptor works, by declaring this bean in spring-ws-servlet.xml:
<bean id="Validating"...
Hi everybody,
I wrote a class which extends PayloadLoggingInterceptor, and I can ovveride every single method of PayloadLoggingInterceptor except handleRequest() and I really can't see why. I...
Got it fixed, in my pom.xml (this is a maven project), I have to specify the scope of the javax.activation dépendency:
<dependency>
<groupId>javax.activation</groupId>...
Hi everybody,
I wrote a WS using spring-ws which work perfectly using SOAPUI or a java client when deployed on my local TOMCAT server but I have a problem, it works perfectly only if my pom.xml...
I found a solution for my problem (not the best solution IMO but is efficient for what I had to do):
In my Endpoint, I build the XML by marshaling my request object (which is exactly the opposite...
Hi everybody,
I have a little problem: for the project I am working on, I need to save incoming requests but for what I understand the requests are unmarshalled as soon as they are intercepted by...
Hi everybody,
I am using DefaultWsdl11Definition to generate a wsdl from a xsd schema (which works perfectly) but I would like to change the default namespace:
<wsdl:definitions...
Got it, was simple if you are aware of spring config, here is the code:
<bean id="utilisateur"
class="org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition">
<property name="schema"...
Hi guys,
In my WebService, I generate wsdl from an xsd file:
<bean id="utilisateur"
class="org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition">
<property name="schema"...
Here is the client code:
public void customSendAndReceive() {
StreamSource source = new StreamSource(new StringReader(MESSAGE));
StreamResult result = new StreamResult(System.out);...
Hi guys, sorry for my english...
I just decided to post here because after passing 2 days debugging, I finally admit that I need some help. I am a beginner in Java and Spring and don't find a lot...
First, a useless post because I can't post a thread with URL if this is my first post....