[ https://issues.apache.org/jira/browse/AXIS2C-1490?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Sebastien Bigot updated AXIS2C-1490:
------------------------------------
Summary: axiom_soap_builder_construct_node should check that the Header element is in
a Soap namespace (was: axiom_soap_builder_construct_node should check that the Header element
is either in a Soap namespace)
> axiom_soap_builder_construct_node should check that the Header element is in a Soap namespace
> ---------------------------------------------------------------------------------------------
>
> Key: AXIS2C-1490
> URL: https://issues.apache.org/jira/browse/AXIS2C-1490
> Project: Axis2-C
> Issue Type: Bug
> Components: xml/soap
> Affects Versions: 1.6.0
> Reporter: Sebastien Bigot
> Priority: Critical
>
> The axiom_soap_builder allows to decode such message without any error :
> <?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"><Header/><soap:Body/></soap:Envelope>
> which is bad because the Header element isn't in the Soap 1.2 namespace (in this example).
> Later, calling axiom_soap_envelope_get_header succeed but this sequence ends in NULL
pointer :
> axiom_node_t *aSoapHeaderNode = axiom_soap_header_get_base_node (iSoapHeader,iAxiomEnv);
> axiom_element *aSoapHeaderElem = (axiom_element_t *) axiom_node_get_data_element(aSoapHeaderNode,iAxiomEnv);
> axiom_namespace *aSoapHeaderNS = axiom_element_get_namespace(aSoapHeaderElem,iAxiomEnv,aSoapHeaderNode);
=> NULL pointer, should be pointer to axiom_namespace matching either 1.1 or 1.2 Soap namespace
!
> The axiom_soap_builder_construct_node should check that Header and Body elements are
in the same namespace than the Soap Envelope element and if not returns in error.
> Regards,
> Sebastien
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: c-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: c-dev-help@axis.apache.org
|