In case some one stumbles upon this question, I posted the same question here and got an answer:
...
Type: Posts; User: neesh; Keyword(s):
In case some one stumbles upon this question, I posted the same question here and got an answer:
...
I am using spring WebServiceTemplate as a web service client programmatically i.e. without instantiating a spring container. I am using Jaxb2Marshaller for marshaling/unmarshaling. In my application,...
I have an end point in my webservice that is mapped to an abstract marshalling payload end point like so:
<bean name="endpointMapping"...
Thanks for the reply jacob. I was in fact posting to the servlet using javascript on the onclick event on the link. However, the html for the link looked some thing like this:
<a href=""...
I am using a simple form controller to allow users to search for data that gets displayed in the SimpleFormController's success view. I would like to add sorting capability to the search results. For...
I have a set of beans managed by spring. The scope of these beans is prototype ( a new instance is created each time they are obtained from the container). I created an aspect to advice setters on...
I am doing some thing like this:
//ctx is the message context
SoapBody res = ((SoapMessage) ctx.getResponse()).getSoapBody();
DOMResult dResult = ((DOMResult)res.getPayloadResult());
//root is...
I don't want to rely on SOAP faults to communicate error to the client, so I have an error section in my schema for the SOAP message body which is used to communicate an error situation to the...
I would like to create a diagnostics page as part of my web service. This page would display information about the last few service requests, jvm usage, etc. I would like to configure a controller...
How do I provide a WebServiceMessageExtractor to a marshalSendAndReceive call? I would like to store the response message as it comes back from the web service.
thanks.
I am trying to create a service using spring-ws 1.0.3. I am using a JAXB2 marshaller/unmarshaller and injecting it in to an endpoint that extends AbstractMarshallingPayloadEndpoint. When I try to...