1
vote
0answers
28 views
list available web services on tomcat using spring-ws
Is it possible to get a list of all available web services on a tomcat server?
1
vote
2answers
56 views
Jaxb2Marshaller and primitive types
Is it possible to create a web service operation using primitive or basic Java types when using the Jaxb2Marschaller in spring-ws? For example a method looking like this:
@Override
…
1
vote
3answers
158 views
JAXWS code generation and implementation along side Spring for JDK1.5
We're trying to generate source code stubs from a series of WSDLs (each with their own XSDs). We can do this fine and works perfectly under JDK1.6, however we need it to work under JDK1.5.
We're …
1
vote
4answers
124 views
Downloading large files via web service in Java
I have a web application sitting out there that is a repository for files. This web application provides web services that allow clients to search the repository and download any of the attachments …
1
vote
3answers
159 views
WebServicice with Apache CXF and custom headers.
I created a web service using Apache cfx and spring, and works, but I need that the response include this header
<?xml version="1.0" encoding="UTF-8"?>
Right now the response is like this.
…
0
votes
1answer
45 views
How to define XSD for spring-ws contract to return a serialized image?
I'm trying to put together a contract-first web application using Spring-WS. I want to define an operation that the client can invoke by providing no parameters and simply get back from the server an …
0
votes
1answer
38 views
Howto: Configure Spring-WS to publish WSDL files with a ‘?WSDL’ style URL?
I am trying to configure web service proxying using Mule ESB.
I am attempting to do this using Mule's WSProxyService, but after stepping through the corresponding code (with the debugger), it is …
0
votes
0answers
60 views
Spring + SOAPExceptionImpl: Error during saving a multipart message
I have a spring web application with jsp pages that calls different web services and displays the results in a jsp page. The spring web application has username/login spring security attached to it.
…
0
votes
2answers
79 views
@Secured service methods and spring ws
I have the following project structure:
base project (service layer, model)
web project
webservice project
where both the web project and the web service project depend on the base project and …
0
votes
2answers
59 views
SOAP and Spring
Hi guys,
I've just finished reading about SOAP via Spring-WS in "Spring in Action", 2nd edition, by Craig Walls from Manning Publications Co. They write about Contract First, much like the Spring …
0
votes
1answer
345 views
How to add custom SOAP-Header element to the generated WSDL in Spring-WS
Hi,
we are migrating from WebLogic web-services to Spring-WS (1.5.X).
There is currently one issue we are facing:
We need to pass a context object (on WLS it is passed as SOAP-Header element) to …
0
votes
1answer
48 views
Spring WS and PayloadRootAnnotationMethodEndpointMapping
I have two endpoints using annotations. I want to apply different interceptors to each of them. (one being a secure interceptor and the other not being secure) Is there a way to do this using …
0
votes
2answers
384 views
Spring WS-Security visible in WSDL
I've implemented authentication through WS-Security on my webservice as described at http://static.springframework.org/spring-ws/sites/1.5/reference/html/security.html, like so:
<bean …
1
vote
1answer
449 views
Spring-WS generates WSDL without operations
Spring-WS generates WSDL without operations in binding tag... Do you know why?
There is my spring-ws-service.xml:
<import resource="classpath*:application-context.xml" />
<!-- …
0
votes
1answer
121 views
Syntax of SoapAction in spring-ws config
I'm having some problems regarding the SoapActionEndpointMapping and are wondering if it could be related to the format of the property. The API says that the mapping is
…
