0
votes
1answer
152 views

spring-ws get username & password

I've been learning spring-ws for little over a week and I've set up a simple web service. I'm testing it using soapui and specifying a username and password in the request properties. My web service ...
2
votes
3answers
183 views

Spring WS has trouble with namespace declaration for schema instance

This is my request Envelope, with the xsi:xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" declaration put in my myRequestMethod XML tag: <soapenv:Envelope ...
1
vote
1answer
175 views

Spring transaction doesn't rollback in classes not instantiated by Spring context

I have a problem with handling transaction in Spring. I have a web service which simply iterates a definite number of times, and each time insert a record into an Oracle db. I marked the insert method ...
0
votes
1answer
789 views

SOAP - don't know what my endpoint URL is

I hope this problem is extremely simple and it's just me being an idiot. I am new to SOAP and am attempting to set up a SOAP WebService (using Java and Spring) and then using the tool SoapUI I attempt ...
0
votes
0answers
2k views

What could be wrong ? Getting WebServiceTransportException- 500

I am trying to write a web-service client with Spring-WS 2.0.4.RELEASE, SOAP-1.2 , JAXB-2.1, Spring 3.1.0.RELEASE . When I make a request to the web-service from my spring bean, I am getting the ...
3
votes
1answer
990 views

Spring-ws SOAP 404 error

i did a tutorial after this -> http://java.dzone.com/articles/spring-ws-how when i go to url http://localhost:8080/myService/services/MemberDetailsRequest.wsdl , i get the static wsdl file.. but when ...
0
votes
2answers
1k views

Problems with SOAPUI, SpringWS, and Tomcat5.5

Ive been trying to get an example Web Service working using SpringWS and Tomcat5.5 Ive followed examples such as: ...