Since the processed looks to have correct data when you test it, I’d expect the dataSet to be populated when the fetch remote dataset task runs and if the last sync date in the row with your dataset has current date.
If it’s not, then please enable CMS auditing, let the task run, collect logs and send them to me via private message.
Also at the bottom of your test JSON output, it says "Processing Result with Data Root " only - mine shows :
This all points towards a lack of a dataroot setting in my opinion…
I had to add an extra line in my Excel VBA to get that dataroot setting to output before it hits my array data so that Xibo can organise it into its columns…
Looking at your Json output, thats because ‘address’ isnt a dataroot - its contained in part of your array.
You need a line in your JSON file that goes inbetween ‘entries’ and ‘id’ which can then be declared as a Xibo dataroot in order to populate your columns correctly with all your array data. For this to work for me, I had to add an extra line in my VBA code that generates my Json file that writes a line (before it starts reading and writing from my excel data for my columns in Xibo) that simply says ‘Xibo’ (it can be anything you want as long as the dataroot matches within the Xibo dataset set up screen) and then that is my dataroot (as seen in my previous example of Json output). I did this by just adding an extra dictionary item into my VBA program and then saying write/output this dictionary item on a line before you start writing data from my excel spreadsheet.
If you need help with that, please let me know and I can give you the vba I had to use to create my dataroots (thats if youre using Excel VBA of course). I had exactly the same issue as you with my datasets until I did this.
Im no expert but your test url output is mirroring the same symptoms as I had when I first started using datasets and Json files with no dataroot so its worth a try.
Sorry thats about as far as my knowledge goes then - cant see a reason why it wouldnt populate your data now, as long as your columns in Xibo match your json output Perhaps one of the staff/mods/other members with more knowledge can assist you further…
Somente esta fonte de Dados que você não consegue preencher as colunas???
Já testou outras fontes???
Talvez não seja sua fonte, mas a sua configuração do XIBO.
Para o DATASET funcionar corretamente as configurações tem que estar rodando 100%.
Acho que você deve olhar melhor nas configurações.
I found out that I took the Database table with almost 4000 rows…
My bad… After I limit it to 500 rows for Dataset fetch, it all fine now.
Just a question, what’s the limit of data size can xibo dataset fetch…?
Sorry and thanks everyone…