active questions tagged spring-ws - Stack Overflow most recent 30 from stackoverflow.com 2010-03-21T23:32:58Z http://stackoverflow.com/feeds/tag/spring-ws http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2419791/using-webservicetemplate-with-a-keystore 2 Using WebServiceTemplate with a keystore Scobal http://stackoverflow.com/users/237733 2010-03-10T19:14:27Z 2010-03-11T17:26:06Z <p>Is it possible to configure a WebServiceTemplate with a java keystore?</p> <p><strong>edit</strong><br> I'm looking for a way to configure the location of the keystore in the spring config</p> http://stackoverflow.com/questions/2391428/spring-web-service-client-tutorial-or-example-required 0 Spring Web Service Client Tutorial or Example Required Nirmal http://stackoverflow.com/users/87942 2010-03-06T05:17:51Z 2010-03-09T13:35:36Z <p>Hello All...</p> <p>I need to jump into the Spring Web Service Project, in that I required to implement the Spring Web Service's Client Only..</p> <p>So, I have already gone through with <a href="http://static.springsource.org/spring-ws/sites/1.5/reference/html/client.html" rel="nofollow">Spring's Client Reference Document</a>.</p> <p>So, I got the idea of required classes for the implementation of Client.</p> <p>But my problem is like I have done some googling, but didn't get any proper example of both Client and Server from that I can implement one sample for my client.</p> <p>So, if anybody gives me some link or tutorial for proper example from that I can learn my client side implementation would be greatly appreciated.</p> <p>Thanks in advance...</p> http://stackoverflow.com/questions/2408544/accessing-spring-ws-service-with-jax-rpc-client-model 0 Accessing Spring-WS service with JAX-RPC client model vivek kumar http://stackoverflow.com/users/158335 2010-03-09T11:14:16Z 2010-03-09T11:14:16Z <p>I have deployed a service using spring-ws and accessed it using</p> <pre><code>&lt;bean id="messageFactory" class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory"/&gt; &lt;bean id="webServiceTemplate" class="org.springframework.ws.client.core.WebServiceTemplate"&gt; &lt;constructor-arg ref="messageFactory"/&gt; &lt;property name="defaultUri" value="http://localhost:6060/SpringMVC/ws"/&gt; &lt;/bean&gt; &lt;bean id="webServiceClient" class="client.EchoTestClient"&gt; &lt;property name="defaultUri" value="http://localhost:6060/SpringMVC/ws/"/&gt; &lt;/bean&gt; </code></pre> <p>Can we use any of the JAX-RPC client handing method( Static Stub, Dynamic Proxy or Dynamic Invocation Interface) to access these web services? If yes then how? What I understand is that Spring-WS implementation is quite different from JAX-RPC and JAX-WS implementation and we cannot access these using JAX-RPC. Please suggest.</p> <p>Thanks</p> http://stackoverflow.com/questions/2403417/spring-ws-validator-interceptor 0 Spring WS & Validator interceptor mada http://stackoverflow.com/users/289032 2010-03-08T17:53:54Z 2010-03-08T22:27:32Z <p>I have a endpoint mapping a webservice which is used to insert in the dabatabase some keywords:</p> <pre><code>@Transactional(readOnly = false,isolation= Isolation.SERIALIZABLE) public Source saveKW(...). </code></pre> <p>The input is a request.</p> <p>I would like to add an interceptor on the method in order to validate the parameters. this one will read some values from the DB.</p> <p>i would like that this interceptor is EMBED in the transaction declared for the endpoint (or this opposite). In other words, i want them to be in the same transaction.</p> <p>Ideally im looking for something like this with annotation:</p> <pre><code>@Transactional(readOnly = false,isolation= Isolation.SERIALIZABLE) @validator("KeyWordValidaor.class") public Source saveKW(...) </code></pre> <p>where <code>KeyWordValidaor</code> will be class validating the parameters.</p> <p>Have you any idea or short examples to implements this like this way or in a other real way?</p> http://stackoverflow.com/questions/2378829/spring-map-a-file-to-a-url-uri 1 Spring Map a file to a Url / URI saky http://stackoverflow.com/users/281123 2010-03-04T11:26:21Z 2010-03-04T13:36:51Z <p>I have a spring webservice for which I have the schema in a directory as:</p> <ul> <li>WebRoot/DataContract/person.xsd</li> <li>WebRoot/DataContract/sub-person.xsd</li> </ul> <p>Where sub-person.xsd is included in person.xsd that is:</p> <p>in Person.xsd: </p> <pre><code>&lt;xsd:import namespace="http://www.mynamespace.org/xml/sub-person" schemaLocation="sub-person.xsd"/&gt; </code></pre> <p>I have defined the wsdl as:</p> <pre><code>&lt;bean id="personserv" class="org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition"&gt; &lt;property name="schemaCollection" ref="schemaCollection"/&gt; &lt;property name="portTypeName" value="personserv"/&gt; &lt;property name="locationUri" value="/ws/personnelService/"/&gt; &lt;property name="targetNamespace" value="http://www.mynamespace.org/definitions"/&gt; &lt;/bean&gt; </code></pre> <p>I can access the wsdl file using:</p> <p><a href="http://localhost:8080/myapp/ws/personnelService/personserv.wsdl" rel="nofollow">http://localhost:8080/myapp/ws/personnelService/personserv.wsdl</a></p> <p>However, when making use of this wsdl the client can fetch person.xsd and cannot fetch sub-person.xsd giving an error failed to load </p> <p><a href="http://localhost:8080/myapp/ws/personnelService/sub-person.xsd" rel="nofollow">http://localhost:8080/myapp/ws/personnelService/sub-person.xsd</a></p> <p>my question is how can I make sub-person.xsd available at the that URI location ?</p> <p>I have also changed the location specified in person.xsd as:</p> <pre><code>&lt;xsd:import namespace="http://www.mynamespace.org/xml/sub-person" schemaLocation="/DataContract/sub-person.xsd"/&gt; </code></pre> <p>which the client then tried to find sub-person.xsd at:</p> <p><a href="http://localhost:8080/sub-person.xsd" rel="nofollow">http://localhost:8080/sub-person.xsd</a> which isn't correct.</p> <p>Another attempt was:</p> <pre><code>&lt;xsd:import namespace="http://www.mynamespace.org/xml/sub-person" schemaLocation="DataContract/sub-person.xsd"/&gt; </code></pre> <p>which the client then tried to find sub-person.xsd at:</p> <p><a href="http://localhost:8080/myapp/ws/personnelService/DataContract/sub-person.xsd" rel="nofollow">http://localhost:8080/myapp/ws/personnelService/DataContract/sub-person.xsd</a> </p> http://stackoverflow.com/questions/2355464/setting-up-spring-ws 0 setting up spring-ws ccdugga http://stackoverflow.com/users/24481 2010-03-01T11:39:00Z 2010-03-01T11:39:00Z <p>im trying to test the spring webservice i have set up.</p> <p>Im using a web debugger tool to create a request header and then posting it to the URL where my wsdl resides. I have my server running in debug so when i post the request i can see my endpoint class services being injected however an exception is then thrown before the actual business method is executed (im using annotations to specify method to execute).</p> <p>The exception thrown is ;</p> <pre><code>InternalExcep E com.ibm.ws.webservices.engine.InternalException &lt;init&gt; WSWS3227E: Error: Exception:java.io.IOException: Stream closed </code></pre> <p>and when i dedug i can see that it is being thrown from the getSAAJVersion method of SaajUtils</p> <pre><code>soapEnvelope = soapMessage.getSOAPPart().getEnvelope(); </code></pre> <p>When i inspect the soapmessage parameter being passed into this method is see that it contains the following exception;</p> <pre><code>org.eclipse.core.runtime.CoreException: Source lookup error </code></pre> <p>Anyone have any ideas of what im doing wrong here? </p> http://stackoverflow.com/questions/2326304/spring-ws-and-generated-wsdl 0 spring-ws and generated wsdl ccdugga http://stackoverflow.com/users/24481 2010-02-24T13:29:50Z 2010-02-24T13:35:05Z <p>using Spring's DefaultWsdl11Definition class to generate a wsdl from my xsd i notice that a number of element bindings are missing from the generated WSDL such as wsdl/sch/tns/soap etc.</p> <p>Is there somewhere i need to specify these namespaces?</p> <p>-when i place them at the top of my .xsd they are ignored</p> http://stackoverflow.com/questions/880971/spring-web-service-client-for-calling-apache-axis-web-service 0 Spring web service client for calling Apache axis web service user109153 http://stackoverflow.com/users/109153 2009-05-19T04:25:41Z 2010-02-17T08:27:27Z <p>I need to call the external(Remote) web service through my spring web service client proramme.</p> <ul> <li>How can i send the request to remote web service service?</li> </ul> http://stackoverflow.com/questions/2274378/add-soapheader-to-org-springframework-ws-webservicemessage 2 Add SoapHeader to org.springframework.ws.WebServiceMessage Scobal http://stackoverflow.com/users/237733 2010-02-16T16:21:23Z 2010-02-16T22:32:16Z <p>How can I add an object into the soap header of a <code>org.springframework.ws.WebServiceMessage</code></p> <p>This is the structure I'm looking to end up with:</p> <pre><code> &lt;soap:Header&gt; &lt;credentials xmlns="http://example.com/auth"&gt; &lt;username&gt;username&lt;/username&gt; &lt;password&gt;password&lt;/password&gt; &lt;/credentials&gt; &lt;/soap:Header&gt; </code></pre> http://stackoverflow.com/questions/1842843/stream-mtom-web-services-in-spring-web-services-framework 3 Stream MTOM Web Services in Spring Web Services Framework hoffmandirt http://stackoverflow.com/users/43365 2009-12-03T20:52:31Z 2010-02-12T14:35:26Z <p>I would like to send large files from the server to the client using MTOM and Spring WS. I realize that this isn't the best approach for this type of thing, but it's a requirement. I have MTOM set up and it works great for small files around 50mb. I am experiencing out of memory errors for larger files and by changing different heap space sizes, I can send slightly larger files, but nothing close to 1gb. 1GB is my test case for this. How can I stream or chunk the MTOM service from the server to the client? I am using Java 6 update 17, Tomcat 6, and Spring WS 1.5.7 with the SaajSoapMessageFactory.</p> <p>I found an example of streaming with jax-ws, but I'm not sure how to incorporate this into a Spring WS endpoint.</p> <p><a href="http://download.oracle.com/docs/cd/E12840%5F01/wls/docs103/webserv%5Fadv/mtom.html" rel="nofollow">Optimizing Binary Data Transmission Using MTOM/XOP </a></p> http://stackoverflow.com/questions/974283/syntax-of-soapaction-in-spring-ws-config 0 Syntax of SoapAction in spring-ws config maskefjes http://stackoverflow.com/users/27743 2009-06-10T08:18:05Z 2010-02-01T15:00:04Z <p>I'm having some problems regarding the SoapActionEndpointMapping and are wondering if it could be related to the format of the property. The <a href="http://static.springsource.org/spring-ws/sites/1.5/apidocs/org/springframework/ws/soap/server/endpoint/mapping/SoapActionEndpointMapping.html" rel="nofollow">API</a> says that the mapping is</p> <blockquote> <p>SOAP_ACTION=ENDPOINT_BEAN_NAME</p> </blockquote> <p>with the example</p> <blockquote> <p><a href="http://www.springframework.org/spring-ws/samples/airline/GetFlights=getFlightsEndpoint" rel="nofollow">http://www.springframework.org/spring-ws/samples/airline/GetFlights=getFlightsEndpoint</a></p> </blockquote> <p>Am I correct assuming that "<em><a href="http://www.springframework.org/spring-ws/samples/airline/" rel="nofollow">http://www.springframework.org/spring-ws/samples/airline/</a></em>" is the namespace and "<em>GetFligths</em>" is the soapAction?</p> http://stackoverflow.com/questions/2045216/why-is-jax-ws-spring-service-reference-prefixed-with-as-in-wsservice-beanm 2 why is jax-ws spring service reference prefixed with #, as in ws:service bean="#myService" drew1938 http://stackoverflow.com/users/248401 2010-01-11T21:53:02Z 2010-02-01T10:04:06Z <p>I've developed a web service with jax-ws and Spring using the tutorials at the jax-ws commons website. It shows you how to define and reference your service from your spring applicationContext file (<a href="https://jax-ws-commons.dev.java.net/spring/" rel="nofollow">https://jax-ws-commons.dev.java.net/spring/</a>). </p> <p>What is the reason for the "#" when referencing the web service? I would expect to see something more like </p> <pre><code>&lt;ws:service name="myEventWS" ref="eventWebService"/&gt; </code></pre> <p>but following example at the above link I created the following which works. </p> <pre><code>&lt;bean id="eventWebService" class="com.myws.EventWS"&gt; &lt;property name="model" ref="EventModel"/&gt; &lt;/bean&gt; &lt;wss:binding url="/EventWS"&gt; &lt;wss:service&gt; &lt;ws:service bean="#eventWebService"/&gt; &lt;/wss:service&gt; &lt;/wss:binding&gt; </code></pre> http://stackoverflow.com/questions/2154768/trouble-setting-ws-response-schema 0 Trouble setting WS response schema Daniel Moura http://stackoverflow.com/users/8041 2010-01-28T13:27:23Z 2010-01-28T18:26:29Z <p>I'm using soapUI to test some WebServices.</p> <p>In MockService available in soapUI I get this default response</p> <pre><code> &lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sch="http://www.someurl.com/schemas"&gt; &lt;soapenv:Header/&gt; &lt;soapenv:Body&gt; &lt;sch:Response&gt; &lt;sch:Something&gt;?&lt;/sch:Something&gt; &lt;/sch:Response&gt; &lt;/soapenv:Body&gt; &lt;/soapenv:Envelope&gt; </code></pre> <p>When the real Webservice is called I don't get xmlns:sch="http://www.someurl.com/schemas" and the elements inside the response doesn't come with 'sch' prefix. Here is what I get:</p> <pre><code> &lt;soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;soapenv:Header/&gt; &lt;soapenv:Body&gt; &lt;Response&gt; &lt;Something&gt;something&lt;/Something&gt; &lt;/Response&gt; &lt;/soapenv:Body&gt; &lt;/soapenv:Envelope&gt; </code></pre> <p>I'm using Java with spring-ws. And using Castor to marshall xml to Java Object.</p> <p>How to include the schema in the response?</p> <p><strong>EDIT</strong>: Adding configuration details.</p> <p>myApplication-servlet.xml is like this</p> <pre><code>&lt;bean id="payloadMapping" class="org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping"&gt; &lt;property name="endpointMap"&gt; &lt;map&gt; &lt;entry key="{http://www.someurl.com/schemas}MyRequest" value-ref="myEndpoint"/&gt; &lt;/map&gt; &lt;/property&gt; &lt;/bean&gt; &lt;bean id="myEndpoint" class="foo.bar.myEndpoint"&gt; &lt;constructor-arg ref="messageSource" /&gt; &lt;property name="marshaller" ref="marshaller" /&gt; &lt;property name="unmarshaller" ref="marshaller" /&gt; &lt;/bean&gt; &lt;bean id="myWsdlDefinition" class="org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition"&gt; &lt;property name="schema"&gt; &lt;bean class="org.springframework.xml.xsd.SimpleXsdSchema"&gt; &lt;property name="xsd" value="/MyXsd.xsd" /&gt; &lt;/bean&gt; &lt;/property&gt; &lt;property name="portTypeName" value="myPortTypeName" /&gt; &lt;property name="locationUri" value="http://anotherUrl:8080/services" /&gt; &lt;/bean&gt; &lt;bean id="marshaller" class="org.springframework.oxm.castor.CastorMarshaller"&gt; &lt;property name="mappingLocation" value="classpath:mapping.xml" /&gt; &lt;/bean&gt; &lt;bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"&gt; &lt;property name="basename" value="errors" /&gt; &lt;/bean&gt; </code></pre> http://stackoverflow.com/questions/2077029/quickstart-tool-for-spring-webservices 1 Quickstart tool for Spring-Webservices? hstoerr http://stackoverflow.com/users/21499 2010-01-16T10:44:39Z 2010-01-19T17:54:53Z <p>Now, working with Spring-WS, I sometimes miss the simplicity of working with axis, where you just call a tool on the WSDL and XSD, and it creates the java objects and marshaller configurations, an interface that represents the information in the WSDL, a complete webservice client that implements this interface, and a server stub. Within minutes you can start writing the actual code for the webservice. </p> <p>With Spring-WS you have much more configuration work to do - you have configure a marshaller, an endpoint, code all the information in the WSDL manually, and using the soap faults from the WSDL in form of java Exceptions seems <a href="http://stackoverflow.com/questions/2070422/generating-java-exceptions-from-xsd-binding-exceptions-with-jaxb2">difficult</a>. Is there any tool that simplifies this work to a similar degree? I understand and appreciate that Spring-WS is flexible and whatnot, but sometimes you just want to whip up a quick webservice.</p> http://stackoverflow.com/questions/2092168/how-to-retrieve-header-values-from-soap-envelope-in-spring-ws 0 How to retrieve header values from SOAP Envelope in Spring WS Shailendra http://stackoverflow.com/users/253843 2010-01-19T08:41:48Z 2010-01-19T08:49:39Z <p>I am getting some values in SOAPHeader in a Spring Webservice. I would like to retrieve those values .</p> http://stackoverflow.com/questions/974164/usage-of-soapactionendpointmapping-in-spring-ws 0 Usage of SoapActionEndpointMapping in Spring-ws maskefjes http://stackoverflow.com/users/27743 2009-06-10T07:36:15Z 2010-01-15T04:00:00Z <p>Hi all. I'm trying to create a WS based on a WSDL that defines one Request and one Response. The incoming request should be mapped to an endpoint depending on the SOAPAction defined in the SOAP message. To achieve this I'm trying to use the SoapActionEndpointMapping in my servlet.xml config file and define the mappings, as described in the <a href="http://static.springframework.org/spring-ws/sites/1.5/reference/html/server.html#endpoint-mappings" rel="nofollow">Spring documentation</a>.</p> <pre><code> &lt;bean id="endpointMapping" class="org.springframework.ws.soap.server.endpoint.mapping.SoapActionEndpointMapping"&gt; &lt;property name="mappings"&gt; &lt;props&gt; &lt;prop key="http://myCompany/MyService/MyRequest/mySoapActionOne"&gt;myFirstEndpoint&lt;/prop&gt; &lt;prop key="http://myCompany/MyService/MyRequest/mySoapActionTwo"&gt;mySecondEndpoint&lt;/prop&gt; &lt;/props&gt; &lt;/property&gt; </code></pre> <p></p> <p>My endpoint extends AbstractMarshallingPayloadEndpoint and should be able to handle the requests. </p> <p>The problem is that when I try to send a request (with SoapUI) i get the following error in the log:</p> <pre><code>WARN [EndpointNotFound] No endpoint mapping found for [SaajSoapMessage {http://schemas.mycompany/MyService}MyRequest] </code></pre> <p>I have used the PayloadRootQNameEndpointMapping with great success earlier but can not this to work.</p> <p>Any help is appreciated.</p> <p>Regards.</p> http://stackoverflow.com/questions/1887870/decrypting-message-with-a-spring-web-service-client 7 Decrypting Message with a Spring Web Service Client Zoidberg http://stackoverflow.com/users/155201 2009-12-11T12:46:59Z 2010-01-04T20:38:09Z <p><strong>350 Bounty</strong> and waffles to the person who can help me!</p> <p>I have been struggling with <a href="http://en.wikipedia.org/wiki/Spring_Framework" rel="nofollow">Spring</a> Web Service encryption for days and I can't figure out how to get Spring's encryption on the message body to work. Whenever I have the server encrypt the resulting message the client doesn't seem to be decrypting it before it attempts to validate it against the Schema (<a href="http://en.wikipedia.org/wiki/XML_Schema_%28W3C%29" rel="nofollow">XSD</a>).</p> <p><a href="http://pastebin.com/f1c431206" rel="nofollow">Here is the server side configuration</a></p> <p><a href="http://pastebin.com/f40e3377b" rel="nofollow">The server's xwss security configuration</a></p> <p><a href="http://pastebin.com/f5b360ce5" rel="nofollow">The client's Spring configuration</a></p> <p><a href="http://pastebin.com/f2635bee7" rel="nofollow">Client's xwss configuration</a></p> <p>What I can do is encrypt the user token and decrypt it successfully. I do that when sending data from the client to the server. The server then decrypts the user token and authenticates the user credentials, that works quite well.</p> <p>The problem occurs if I try and encrypt the body of the message coming back. The issue occurs on the client side. It seems the client is trying to validate the message before it decrypts it, and hence an error occurs when validating against the schema.</p> <pre><code>[Fatal Error] :1:192: The prefix "ns0" for element "ns0:HolidayListResponse" is not bound. 11-Dec-2009 7:45:32 AM com.sun.xml.wss.impl.apachecrypto.DecryptionProcessor decryptElementWithCipher SEVERE: WSS1203: Exception [ The prefix "ns0" for element "ns0:HolidayListResponse" is not bound. ] while trying to decrypt message </code></pre> <p><a href="http://pastebin.com/f4eec9dc7" rel="nofollow">And here is the SOAP response itself</a>.</p> <p>And here is the marshalling mapping file</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!DOCTYPE mapping PUBLIC "-//EXOLAB/Castor Mapping DTD Version 1.0//EN" "http://castor.org/mapping.dtd"&gt; &lt;mapping&gt; &lt;field-handler name="dateHandler" class="com.mycompany.hr.handlers.DateFieldHandler" /&gt; &lt;field-handler name="dateHandler2" class="com.mycompany.hr.handlers.DateFieldHandler" /&gt; &lt;class name="com.mycompany.hr.data.Holiday"&gt; &lt;map-to ns-uri="http://mycompany.com/hr/schemas" ns-prefix="ns0" xml="Holiday" /&gt; &lt;field name="from" type="string" handler="dateHandler"&gt; &lt;bind-xml name="StartDate" node="element" /&gt; &lt;/field&gt; &lt;field name="to" type="string" handler="dateHandler2"&gt; &lt;bind-xml name="EndDate" node="element" /&gt; &lt;/field&gt; &lt;/class&gt; &lt;class name="com.mycompany.hr.data.Employee"&gt; &lt;map-to ns-uri="http://mycompany.com/hr/schemas" ns-prefix="ns0" xml="Employee" /&gt; &lt;field name="number" type="java.lang.Integer"&gt; &lt;bind-xml name="Number" node="element" /&gt; &lt;/field&gt; &lt;field name="firstName" type="java.lang.String"&gt; &lt;bind-xml name="FirstName" node="element" /&gt; &lt;/field&gt; &lt;field name="lastName" type="java.lang.String"&gt; &lt;bind-xml name="LastName" node="element" /&gt; &lt;/field&gt; &lt;/class&gt; &lt;class name="com.mycompany.hr.data.HolidayRequest"&gt; &lt;map-to ns-uri="http://mycompany.com/hr/schemas" ns-prefix="ns0" xml="HolidayRequest" /&gt; &lt;field name="holiday" type="com.mycompany.hr.data.Holiday"&gt; &lt;bind-xml name="Holiday" node="element" /&gt; &lt;/field&gt; &lt;field name="employee" type="com.mycompany.hr.data.Employee"&gt; &lt;bind-xml name="Employee" node="element" /&gt; &lt;/field&gt; &lt;/class&gt; &lt;class name="com.mycompany.hr.data.HolidayConfirmation"&gt; &lt;map-to ns-uri="http://mycompany.com/hr/schemas" ns-prefix="ns0" xml="HolidayConfirmation" /&gt; &lt;field name="confirmationCode" type="java.lang.Integer"&gt; &lt;bind-xml name="ConfirmationCode" node="element" /&gt; &lt;/field&gt; &lt;field name="confirmationMessage" type="java.lang.String"&gt; &lt;bind-xml name="ConfirmationMessage" node="element" /&gt; &lt;/field&gt; &lt;/class&gt; &lt;class name="com.mycompany.hr.data.HolidayResponse"&gt; &lt;map-to ns-uri="http://mycompany.com/hr/schemas" ns-prefix="ns0" xml="HolidayResponse" /&gt; &lt;field name="confirmation" type="com.mycompany.hr.data.HolidayConfirmation"&gt; &lt;bind-xml name="HolidayConfirmation" node="element" /&gt; &lt;/field&gt; &lt;/class&gt; &lt;class name="com.mycompany.hr.data.HolidayListRequest"&gt; &lt;map-to ns-uri="http://mycompany.com/hr/schemas" ns-prefix="ns0" xml="HolidayListRequest" /&gt; &lt;field name="id" type="java.lang.Integer"&gt; &lt;bind-xml name="userId" node="element" /&gt; &lt;/field&gt; &lt;/class&gt; &lt;class name="com.mycompany.hr.data.HolidayListResponse"&gt; &lt;map-to ns-uri="http://mycompany.com/hr/schemas" ns-prefix="ns0" xml="HolidayListResponse" /&gt; &lt;field name="holidays" type="com.mycompany.hr.data.Holiday" collection="vector"&gt; &lt;bind-xml name="Holiday" node="element" /&gt; &lt;/field&gt; &lt;/class&gt; &lt;/mapping&gt; </code></pre> <p>I know it's a lot of information, but I figured I would provide everything. Is my encryption setup correct? Is it not possible encrypt the body of the message and decrypt it on the client side? At this point I am open to almost any suggestion.</p> http://stackoverflow.com/questions/1320767/how-to-add-custom-soap-header-element-to-the-generated-wsdl-in-spring-ws 0 How to add custom SOAP-Header element to the generated WSDL in Spring-WS Petr Macek http://stackoverflow.com/users/15045 2009-08-24T06:34:25Z 2009-12-18T16:41:41Z <p>Hi,</p> <p>we are migrating from WebLogic web-services to Spring-WS (1.5.X). There is currently one issue we are facing:</p> <p>We need to pass a context object (on WLS it is passed as SOAP-Header element) to other services that are still running on WLS from the Spring-WS powered service. The header element is still formulated on client side and the newly created WS (Spring-WS) should just pass it to other services.</p> <p>I can imagine how the custom element would be passed: override the doWithMessage(WebServiceMessage message) method... </p> <p>Is there a way to generate the wsdl with the help of DefaultWsdl11Definition to contain that custom header element? See the example:</p> <pre><code>&lt;wsdl:operation name="GetSomeInformation"&gt; &lt;soap:operation soapAction="http://www.dummyservice.com/InformationService/GetSomeInformation" /&gt; &lt;wsdl:input&gt; &lt;soap:body use="literal" /&gt; &lt;soap:header message="ctx:ServiceContextMessage" part="serviceContext" use="literal" /&gt; &lt;/wsdl:input&gt; &lt;wsdl:output&gt; &lt;soap:body use="literal" /&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name="Error"&gt; &lt;soap:fault name="Error" use="literal" /&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; </code></pre> <p>Thanks for help</p> http://stackoverflow.com/questions/115557/webservicetransportexception-unauthorized-401-in-spring-ws 1 WebServiceTransportException: Unauthorized [401] in Spring-WS Keibi http://stackoverflow.com/users/20529 2008-09-22T15:33:47Z 2009-12-16T16:04:01Z <p>We are struggling to configure our web app to be able to connect with web services via Spring WS. We have tried to use the example from the documentation of client-side Spring-WS, but we end up with a WebServiceTransportException. The XML config looks like this:</p> <pre><code>&lt;bean id="webServiceTemplate" class="org.springframework.ws.client.core.WebServiceTemplate"&gt; &lt;constructor-arg ref="messageFactory"/&gt; &lt;property name="messageSender"&gt; &lt;bean class="org.springframework.ws.transport.http.CommonsHttpMessageSender"&gt; &lt;property name="credentials"&gt; &lt;bean class="org.apache.commons.httpclient.UsernamePasswordCredentials"&gt; &lt;constructor-arg value="john"/&gt; &lt;constructor-arg value="secret"/&gt; &lt;/bean&gt; &lt;/property&gt; &lt;/bean&gt; &lt;/property&gt; &lt;/bean&gt; </code></pre> <p>We have been able to configure the application programmatically, but this configuration was not possible to "transfer" to a Spring XML config because some setters did not use the format Spring expects. (HttpState.setCredentials(...) takes two parameters). The config was lifted from some other Spring-WS client code in the company.</p> <p>This is the configuration that works:</p> <pre><code> public List&lt;String&gt; getAll() { List&lt;String&gt; carTypes = new ArrayList&lt;String&gt;(); try { Source source = new ResourceSource(request); JDOMResult result = new JDOMResult(); SaajSoapMessageFactory soapMessageFactory = new SaajSoapMessageFactory(MessageFactory.newInstance()); WebServiceTemplate template = new WebServiceTemplate(soapMessageFactory); HttpClientParams clientParams = new HttpClientParams(); clientParams.setSoTimeout(60000); clientParams.setConnectionManagerTimeout(60000); clientParams.setAuthenticationPreemptive(true); HttpClient client = new HttpClient(clientParams); client.getState().setCredentials(AuthScope.ANY, new UsernamePasswordCredentials("username", "password")); CommonsHttpMessageSender messageSender = new CommonsHttpMessageSender(client); template.setMessageSender(messageSender); template.sendSourceAndReceiveToResult(SERVICE_URI, source, result); // Handle the XML } catch (IOException e) { throw new RuntimeException(e); } catch (SOAPException e) { throw new RuntimeException(e); } return carTypes; } </code></pre> <p>Does anyone know how to solve my problem? Every tutorial I have see out there lists the first configuration. It seems that when I set the credentials on the messageSender object, they are just ignored...</p> http://stackoverflow.com/questions/1638986/spring-soapexceptionimpl-error-during-saving-a-multipart-message 0 Spring + SOAPExceptionImpl: Error during saving a multipart message htkhtk http://stackoverflow.com/users/193373 2009-10-28T18:00:57Z 2009-12-07T15:34:35Z <p>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. </p> <p>I am adding a call to a web service that handles security. For the WebServiceGateway, I added a security interceptor. (See below)</p> <pre><code>&lt;bean id="securityInterceptor" class="org.springframework.ws.soap.security.wss4j.Wss4jSecurityInterceptor"&gt; &lt;property name="securementActions" value="UsernameToken Timestamp" /&gt; &lt;property name="securementUsername" value="Bert" /&gt; &lt;property name="securementPassword" value="Ernie" /&gt; &lt;property name="timestampPrecisionInMilliseconds" value="true" /&gt; &lt;/bean&gt; </code></pre> <p>When I added the wss4j into my pom file, I now get the following error on the web service side:</p> <pre><code>[28-13:46:26]DEBUG: org.springframework.web.servlet.FrameworkServlet.processRequest(): Could not complete request [http-8080-2] org.springframework.ws.soap.saaj.SaajSoapMessageException: Could not write message to OutputStream: Error during saving a multipart message; nested exception is com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl: Error during saving a multipart message at org.springframework.ws.soap.saaj.SaajSoapMessage.writeTo(SaajSoapMessage.java:163) at org.springframework.ws.server.MessageDispatcher.receive(MessageDispatcher.java:172) at org.springframework.ws.transport.support.WebServiceMessageReceiverObjectSupport.handleConnection(WebServiceMessageReceiverObjectSupport.java:88) at org.springframework.ws.transport.http.WebServiceMessageReceiverHandlerAdapter.handle(WebServiceMessageReceiverHandlerAdapter.java:57) at org.springframework.ws.transport.http.MessageDispatcherServlet.doService(MessageDispatcherServlet.java:230) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:571) at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:511) at javax.servlet.http.HttpServlet.service(HttpServlet.java:637) at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293) at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:849) at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:454) at java.lang.Thread.run(Thread.java:619) Caused by: com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl: Error during saving a multipart message at com.sun.xml.internal.messaging.saaj.soap.MessageImpl.saveChanges(MessageImpl.java:1124) at org.springframework.ws.soap.saaj.Saaj13Implementation.writeTo(Saaj13Implementation.java:268) at org.springframework.ws.soap.saaj.SaajSoapMessage.writeTo(SaajSoapMessage.java:159) ... 20 more Caused by: com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl: Unable to get header stream in saveChanges: at com.sun.xml.internal.messaging.saaj.soap.MessageImpl.saveChanges(MessageImpl.java:1101) ... 22 more Caused by: java.io.IOException: org.apache.xml.serializer.ToXMLSAXHandler cannot be cast to org.apache.xml.serializer.SerializationHandler at com.sun.xml.internal.messaging.saaj.soap.impl.EnvelopeImpl.output(EnvelopeImpl.java:295) at com.sun.xml.internal.messaging.saaj.soap.impl.EnvelopeImpl.output(EnvelopeImpl.java:306) at com.sun.xml.internal.messaging.saaj.soap.SOAPPartImpl.getContentAsStream(SOAPPartImpl.java:302) at com.sun.xml.internal.messaging.saaj.soap.MessageImpl.getHeaderBytes(MessageImpl.java:945) at com.sun.xml.internal.messaging.saaj.soap.MessageImpl.saveChanges(MessageImpl.java:1096) ... 22 more </code></pre> http://stackoverflow.com/questions/1803067/list-available-web-services-on-tomcat-using-spring-ws 1 list available web services on tomcat using spring-ws Jholx http://stackoverflow.com/users/219330 2009-11-26T11:12:43Z 2009-11-26T15:21:55Z <p>Is it possible to get a list of all available web services on a tomcat server?</p> http://stackoverflow.com/questions/1649614/jaxws-code-generation-and-implementation-along-side-spring-for-jdk1-5 1 JAXWS code generation and implementation along side Spring for JDK1.5 Jonnie http://stackoverflow.com/users/199628 2009-10-30T12:45:12Z 2009-11-19T17:17:09Z <p>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. </p> <p>We're using jaxws-maven-plugin to generate the source code, however it depends on the wsimport binary being available (this is not available in JDK1.5). We found a <a href="http://forums.java.net/jive/thread.jspa?threadID=64298" rel="nofollow">work around</a> for this, we can now generate the source code. </p> <p>The final problem comes when we try and use the compiled stub code with Spring (2.5.6) we're using a JaxWsPortProxyFactoryBean to interface with the generated client code. We get a java.lang.NoClassDefFoundError: javax/xml/ws/soap/Addressing. I investigated why this was and found that the javax.xml.ws/javax-api/2.1 dependency did not contain this class. I upgraded the version number to 2.1-1 and now when we build the project (to generate the source code) we get the following error: </p> <pre><code>cannot find symbol symbol : method partName() location : @interface javax.jws.WebParam </code></pre> <p>Can anyone provide a solution to this so we can generate our JAXWS client stub code and make it work with the JaxWsPortProxyFactoryBean?</p> <p>Thanks in advance</p> <p>Jonathan</p> http://stackoverflow.com/questions/1722545/jaxb2marshaller-and-primitive-types 1 Jaxb2Marshaller and primitive types Thomas Einwaller http://stackoverflow.com/users/30967 2009-11-12T14:27:45Z 2009-11-12T15:50:49Z <p>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:</p> <pre><code>@Override @PayloadRoot(localPart = "AddTaskRequest", namespace = "http://example.com/examplews/") public long addTask(final Task task) throws AddTaskFault { // do something return 0; } </code></pre> <p>I am using the maven jaxws plugin to generate the interface and model classes from my WSDL. When I try to call the webservice I get the following error:</p> <p><em>java.lang.IllegalStateException: No adapter for endpoint [...]: Does your endpoint implement a supported interface like MessageHandler or PayloadEndpoint</em></p> <p>I found out that if I change the method to that:</p> <pre><code>@Override @PayloadRoot(localPart = "AddTaskRequest", namespace = "http://example.com/examplews/") public JAXBElement&lt;Long&gt; addTask(final JAXBElement&lt;Task&gt; task) throws AddTaskFault { final ObjectFactory objectFactory = new ObjectFactory(); return objectFactory.createAddTaskResponse(0L); } </code></pre> <p>I am able to call it - but this signature is not compatible with the interface generated by the maven jaxws plugin. </p> <p>What can I do to configure either spring-ws to be able to use the first kind of implementation or to tell maven jaxws plugin to generate the second variant of the interface?</p> <p>UPDATE: My relevant spring-ws config entries look like that:</p> <pre><code>&lt;bean id="marshaller" class="org.springframework.oxm.jaxb.Jaxb2Marshaller"&gt; &lt;property name="contextPath" value="com.example.examplews" /&gt; &lt;/bean&gt; &lt;bean class="org.springframework.ws.server.endpoint.adapter.GenericMarshallingMethodEndpointAdapter"&gt; &lt;constructor-arg ref="marshaller" /&gt; &lt;/bean&gt; &lt;bean class="org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping"&gt; &lt;property name="order" value="1" /&gt; &lt;/bean&gt; </code></pre> http://stackoverflow.com/questions/1644225/howto-configure-spring-ws-to-publish-wsdl-files-with-a-wsdl-style-url 0 Howto: Configure Spring-WS to publish WSDL files with a '?WSDL' style URL? Darren http://stackoverflow.com/users/133330 2009-10-29T14:42:44Z 2009-11-06T11:32:52Z <p>I am trying to configure web service proxying using Mule ESB.</p> <p>I am attempting to do this using Mule's WSProxyService, but after stepping through the corresponding code (with the debugger), it is clear that this class replaces endpoint addresses.</p> <p>The problem is Spring-WS WSDL addresses are of the style <a href="http://xxxx/xxxx.wsdl" rel="nofollow">http://xxxx/xxxx.wsdl</a>, but WSProxyService expects <a href="http://xxxx/xxxx?wsdl" rel="nofollow">http://xxxx/xxxx?wsdl</a> or <a href="http://xxxx/xxxx&amp;wsdl" rel="nofollow">http://xxxx/xxxx&amp;wsdl</a>. It replaces the remote endpoint addresses with the local WSDL address; it cuts the remote WSDL address at the question mark i.e. '?WSDL' is intended to be chopped off, so to create the search term. But because of Spring-WS, this does not work.</p> <p>To break it down:</p> <p>WSProxyService ends up trying to use</p> <pre><code>http://xxxx/xxxx.wsdl </code></pre> <p>to replace</p> <pre><code>http://xxxx/xxxx </code></pre> <p>with</p> <pre><code>http://yyyy/yyyy </code></pre> <p>which fails... leading to actual web service call going direct and not through the proxy.</p> <p>Has anyone ever noticed/solved this problem??</p> <p>Cheers, Darren</p> http://stackoverflow.com/questions/1663162/downloading-large-files-via-web-service-in-java 1 Downloading large files via web service in Java hoffmandirt http://stackoverflow.com/users/43365 2009-11-02T19:25:11Z 2009-11-03T00:58:45Z <p>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 via SOAP.</p> <p>Currently I have tried to use Spring-WS 1.5.8 with MTOM to send the attachment to the client, but I keep getting out of memory errors. I don't believe these errors are related to my Tomcat 6 instance because my server has 8GB of memory and I configured Tomcat to use 4GB of that. I am getting these errors on files as small as 200MB.</p> <p>I need to use SOAP, even though it's probably not the best approach at all. I would prefer a solution in Spring, but if that's not possible then I am open to other ideas. I read that one can use the AxiomSoapMessageFactory to stream files to the server for uploading purposes, but not the other way around. Is this true? I am using Java 6.</p> <p>Here is the error that I keep getting within the Spring WS Framework:</p> <pre><code>java.lang.OutOfMemoryError: Java heap space com.sun.xml.internal.messaging.saaj.util.ByteOutputStream.ensureCapacity(Unknown Source) com.sun.xml.internal.messaging.saaj.util.ByteOutputStream.write(Unknown Source) com.sun.xml.internal.messaging.saaj.packaging.mime.internet.BMMimeMultipart.find(Unknown Source) com.sun.xml.internal.messaging.saaj.packaging.mime.internet.BMMimeMultipart.readBody(Unknown Source) com.sun.xml.internal.messaging.saaj.packaging.mime.internet.BMMimeMultipart.getNextPart(Unknown Source) com.sun.xml.internal.messaging.saaj.packaging.mime.internet.BMMimeMultipart.parse(Unknown Source) com.sun.xml.internal.messaging.saaj.packaging.mime.internet.BMMimeMultipart.parse(Unknown Source) com.sun.xml.internal.messaging.saaj.packaging.mime.internet.MimeMultipart.getCount(Unknown Source) com.sun.xml.internal.messaging.saaj.soap.MessageImpl.initializeAllAttachments(Unknown Source) com.sun.xml.internal.messaging.saaj.soap.MessageImpl.getAttachments(Unknown Source) org.springframework.ws.soap.saaj.Saaj13Implementation.getAttachment(Saaj13Implementation.java:305) org.springframework.ws.soap.saaj.SaajSoapMessage.getAttachment(SaajSoapMessage.java:226) org.springframework.ws.support.MarshallingUtils$MimeMessageContainer.getAttachment(MarshallingUtils.java:109) org.springframework.oxm.jaxb.Jaxb2Marshaller$Jaxb2AttachmentUnmarshaller.getAttachmentAsDataHandler(Jaxb2Marshaller.java:532) com.sun.xml.internal.bind.v2.runtime.unmarshaller.MTOMDecorator.startElement(Unknown Source) com.sun.xml.internal.bind.v2.runtime.unmarshaller.InterningXmlVisitor.startElement(Unknown Source) com.sun.xml.internal.bind.v2.runtime.unmarshaller.SAXConnector.startElement(Unknown Source) com.sun.xml.internal.bind.unmarshaller.DOMScanner.visit(Unknown Source) com.sun.xml.internal.bind.unmarshaller.DOMScanner.visit(Unknown Source) com.sun.xml.internal.bind.unmarshaller.DOMScanner.visit(Unknown Source) com.sun.xml.internal.bind.unmarshaller.DOMScanner.visit(Unknown Source) com.sun.xml.internal.bind.unmarshaller.DOMScanner.visit(Unknown Source) com.sun.xml.internal.bind.unmarshaller.DOMScanner.visit(Unknown Source) com.sun.xml.internal.bind.unmarshaller.DOMScanner.visit(Unknown Source) com.sun.xml.internal.bind.unmarshaller.DOMScanner.scan(Unknown Source) com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(Unknown Source) com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal(Unknown Source) javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(Unknown Source) org.springframework.oxm.jaxb.Jaxb2Marshaller.unmarshal(Jaxb2Marshaller.java:421) org.springframework.ws.support.MarshallingUtils.unmarshal(MarshallingUtils.java:62) org.springframework.ws.client.core.WebServiceTemplate$3.extractData(WebServiceTemplate.java:374) org.springframework.ws.client.core.WebServiceTemplate.doSendAndReceive(WebServiceTemplate.java:560) </code></pre> http://stackoverflow.com/questions/1614431/webservicice-with-apache-cxf-and-custom-headers 1 WebServicice with Apache CXF and custom headers. atomsfat http://stackoverflow.com/users/128237 2009-10-23T16:02:09Z 2009-10-26T23:01:01Z <p>I created a web service using Apache cfx and spring, and works, but I need that the response include this header</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; </code></pre> <p>Right now the response is like this.</p> <pre><code> &lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;soap:Body&gt; &lt;ns2:postEncuestaResponse xmlns:ns2="http://webservice.atomsfat.com/"&gt; &lt;respuestaEncuesta&gt; &lt;dn&gt;12315643154&lt;/dn&gt; &lt;encuestaPosted&gt;true&lt;/encuestaPosted&gt; &lt;fecha&gt;2009-09-30T16:32:33.163-05:00&lt;/fecha&gt; &lt;/respuestaEncuesta&gt; &lt;/ns2:postEncuestaResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </code></pre> <p>But should be like this</p> <pre><code> &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;soap:Body&gt; &lt;ns2:postEncuestaResponse xmlns:ns2="http://webservice.atomsfat.com/"&gt; &lt;respuestaEncuesta&gt; &lt;dn&gt;12315643154&lt;/dn&gt; &lt;encuestaPosted&gt;true&lt;/encuestaPosted&gt; &lt;fecha&gt;2009-09-30T16:32:33.163-05:00&lt;/fecha&gt; &lt;/respuestaEncuesta&gt; &lt;/ns2:postEncuestaResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </code></pre> <p>This is the configuration of the beans of spring that expose the service.</p> <pre><code> &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd"&gt; &lt;import resource="classpath:META-INF/cxf/cxf.xml" /&gt; &lt;import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" /&gt; &lt;import resource="classpath:META-INF/cxf/cxf-servlet.xml" /&gt; &lt;jaxws:endpoint id="encuestas" implementor="webservice.serviceImpl" address="/Encuestas" &gt; &lt;/jaxws:endpoint&gt; &lt;/beans&gt; </code></pre> <p>this is the interface</p> <pre><code>import java.util.List; import javax.jws.WebParam; import javax.jws.WebResult; import javax.jws.WebService; @WebService public interface Encuestas { @WebResult(name= "respuestaEncuesta") RespuestaEncuestaMsg postEncuesta (@WebParam(name = "encuestaMsg") EncuestaMsg message); } </code></pre> <p>Any ideas ?</p> http://stackoverflow.com/questions/1608858/how-to-define-xsd-for-spring-ws-contract-to-return-a-serialized-image 0 How to define XSD for spring-ws contract to return a serialized image? Cuga http://stackoverflow.com/users/101095 2009-10-22T17:48:43Z 2009-10-22T17:57:29Z <p>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 Image that it can draw on the screen.</p> <p>My guess for how to do this is to define an ImageRequest XML snippet, such as:</p> <pre><code>&lt;ImageRequest xmlns="http://www.mycompany.com/example/schemas"&gt; &lt;/ImageRequest&gt; </code></pre> <p>and an ImageResponse snippet something along the lines of:</p> <pre><code>&lt;ImageResponse xmlns="http://www.mycompany.com/example/schemas"&gt; &lt;ImageData&gt; &lt;!-- What should I do here??? Is this even the proper way for doing this? --&gt; &lt;/ImageData&gt; &lt;/ImageResponse&gt; </code></pre> <p>And then to create an XSD for these two operations and include them in the Spring example. How do I do the above? Once I get the XML snippets defined above, I was planning on using Trang to generate the XSD.</p> <p>Thanks very much for any help.</p> http://stackoverflow.com/questions/1601745/spring-ws-and-payloadrootannotationmethodendpointmapping 0 Spring WS and PayloadRootAnnotationMethodEndpointMapping htkhtk http://stackoverflow.com/users/193373 2009-10-21T15:44:24Z 2009-10-22T07:45:35Z <p>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 <code>PayloadRootAnnotationMethodEndpointMapping</code>? Anyone have an idea?</p> <p>According to the applicationContext-ws.xml of the airline example that comes with Spring:</p> <blockquote> <p>The endpoint mappings map from a request to an endpoint. Because we only want the security interception to occur for the <code>GetFrequentFlyerMileageEndpoint</code>, we define two mappings: one with the securityInterceptor, and a general one without it.</p> </blockquote> <p>So is the only way to do this is to have two different mappings: <code>org.springframework.ws.server.endpoint.mapping.PayloadRootAnnotationMethodEndpointMapping</code> and <code>org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping</code> for the secure ones?</p> http://stackoverflow.com/questions/1575268/soap-and-spring 0 SOAP and Spring niklassaers http://stackoverflow.com/users/80246 2009-10-15T21:40:59Z 2009-10-16T00:51:46Z <p>Hi guys,</p> <p>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 docs, with making a message and method XML and then transforming that to XSD and then again to WSDL, while wiring up the marshalling and service path in Spring.</p> <p>I must admit, I'm not convinced. Why is this a better path than, let's say, making a service interface and generating my service based on that interface? That's quite close to defining my REST @Controllers in Spring3. Do I have options of going a path like this with making SOAP webservices with Spring?</p> <p>Also: I'd like to duplicate an already existing webservice. I have its WSDL and I can have my service placed instead of it. Is this recommended at all? If so, what's the recommended approach?</p> <p>Cheers</p> <pre><code>Nik </code></pre> http://stackoverflow.com/questions/1554799/secured-service-methods-and-spring-ws 0 @Secured service methods and spring ws Thomas Einwaller http://stackoverflow.com/users/30967 2009-10-12T14:08:38Z 2009-10-14T20:53:58Z <p>I have the following project structure:</p> <p>base project (service layer, model) web project webservice project</p> <p>where both the web project and the web service project depend on the base project and use services provided by it.</p> <p>I make heavy use of the Spring Framework which means the Services are Spring Beans with methods secured by the <strong>@Secured</strong> Annotation and <strong>Spring Security</strong>. I created an <strong>Voter</strong> extending the AbstractAclVoter that checks client permissions.</p> <p>The web project uses <strong>Spring MVC</strong> and the web service project <strong>Spring WS</strong> with @Endpoint Annotations and the <strong>XwsSecurityInterceptor</strong>.</p> <p>Here is my problem: </p> <p>The permissions are checked if a call comes from a web project controller or in JUnit tests of the base project but requests from the web service project are not checked for the correct permission - my <strong>Voter</strong> is not called!</p> <ul> <li>Has this something to do with the <strong>XwsSecurityInterceptor</strong>?</li> <li>Do I need the <strong>DelegatingFilterProxy</strong> in the web service project too? (I have no ContextLoaderListener there because everything is configured by the MessageDispatcherServlet config)</li> </ul>