Marshaller « Web Service « Spring Q&A





1. REST+Spring+POST with custom marshaller    stackoverflow.com

I am developing RESTful API for my application. All getters (that use HTTP GET) work fine. I cannot make save method (that uses POST) to work. I am using HTML form ...

2. Unable to load ear using spring ws 1.5.8: can't find the marshaller    forum.springsource.org

Unable to load ear using spring ws 1.5.8: can't find the marshaller Hi, i am getting the following error when I attempt to load my ear into weblogic 10.3. It builds ...

3. How to use a custom marshaller for an endpoint?    forum.springsource.org

How to use a custom marshaller for an endpoint? I am migrating from Spring-WS 1.5.9 to Spring-WS 2.0.2. In the process the code is being refactored, such that it now uses ...

4. accessing the marshaller within the AbstractMarshallingPayloadEndpoint for a class    forum.springsource.org

accessing the marshaller within the AbstractMarshallingPayloadEndpoint for a class I'm hopsing someone can lend some advice on why I can't marshall a string myself within my endpoint. I am using an ...

5. about Marshaller or Unmarshaller    forum.springsource.org

about Marshaller or Unmarshaller Hi, I would like to use org.springframework.oxm.castor.CastorMarshaller to convert an xml file into object class. I have already set the value of set-method and get-method directly in ...

6. Marshaller and Unmarshaller Again    forum.springsource.org

Marshaller and Unmarshaller Again Thanks a lot a quick reply! Yes, I forgot to set the setMarshaller and setUnmarshaller method But now, I am facing another questions 1) (Unmarshal) I cannot ...

7. Marshaller    forum.springsource.org

Marshaller Hi, i have a probleme to run that example. Here is the error: Code: 18:02:40,414 ERROR [ContextLoader] Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'marshal' defined in ServletContext ...

8. How to setup marshaller when using @PayloadRoot    forum.springsource.org

I'm using the tiger annotations to setup my endpoints using payloads: Code: @Endpoint public class FolioPositionsEndPoint { @PayloadRoot("{http://soapapi.foliofn.com}folioPositionsRequest") public String handleGetPositions(FolioPositionsRequest request) { FolioPositionsRequest r = request; System.out.println(r); return "foobar"; } ...

9. Problem with the Castor marshaller    forum.springsource.org

Problem with the Castor marshaller Hi there. I'm trying to use Castor with Spring web services (Castor 1.2) and Spring 2.5; I seem to have a hit a small snag that ...





10. springws + xmlBeans (marshaller problem)    forum.springsource.org

11. Groovy XML Marshaller    forum.springsource.org

Groovy Marshaller I was hoping to limit the Groovy influence to just the marshalling/unmarshalling. Ideally it would be just another marshaller/unmarshaller like JibX or Castor, but for this example I directly ...

12. Castor Marshaller throws NullPointerException    forum.springsource.org

Jul 1st, 2008, 12:19 PM #1 subodhk View Profile View Forum Posts Private Message Junior Member Join Date Jun 2008 Posts 7 Castor Marshaller throws NullPointerException I'm having problem integrating castor ...

13. Help needed in Xstream marshaller.    forum.springsource.org

I am new to Spring ws.Can any one help me to use a Xstram marshaller and unmarshaller along with converter ;pease post the sample code. Thanks in advance.

14. marshaller problem    forum.springsource.org

Hi, everyone! I have next problem: I have next request XML: Code: GOOG and this XSD: Code:

15. Bug with castor Marshaller use ?    forum.springsource.org

Bug with castor Marshaller use ? Hello, First, I would like to thanks you for this forum which helps me several times. I have a problem with the use of Castor ...

16. REST, POST & XML Marshaller    forum.springsource.org

REST, POST & XML Marshaller Hi, I'm trying new features of Spring 3. I'm creating a simple application with MVC. The application is composed by 1. A controller with new REST ...





17. Ordering of multiple marshaller definitions?    forum.springsource.org

Is the ordering of marshaller definitions critical in the definition? I have 2 different GenericMarshallingMethodEndpointAdapters (Castor & JAXB). If I have the castor marshaller defined before the JAXB marshaller any calls ...

18. Using @Endpoint with Marshaller    forum.springsource.org

Just define the payload roots for each method and spring will match it from the incoming request: Code: @PayloadRoot(localPart="GetDeviceGroupsRequest", namespace="http://foo.com/schemas") @Transactional(readOnly=true) public GetDeviceGroupsResponseDocument getDeviceGroups(GetDeviceGroupsRequestDocument requestDocument) { ... } @PayloadRoot(localPart="AddDeviceGroupRequest", namespace="http://foo.com/schemas") @Transactional ...

19. Marshaller help...    forum.springsource.org

Marshaller help... Hey all, I am currently working a batch program using spring in which a persons details are parsed from xml to be written to a database, now there is ...