Expandir la barra de logros de la comunidad.

Submissions are now open for the 2026 Adobe Experience Maker Awards

Mark Solution

Esta conversación ha sido bloqueada debido a la inactividad. Cree una nueva publicación.

RESUELTAS

RSS feed ETL import for adobe campaign classic

Avatar

Level 2

Would anyone know if it is possible to somehow import data from a RSS feed directly from a workflow in Adobe campagn classic? 

1 solución aceptada

Avatar

Respuesta correcta de
Level 10

Hi @SorenDahl 

it should be posible.

You can obtain RSS contect (xml) as a result of calling GET method, parse it if needed and store to AC table of whatever is needed.

It is not straigthforward but could be done.

Regards,

Milan

Ver la solución en mensaje original publicado

6 Respuestas

Avatar

Respuesta correcta de
Level 10

Hi @SorenDahl 

it should be posible.

You can obtain RSS contect (xml) as a result of calling GET method, parse it if needed and store to AC table of whatever is needed.

It is not straigthforward but could be done.

Regards,

Milan

Avatar

Level 2

Thank you @Milan_Vucetic!

Just to be clear, you would simply do this in a javascript activity step in a workflow? 

Avatar

Level 10
Hi @SorenDahl, this depends on your needs but yes I would put this in one JS node. Just one GET request, obtain response and put into table if needed. Regards, Milan

Avatar

Level 2
Thank you @Milan_Vucetic!

Avatar

Level 5

 Hi , Sorry might be my post is little late, so what we did for the RSS data load is :- 

1) Load or create the field structure in Adobe OOTB xls format. 

2) ftp download the xml file (the content file). 

3) Using OOTB function applyXslFromFile to validate the RSS data feed. 

4) Later assign the data to the array fields. 

5) Insert or update array data to the table.

 

Thanks,
Adithya

Avatar

Level 2
Nice, thank you very much for the example!