How to XML Feed into Modern SharePoint page?

RIBOUREL Syrah 21 Reputation points
2022-06-07T13:28:52.3+00:00

Hi all,

I'm trying to display information from an XML feed into a Modern SharePoint page.

We have an Application Tracking System (ATS), which generates an XML feed (source code below). This feed is updated whenever an HR person publishes a new vacancy or unpublishes a vacancy in the ATS. I would like to display the information in the XML feed in our internal SharePoint page (intranet). I'm the owner of that SharePoint and seem to be able to add an RSS feed but this is not the same as my XML feed and does not work.

I've researched extensively and not finding a solution. It should be possible as I use the XML feed for other non-SharePoint tools that just pick up the information from the XML feed and display them on their page. I'm not the most technical savy person but can pick up anything, so if anyone has a solution to this would be much appreciated!

Thanks

Source code for the XML Feed

<?xml version="1.0" encoding="UTF-8"?>

<source>

<publisherurl>Company Name</publisherurl>

{{each job}}

<job>

<title><![CDATA[[job.jobtitle]]]></title> 

<date><![CDATA[[job.publisheddate]]]></date> 

<referencenumber><![CDATA[[job.id.link]]]></referencenumber> 

<url><![CDATA[[job.link]]]></url> 

<company><![CDATA[[job.department.company]]]></company> 

<country><![CDATA[[job.country]]]></country> 

<city><![CDATA[[job.department.city]]]></city> 

<state><![CDATA[[job.department.stateprovinceregion]]]></state> 

<location><![CDATA[[job.location]]]></location> 

<description><![CDATA[[job.ad.text]]]></description> 

<education><![CDATA[[job.educational_level]]]></education> 

<jobtype><![CDATA[[job.employment_type]]]></jobtype> 

<category><![CDATA[[job.publishing.categorie]]]></category> 

<experience><![CDATA[[job.job_experience_level]]]></experience> 

<id><![CDATA[[job.number]]]></id> 

<unit><![CDATA[[job.unit]]]></unit> 

</job>

{{/each job}}

</source>

Microsoft 365 and Office | SharePoint | For business | Windows
{count} votes

Accepted answer
  1. Tong Zhang_MSFT 9,251 Reputation points
    2022-06-08T08:13:24.417+00:00

    Hi @RIBOUREL Syrah ,

    As far as I know, there is currently no way to display the information from the XML feed on a SharePoint Modern Page. Besides, per my tests, there is an XML Viewer Web Part in SharePoint Online, however, it is only available in classic SharePoint page.

    I recommend you propose a feedback in the following forum. Many features of our current products are designed and upgraded based on customers’ feedback. With requirements like this increase, the problem may well be released in the future. Thanks for your understanding.

    Feedback:
    https://feedbackportal.microsoft.com/feedback/


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. RIBOUREL Syrah 21 Reputation points
    2022-06-28T09:24:29.413+00:00

    Thank you for the reply. I will raise it in the feedback you recommended!

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.