The most recent content from our members.
I am able to run this code fine from a client-side app: $.ajaxSetup({ beforeSend: function(xhr, settings) { xhr.setRequestHeader('Authorization', "Bearer " + myAccessToken); } }); $.ajax(myURL, { dataType: 'json', type: 'get', success: function(data, status) { dataReturned1(data); }, error: function(xhr, status, error) {…
Does anyone allow "cross site" requests using CORS (Cross Origin Resource Sharing) today? If so, what benefits and risks have you found in the process?
How is the routing page's additional request headers field implemented in Website? It appears that the additional headers you specify will be included in any request to modules issued by Website server side but won't be included in any ajax request to modules. Could this be done?
While waiting for a checkbox to reach a certain state, it was observed that the act of waiting (thread sleep) prevented the java script that was setting the checkbox from completing. It seems like this is the issue: http://www.seleniumwebdriver.com/current-outstanding-issues/firefox-webdriver-blocks-because-of-ajax-call/…
Can I add CrazyTrain/UX Events to AJAX request headers from the client-side like we do on the server-side? e.g. [pseudo-code] ``` $.ajax("/Document/v1/FullText/i3489314632987329487321984/whatever", { cobaltHost: Cobalt.Vertical.Document, type: "POST", contentType: "application/json", headers: { "x-cobalt-events":…
It looks like you're new here. Sign in or register to get started.