Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

83
votes
12answers
11k views

When do you use POST and when do you use GET?

From what I can gather, there are three categories - never use GET and use POST, never use POST and use GET, and it doesn't matter which one you use. Am I correct in assuming those three cases? If ...
71
votes
2answers
28k views

PHP detecting request type (GET, POST, PUT or DELETE)

How can I detect which request type was used(GET, POST, PUT or DELETE) in php?
38
votes
16answers
2k views

What's the funniest user request you've ever had? [closed]

Users sometimes come up with the most amusing, weird and wonderful requirements for programmers to design and implement. Today I read a memo from my boss that we need the "ability to import any excel ...
25
votes
10answers
8k views

Logging raw HTTP request/response in ASP.NET MVC & IIS7

I'm writing a web service (using ASP.NET MVC) and for support purposes we'd like to be able to log the requests and response in as close as possible to the raw, on-the-wire format (i.e including HTTP ...
13
votes
2answers
5k views

PostMethod setRequestBody(String) deprecated - why?

I am using Apache Commons HttpClient PostMethod 3.1. In the PostMethod class there are also three methods for setting POST method's request body: setRequestBody(InputStream body) ...
13
votes
12answers
12k views

How many requests per second does your webapp serve?

I'am interested in some data gathering about requests per second (the definition of requests per second i use is 'a user requests a certain functionality provided by an URL' (this means requests != ...
11
votes
2answers
21k views

How to send a JSON object over Request with Android?

I want to send the following JSON text {"Email":"aaa@tbbb.com","Password":"123456"} to a web service and read the response. I know to how to read JSON. The problem is that the above jason object must ...
11
votes
5answers
3k views

if-modified-since vs if-none-match

What could be the difference between if-modified-since and if-none-match? I have a feeling that if-none-match is used for files whereas if-modified-since is used for pages?
9
votes
4answers
156 views

Creating a PHP API: Checking from which server the API Request comes from

I'm creating a PHP API for a website and I'd want to restrict the API access to domains that are registered on our server (in order to prevent abusing of API usage). So, this is my approach right now, ...
9
votes
3answers
9k views

How to use a filter in Java to change an incoming servlet request url?

How to use a filter to change an incoming request url : From : "http://nm-java.appspot.com/Check_License/Dir_My_App/Dir_ABC/My_Obj_123" To : ...
9
votes
5answers
6k views

get current URL of UIWebview

I already tried getting the current url of my UIWebView with: webview.request.URL. Unfortunately the NSURL was empty. Anything wrong here? I'am working with Xcode 3.2.2 beta 5. The code above should ...
9
votes
5answers
53k views

Get Request and Session Parameters and Attributes from JSF pages

I'm using JSF with facelets and I need to get the request and session parameters inside the JSF page. In JSP pages i got this parameter like that : "${requestScope.paramName}" or ...
9
votes
7answers
4k views

Why can't browser send gzip request?

If webserver can send gzip response, why can't browser sent gzip request?
8
votes
3answers
5k views

Creating URL query parameters from NSDictionary objects in ObjectiveC

With all the URL-handling objects lying around in the standard Cocoa libraries (NSURL, NSMutableURL, NSMutableURLRequest, etc), I know I must be overlooking an easy way to programmatically compose a ...
7
votes
1answer
61 views

IE alternative to window.stop() (cancel all pending requests)

I'm looking for an alternative to window.stop() for IE. I have tried document.execCommand('Stop'), but it doesn't seem to work. I'm trying to cancel a XMLHttpRequest which is called from within a ASP ...
7
votes
4answers
2k views

Django: How to get current user in admin forms

In Django's ModelAdmin I need to display forms customized according to the permissions an user has. Is there a way of getting the current user object into the form class, so that i can customize the ...
7
votes
1answer
5k views

Get raw post data

According to php manual nor php://input neither $HTTP_RAW_POST_DATA work with multipart/form-data POST-requests. "php://input allows you to read raw POST data. It is a less memory intensive ...
7
votes
2answers
1k views

Django: Access request.session from backend.get_user

first of all: this is not the same as this. The ModelBackend has no request member. I want to access the session of the current user without access to the global request object or his/her session ID. ...
7
votes
5answers
2k views

Get the exact url the user typed into the browser

I would like to get the exact url that user typed into the browser. Of course I could always use something like Request.Url.ToString() but this does not give me what i want in the following situation: ...
6
votes
4answers
242 views

How long will the browser wait after an ajax request?

How long can the browser wait before an error is shown before server answers for request? Can this time be unlimited?
6
votes
2answers
291 views

WSGI request and response wrappers for Python 3

Are there WSGI request and response wrappers for Python 3? WebOb looks nice (although there is some critique), but it seems to be written in Python <3. Werkzeug seems also to be written in Python ...
6
votes
2answers
2k views

Passing array values in an HTTP request in .NET

What's the standard way of passing and processing an array in an HTTP request in .NET? I have a solution, but I don't know if it's the best approach. Here's my solution: <form ...
6
votes
4answers
125 views

How to know a HTTP request is from Ajax?

Is it possible to know that a HTTP request is from Ajax?If yes, how?
6
votes
3answers
2k views

How to get the source of request from Web Service?

I want to get <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:prin="http://localhost/example"> <soapenv:Header/> ...
6
votes
6answers
230 views

How to differentiate between http and cli requests?

The title is quiet straightforward. I have to know on server side if the script called through HTTP request or by command line. I could examine the $_SERVER['argv'] or $_SERVER['argc']. What is the ...
6
votes
3answers
2k views

Simultaneous Requests to PHP Script

If the PHP Engine is already in the middle of executing a script on the server what would happen to other simultaneous browser requests to the same script? Will the requests be queued? Will they ...
5
votes
3answers
106 views

Protecting my self from cross-site scripting

I have implemented a Request.QueryString["somestr"].ToString(); I suppress cross site scripting by doing HttpUtility.HtmlEncode(Request.QueryString["somestr"].ToString(); I still have an issue where ...
5
votes
2answers
121 views

Wordpress 301 Moved Permanently response on Jquery.post request

I've lost my hopes on finding a solution to my problem, hope someone can help me here. Here's the problem: I have a wordpress installation with an extra table called wp_lojas (for stores). The ...
5
votes
2answers
168 views

Is there a Ruby http client library with a response cache?

Is there a Ruby http client library where responses are automatically cached by ETag and the If-Non-Match header applied to requests on previously used URLs?
5
votes
2answers
209 views

How to get cross domain request's response in javascript

I am making a cross domain request in javascript by dynamically adding a script and setting its src attribute to the domain that I need to make request to. For reference: ...
5
votes
2answers
1k views

Using Spring's @RequestMapping with wildcards

This is similar to this question, but I am still confused about my situation. I want to map this ant-style pattern to a controller method: /results/** That is, I want any URL like ...
5
votes
2answers
180 views

How are multiple requests to one file on a server dealt with?

This a bit of a theoretical question coming from someone very inexperienced in programming and servers, but here goes. If I have a PHP file stored on a server, what happens if multiple people start ...
5
votes
1answer
5k views

HTTP POST request with authorization on android

When I set "Authorization" header with setHeader from HttpPost then hostname disappears from request and there is always error 400 (bad request) returned. Same code is working fine on pure java ...
5
votes
3answers
257 views

Prevent client from overloading server?

I have a Java servlet that's getting overloaded by client requests during peak hours. Some clients span concurrent requests. Sometimes the number of requests per second is just too great. Should I ...
5
votes
2answers
428 views

PHP Mod_rewrite and URL-encoded symbols - only can use either of them but not both?

The mod_rewrite seems to convert the symbol of plus before I get it into $_REQUEST, and I don't know what to fix it... RewriteRule ^invite/([a-zA-Z0-9\-\+\/]+)/?$ invite.php?key=$1 [L,QSA] For ...
5
votes
5answers
3k views

How make a HTTP GET request using Ruby on Rails?

I would like to take information from another website. Therefore (maybe) I should make a request to that website (in my case a HTTP GET request) and receive the response. How can I make this in Ruby ...
5
votes
5answers
848 views

Objective-C: server requests in a thread (like AsyncTask in Android)

I would like to start a server request, you can cancel. My idea is to start the request in a thread so that the user interface does not freeze. So you can kill the whole thread including the request ...
5
votes
2answers
183 views

Using an HTML Textbox in place of an ASP.NET TextBox

If I add this to the ASPX page: <input id="Text1" type="text" value="Text1Value" /> I would expect to see "Text1" in the list of Request Form keys even WITHOUT setting the runat=Server ...
5
votes
3answers
193 views

try to open a page every 10 seconds

Using Javascript (or Ajax) I want to connect to a page (a .php page) every 10 seconds. This will be done in user-side (browser) within a web page. Just, I'm trying to see the online users. I have ...
5
votes
2answers
2k views

Asynchronous HTTP requests in PHP

Is there any sane way to make a HTTP request asynchronously in PHP without throwing out the response? I.e., something similar to AJAX - the PHP script initiates the request, does it's own thing and ...
4
votes
1answer
56 views

How to response a DNS request when only part of the queries is answered?

Some DNS request may contain multiple queries, and my server is NOT Recursion Available, if i can only answer part of the queries, how do i respond? To be more specify, how to set the RCODE?
4
votes
4answers
79 views

What is better for performances: IN or OR

I need to do a request that check if a column value is either 2117 or 0. Currently, I do this with a OR select [...] AND (account_id = 2117 OR account_id = 0) AND [...] Since I'm facing ...
4
votes
2answers
87 views

Returning an mp3 with PHP as if it were called directly?

I have an mp3 on my server (urls are just examples): http://www.my-server.com/myaudio.mp3 I have a php script on the server at: http://www.my-server.com/testmp3.php Which contains the following ...
4
votes
2answers
250 views

Does Android support multiple HTTP requests at the same time?

In my app I'd like to handle downloading of several files at the same time. To do so I'm starting several services, one for each request. As I'm not sure, does Android support simultaneous http ...
4
votes
2answers
57 views

Store LINQ context as Request variable or not?

Is this a nice way to use the LINQ context during one http request? In almost every request i have some selects from the database and some inserts/updates. It seams to work but I dont know how this ...
4
votes
1answer
226 views

Rails: Plus sign in GET-Request replaced by space

In Rails 3 (Ruby 1.9.2) I send an request Started GET "/controller/action?path=/41_+" But the parameter list looks like this: {"path"=>"/41_ ", "controller"=>"controller", ...
4
votes
2answers
264 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
217 views

Need to call simple request from soundcloud API using the wrapper

I am using the main soundcloud wrapper (https://github.com/mptre/php-soundcloud) to try and pull the tracks off my account onto my website. I had the whole thing working great but just by accessing a ...
4
votes
2answers
412 views

Getting into android networking, HTTP library preference?

I'm finding at least 3 different ways to submit an HTTP request from an Android application. They are: The obvious Android.net.http AndroidHttpClient The Apache library ...
4
votes
4answers
2k views

Parsing GET request parameters in a URL that contains another URL

Here is the url: http://localhost/test.php?id=http://google.com/?var=234&key=234 And I can't get the full $_GET['id'] or $_REQUEST['d']. <?php print_r($_REQUEST['id']); //And this is the ...

1 2 3 4 5 28