-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have to connect to a poorly implemented server that only understands Content-Type(capital-T) and not Content-type. How can I ask my jax-ws client to send Content-Type?
I've tried
Map<String, List<String>> headers = (Map<String, List<String>>)
((BindingProvider)port).getRequestContext()…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi I have made a small example to show my problem. Here is my web-service:
package service;
import javax.jws.WebMethod;
import javax.jws.WebService;
@WebService
public class BytesService {
@WebMethod
public String redirectString(String string){
return string+" - is what you sended";
}
@WebMethod
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi all,
I've created simple jax-ws (anotated Java 6 class to web service) service and deploied it on glassfish v3. The web.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app>
<servlet>
<servlet-name>MyServiceName</servlet-name>
<description>Blablabla</description>
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi!
I'm trying to resolve a name clash in a wsdl2java mapping with CXF 2.2.6 The relevant wsdl snippets are:
<types>...
<xs:schema...
<xs:element name="GetBPK">
<xs:complexType>
<xs:sequence>
<xs:element name="PersonInfo"…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I'm trying to use an application which uses cxf-jaxws in bean definition:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:sec="http://cxf.apache.org/configuration/security"
xmlns:jaxws="http://cxf.apache.org/jaxws"
…
>>> More