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 ...
0
votes
1answer
937 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 ...
0
votes
1answer
292 views

How to ignore invalid xml response with Spring's JaxWsPortProxyFactoryBean

I am using the JaxWsPortProxyFactoryBean to create a simple ws client from a wsdl. Everything works as expected but unfortunately the response I am getting contains unicode characters which are ...
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 ...
5
votes
3answers
4k views

Two classes have the same XML type name “objectFactory”

We have been using JAXB 2.1 for a long time in our system. We have a platform that is built with Ant and generates a bunch of bundles that are deployed in an OSGi runtime. We use Java SE 6. We use ...
2
votes
1answer
423 views

How do you call a web service in Java with only XSD and NO WSDL?

I have a web service outside of my company that provides no WSDL for their service. They do provide: a detailed document on how to POST to their service what a SoapEnvelope should look like and ...
2
votes
3answers
982 views

Why is JAXB trying to bind Spring's ApplicationContext?

I'm working on a Spring application that exposes a JAX-WS web service. The web service implementation has a dependency on some spring-managed object in my service-layer and looks like this ...
1
vote
0answers
2k views

WebResult vs RequestWrapper Annotations with Polymophism

I have a class such as the following: @XmlRootElement(namespace = "http://foo.com/model", name = "Person") @XmlAccessorType(XmlAccessType.FIELD) @XmlType(namespace = "http://foo.com/model", name = ...
0
votes
0answers
959 views

JAXB and JAX-WS in Java JDK1.5

I have a GWT web application that uses JAXB and JAX-WS. It uses JAXB in: javax.xml.bind.JAXBContext javax.xml.bind.Unmarshaller And uses JAX-WS in: javax.xml.ws.* I have developed the ...
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 ...