This may be a bit late but I thought I'd write something here to show how to solve this problem.
The problem is caused by using the wrong SOAP version. You are trying to make a request to a SOAP...
Type: Posts; User: johnhunsley; Keyword(s):
This may be a bit late but I thought I'd write something here to show how to solve this problem.
The problem is caused by using the wrong SOAP version. You are trying to make a request to a SOAP...
Hi,
I've come across this problem with properties files for spring at various times.
I had the default set up for resolving error messages with the message.properties file in my...
I see,
that makes sense, Sorry I didn't realize this was what the ant task was for!
I thought this would have already been implemented and that I was missing something.
Many thanks
John.
Yeah, thats cool. I've used Castor on the client side and guess it is possible to marshal xml to objects on the server using the same, but I still need to manually create the mapping file. If I could...
Hi,
I have successfully implemented spring ws services and clients and found it cumbersome to create end point marshaling using XPath or parsing the Elements and Nodes directly.
Spring ws does...
Hi,
I have returned to this problem but still can't solve it.
Has anyone else encountered the same thing?
Any help would be much appreciated.
Many thanks
Ah! got it!
I wasn't passing my Castor mapped object in, so the client was trying to parse a null!
code now looks like this
webServiceTemplate.marshalSendAndReceive(myValueObject, new...
Hi,
I solved it,
here's my code, although now I have a problem with the Castor Marshaller
webServiceTemplate.marshalSendAndReceive(new WebServiceMessageCallback() {
Hi,
I'm trying to add some simple credentials to my soap header using the Spring WS Client.
I have read this thread - http://forum.springframework.org/showthread.php?t=47876
but still none...
what name space values do you have in your .xsd schema header? I see you locationURI and targetNamespace values in your spring-ws-servlet.xml are different.
I have had no end of problems with...
Look at the endorsed/included jar files already in your Weblogic distribution. You may find conflict there. I would build with Maven first to be sure you have the correct dependencies in your build....
Hi,
I revisted this problem and have now solved it, was just a case of an incorrect url in my spring-ws-servlet.xml hence it wasn't generating the correct wsdl for me.
Many thanks for your...
Hi,
I have a problem which I think is something to do with my schema or how I get the Element value of a set of nodes.
My schema generates the wsdl and allows me to make a request for a set of...
Doh!
I need a PayloadValidationInterceptor:
<bean id="validatingInterceptor" class="org.springframework.ws.soap.server.endpoint.interceptor.PayloadValidatingInterceptor">
...
Hi,
I've got my Spring-ws project working just fine but I can't seem to get the restrictions and patterns to validate the SOAP request. For example I have a very simple example which accepts a...
Hi,
so, does that mean my WSDL is correct? I just have to ensure the url of the service endpoint is correct?
John.
Hi,
I have managed to over come the parser problem, see this thread
http://forum.springframework.org/showthread.php?p=152242#post152242
I am now in a situation where I can see the generated...
Hi girish
I have had exactly the same problem. I don't know whether you have solved it but I shall tell you anyhow.
Basically you are using an older version of tomcat with J2SE 1.4 and you have...
1.4 or 1.5?
I read in this thread that I J2SE1.5 will do, which is what I am using.
http://forum.java.sun.com/thread.jspa?threadID=642441&messageID=3814740
Namely this post:
"The Sun...
Is it true to say that Spring-ws will only work with tomcat 5.5 and above?
Hi,
I have the same xerces version in commons/endorsed as I do in my app. If I roll back to the old xerces I had in my tomcat I get -
java.lang.NoSuchMethodError:...
Hi,
I've been trying for months now to get Spring-ws to work but it's just not doing what it is supposed to.
I have followed the tutorial many times, it builds but then complains about...
Not sure if you guys have solved your problem I had a similar issue when trying to implement the ShaPasswordEncoder to work with my user credentials migrated from an older db.
My passwords were...
Sorry, should have read the doc more closely - lol
My User object now implements UserDetails
my UserDAO implements UserDetailsService
my acegiSecurityContext.xml uses the UserDAO instead of...
Hi there,
I'm rebuilding and old web application using Spring-mvc and acegi. So far we have all the business logic implemented and bound together using core spring. We have now started...