INTERACT FORUM
More => Old Versions => Media Center 16 (Development Ended) => Topic started by: rlebrette on July 07, 2011, 10:48:05 am
-
I try to build a JSON service on top of the available web functions, I'm able to build everything related to the folder hierarchy, but as soon as I reach the media files I'm not able to retrieve the information.
First I've tried using the WebEngineSDK, I've tuned the library.html file to render json instead of pure HTML, but as soon as I reach the media files, I think there's some kind of magic because I suppose the web server is switching to another page which is not the one referenced by the URL returned in the parent call.
Second, I've played with MCWS, I face the same kind of problem as soon as I reach the leaf nodes I think I should use the getFiles API but how can I detect that I've reached the point where I've to switch to this API.
Another question about MCWS is about paging, it seems that there's no way to do it as it's done with the WebEngineSDK, is it anyway to achieve the same feature?
-
You should transition to files when a browse item returns no children.
As for paging, you'll have to handle it in the Javascript code. Get and parse the whole response and then show portions of it on the HTML.
If there are simple parameters (like paging for the item code), propose them and we might be able to add them.
Thanks.
-
Thanks Matt,
I'm going to think about the paging stuff.
Would it be possible to have the information that we reach a "leaf" folder in the result of the MCWS/v1/Browse/Children command? Maybe with a more suitable format? (JSon for example :))
It would be easier to manage, and it would allow to avoid an unecessary remote call.
-
Would it be possible to have the information that we reach a "leaf" folder in the result of the MCWS/v1/Browse/Children command?
Whether an item has children can vary by item, not just by level (for complex path-based or expression-based browsing rules). This means it would need to return a per-item value. And that would slow down the response.
Maybe with a more suitable format? (JSon for example :))
XML is a pretty standard format. Could you propose what you would like instead?