An XML response I am getting has the same named elements next to each other in the response which is causing me issues, I need to remove this recurring element using XSLT 1.0. The element in question in the response is <RoundIncidents>
. I have had a look through other questions but can't find what I need to transform the response to the correct format.
XML Response with Recurring Element
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
<GetSiteIncidentsResponse xmlns="http://webservices.whitespacews.com/">
<GetSiteIncidentsResult>
<ErrorCode>0</ErrorCode>
<ErrorDescription>Success</ErrorDescription>
<SuccessFlag>true</SuccessFlag>
<RoundIncidents>
<RoundIncidents>
<ExtensionData />
<AccountSiteID>0</AccountSiteID>
<RoundIncidentID>8</RoundIncidentID>
<RoundRoundAreaServiceScheduleID>157</RoundRoundAreaServiceScheduleID>
<RoundCode>REC1</RoundCode>
<ScheduleName>MonFort2</ScheduleName>
<ServiceName>Recycling Collection Service</ServiceName>
<RoundAreaName>REC1 - MonFort2</RoundAreaName>
<RoundIncidentDate>2019-04-08T16:12:10</RoundIncidentDate>
<RoundIncidentNotes>Road Closed</RoundIncidentNotes>
<RoundIncidentCreatedByID>129</RoundIncidentCreatedByID>
<RoundIncidentCreatedDate>2019-04-08T16:12:26.493</RoundIncidentCreatedDate>
</RoundIncidents>
</RoundIncidents>
</GetSiteIncidentsResult>
</GetSiteIncidentsResponse>
</soap:Body>
</soap:Envelope>
Desired Outcome following XSLT Transformation
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
<GetSiteIncidentsResponse xmlns="http://webservices.whitespacews.com/">
<GetSiteIncidentsResult>
<ErrorCode>0</ErrorCode>
<ErrorDescription>Success</ErrorDescription>
<SuccessFlag>true</SuccessFlag>
<RoundIncidents>
<ExtensionData />
<AccountSiteID>0</AccountSiteID>
<RoundIncidentID>8</RoundIncidentID>
<RoundRoundAreaServiceScheduleID>157</RoundRoundAreaServiceScheduleID>
<RoundCode>REC1</RoundCode>
<ScheduleName>MonFort2</ScheduleName>
<ServiceName>Recycling Collection Service</ServiceName>
<RoundAreaName>REC1 - MonFort2</RoundAreaName>
<RoundIncidentDate>2019-04-08T16:12:10</RoundIncidentDate>
<RoundIncidentNotes>Road Closed</RoundIncidentNotes>
<RoundIncidentCreatedByID>129</RoundIncidentCreatedByID>
<RoundIncidentCreatedDate>2019-04-08T16:12:26.493</RoundIncidentCreatedDate>
</RoundIncidents>
</GetSiteIncidentsResult>
</GetSiteIncidentsResponse>
</soap:Body>
</soap:Envelope>