href is not dissolved
---------------------
Key: AXIS2-4539
URL: https://issues.apache.org/jira/browse/AXIS2-4539
Project: Axis 2.0 (Axis2)
Issue Type: Bug
Affects Versions: 1.4.1
Reporter: Strempfer
When accessing a web service (generated by axis2) via a .Net client, messages
may include href-elements. This href-elements are not interpreted correctly, so
that their values are empty.
Example message:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<env:Header></env:Header>
<env:Body
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<m:exampleMethod xmlns:m="http://www.example.com/service">
<exampleRequest xmlns:n1="java:com.example.request"
xsi:type="n1:ExampleRequest">
<id xsi:type="xsd:string">123456789</id>
<orderid href="#ID_3"></orderid>
</exampleRequest>
</m:exampleMethod>
<xsd:string xsi:type="xsd:string"
id="ID_3">091029135557269</xsd:string>
</env:Body>
</env:Envelope>
Orderid should be '091029135557269' but is empty.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.