Search found 4 matches

Go to advanced search

by cking2600
19 Feb 2014 06:27
Forum: Web and scripting
Topic: HTTP interface / requests status and JQuery
Replies: 3
Views: 1889

Re: HTTP interface / requests status and JQuery

Solution found... sort of. I was never able to get a successful response when passing credentials from the web page. I was however able to get one from code behind. So, I created a web service with the working code behind. So now I call my webservice from the web page. The web service connects to VL...
by cking2600
17 Feb 2014 22:48
Forum: Web and scripting
Topic: HTTP interface / requests status and JQuery
Replies: 3
Views: 1889

Re: HTTP interface / requests status and JQuery

After a little more troubleshooting, it seems I can connect and control playback with the old version. The problem I am having with that is the Get command always returns as an error. It never performs the success function. For this reason I can't see the returned JSON. When I have Fiddler running, ...
by cking2600
17 Feb 2014 19:38
Forum: Web and scripting
Topic: HTTP interface / requests status and JQuery
Replies: 3
Views: 1889

Re: HTTP interface / requests status and JQuery

I have also tried this, but it isn't working. function getPage() { if(window.XMLHttpRequest){ xmlhttp = new XMLHttpRequest(); }else{ xmlhttp = new ActiveXObject('Microsoft.XMLHTTP'); }; xmlhttp.onreadystatechange = function(){ if(xmlhttp.readyState == 4 && xmlhttp.status == 200){ document.ge...
by cking2600
17 Feb 2014 08:38
Forum: Web and scripting
Topic: HTTP interface / requests status and JQuery
Replies: 3
Views: 1889

HTTP interface / requests status and JQuery

Hi, I am trying to get the status of the currently playing file. I want to use JQuery, so I can embed it in a webpage to build a custom remote control. If i use IE, i can get the status via http://myIP:8080/requests/status.json. I can also pass commands i.e. ?command=pl_pause. No problems when doing...

Go to advanced search