QML\Javascript read status.xml information
Posted: 12 Jan 2014 11:10
Hey guys,
I am working on a VLC remote and I am able to send commands to the player via this function:
I am still quite new to QML\Javascript so I am having issues of writing a function to read the information from status.xml file. Does anyone have any tips or anything of how I would go about extracting information from the status.xml file?
Thank you
I am working on a VLC remote and I am able to send commands to the player via this function:
Code: Select all
function passCommands(command)
{
var http = new XMLHttpRequest()
var url = "http://" + ip + ":" + port + "/requests/status.xml?command=" + command;
http.open("POST", url, true);
// Send the proper header information along with the request
http.setRequestHeader("Authorization", "Basic " + Qt.btoa(username + ":" + password));
http.send();
}
Thank you