[
https://issues.apache.org/jira/browse/CXF-970?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jeff Yu updated CXF-970:
------------------------
Attachment: cxf-970.patch
with this patch, cxf will render out the element with null value, whose
nillable attribute value is true.
detail please refer to this thread:
http://www.nabble.com/Inter-operation-issue-against-WCF-server.-tf4412733.html
> 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
> Fix For: 2.1
>
> 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.