CXF Apache: null pointer problem with my reponse
vincerix Oct 7, 2008 9:43 AMHello,
I have a big problem with reception of a CXF answer and i'm looking for a solution since many days. In my aut-generated classes, i have a null pointer.
I use "apache-cxf-2.1.2". From a wsdl file, with https, i've auto-generated many classes with wsdl2java. My application send a request to LDAP server with webservice (using https). Communication work fine: my request is sent and web service send me a correct response. I think my problem is in these auto-generated classes with wsdl2java, because at the reception of the response, inside of the response class (a bean), the pointer to another class (an other bean), is null and my response (in log) is correct and well formed (like in util soapUI).
For more information, here is my request xml:
<!You may enter the following 2 items in any order>
Here is the auto-generated code with wsdl2java for response:
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "connectResponseType", propOrder = {
"_return"
})
public class ConnectResponseType {
@XmlElement(name = "return", required = true)
protected ConnectedUser _return;
public ConnectedUser getReturn() {
return _return;
}
public void setReturn(ConnectedUser value) {
this._return = value;
}
}
The "_return" pointer has value null at response time.
Here is my call code:
URL wsdlURL = new URL("https://adress/ldaplogon?wsdl");
QName SERVICE_NAME = new QName("urn:ldaplogonwsdl", "ldaplogonwsdl");
Ldaplogonwsdl ss = new Ldaplogonwsdl(wsdlURL, SERVICE_NAME);
LdaplogonwsdlPortType port = ss.getLdaplogonwsdlPort();
org.apache.cxf.endpoint.Client client = ClientProxy.getClient(port);
HTTPConduit httpConduit = (HTTPConduit) client.getConduit();
TLSClientParameters tlsParams = new TLSClientParameters();
tlsParams.setSecureSocketProtocol("SSL");
httpConduit.setTlsClientParameters(tlsParams);
HTTPClientPolicy httpClientPolicy = new HTTPClientPolicy();
httpClientPolicy.setConnectionTimeout(36000);
httpClientPolicy.setAllowChunking(false);
httpClientPolicy.setReceiveTimeout(32000);
httpConduit.setClient(httpClientPolicy);
ConnectRequestType connectparameters = new ConnectRequestType();
User myUser = new User();
myUser.setLogin(username);
myUser.setPwd(password);
connectparameters.setUser(myUser);
ConnectResponseType connect_return = port.connect(_connect_parameters);
System.out.println("_connect__return=" + connect_return);
ConnectedUser connectedUser = (ConnectedUser) connect_return.getReturn();
And connectedUser has null value.
Please, could you help me?
Thank you in advance,
Vincent