Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

86
votes
14answers
21k views

Microsoft CDN for jQuery or Google CDN?

Does it actually matter which CDN you use to link to your jquery file or any javascript file for that matter. Is one potentially faster than the other? What other factors could play a role in which ...
45
votes
7answers
10k views

Are https URLs encrypted?

Are all URL's encrypted when using SSL(https) encryption? I would like to know because I want all URL data to be hidden when using SSL(https). If SSL gives you total URL encryption then I don't have ...
25
votes
11answers
23k views

How do you make a HTTP request with C++?

Is there any way to easily make a HTTP request with C++, are there any libraries that do this. Specifically, I want to download the contents of a page (an API) and check the contents to see if it ...
24
votes
4answers
10k views

Request Monitoring in Chrome

In Firefox, I use Firebug which allows me to view every http request my ajax calls are making. I've switched over my development to Chrome and am liking it so far. My only complaint, however, is ...
21
votes
5answers
15k views

How to use HttpWebRequest (.NET) asynchronously?

How can I use HttpWebRequest (.NET, C#) asynchronously?
19
votes
2answers
4k views

Local Storage vs Cookies

I want to reduce load times on my websites by moving all cookies into local storage since they seem to have the same functionality. Is there any pros/cons (especially performance-wise) in using local ...
14
votes
6answers
4k views

How do I convert an HttpRequestBase into an HttpRequest object?

inside my ASP.NET MVC controller, I've got a method that requires an HttpRequest object. All I have access to is an HttpRequestBase object. Is there anyway I can somehow convert this? What ...
12
votes
1answer
5k views

Android: How get the status-code of an HttpClient request

I want to download a file and need to check the response status code (ie HTTP /1.1 200 OK). This is a snipped of my code: HttpGet httpRequest = new HttpGet(myUri); HttpEntity httpEntity = null; ...
12
votes
5answers
5k views

How to send a PUT/DELETE request in jQuery?

GET:$.get(..) POST:$.post().. What about PUT/DELETE?
11
votes
1answer
2k views

Failed to download pear/HTTP_Request2 within preferred state “stable”

When trying to do pear install phpunit/PHPUnit I get the following error Failed to download pear/HTTP_Request2 within preferred state "stable", latest release is version 2.0.0RC1, stability ...
11
votes
3answers
6k views

HTTP POST request in node.js

how can I make an HTTP POST request with data in node.js? Thanks
10
votes
4answers
1k views

Preventing upload of large files in ASP.NET 4.0

We'd like to restrict the maximum upload file size in our web site. We've already set the appropriate limits in our web.config. The problem we're encountering is if a really large file (1 GB, for ...
10
votes
6answers
652 views

What HTTP Status Codes Should Programmers be Concerned With?

So, if you look at the List of HTTP Status Codes, there are probably a number of them that would be useful while programming. The server might handle some things, like protocols, but a lot of these ...
9
votes
11answers
4k views

Best way to manage long-running php script?

I have a PHP script that takes a long time (5-30 minutes) to complete. Just in case it matters, the script is using cUrl to scrape data from another server. This is the reason it's taking so long; it ...
7
votes
2answers
288 views

HttpRequest/HttpResponse Memory Leak? CF.NET 3.5 WIN CE 6.0

I have tried everything possible to get rid of what I think is a memory leak with the HttpRequest or HttpResponse Classes in the CF.NET 3.5 running on a Win CE 6.0 device. I am using them to ...
7
votes
5answers
457 views

Does the ORDER of javascript files matter at all, when combined into one files?

Floating in futuristic API era, where almost all popular javascripts are externally loaded from other servers, or where handwritten locally (sometimes combined to save httprequests) javascripts are ...
6
votes
2answers
964 views

How do I request and process JSON with python?

I am trying to send a GET request to a URL that I know returns data in the form of JSON using python. I would like to know how to send this request to http://someurl/path/to/json, and how to parse it ...
6
votes
2answers
1k views

HttRequest without caching

I'm writing a client that is making repeated http requests for xml data that is changing over time. It looks like the Android stack is caching my page requests and returning the same page repeatedly. ...
6
votes
2answers
10k views

Android: howto parse URL String with spaces to URI object?

I have a string representing an URL containing spaces and want to convert it to an URI object. If is simple try to do String myString = "http://myhost.com/media/mp3s/9/Agenda of swine - 13. ...
6
votes
4answers
2k views

Get host name without using HttpRequest

I'm want to run a "background job" in my ASP.NET application (periodically, as separate thread). And I need host name (DNS name or IP) to do my tasks. The problem - HttpContext.Current may be not ...
5
votes
3answers
99 views

In ASP.Net, Can I find out if another session exists or is valid by a session Id?

Is there a way to find out if a session Id is valid from within an existing request context? In that, if I'm given a session Id, and I'm currently in another session initiated by a Http Request and ...
5
votes
4answers
289 views

Feed data into database from Android app via web service

I am working on an Android code that on click of a button inserts data in a remote database via a web service. My web service code is pretty simple. It just takes in one parameter which is the android ...
5
votes
5answers
2k views

uploadify: IO error

I've following code for multiple image upload: <SCRIPT> function render_uploadify() { $("#body_partition_middle").html('<DIV class = "photo_upload_w"><DIV class = "photo_upload" ...
5
votes
1answer
378 views

Abort user request with Node.js/formidable

I'm using formidable to receive a file upload with node.js. I send some fields together with a file in a multipart request. As soon as certain fields arrived, I'm able to validate the authenticity of ...
5
votes
4answers
329 views

ASP.NET MVC: Controller created for every request?

Very simple question: Are controllers in ASP.NET created for every http request ? Or are they created at application startup and reused throughout requests ? For some particular http request only the ...
5
votes
2answers
1k views

Ruby: PUT Request with JSON body?

I need to create an HTTP PUT request using ruby. The request has a JSON body I was able to generate the JSON body using: require 'rubygems' require 'json' jsonbody = ...
5
votes
1answer
281 views

Single request to multiple asynchronous responses

So, here's the problem. iPhones are awesome, but bandwidth and latency are serious issues with apps that have serverside requirements. My initial plan to solve this was to make multiple requests for ...
5
votes
3answers
2k views

What is the Blackberry PlayBook's user agent?

What is the User-Agent string for the Blackberry PlayBook's web browser?
5
votes
3answers
3k views

How do you create an asynchronous HTTP request in JAVA?

I'm fairly new to Java, so this may seem obvious to some. I've worked a lot with ActionScript, which is very much event based and I love that. I recently tried to write a small bit of Java code that ...
5
votes
2answers
951 views

How to emulate a real http request via cfhttp?

I need to emulate a real http request via cfhttp. I was getting rss feed with ColdFusion, but tonight they started to block my request and send an index page in response instead of rss fead. I added ...
5
votes
4answers
1k views

C# multiple asynchronous HttpRequest with one callback

I want to make 10 asynchronous http requests at once and only process the results when all have completed and in a single callback function. I also do not want to block any threads using WaitAll (it ...
5
votes
5answers
313 views

amount of Images on site is causing long load time

My website sometimes loads a bit slow, due to the amount of images loading. I actually have 61 images on my homepage due to all the png overlays and icons. I have considered using sprites or an image ...
5
votes
2answers
804 views

.NET: What's the difference between HttpMethod and RequestType of HttpRequest?

The HttpRequest class defines two properties: HttpMethod: Gets the HTTP data transfer method (such as GET, POST, or HEAD) used by the client. public string HttpMethod { get; } The HTTP ...
5
votes
5answers
1k views

Why doesn't request.rawurl include the http://localhost part?

When I call Request.RawUrl I am not getting the domain name (at least in development). For example, if my url locally is: http://localhost:2343/some/thing The call to Request.RawUrl is giving me ...
5
votes
6answers
2k views

Pages loads twice on Firefox?

I thought I had answered this question before thanks to StackOverFlow, but I hastily took an answer and it turns out not to be the real cause to my problem. I have checked my Apache Access Log: This ...
4
votes
1answer
79 views

Advert javascript not being served correctly to the browser unless called directly?

I hope this is the right place to ask this question - I did have a look at the rest of the sites in the network but this looked like the most appropriate place. We are having issues serving third ...
4
votes
1answer
281 views

How to read HTTP response with jQuery ajax from C# TcpListener?

I have created server with TcpListener, which responds to every request as a dummy HTTP. On the client side I have used jQuery Ajax to make a request to this server. Server gets successul request and ...
4
votes
2answers
262 views

get application url from current request

I am writing a c# application. I am accessing a page eg http://dev.mysite.com/page.aspx How can I retrieve from the current context this http://dev.mysite.com/ I want to use this when creating ...
4
votes
1answer
181 views

Question regarding browser behavior when a response is sent from a server

Scenario: The browser submits a HTTP request to a server. The user simultaneously clicks on a bookmark or on another link on the page resulting in a new request to the server. The server now ...
4
votes
3answers
500 views

How to parse an HTTP Request in Java?

When implementing a proxy server, I get an HTTP request as a string, such as this one: GET http://localhost:54321/x HTTP/1.1 Host: localhost:54321 Cache-Control: no-cache Is there a ...
4
votes
2answers
421 views

How reliable is the Request.Browser.Cookies property in ASP.NET?

The Request.Browser.Cookies property (of type bool) attribute stores information whether client's browser supports cookies and whether or not they are enabled. How reliable is the property ...
4
votes
1answer
675 views

Cannot fetch PDF file as binary data

I'm trying to fetch a PDF file from: URL : https://domain_name/xyz/_id/download/ wherein it doesn't points to a direct pdf file and each unique file gets downloaded interpreting a particular ...
4
votes
1answer
445 views

Trying to catch 302 status EXT js

I'm new to EXTJS, and have a problem, this is my store someStore = new Ext.data.JsonStore({ root: 'results', proxy: new My.HttpProxy({ url: '/cityList', method: 'POST' ...
4
votes
4answers
591 views

how to send HTTP request by GET method in PHP to another website

I'm developing a web application for sending SMS to mobile from website like 160by2. I can prepare the URL required for the HTTP GET request as mentioned in the API provided by the SMS Gateway ...
4
votes
1answer
194 views

Is it possible to modify the content of HttpRequest POST in an IIS HttpModule?

I need to modify the content of certain HttpRequests (SSAS connection strings) in IIS. Basically, I need to add an element to the SOAP contained in the request. My approach so far has been to add a ...
4
votes
2answers
860 views

Using HttpWebRequest to POST to a form on an outside server

I am trying to simulate a POST to a form on an external server that does not require any authentication, and capture a sting containing the resulting page. This is the first time I have done this so ...
4
votes
1answer
228 views

Posting a jaiku using xcode

NSMutableURLRequest *jaikuRequest=[NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://api.jaiku.com/json"] ...
4
votes
5answers
1k views

Checking if a website is up via Python

By using python, how can I check if a website is up? From what I read, I need to check the "HTTP HEAD" and see status code "200 OK", but how to do so ? Cheers Related How do you send a HEAD HTTP ...
3
votes
0answers
66 views

How to handle iPhone application crash issue due http response code is 404? [closed]

How to handle the server response in iPhone application,if server response is not 200.I am facing the application crash issue.In the wireshark tool testing team is able to see that server response ...
3
votes
1answer
63 views

How to get the request URI in Grails?

I've got a simple Grails app with the following RESTful uri... http://localhost:8080/kennis-api/funds/test/700 The mapping in my URIMappings is "/funds/test/$fcode" (controller: "fundCache"){ ...

1 2 3 4 5 13