Hi,
I'm trying to deserialize the following xml-document:
<?xml version="1.0" encoding="UTF-8"?><CompactData xmlns="http://www.SDMX.org/resources/SDMXML/schemas/v2_0/message" xmlns:bbk="http://www.bundesbank.de/statistik/zeitreihen/BBKcompact" xmlns:compact="http://www.SDMX.org/resources/SDMXML/schemas/v2_0/compact" xmlns:xsl="http://www.w3.org/2001/XMLSchema-instance" xsl:schemaLocation="http://www.SDMX.org/resources/SDMXML/schemas/v2_0/message schemas/SDMXMessage.xsd http://www.bundesbank.de/statistik/zeitreihen/bbkcompact schemas/BBKCompactData.xsd http://www.SDMX.org/resources/SDMXML/schemas/v2_0/compact schemas/SDMXCompactData.xsd"> <Header> <ID>BBK01_ST0304</ID> <Test>false</Test> <Truncated>false</Truncated> <Prepared>2013-05-03T11:20:03</Prepared> <Sender id="BBK"> <Name xml:lang="de">Deutsche Bundesbank</Name> <Contact> <Email>presse-information@bundesbank.de</Email> </Contact> </Sender> </Header> <bbk:DataSet datasetID="BBK01"> <bbk:Series FREQ="D" BBK_ID="BBK01.ST0304" DECIMALS="3" UNIT="% p.a." UNIT_MULT="0" BBK_TITLE="Geldmarktsätze / EONIA / Tagessatz" BBK_TITLE_ENG="Money market rates / EONIA / Daily quotations" BBK_COMM_GEN="Euro OverNight Index Average: seit 4. Januar 1999 von der Europäischen Zentralbank auf der Basis effektiver Umsätze nach der Zinsmethode act/360 berechneter gewichteter Durchschnittssatz für Tagesgelder im Interbankengeschäft, der von Reuters veröffentlicht wird. Bis 31. August 2007 mit 2 Nachkommastellen veröffentlicht. Weder Euribor EBF, noch Euribor ACI, noch die Referenzbanken, noch das Euribor Steering Committee, noch Reuters, noch die Europäische Zentralbank, noch die Deutsche Bundesbank können bei Unstimmigkeiten des EONIA Satzes haftbar gemacht werden." BBK_COMM_GEN_ENG="Euro OverNight Index Average: weighted average overnight rate for interbank operations calculated by the European Central Bank since 4 January 1999 on the basis of real turnover according to the act/360 method and published via Reuters. Published with 2 decimal points until 31 August 2007. Neither Euribor EBF, nor Euribor ACI, nor the Euribor Panel Banks, nor the Euribor Steering Committee, nor Reuters, nor the European Central Bank, nor the Deutsche Bundesbank can be held liable for any irregularity or inaccuracy of the EONIA rate."> <bbk:Obs TIME_PERIOD="2013-04-30" OBS_VALUE="0.102" BBK_DIFF="20.0"/> <bbk:Obs TIME_PERIOD="2013-04-29" OBS_VALUE="0.085" BBK_DIFF="3.7"/> <bbk:Obs TIME_PERIOD="2013-04-28" BBK_OBS_STATUS="K"/> <bbk:Obs TIME_PERIOD="2013-04-27" BBK_OBS_STATUS="K"/> <bbk:Obs TIME_PERIOD="2013-04-26" OBS_VALUE="0.082" BBK_DIFF="-1.2"/> <bbk:Obs TIME_PERIOD="2013-04-25" OBS_VALUE="0.083" BBK_DIFF="0.0"/> <bbk:Obs TIME_PERIOD="2013-04-24" OBS_VALUE="0.083" BBK_DIFF="5.1"/> <bbk:Obs TIME_PERIOD="2013-04-23" OBS_VALUE="0.079" BBK_DIFF="-3.7"/> <bbk:Obs TIME_PERIOD="2013-04-22" OBS_VALUE="0.082" BBK_DIFF="-1.2"/> <bbk:Obs TIME_PERIOD="2013-04-21" BBK_OBS_STATUS="K"/> <bbk:Obs TIME_PERIOD="2013-04-20" BBK_OBS_STATUS="K"/> <bbk:Obs TIME_PERIOD="2013-04-19" OBS_VALUE="0.083" BBK_DIFF="3.8"/> <bbk:Obs TIME_PERIOD="2013-04-18" OBS_VALUE="0.08" BBK_DIFF="2.6"/> <bbk:Obs TIME_PERIOD="2013-04-17" OBS_VALUE="0.078" BBK_DIFF="-2.5"/> <bbk:Obs TIME_PERIOD="2013-04-16" OBS_VALUE="0.08" BBK_DIFF="-3.6"/> <bbk:Obs TIME_PERIOD="2013-04-15" OBS_VALUE="0.083" BBK_DIFF="1.2"/> <bbk:Obs TIME_PERIOD="2013-04-14" BBK_OBS_STATUS="K"/> <bbk:Obs TIME_PERIOD="2013-04-13" BBK_OBS_STATUS="K"/> <bbk:Obs TIME_PERIOD="2013-04-12" OBS_VALUE="0.082" BBK_DIFF="-4.7"/> <bbk:Obs TIME_PERIOD="2013-04-11" OBS_VALUE="0.086" BBK_DIFF="4.9"/> <bbk:Obs TIME_PERIOD="2013-04-10" OBS_VALUE="0.082" BBK_DIFF="5.1"/> <bbk:Obs TIME_PERIOD="2013-04-09" OBS_VALUE="0.078" BBK_DIFF="-4.9"/> <bbk:Obs TIME_PERIOD="2013-04-08" OBS_VALUE="0.082" BBK_DIFF="9.3"/> <bbk:Obs TIME_PERIOD="2013-04-07" BBK_OBS_STATUS="K"/> </bbk:Series> </bbk:DataSet></CompactData>
But in my ST transformation I got an error regarding the <CompactData...> element. Anyone can help me with this issue? How can I handle the xmlns... attribute in my transformation.
Thanks ahead.