Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
485 views

HTTP requests and Apache modules: Creative attack vectors

Slightly unorthodox question here: I'm currently trying to break an Apache with a handful of custom modules. What spawned the testing is that Apache internally forwards requests that it considers ...
5
votes
7answers
1k views

YSlow recommendations. How necessary are they?

So I've just downloaded yslow for firebug and have taken a look at the results for a site I am building. I'm seeing recommendations, for example, to use ETags, cookie-free domain for my static ...
3
votes
2answers
584 views

problem with multiple ajax HTTP get requests with different imput variables using jQuery

I want to make asychronous get requests and to take different results based on the input that I provide to each one. Here is my code: param=1; $.get('http://localhost/my_page_1.php', param, ...
3
votes
4answers
561 views

How to tell if a Request is coming from a Proxy?

Is it possible to detect if an incoming request is being made through a proxy server? If a web application "bans" users via IP address, they could bypass this by using a proxy server. That is just ...
3
votes
4answers
359 views

How do can you make redirect_to use a different HTTP request?

At the end of one of my controller actions I need to redirect to a page that only accepts put requests. I have been trying to figure out how to get redirect_to to use a put request but to no success. ...
2
votes
1answer
45 views

Server 415 Response code

I am using Jetty web server, and Jersey for REST handling. I defined: @POST @Path("/sendMessage") @Consumes ({MediaType.APPLICATION_XML, MediaType.TEXT_XML}) public Response sendMessage(@Context ...
1
vote
0answers
65 views

best way to handle frequent HTTP POST request from iPad app

In my app for iPad, I have a requirement that I have to post some data almost after each 30 sec. So for that I'm creating a new http request every time and adding the request to a queue. Is there any ...
1
vote
2answers
79 views

Increase Internet Explorer 7 concurrent http request

I'm working on some performance improvements on a very big AJAX application. One of the constrains is that the applicaiton requires to be performing in internet explorer 7. Problem is that IE7 will ...
1
vote
3answers
111 views

LWP::UserAgent - HTTP::Request - Question

If I do this #!/usr/local/bin/perl use warnings; use 5.014; use LWP::UserAgent; my $ua = LWP::UserAgent->new(); my $res = $ua->get( 'http://www.perl.org' ); I can call HTTP::Response methods ...
1
vote
1answer
297 views

Node.js: Sending many AJAX requests to begin backend job queues

Preface: I'm trying to prefetch content from a given set of URLs asynchronously. I'm needing to send my node.js app around 40-60 local ajax requests in order to add jobs to a queue (node-chain-gang) ...
1
vote
1answer
416 views

HTTP DELETE Request returning a (405) Method Not Allowed Error. Why?

I'm attempting to send a DELETE request through csharp, ASP.NET and its returnin a (405) Error. Below is the code that I'm using: request = System.Net.HttpWebRequest.Create(myTargetURL); ...
1
vote
1answer
215 views

POST/GET bindings in Racket

Is there a built-in way to get at POST/GET parameters in Racket? extract-binding and friends do what I want, but there's a dire note attached about potential security risks related to file uploads ...
1
vote
2answers
301 views

Is there a way to attach Ruby Net::HTTP request to a specific IP address / network interface?

Im looking a way to use different IP addresses for each GET request with standard Net::HTTP library. Server has 5 ip addresses and assuming that some API`s are blocking access when request limit per ...
1
vote
1answer
2k views

How to set the allowed url length for a nginx request (error code: 414, uri too large)

I am using Nginx in front of 10 mongrels. When I make a request with size > 2900 I get back an "error code 414: uri too large". Does anyone know the setting in the nginx conf file which determines ...
1
vote
1answer
2k views

In Rails, how do I access the Request.ServerVariables like you do in ASP?

I want to access a given Requests ServerVariables, but I can't seem to find anything on Google on how to get access to the Server Vars of the request object. How do I do this or am I doomed to simply ...
0
votes
3answers
40 views

Android HTTP Request AsyncTask

I want to implement a class which will handle all HTTP Requests of my application, which will be basically: Get a list of business (GET); Execute a login (POST); Update the location (POST). So, I ...
0
votes
1answer
29 views

Server locale xmlhttp requests recognised as wrong language by remote servers?

I have a web server hosted with 1and1 which evidently is hosted in Germany, so if I try to do a xmlhttp get on data from google or facebook I am presented with German return data as their site ...
0
votes
0answers
197 views

Google's speech recognition API in Objective-C

i would like to use this Google API (for testing only): https://www.google.com/speech-api/v1/recognize?xjerr=1&client=chromium&lang=en-US My question is: how should I send a POST request to ...
0
votes
3answers
70 views

Get parameter with the character '#' from a query string on java

I am trying to get a request string that has the character '#' and my parameter is got only until the '#'. But the thing is that I need to have this character, can't remove it. Any idea? Thank you, ...
0
votes
0answers
83 views

Jquery Ajax Request ( Load Tab Content ) Responde Many Times

I need help please look To my code i used j-query ajax to load content but when i click any tab it take much time to load the content i used tamper data ( firefox addons ) To See The http request ...
0
votes
0answers
262 views

Resolving a “Unable to connect to the remote server” Error?

I am trying to get our application running on a new server, but it can't connect to a web service. I edited the code and changed it to Yahoo.com (just to see if it would fix it), but I'm still getting ...
0
votes
1answer
31 views

Multiple requests to same resources when using multiple +1 and “Like” buttons

My site is http://fridgecow.com. Thanks to the blog I recently installed to the front page, I now have over 100 HTTP requests, and most of them to the same site. I have done all I can on my side ...
0
votes
1answer
91 views

Selenium/webdriver network monitoring

I am looking for a way to monitor and record all requests that a browser makes while being used by selenium/webdriver to test a page. Something like the network pane in chrome developer tools.
0
votes
2answers
65 views

How can a HTTP request be instantiated with a different host?

Strange one here folks. I'm studiying a web application's inner workings using Fiddler and have become a bit stumped. I'm requesting /account via the browser and Fiddler shows in the "Host" column ...
0
votes
0answers
87 views

Android - sign in

I'm trying to make an application for android. Logging in will available through the website or the application, so they will use the same DB. Signing on to the site is working. I basically want the ...
0
votes
0answers
83 views

Sending and Receiving Web Requests

I'm building an application that will connect to a web page and retrieve some data, then according to the retrieved data, it will check data on another web page and then update the other page. Server ...
0
votes
1answer
383 views

Android: Why is HttpPost request not going through proxy?

I've set up a new Access Point on my emulator so that I can view traffic in Fiddler by following the instructions here: ...
-1
votes
2answers
189 views

Too many redirects error using Python requests

HTTP requests are working fine on my localhost, but running the same HTTP requests using the python requests library on my server returns a "Too Many Redirects" error When I enter ...