Tagged Questions
-1
votes
1answer
32 views
namespace issue on web service with Apache CXF
I'm using Apache CXF 2.7.3, and running into a namespace issue that I really don't understand. I've tried extensively to search on this, but most of the results that I find are for different ...
0
votes
0answers
201 views
consuming soap web service, soap fault exception
I am trying to write a client to consume web services done in .Net using SOAP.
I am using Spring-ws webServiceTemplate with Jaxb2Marshaller.
I am getting following error,
...
0
votes
0answers
82 views
How to filter/block some useless complexTypes in wsdl?
I am building a POC code-first JAX-WS server application. I defined 3 xsds for all my POJOs, Request1, Request2 and RequestMeta. Both Request1 and Request2 extends RequestMeta.
RequestMeta:
...
1
vote
0answers
107 views
Spring Webservice Client - Problems creating
I am new to Spring, so my apologies if this seems obvious. I am trying to create a JUnit test case that calls my webservice. I think I finally got the gist of wat I am suppose to do, but keep getting ...
1
vote
1answer
240 views
Jaxb2Marshaller fails to unmarshall in the presence of '&'
I am using org.springframework.oxm.jaxb.Jaxb2Marshaller to unmarshall my request xml. The unmarshalling fails because of the presence of '&' (ampersand) in the request even though the encoding is ...
0
votes
1answer
553 views
Posting JSON via Jersey
I have this code
ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
client.addFilter(new HTTPBasicAuthFilter(adminUser, adminPass));
...
1
vote
1answer
586 views
jaxb unmarshalling returns null
I'm unmarshalling a response for soap message like the following
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
1
vote
1answer
1k views
jax-ws in Weblogic 10.3.5: IllegalAnnotationsException: 2 counts of IllegalAnnotationExceptions
We have a test web application deployed In Weblogic 10.3.5. The web application contains a servlet which uses jax-ws to call a web service deployed in the same weblogic.
Accessing the servlet throws ...
3
votes
1answer
1k views
Handling invalid enum values while doing JAXB Unmarshalling
My Jaxb has created a Enum class based on the XML schema set up.
**enum Fruit {
APPLE,ORANGE;
}**
I am using a SOAP UI to check my web service. Since it is a free form entry, if i give a wrong ...
0
votes
1answer
944 views
jax-ws vs axis2 - help needed
I need help with the following :
Q.1) Performance comparison between -
1) lot of war files containing jax-ws based web services deployed on Jetty
2) lot of web services deployed on axis2 running on ...
1
vote
2answers
547 views
Spring WS: What class invokes unmarshalling?
Anyone knows what class actually invokes unmarshalling in spring web-services? I would like to know if it is effective/necessary to call un/marshalling within soap iterceptor. Or is there any more ...
1
vote
0answers
163 views
Handle Soap Fault Using JaxBElement
Problem is
WSDL we have used for generating JAXBElement does not contain SOAP Faults where as the service can return Soap Faults in response.
Now when the service is returning faults and I use my ...
0
votes
1answer
107 views
Is it possible to create a full SOAP Envelop message using jaxb2?
I am working on Spring-WS. I need to send an SOAP Envelop message to some JMS Queue as soon as a request comes. I am using JAXB for marshaling. Is it possible to create full SOAP Envelop message ...
2
votes
1answer
189 views
Could I add XmlAdapter to JAXB from runtime (w/o annotation)?
In all cases XmlAdapter mentioned in pair with @XmlJavaTypeAdapter. Is it possible add my XmlAdapter from runtime API (necessary for CXF @XmlJavaTypeAdapter workaround)?
1
vote
2answers
982 views
Empty SOAP response - using JBoss 4.2, Jaxb2, Java 1.6
I am trying to deploy a spring-ws SOAP webservice in JBoss 4.2 (JDK 1.6, spring 3.0, spring-ws 2.0). I am using JAXB2 as O/X binding. Setup is fine, beans found and wired, requests can be sent and ...
2
votes
1answer
273 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>
...
1
vote
2answers
5k views
spring ws not finding the adaptor when using annotated endpoints
I am using Java 6 and spring-ws to create a very simple web service which receives 2 parameters in the form of a BusquedaRequest Jaxb object and returns the same object.
The object has been created ...
6
votes
2answers
1k views
How to transform exceptions into return codes using Spring-WS?
I'm currently facing a problem with error codes and messages using Spring WS.
We are using Spring WS 2.0 with a JAXB2 binding and the @Endpoint and @PayloadRoot annotations for convenience.
Our ...
0
votes
1answer
1k views
InstantiationException in web service client calling Web Service deployed to JBoss
I'm deploying a StatelessSessionBean annotated with @WebService to JBoss. I'm taking the WSDL generated by JBoss to generate client stubs. My problem is in calling a method which returns a list of ...