После моего вопроса относительно ( Преобразования JSON в XML с использованием XSLT 3.0 - экранирование с амперсандом в ключе элемента ) я получил следующую карту XML.
<?xml version="1.0" encoding="UTF-8"?>
<map xmlns="http://www.w3.org/2005/xpath-functions">
<string key="@odata.context">https://swdev.api.crm4.dynamics.com/api/data/v9.0/$metadata#msdyn_bookingjournals(msdyn_journaltype,msdyn_name,msdyn_starttime,msdyn_endtime,msdyn_duration,foc_sapstatisticalkeyfigurecod,statecode)</string>
<array key="value">
<map>
<string key="@odata.etag">W/"3935842"</string>
<string key="msdyn_journaltype@OData.Community.Display.V1.FormattedValue">Travel</string>
<number key="msdyn_journaltype">690970002</number>
<string key="msdyn_name">856900132906 - Wartung - Wartung - 101 Innener Verkehrsring/Düsseldorferstr </string>
<string key="msdyn_starttime@OData.Community.Display.V1.FormattedValue">13.11.2018 13:11</string>
<string key="msdyn_starttime">2018-11-13T13:11:58Z</string>
<string key="msdyn_endtime@OData.Community.Display.V1.FormattedValue">13.11.2018 13:15</string>
<string key="msdyn_endtime">2018-11-13T13:15:58Z</string>
<string key="msdyn_duration@OData.Community.Display.V1.FormattedValue">4</string>
<number key="msdyn_duration">4</number>
<string key="foc_sapstatisticalkeyfigurecod"/>
<string key="statecode@OData.Community.Display.V1.FormattedValue">Active</string>
<number key="statecode">0</number>
<string key="msdyn_bookingjournalid">cb6d62ee-49e7-e811-a958-000d3a29fea4</string>
</map>
<map>
<string key="@odata.etag">W/"3935846"</string>
<string key="msdyn_journaltype@OData.Community.Display.V1.FormattedValue">Working Hours</string>
<number key="msdyn_journaltype">690970000</number>
<string key="msdyn_name">856900132906 - Wartung - Wartung - 101 Innener Verkehrsring/Düsseldorferstr </string>
<string key="msdyn_starttime@OData.Community.Display.V1.FormattedValue">13.11.2018 13:15</string>
<string key="msdyn_starttime">2018-11-13T13:15:58Z</string>
<string key="msdyn_endtime@OData.Community.Display.V1.FormattedValue">13.11.2018 13:20</string>
<string key="msdyn_endtime">2018-11-13T13:20:57Z</string>
<string key="msdyn_duration@OData.Community.Display.V1.FormattedValue">4</string>
<number key="msdyn_duration">4</number>
<string key="foc_sapstatisticalkeyfigurecod"/>
<string key="statecode@OData.Community.Display.V1.FormattedValue">Active</string>
<number key="statecode">0</number>
<string key="msdyn_bookingjournalid">fe6d62ee-49e7-e811-a958-000d3a29fea4</string>
</map>
</array>
<string key="@odata.nextLink">https://xx.api.crm4.dynamics.com/api/data/v9.0/bookableresourcebookings(b0fe5834-45e7-e811-a958-000d3a29fb7a)/msdyn_bookableresourcebooking_msdyn_bookingjournal_Booking?$select=msdyn_journaltype,msdyn_name,msdyn_starttime,msdyn_endtime,msdyn_duration,foc_sapstatisticalkeyfigurecod,statecode&$skiptoken=%3Ccookie%20pagenumber=%222%22%20pagingcookie=%22%253ccookie%2520page%253d%25221%2522%2520parentEntityId%253d%2522b0fe5834-45e7-e811-a958-000d3a29fb7a%2522%2520parentAttributeName%253d%2522msdyn_booking%2522%2520parentEntityObjectTypeCode%253d%25221145%2522%253e%253cmsdyn_bookingjournalid%2520last%253d%2522%257bFE6D62EE-49E7-E811-A958-000D3A29FEA4%257d%2522%2520first%253d%2522%257bCB6D62EE-49E7-E811-A958-000D3A29FEA4%257d%2522%2520%252f%253e%253c%252fcookie%253e%22%20istracking=%22False%22%20/%3E</string>
</map>
Как описано в вопросе другого пользователя ( Преобразование JSON в XML с использованием функций XSLT 3.0 ), я хотел преобразовать строковые / числовые элементы в желаемый формат XML. К сожалению, знак @ в именах ключей вызывает проблемы:
Unable to generate the XML document using the provided XML/XSL input.
Invalid element name. Invalid QName {@odata.context}
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:math="http://www.w3.org/2005/xpath-functions/math" xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="xs math" version="3.0">
<xsl:output indent="yes" />
<xsl:template match="*[@key]" xpath-default-namespace="http://www.w3.org/2005/xpath-functions">
<xsl:element name="{@key}">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
Как удалить все знаки '@' в именах элементов карты XML (предпочтительно для имен вложенных элементов)?
Редактировать: это был оригинальный ввод JSON
{
"@odata.context": "https:\/\/xxx.api.crm4.dynamics.com\/api\/data\/v9.0\/$metadata#msdyn_bookingjournals(msdyn_journaltype,msdyn_name,msdyn_starttime,msdyn_endtime,msdyn_duration,foc_sapstatisticalkeyfigurecod,statecode)",
"value": [
{
"@odata.etag": "W\/\"3935842\"",
"msdyn_journaltype@OData.Community.Display.V1.FormattedValue": "Travel",
"msdyn_journaltype": 690970002,
"msdyn_name": "Wartung - Wartung - 101 Innener Verkehrsring\/D\u00fcsseldorferstr ",
"msdyn_starttime@OData.Community.Display.V1.FormattedValue": "13.11.2018 13:11",
"msdyn_starttime": "2018-11-13T13:11:58Z",
"msdyn_endtime@OData.Community.Display.V1.FormattedValue": "13.11.2018 13:15",
"msdyn_endtime": "2018-11-13T13:15:58Z",
"msdyn_duration@OData.Community.Display.V1.FormattedValue": "4",
"msdyn_duration": 4,
"foc_sapstatisticalkeyfigurecod": "",
"statecode@OData.Community.Display.V1.FormattedValue": "Active",
"statecode": 0,
"msdyn_bookingjournalid": "cb6d62ee-49e7-e811-a958-000d3a29fea4"
},
{
"@odata.etag": "W\/\"3935846\"",
"msdyn_journaltype@OData.Community.Display.V1.FormattedValue": "Working Hours",
"msdyn_journaltype": 690970000,
"msdyn_name": "Wartung - Wartung - 101 Innener Verkehrsring\/D\u00fcsseldorferstr ",
"msdyn_starttime@OData.Community.Display.V1.FormattedValue": "13.11.2018 13:15",
"msdyn_starttime": "2018-11-13T13:15:58Z",
"msdyn_endtime@OData.Community.Display.V1.FormattedValue": "13.11.2018 13:20",
"msdyn_endtime": "2018-11-13T13:20:57Z",
"msdyn_duration@OData.Community.Display.V1.FormattedValue": "4",
"msdyn_duration": 4,
"foc_sapstatisticalkeyfigurecod": "",
"statecode@OData.Community.Display.V1.FormattedValue": "Active",
"statecode": 0,
"msdyn_bookingjournalid": "fe6d62ee-49e7-e811-a958-000d3a29fea4"
}
],
"@odata.nextLink": "https:\/\/xxx.api.crm4.dynamics.com\/api\/data\/v9.0\/bookableresourcebookings(b0fe5834-45e7-e811-a958-000d3a29fb7a)\/msdyn_bookableresourcebooking_msdyn_bookingjournal_Booking?$select=msdyn_journaltype,msdyn_name,msdyn_starttime,msdyn_endtime,msdyn_duration,foc_sapstatisticalkeyfigurecod,statecode&$skiptoken=%3Ccookie%20pagenumber=%222%22%20pagingcookie=%22%253ccookie%2520page%253d%25221%2522%2520parentEntityId%253d%2522b0fe5834-45e7-e811-a958-000d3a29fb7a%2522%2520parentAttributeName%253d%2522msdyn_booking%2522%2520parentEntityObjectTypeCode%253d%25221145%2522%253e%253cmsdyn_bookingjournalid%2520last%253d%2522%257bFE6D62EE-49E7-E811-A958-000D3A29FEA4%257d%2522%2520first%253d%2522%257bCB6D62EE-49E7-E811-A958-000D3A29FEA4%257d%2522%2520%252f%253e%253c%252fcookie%253e%22%20istracking=%22False%22%20\/%3E"
}
К которым были добавлены теги cdata, так как элемент '@ odata.nextLink' содержит URL-адреса, которые могут иметь & в них.
<data>
<![CDATA[
{
"@odata.context": "https:\/\/xxx.api.crm4.dynamics.com\/api\/data\/v9.0\/$metadata#msdyn_bookingjournals(msdyn_journaltype,msdyn_name,msdyn_starttime,msdyn_endtime,msdyn_duration,foc_sapstatisticalkeyfigurecod,statecode)",
"value": [
{
"@odata.etag": "W\/\"3935842\"",
"msdyn_journaltype@OData.Community.Display.V1.FormattedValue": "Travel",
"msdyn_journaltype": 690970002,
"msdyn_name": "Wartung - Wartung - 101 Innener Verkehrsring\/D\u00fcsseldorferstr ",
"msdyn_starttime@OData.Community.Display.V1.FormattedValue": "13.11.2018 13:11",
"msdyn_starttime": "2018-11-13T13:11:58Z",
"msdyn_endtime@OData.Community.Display.V1.FormattedValue": "13.11.2018 13:15",
"msdyn_endtime": "2018-11-13T13:15:58Z",
"msdyn_duration@OData.Community.Display.V1.FormattedValue": "4",
"msdyn_duration": 4,
"foc_sapstatisticalkeyfigurecod": "",
"statecode@OData.Community.Display.V1.FormattedValue": "Active",
"statecode": 0,
"msdyn_bookingjournalid": "cb6d62ee-49e7-e811-a958-000d3a29fea4"
},
{
"@odata.etag": "W\/\"3935846\"",
"msdyn_journaltype@OData.Community.Display.V1.FormattedValue": "Working Hours",
"msdyn_journaltype": 690970000,
"msdyn_name": "Wartung - Wartung - 101 Innener Verkehrsring\/D\u00fcsseldorferstr ",
"msdyn_starttime@OData.Community.Display.V1.FormattedValue": "13.11.2018 13:15",
"msdyn_starttime": "2018-11-13T13:15:58Z",
"msdyn_endtime@OData.Community.Display.V1.FormattedValue": "13.11.2018 13:20",
"msdyn_endtime": "2018-11-13T13:20:57Z",
"msdyn_duration@OData.Community.Display.V1.FormattedValue": "4",
"msdyn_duration": 4,
"foc_sapstatisticalkeyfigurecod": "",
"statecode@OData.Community.Display.V1.FormattedValue": "Active",
"statecode": 0,
"msdyn_bookingjournalid": "fe6d62ee-49e7-e811-a958-000d3a29fea4"
}
],
"@odata.nextLink": "https:\/\/xxx.api.crm4.dynamics.com\/api\/data\/v9.0\/bookableresourcebookings(b0fe5834-45e7-e811-a958-000d3a29fb7a)\/msdyn_bookableresourcebooking_msdyn_bookingjournal_Booking?$select=msdyn_journaltype,msdyn_name,msdyn_starttime,msdyn_endtime,msdyn_duration,foc_sapstatisticalkeyfigurecod,statecode&$skiptoken=%3Ccookie%20pagenumber=%222%22%20pagingcookie=%22%253ccookie%2520page%253d%25221%2522%2520parentEntityId%253d%2522b0fe5834-45e7-e811-a958-000d3a29fb7a%2522%2520parentAttributeName%253d%2522msdyn_booking%2522%2520parentEntityObjectTypeCode%253d%25221145%2522%253e%253cmsdyn_bookingjournalid%2520last%253d%2522%257bFE6D62EE-49E7-E811-A958-000D3A29FEA4%257d%2522%2520first%253d%2522%257bCB6D62EE-49E7-E811-A958-000D3A29FEA4%257d%2522%2520%252f%253e%253c%252fcookie%253e%22%20istracking=%22False%22%20\/%3E"
}
]]>
</data>
и следующий xslt был применен для преобразования выше в XML
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:math="http://www.w3.org/2005/xpath-functions/math" xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="xs math" version="3.0">
<xsl:output indent="yes" />
<xsl:template match="data">
<xsl:copy-of select="json-to-xml(.)/*" />
</xsl:template>
</xsl:stylesheet>