Tagged Questions
0
votes
2answers
78 views
How to make integer element value in xsd not become zero when no value entered in SOAP XML?
I have a java web service application built with jaxb and spring webservice.
I have a complex type in a xsd like this:
...
<complexType name="GetRecordsRequest">
<sequence>
...
0
votes
0answers
54 views
Spring WS - - Saving request and response xml's to database [closed]
I have written a server side program using spring ws which is working fine .
now i want to store the incoming request in a xml file to the database .
how can i achieve this?
2
votes
1answer
147 views
JAXB exception while deploying spring-ws web service
I have an xsd which is used withing a soap web service implemented using spring-ws.
one of the types is defined as follows:
<xsd:complexType name="DateTimeWithTimeZone">
...
1
vote
3answers
153 views
Why is this unmarshaller throwing a MalformedURLException?
Weblogic 11g (10.3.5)
Spring Framework 3.1.3
Spring Web Services 2.1.1
Spring-ws web service running on Weblogic. The same web service works fine in Tomcat and Spring vFabric, but throws these ...
0
votes
1answer
292 views
Spring WS Client using JAXB Marshaller
Is there a way i can refer to a XSD in my Spring WS Client project and not generate the POJO's from the XSD and still be able to refer the JAXB Objects, build request and call a webservice using ...
0
votes
1answer
190 views
Spring-ws client mtom
I'm trying to call a web service and add an attachment to my request using mtom. Mtom is enabled on the web service I'm calling and I can call the service ok using soapui.
The schema for the request ...
1
vote
1answer
203 views
spring-ws bean-validation of unmarshalled @RequestPayload
Is it possible in spring-ws 2, to get unmarshalled payload for validation with jsr303.
The idea is to have this done for every endpoint that I create without explicitly creating validation code in ...
0
votes
0answers
99 views
Having issues with a simple Spring-ws using JAXB
Im trying out spring-ws using JAXB. And i am generating a client using the ws-import tool. But whenever i call the web service, the marshaling returns null on the object in question. I have uploaded ...
0
votes
0answers
164 views
can you use a @XmlElementWrapper annotation inside a @WebFault
I have a List within an Exception.... like:
@XmlAccessorType(XmlAccessType.NONE)
@XmlType(name="ValidationException")
@WebFault(name="ValidationException")
public class ValidationException extends ...
2
votes
1answer
190 views
Spring WS and CXF Binding
I want to implement a webservice client using Spring WS JAXB and CXF.
I use CXF to generate my Stubs from a WSDL file.
This WSDL contains the following schema :
...
2
votes
0answers
991 views
Spring WS with Axiom: JAXB is inlining MTOM attachments
I have webservices to receive and send attachments, and I'd like to use JAXB as marshaller, but so far it is not working right, as JAXB inlines any attachment coming in or going out in the message ...
3
votes
1answer
4k views
How to configure Spring-WS to use JAXB Marshaller?
Thankyou for help on this so far, i am updating question as i did not show all i needed to, with changes recomended shown. the soap output is still not what i wanted.
servlet.xml
<?xml ...
0
votes
1answer
341 views
Spring 3 and JAXB in Web Services
I'm trying to write a simple web service that automagically serializes and deserializes objects using JAXB:
@XmlRootElement
public class SimpleObject {
private int id;
private String name;
...
1
vote
1answer
963 views
Spring - Spring-WS with SOAP with attachements or MTOM with JAXB as data binder
I have a Spring-WS web service where i would like to be able to send back binary data to the client. My intention is to format the SOAP response to either use MTOM or Soap with attachements. The ...
1
vote
1answer
829 views
How to unmarshal a SOAP Fault in a FaultMessageResolver?
I'm new to Spring-WS, and slowly getting my head wrapped around it. Right now, I'm writing a simple client to communicate with an existing WS. I'm using the WebServiceTemplate and the ...
3
votes
1answer
428 views
JBoss: JaxB DataHandler compatibility
I am using JBoss 5.1 (EAP). I am using Spring webservices (3.0.5).
For marshalling I am using JaxB.
I am using maven.jaxb2.plugin for generating pojo from the schema (xsd).
When I deploy the EAR on ...
1
vote
0answers
312 views
jaxws noSuchMethodError in javax/wsdl/Operation.getExtensibilityElements
When I create a ws client in IBM WAS 6.1 as a dynamic project the client works just fine.
But when we do the same thing and try to integrate the client in an existing project which has many other ...
0
votes
1answer
338 views
How to change Jax-WS WSDL @IDREF binding
I'm sucessfully exposing a contract-first JAX-WS web service on a Tomcat servlet container with Jax-WS Spring support. I'm having troulbes with xs:idref types though. The original XSD file contains a ...
1
vote
2answers
3k views
No Endpoint mapping found using annotation driven Spring WS with dynamic wsdl and JAXB
I'm using annotation driven Spring WS 2.0.4 to create a simple Webservice, but the enpoint mapping was not found.
Input and Output are JAXB Elements.
The Webservice is running with Java 1.7 on ...
0
votes
3answers
280 views
How to map different namespace in xml schema to different classes
I have a requirement where I need to map the different namespace in xml schema to different packages. And the package name should be different from namespace. So if there are 2 namespace defined in my ...
2
votes
1answer
1k views
JAXB 2 spring-ws 2.0.3.RELEASE SOAP Services Tutorial Link/Advice Request
I am trying to use JAXB 2 and spring-ws 2.0.3 to make a SOAP service on glassfish 3.
I am having some problems with the xml file configurations because there is a ton of information (tutorials, ...
0
votes
1answer
368 views
AbstractMethodError in AbstractMethodEndpointMapping with Spring-WS and JAXB
I'm trying to make a sample SOAP web service using Spring-WS and JAXB and I have an ugly exception and I can't figure it out why.
I'm using jetty as a server with the following configuration:
...
0
votes
1answer
1k views
How to append JAXBElement as a child of SOAPBody for a SOAP Message
How to append JAXBElement as a child of SOAPBody for a SOAP Message. What i am trying to do inside my web service endpoint method is:
SaajSoapMessage soapRequest = (SaajSoapMessage) ...
0
votes
2answers
695 views
Maven project for Spring WS, JAXB/XSD to create server WAR/EAR and client JAR, also autogenerate classes from XSD
It may be difficult to explain exactly what I want, so please let me do step-by-step.
Our company has long-lived Java project that uses Spring WS, XSD files to generate WSDL and those beans from ...
1
vote
0answers
629 views
Unmarshalling MTOM message using Camel Spring-WS and JAXB dataformat
1) Is there a way to unmarshall MTOM message using Camel Spring-WS component?
2) I tried with Camel JAXB dataformat. It didn't work. Datahandler doesn't have any content. Does JAXB dataformat support ...
2
votes
1answer
270 views
Debugging Spring-WS request from MessageDispatcher to Endpoint?
Is there a way to debug step-by-step what happens on a web service request in Spring-WS from the time the request is sent to the MessageDispatcher until it reaches my Endpoint (including ...
1
vote
1answer
1k views
Using Spring-WS and JAXB: can't unmarshall subclasses in XML request
I have the following in a schema defining the request/response objects used in my web service request:
<xs:complexType name="loss" abstract="true">
<xs:sequence>
...
4
votes
1answer
885 views
How to set Jaxb2Marshaller list of XmlAdapters in Spring bean through XML?
I'm trying to define a Jaxb2Marshaller bean in Spring-WS to use a custom adapter that extends XmlAdapter. I have the following in an XML file:
<bean id="jaxb2Marshaller" ...
2
votes
1answer
1k views
Unable to access web service endpoint: Spring-WS 2
I'm new to Spring-WS and I have defined an endpoint based off a schema generated from JAXB annotated classes. However, when I try to access the endpoint via soapUI, I get the following error along ...
2
votes
2answers
393 views
WebServiceTemplate send raw XML as content
I am using Spring-WS with JAXB.
Have the next code:
WebServiceTemplate template = (WebServiceTemplate) ctx.getBean("requestWsTemplate");
ObjectFactory f = new ObjectFactory();
Request r = ...
1
vote
2answers
3k views
Java Spring Web Service Client Fault Handling
I have written a web service client (using Java Spring and JAXB Marshaller) that works with the UPS web service. When I send a valid request everything works well. When I send an invalid request ...
2
votes
1answer
357 views
generating code from XSD
I am using JAXB plugin to generated java code from XSD. One element is any:
<xs:complexType name="element">
<xs:sequence>
<xs:any processContents="lax" ...
11
votes
4answers
8k views
JAXB :Need Namespace Prefix to all the elements
I am Using Spring WebServiceTemplate to make webservice call which uses JAXB to generate request XML. My requirement needs all the elements (including root) to have a namespace prefix (there is only a ...
-1
votes
1answer
1k views
Spring WS with webServiceTemplate.marshalSendAndReceive returns Received error for request, Service Unavailable : Not Found [404]
I'm trying to ammend an existing SOAP Webservice that uses Spring-WS and JAXB on Tomcat. I've created the new WAR file with my changes and deployed it in the webapps foder under Tomcat installation.
...
0
votes
1answer
230 views
Spring WS unavailable upon requesting connection
I've got a Spring WS which I'm able to call successfully for 2 requests. Here is the output:
2011-07-20 18:25:33,743 DEBUG [org.springframework.ws.client.core.WebServiceTemplate] - Opening ...
1
vote
1answer
237 views
Using Jaxb Schema with Spring WS: Issues upon Unmarshalling the response
I have a XML Schema where I've declared all the Requests and Responses objects.
-------- For Actual Object -------
<xs:complexType name="conversation">
<xs:sequence>
<xs:element ...
0
votes
1answer
1k views
Spring Webservice Template using Exception Missing Envolope tag
I am using Spring webservice Template for consuming web service.
I am using SOAP version: 1.0.
and spring-ws-core version: 2.0.2.RELEASE
When I checked with SOAP UI, I got a response (FAULT, but ...
0
votes
1answer
195 views
Returning an int whenusing webServiceTemplate.marshalSendAndReceive
I'm using Spring WebServiceTemplate class to to create and instantiate a request object of a JAXB generated class, call the marshallSendAndReceive method with it and then to cast the response object ...
0
votes
1answer
111 views
How a Spring WebApp manages different clients' request?
probably there are a lot of people who will smile reading this question...
Here's my problem.
I have a Spring 3 web application acting both as a client and server. It gets some XML data from a client ...
1
vote
1answer
1k views
Spring WS with JAXB2Marshaller - javax.activation.DataHandler NoClassDefFoundError
We are trying to implement a JAXB2Marshaller to our webservice project, but we get a java.lang.NoClassDefFoundError on the class javax.activation.DataHandler, however the dependency to activation ...
2
votes
1answer
743 views
which spring ws jaxb annotation to change xml element name
I am using a sping ws endpoint with jaxb marshalling/unmarshalling to proudce a list of Organisation objects (our local type). The endpoint is SOAP 1.1, no parameters supplied on the request message.
...
6
votes
3answers
7k views
JAXB + Spring WS : “No adapter for endpoint” while using JAXBElement
I have a web service that I am trying to implement using Spring and Jaxb. I already have a handful of working services using both of these - but this particular service is giving me a hard time due ...
2
votes
2answers
3k views
Two different marshallers in spring project
I need to use two different marshallers typically JaxbMarshaller and CastorMarshaller.
I have spring project with lots of integration modules.
<bean id="marshaller" ...
3
votes
1answer
946 views
JAXB2 Mtom attachment broken by BOM
I'm using JAXB2 to to do OXM in a Spring-WS. The XSD I've specified requires a large XML file to be attached to the soap message so I'm using MTOM to transfer the file and have enabled MTOM on my ...
1
vote
1answer
607 views
How jaxb marshaller and unmarshallers uses generated classes
I have generated classes using wsimport/wsconsume for my webservice. I am using JAXB marshaller and unmarshaller support. Can any one tell me how these marshaller/unmarshaller uses gnereated classes? ...
4
votes
1answer
584 views
Is it required to generate java classes to use spring-ws client
I want to use spring ws to create the webservice client. I have seen some documentation.
In all using jaxb marshalling and unmarshalling. But to start of need to create java classes from xsd. I tried ...
2
votes
2answers
2k views
thread safety when using spring WebServiceTemplate and Jaxb2Marshaller
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, ...
2
votes
1answer
793 views
Spring web service: easy way to un-marshall a bean to XML client side?
I am utilizing spring to do all of the marshalling/unmarshalling of my bean objects (via jaxb2Marshaller/WebServiceTemplate). For debugging purposes, I would like to be able to spit out the ...
2
votes
2answers
2k views
Spring WS WebServicesTemplate/Jaxb2Marshaller client view raw xml?
Is it possible to view the request and the response for a Spring WS client using WebServicesTemplate and Jxb2Marshaller as the marshaling engine?
I simply wan to to log the xml, not perform any ...
1
vote
1answer
5k views
No endpoint mapping found for…, using SpringWS, JaxB Marshaller
I get this error: No endpoint mapping found for [SaajSoapMessage {http://mycompany/coolservice/specs}ChangePerson]
Following is my ws config file:
<bean ...
