[
https://issues.apache.org/jira/browse/CXF-970?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Daniel Kulp resolved CXF-970.
-----------------------------
Resolution: Fixed
Fix Version/s: (was: 2.1)
2.0.2
Assignee: Daniel Kulp (was: maomaode)
Patch applied. Thanks!
> CXF doesnt handle the Doc/Literal (Bare) with Null parameter.
> -------------------------------------------------------------
>
> Key: CXF-970
> URL: https://issues.apache.org/jira/browse/CXF-970
> Project: CXF
> Issue Type: Bug
> Components: JAX-WS Runtime
> Affects Versions: 2.0.1
> Environment: windows
> Reporter: Jeff Yu
> Assignee: Daniel Kulp
> Fix For: 2.0.2
>
> Attachments: cxf-970.patch, doc_lit_bare.wsdl
>
>
> When the parameter is null, at the client, it will send the soap message like
> below:
> <soap:Envelope
> xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body></soap:Body></soap:Envelope>
> but I think the correct soap message would be:
> <soap:Envelope
> xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><inString/></soap:Body></soap:Envelope>
> The test case would like below code snippet: (added it in
> DOCBareClientServerTest.java)
> @Test
> public void testNillableParameter() throws Exception {
> URL wsdl = getClass().getResource("/wsdl/doc_lit_bare.wsdl");
> assertNotNull("WSDL is null", wsdl);
> SOAPService service = new SOAPService(wsdl, serviceName);
> assertNotNull("Service is null", service);
> PutLastTradedPricePortType port = service.getPort(portName,
>
> PutLastTradedPricePortType.class);
> String result = port.nillableParameter(null);
> assertEquals("Hello", result);
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.