Tagged Questions
0
votes
0answers
42 views
What is the optimum size for a minified JavaScript file? [closed]
Assuming an entire JavaScript code-base is minified into a single file, at what file size would it be more efficient to breakout the single minified file into two so that the files can be downloaded ...
0
votes
0answers
13 views
How to mock only a specific http resource (URL) in Angular
I'm working in a team split into front-end and back-end developers. Sometimes, the front-end wants to make some REST requests to a http address / REST-resource that isn't yet implemented.
In ...
0
votes
2answers
38 views
HTTP GET not working in AngularJS?
Here is my controller, being served from localhost port 80:
function ListCtrl($scope, $http) {
$http.get('/api/moz').success(function (data) {
$scope.moz = data;
});
}
And the ...
-1
votes
3answers
44 views
Passing variables from python to javascript over the internet [closed]
I want to create a python server that sends data to a web server across the internet, in the form of a number (variable). This number would be 1-100, and depending on what number it is, JavaScript ...
0
votes
3answers
60 views
Angular directives and server requests
I'm just wondering is it a good practice to make http GET request to fetch data inside an angular directive? Directive's behavior is dependent on that data.
So the main complexity is to get it before ...
0
votes
1answer
20 views
How to initialize a char array to accomodate the HTTP POST Content-Length
I'm writing an HTTP server (for learning purposes). Once I receive an HTTP POST request, I want to print the parameters that were sent by the client, the problem is that I'm sending "name=Marcelo" and ...
-3
votes
1answer
43 views
Learning how to use http requests and javascript [closed]
Say I have this request,
GET /api/pollstar.asmx/functionHere?parameter=value¶meter=value HTTP/1.1
Host: data.pollstar.com
I have tested this with the Postman client and know that it returns ...
1
vote
1answer
53 views
$digest already running - AngularJS
I want to "refresh" my view after some new data is loaded into my factory, but i cant figure out how to do this correctly.
$http.post(url, postKunde).success(function(data, status) {
...
0
votes
1answer
25 views
Fetch multiple collections with mongoose
Currently using node.js along with mongoose and express. I have two collections in my MongoDB and I can successfully retrieve data like this:
ActivityList.prototype = {
showActivities: ...
1
vote
1answer
102 views
Angular.js $http.post TypeError: Cannot read property 'data' of undefined
Angular.js v1.0.6
When making an $http.post and receiving a non 200 resposne (401 in this case)
$http.post('http://localhost:3030/auth/login', {
username: 'username',
password: 'password'
})
...
1
vote
1answer
44 views
Ways of submitting HTTP requests in a web document?
I want to build up a list of ways to cause HTTP submissions in a web document (HTML, Javascript, etc.) Here's what I have so far, with the HTTP verb(s) that can be used:
A links (GET)
FORMs (GET, ...
0
votes
1answer
34 views
Esablishing if file exists on another domain using javascript
I wish to test from javascript within my html page if the following files exist or not:
http://www.focloir.ie/media/ei/sounds/ag_c.mp3 // exists
http://www.focloir.ie/media/ei/sounds/og_c.mp3 // ...
1
vote
1answer
75 views
How to search in an output generated by a http request
I am using THIS api for searching postcodes in a range around it.
it generates an automatic output when I type in a postcode (1234) for example.
it's using jquery autocomplete for that.
Now is my ...
0
votes
3answers
55 views
Http Response Code from within Html/Javascript
Is it possible using Javascript/Html5 to check the http reply code for a particular web page? For example, if the user enters a sentence, I wish to check to see if I have an audio file for each word ...
-2
votes
0answers
17 views
catch http requests via javascript [closed]
i want to make a plug-in in firefox that catches all the http requests that user does in facebook via javascript.
Is that possible?
And how do i start?
Thanks in advanced.
3
votes
1answer
113 views
Should I worry about too many repetitive image downloads?
I have a simple HTML page with some javascript that continuously feeds an image control with images from a camera. My concern is that when I'm in Google Chrome, and am looking at the Resources, it is ...
1
vote
1answer
73 views
Http response 0 for Ajax call from Javascript
I am trying to do an AJAX call (POST) to the the php page which is in the same folder as my javascript. I am getting http.status = 0 and http.readyState = 4
This is the js code:
var http = new ...
-1
votes
0answers
57 views
Ajax 200 results work fine, all others return 0 [closed]
I understand the bases of the problem originates from Cross domain requests( I have to request resources through a sub domain to avoid going through our CDN ). Well all my successful gets work fine ...
0
votes
3answers
43 views
Node.js Unable to load the webpage The connection has timed out
I'm a beginner to node.js, I installed it as here:
https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager
I tried it from console and it worked:
console.log('Hello World!');
...
0
votes
0answers
83 views
Javascript: XMLHttpRequest onload function not reaching
I'm new to HTTP and JS so please bear with me.
I'm trying to get JSONP working with an Arduino Ethernet shield. But before going that far I wanted to confirm the basic functionality.
The Arduino is ...
0
votes
0answers
47 views
REST API Authentication from Javascript in the browser
I'm playing around with writing a stateless, REST based API that I plan to consume from a couple of different places, one of which will be a single-page Javascript webapp. The idea is basically to ...
0
votes
1answer
66 views
Reload the http parent window from a secure https pop up window using JavaScript
I have a parent window under http and it opens a child popup window under https. I wanted to reload the parent from pop-up window using following Java Script.
<script language="JavaScript">
...
-1
votes
1answer
32 views
Node.js HTTP - Request not expected. What's this?
It seems that when I tried accessing a URL via get, instead
of returning a string, it returned nothing.
Then the received header has a location: (url) thing. What is causing
this man!
See the ...
1
vote
1answer
107 views
How to force browser to open “save as” dialog for binary response?
I'm developing Zimbra Zimlet.
I'm requesting JSP from Javascript (both belong to the same Zimlet)
var jspUrl = this.getResource("my.jsp");
var callback = new AjxCallback(this, this._rpcCallback, ...
0
votes
0answers
30 views
Getting data returned from a JavaScript function
I am trying to make an android application which connects to a website and shows validity information for a service.
I already have successfully connected to a website using HTTP client on android.
...
0
votes
1answer
21 views
Detecting return from location.href (when redirecting to pdf processing url)
IHAC that wants to call an aspx that creates a pdf document. The solution currently is like this:
$(document).on('click', '#print', function (event) {
location.href = ...
0
votes
1answer
54 views
spine.js: why does it serialize POSTs blindly?
This came up during a discussion on another spine.js question:
Since, this is significantly distinct from that question, I am upholding the "one question per post" policy of SO, by branching this off ...
0
votes
1answer
48 views
spine.js: Does it really 'pipeline' POSTs?
I was reading this post from Alex Maccaw, where he states :
The last issue is with Ajax requests that get sent out in parallel. If a user creates a record, and then immediately updates the same ...
0
votes
0answers
57 views
NodeJS + Redis + HTTP Get
I'm currently getting data from my database by the way of PHP using Nodejs.
The problem is that the script that I want to execute after grabbing datas is actually executing directly after the instance ...
1
vote
1answer
162 views
AngularJS undefined is not a function
Im trying out a simple http app using Angularjs.
My code is
var studentApp = angular.module('studentApp',['ui.bootstrap']);
studentApp.factory('studentSession', function($http){
return {
...
2
votes
2answers
43 views
Image that doesn't finish loading over HTTP on purpose
I'm creating a web application that uses heavy JavaScript. And there I must handle the case when a image created by
var myImg = new Image();
myImg.src = 'http://...../';
doesn't load soon enough. ...
0
votes
1answer
24 views
HTTP: Redirection to one of several pages
I wonder is it even possible: I'd like to redirect my 404 page to . [current catalog], or to .. [level up] if the first one failed.
The idea is if someone tries to reach ...
0
votes
1answer
33 views
Undocumented response.finished in node.js
Just starting off with node.js and following Node Cookbook but I am stuck on URL routing part.
here is the code from the book itself:
var http = require('http');
var path = require('path');
var ...
0
votes
1answer
27 views
XHR ontimeout() in AngularJS?
I'm looking for a way to run a function when a $http call gets a timeout. There's and event handler in XMLHttpRequest called ontimeout but I can't find a way to do this in AnguarJS with $http. Any ...
1
vote
1answer
267 views
angularjs factory $http service
I am trying to understand the concept of factory and service in Angular. I have the following code under the controller
init();
function init(){
$http.post('/services', {
...
2
votes
0answers
22 views
Exclude Cookies from Requests
Is it possible prevent some cookies to be sent to the server?
I have cookies that are set in JavaScript and only required on the client (to share data with other browser windows). I don't want them ...
0
votes
0answers
29 views
Differentiate between a dangerous redirect and an irrelevant ajax response
On my web page it is possible to send ajax requests and then jump to another page meaning that the AJAX requests are irrelevant and are aborted by the browser. The return from one of these jquery AJAX ...
-1
votes
2answers
52 views
What is the most effective / efficient way to redirect a user? [closed]
I have used PHP functions like header() to redirect, but face the "Header has already been sent." Error when using it too often.
I have used JavaScript to redirect a person, using the ...
1
vote
0answers
31 views
Browser mangling 302 responses from Ajax requests
I have the following.
AJAX request made to server from mydomain.blah.com
Server returns 302 but to a slight different domain blah.com not mydomain.blah.com
Browser appears to mangle response. ...
-2
votes
0answers
37 views
What language besides Javascript offers the best asynchronous http requests? [closed]
I have a bookmarklet that is used to test a list of given products on our various production and staging websites. This is not ideal because it requires everyone to have either firefox or chrome, and ...
3
votes
2answers
74 views
What is the purpose of this query component in the HTML script tag?
I was reading this source code:
https://github.com/leobalter/PimpMyCode/blob/master/index.html#L20
<script src="js/compiled.min.js?v=125" async></script>
If you get rid of the entire ...
0
votes
1answer
112 views
Send cross domain HTTP Post with HTML forms
I have this HTML form that I need to do some processing before submitting:
<form action="http://appid.appspot.com/api/foo" id="contact-form" method="post"
name="contact-form">
...
0
votes
1answer
19 views
can i set expire headers for js, images and css using javascript instead of apache configuration?
I read about expire headers to enhance performance of web site, all my search says it is only possible using apache configuration. Is there any way to do it with javascript?
thanks in advance.
2
votes
2answers
75 views
Get the origination host of a Javascript Http request
When doing a cross domain HTTP request from a Javascript client, like JQuery (from a client browser). In the receiving end, will it be able to point out where the Javascript request came from?
...
2
votes
4answers
96 views
Javascript HTTP GET and POST
When initiating a HTTP GET or POST request:
Common browsers do not allow Javacript to call cross domain
So it means that every HTTP request from a given domain the "Host" in the Request header ...
0
votes
1answer
33 views
How can I stop node.js 422 (unprocessable entity) redirects showing an intermediary page
When I do this:
app.post('/account', function(req, res){
// attempt to validate input and insert user into db
signUpUser(req.body, function(success){
if(success){
// ...
-3
votes
0answers
35 views
How to send post request for nested structure using javascript [closed]
Hi All I have been asked to sent post request in this structure where nested URL are used
How to do that please suggest me
<entry ...
0
votes
0answers
105 views
ExtJS 4, fileupload and cross domain
I am working on a web application where the user is constantly connected to an ISAPI streamer through an IFRAME. In order for the ISAPI to work we set the document's domain to a more general one.
Our ...
1
vote
2answers
39 views
Resolving the variables in options nodejs
Hi i make a client call to a hhtp get webservice using the http module
I pass options as a input to the function.Below is the code snippet
var headerKey="ddd"
options = {
host: ...
0
votes
1answer
60 views
Current technology to build browser-based application with real-time client-server interaction [closed]
I am lost in the jungle of available technologies, so I'm asking for advice on what the current up-to-date technologies as of 2013 are for a browser based application with the following requirements.
...



