Tagged Questions
1
vote
0answers
76 views
Nested REST call in REST-datasource bound Listview
I have a Windows 8 JavaScript application, in which I am binding a VirtualDataSource retrieving products from a RESTful service to a Listview.
//fetch data as user scrolls
itemsFromIndex: function ...
0
votes
1answer
170 views
How can I clear the cache associated with WinJS.xhr?
I'm making a foray into app development on Windows 8 using the WinJS library and Visual Studio 2012 (Update 1), and am experiencing difficulties with WinJS.xhr caching responses from an external REST ...
0
votes
2answers
135 views
WinJS - XHR - Is it impossible to set the referer?
I'm working on a WinJS app for a company that uses Referer is their API.
Unfortunately I can't find a way to do this, not even for Cookies!
Here is a code example:
Q.when(WinJS.xhr({
url: ...
0
votes
1answer
233 views
Can't get /api/login/ to work - JavaScript / Reddit
i'm running out of attempts... just got this "you are doing that too much. try again in 27 minutes." so I thought I would come here and ask.
This is the request I'm sending
URL:
...
0
votes
1answer
184 views
WinJS.xhr Timeout Loses Requests?
What I'm trying to do (though I fully suspect there's a better way to do it) is to send HTTP requests to a range of hosts on my network. I can hit every host by calling WinJS.xhr in a loop. However, ...
2
votes
1answer
298 views
Getting URL from WinJS.xhr Response
Suppose I have a loop in which I call WinJS.xhr() on multiple addresses. In the response handler, is there a way to determine the address from which the response is being handled? Either by ...
0
votes
1answer
161 views
What is the simplest way to pull a local xml file and apply it to the windows 8 java script grid layout template data.js file?
My apologies if the question is overly simple or asking for a bit too much but I feel like I am very close to a simple answer and still too far. All I am trying to do is use the grid layout template ...
0
votes
1answer
100 views
is it wrong to use atompub to retrieve data
I'm building a rss feed reader for windows 8 using WinJS.
is it wrong for me to use atomPub to retrieve data from a request, I tried getting htmlrequest to work on my windows 8 app, but the Windows 8 ...
1
vote
1answer
177 views
WinJS.xhr local network error
I am trying to make a simple windows 8 app but I have a problem.
When I try to make a xhr request to a local webserver it fails with the error code: 0x2efd
Sample code:
WinJS.xhr({ ...
2
votes
2answers
1k views
WinJS.xhr: Network Error 0x2efd, Could not complete the operation due to error 00002efd
I have problem with WinJS.xhr when developing a Windows 8 Metro application in JavaScript.
WinJS.xhr({ url: "http://www.seznam.cz"});
When above code is executed, I see in log:
SCRIPT7002: ...
1
vote
1answer
346 views
How to Replicate Web Form Call With WinJS.xhr
I'm working on a Windows 8 app, building it in HTML5/JavaScript. Part of the functionality in the app requires user authentication. The process in place is via a web form that posts the data back to a ...
