http

What Python-only HTTP/1.1 web servers are available?

There is CherryPy. Are there any others? ...

Is there a way to get raw http request stream from Java servlet handler?

I am trying to put some logging to capture the raw http request coming to my application. My Java code is inside a SpringMVC controller. I have access to the "HttpServletRequest" object. But I could not find a way to get the raw http request stream out of it. There is a reader but only reads the post content. What I want is the whole she...

Http Posting An Image From Iphone

NSMutableString *url = [[NSMutableString alloc] init]; [url appendString:@"uploadImage.do"]; NSData *imageData = UIImageJPEGRepresentation(selectedImage,1.0); // setting up the request object now NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease]; [request setURL:[NSURL URLWithString:url]]; [request se...

Delete (MediaWiki) Page with C# (HTTP POST)

Hello. I try to delete a page like this: WebClient wClient = new WebClient(); wClient.UploadStringCompleted += new UploadStringCompletedEventHandler(client_UploadStringCompleted); string str_post = "action=delete" + "&title=Vorlage:" + str_zuloeschendeVorlage + "&token=" + str_token + "%2B%5C"; wClient.UploadStringAsync(new Uri(@"http:...

Home automation using Arduino / XMPP client for Arduino

I am trying to setup a system for automating certain tasks in my home. I am thinking of a solution wherein a server side application would be able to send/receive commands/data to Arduino (attached with Arduino Ethernet Shield) via the web. Here the Arduino may both act as a sensor interface to the server application or command execut...

Can urllib2 make HTTP/1.1 requests?

EDIT: This question is invalid. Turns out a transparent proxy was making an onward HTTP 1.0 request even though urllib/httplib was indeed making a HTTP 1.1 request originally. ORIGINAL QUESTION: By default urllib2.urlopen always makes a HTTP 1.0 request. Is there any way to get it to talk HTTP 1.1 ? ...

Consume RESt API from .NET

Hi All, I am trying to consume REST API from my .NET Application. This API's are all written in JAVA. I am asked to pass the authentication credentials vis HTTP headers. How can I pass these authentication credentials like 'DATE', 'AUTHORIZATION' and 'Accept' via HTTP headers. Which class in .NET can I use to accomplish this task. Can...

Struts2 +JSON RPC

I have developed a native client interface which calls struts2 JSON RPC using post method. I have set content type, content length as suggested in the spec. The request body looks like as follows : {"method": "uploadTxpAssignment","id": "txpUploadRequest", "params":{"addressByDestAddrId":{"addrLine1":"test home","addrLine2":"7th ave","...

Rails and beyond

I feel like I'm an intermediate-advanced Rails programmer. I've written some small client apps. However, I feel like I'm missing something. I don't really understand HTTP; what a web server is; how networking works; what Mongrel is beyond just "script/server". Are there any good books to explain what HTTP is and other stuff I'm missing o...

How to tamper with source IP address on Windows

Hi folks: We meet a testing scenario which needs to tamper with source IP address of a Http request to simulate clients coming from different countries. Do you know any tool help on this? Last but not least, our web site is built with ASP.NET. Thanks. ...

Greasemonkey communication with server that requires windows-1250 encoding

I'm developing a greasemonkey plugin, which is supposed to send a form in background using POST (GM_xmlhttpRequest) on an application not under my control. That application is written in PHP and seems to expect all its input in windows-1250 encoding. What I need to do is to take all the form fields as they are, edit just one of them and ...

How do we send data via GET method?

I am creating a HTTPS connection and setting the request property as GET: _httpsConnection = (HttpsConnection) Connector.open(URL, Connector.READ_WRITE); _httpsConnection.setRequestMethod(HttpsConnection.GET); But how do I send the GET parameters? Do I set the request property like this: _httpsConnection.setRequestProperty("method", ...

Store complete request in a PHP variable

Hi, I'm creating a framework in PHP, and I need to get the complete raw request done by the browser. So I want something like this in a variable: POST /lolzorz/xD HTTP/1.1\r\n Host: localhost\r\n User-Agent: UserAgentHere/1.0.00\r\n Content-Type: application/xml; charset=utf-8\r\n Content-Length: 0\r\n \r\n <?xml version="1.0" encoding...

What are the meanings of those connection limit configurations for Firefox?

What are the meaning of those connection limit configurations for Firefox? network.http.max-connections network.http.max-connections-per-server network.http.max-persistent-connections-per-proxy network.http.max-persistent-connections-per-server ...

Getting content: AJAX vs. "Regular" HTTP call

I like that, these days, we have an option for how we get our web content from the server: we can make an old-style HTTP request (with its own URL in the browser) or we can make an AJAX call and replace parts of the DOM on the fly. My question is this: how do you decide which method to use when there's an option to use either? In the "...

Use GET rather than POST for asp.net ajax call

I seem to recall being able to configure asp.net ajax using attributes on the methods to use an HTTP get rather than an HTTP post. Using a GET is possible isn't it? and to make this fun, which is more performant? ...

direct GET works. image load does not

Ok, this is funny. I just installed a wordpress, and the images are not appearing. Firebug tells me I get a 403 forbidden error for all the images. However, if I copy and paste the url into the address bar, I get the image without any problem. I don't get it (which is ok, considering it's almost 3 in the night) ...

Mocking raw POST data

Hi everybody, I am writing PHPUnit test cases for a web application. As the tests are run within a command line environment, I am mocking a number of predefined variables such as $_POST, $_GET,$_SERVER, etc.. My test has to make sure that my controller class parses properly JSON input (which is sent as raw POST and red through php://in...

Is it possible to send POST parameters to a CGI script without another HTTP request?

I'm attempting to run a CGI script in the current environment from another Perl module. All works well using standard systems calls for GET requests. POST is fine too, until the parameter list gets too long, then they get cut off. Has anyone ran in to this problem, or have any suggestions for other ways to attempt this? The following...

is there a popular C# library for working HTTP? Eg simplifing working with httpwebrequest etc

Hi is there a popular C# library for working HTTP? Eg simplifing working with httpwebrequest etc For example doing http file upload with some parameters requires many lines and knowledge of Http protocol content format etc. WebClient itself do not do it. So being new, is there a well know library that c# developers use here? Thank...