]
Barry LaFond updated TEIIDDES-2765:
-----------------------------------
Fix Version/s: 10.0.1
View model procedure_response created using SOAP import is missing
information in XMLNAMESPACES()
-------------------------------------------------------------------------------------------------
Key: TEIIDDES-2765
URL:
https://issues.jboss.org/browse/TEIIDDES-2765
Project: Teiid Designer
Issue Type: Bug
Affects Versions: 10.0
Environment: MAC
Reporter: Matus Makovy
Priority: Critical
Fix For: 10.0.1
Attachments: Screen Shot 2016-01-21 at 10.16.55.png
Transformation SQL on xxx_response procedures looks like this:
{code:java}
CREATE VIRTUAL PROCEDURE
BEGIN
SELECT t.* FROM
XMLTABLE(XMLNAMESPACES() , '/FullCountryInfoResponse/return' PASSING
CountriesSOAPServiceView.FullCountryInfo_response.xml_in
COLUMNS
continentCode string PATH '/continentCode',
capitalCity string PATH '/capitalCity',
currencyIsoCode string PATH '/currencyIsoCode',
isoCode string PATH '/isoCode',
name string PATH '/name',
phoneCode string PATH '/phoneCode') AS t;
END
{code}
XMLNAMESPACES() is empty. When I add: "'http://qe.dv.jboss.org/' AS
tns" everything works. (I copied this from TD 9.0.4)