2
votes
1answer
238 views

Opinion about synchronous requests in web workers

I want to know what do you think about this. Is recommended to use synchronous requests (XMLHttpRequest) in a web worker? What problems can I find? I have been testing this in my app and I haven't ...
4
votes
1answer
75 views

What is the different between Ajax and Web Worker in Javascript?

I think they almost do the same thing. What's the condition that we should choose Web Worker than Ajax?
1
vote
2answers
197 views

Different server request behaviour within web workers

Within our web application we are using the following method of server communication XMLHttpRequest We are sending the same content/data in both cases but the XMLHttpRequest is ran inside a ...
1
vote
1answer
366 views

Javascript - Wait for web worker to finish?

I am implementing the LDA algorithm of Topic Modelling in javascript as a part of a project. Upon the click of a button, the function to perform LDA is called. However since this is a very heavy task, ...
3
votes
1answer
276 views

Best XHR solution, for use with workers?

(If there is a question which answers this, please let me know) I'm looking for suggestions for cross-browser XHR support, with-in workers. In the normal VM, I usually use jQ for XHR stuff. It seems ...
4
votes
2answers
505 views

Multiple Web Worker ajax requests and not all returning

I have the following code in a web worker: self.addEventListener('message', function(e){ try { var xhr=new XMLHttpRequest() for(var i = 0; i < e.data.urls.length;i++){ ...
0
votes
0answers
136 views

WebWorker without xmlhttprequest?

So from what I've read, to run a web worker, you: var ww = new Worker('js/myscript.js'); This runs an xmlhttprequest for script.js, runs the code inside and does the normal callback work. Is there ...
2
votes
1answer
312 views

Ajax Limits in Web Worker

My HTML5 application uses web workers to analyze an image's pixel data from a canvas context. Once the worker has analyzed the data, it makes 3 XHR calls back to my server to update my model. When I ...
0
votes
1answer
196 views

In browser FIFO queues using Javascript and AJAX to Web Service

I have an existing Adobe AIR application that I have been asked to look into converting to a pure HTML5 app that is browser only. The application is for scoring images of scanned student work. The ...
0
votes
2answers
269 views

JSon to Asp.Net inside a Web Worker. Can't find the method inside the Controller

I'm sending a JSon to my Asp.Net MVC 3 Controller that is inside a Web Worker (using jquery-hive). At the PostMessage, I can capture a Asp.Net error telling me that it find the controller but has no ...
0
votes
1answer
158 views

ChemDoodle Ajax Incompatibility with Pollen.js

I'm trying to use iChemLabs cloud services from a html5 web worker. Normally the cloudservices requires jQuery but I can't import that into a web worker so I'm using Pollen instead with a ChemDoodle ...
2
votes
1answer
263 views

jQuery custom ajax build

I'm trying to strip everything except for ajax functionality from jQuery. Sorry for the silly question, but hear me out: I'm using web workers to make the ajax call so I can't have the core.js stuff ...
0
votes
1answer
235 views

JSON object becomes 'null'

I've been having trouble with my html5 web worker. The web worker postMessage()'s a JSON object to the document-level javascript that invoked the worker, which comes with an onmessage() function. ...
14
votes
4answers
7k views

HTML Web Worker and Jquery Ajax call

I'm wondering if I can use Jquery inside the web-worker file. Google Chrome gives me this error: "Uncaught ReferenceError: $ is not defined". Here is the code: The parent file: var loader = new ...
1
vote
0answers
69 views

Conditions for when event-handlers can be called by the browser

when working with asynchronous XHR-requests in Javascript, I often wonder, if there are conditions, for when the onReadyStateChange-callback can be called by the browser. If there were none, some ...
1
vote
1answer
859 views

Asynchronous POST request from a Firefox's web worker

I am trying to make an asynchronous request with POST method from a web worker used in my extension. The thing is that it does not work for me. On the server side I have PHP script listening for data ...