http

java.io.IOException: Server returned HTTP response code: 403 for URL

I want to download the mp3 file from url : "http://upload13.music.qzone.soso.com/30671794.mp3", i always got java.io.IOException: Server returned HTTP response code: 403 for URL. But it's ok when open the url using browser. Below is part of my code: BufferedInputStream bis = null; BufferedOutputStream bos = null; try { URL url = new...

How do I create a persistent vs a non-persistent cookie?

I can't seem to figure out how to create a persistent vs a non-persistent cookie. How do they differ, say, in the HTTP headers that are sent back? ...

HTTP Proxy Server in Python (with authentication)

I needed a simple HTTP proxy server written in Python so I began googling around and found this page. Not all the proxies were working and so I settled for this or this. ..but neither of them support authentication. Has anyone come across a HTTP Proxy Server written in Python that supports authentication? Thanks. ...

broadcast audio over HTTP like a radio station

Hi guys, I'm tearing my hair out on this one so thought I'd ask over here. I'd like a PHP script that will allow me to broadcast my audio files over HTTP like a radio station. I've tried xmoovstream and its great but I can't figure out if it can be set up to broadcast audio radio-like. It currently only allows me to stream audio, i'd l...

Decoding gzip-ed response bodies with url-retrieve

For an Emacs extension, I'd like to retrieve data over HTTP. I'm not particularly fond of the idea of shelling out to things like wget, curl, or w3m to be able to do that, so I'm using the url-retrieve function. One of the HTTP servers i'm talking to happens to ignore Accept-Encoding headers and insists on always sending out its data wi...

how to test PUT request parsing in PHPUnit

Hello all, I'm parsing a PUT query this way : $raw = file_get_contents('php://input'); $params = array(); parse_str($raw, $params); and I'd like to inject some test content into php://input to test it (and for some non-unit tests too). I tried to google a bit the matter, but 'put' is a short keyword and I didn't get anything r...

multiple HTTP GET requests in one TCP/IP connection - processed parallel or sequential

hi, ok we get a lot of googlebot requests. googlebot requests up to 11 different files via 11 HTTP GET request, all in one single TCP/IP connection. are these GET request (all in the same TCP/IP connection) processed via the server in parallel or in sequence? Or is it up the the server? in this case, how does nginx handle thi...

$.ajax() call, only on updation

I am reading a xml using $.ajax() request. $.ajax({ type: "GET", async: false, url: "../../../ErrorMessages.xml", dataType: "xml", success: function (xml) { $(xml).find("*[Name='" + Field + "']").each(function () { message = $(this).find(Rule).text(); }); } }); I want to make the call on...

Connecting to any URL: java.io.IOException TCP Open

Hi all ! I have a midlet that reads some bytes from google to test, it runs ok on my nokia and sony ericsson cellphones but in "Samsung GT-E2120L cellphone it doesn't work, I get "java.io.IOException TCP Open" Exception when I try to get the connection response code HttpConnection conn = (HttpConnection) Connector.open("http://www.go...

get all the href attributes of a web site

can anybody tell me a way to get all the href attributes(links) in a web site using javascript?if you could give me a code example, i will be most thankful. ...

cURL and ActiveMQ

Hi all, I need an example on how to read/write to an ActiveMQ queue over HTTP in C or C++ using cURL (or something else, I'm open to anything at this point). I have working code in C#, but it doesn't help. Any help is appreciated, Thank you. ...

How to send line break with curl?

I've tried the following to send a line break with curl, but \n is not interpreted by curl. curl -X PUT -d "my message\n" http://localhost:8000/hello How can I send a line break with curl? ...

Tracking other websites´ users (Analytics)

I was wondering if there was any (legal) way to track websites analytics of any random site. What I mean is simple, is there a way to actually know how many people enter Google a month? I read around and found that Alexa extrapolates data from users with their toolbar and some cookies, im not interested in that, I mean a true measureme...

Problem with Memory Management in Android image processing with http protocol.

Hi friends, I have a problem with a memory management. I'm downloading some data through mine HTTP client. Next thing I want to display data to the user. The problem is not stable, on some files of the same type it occurs, on some not. Stable thing is, that it is occurring on the same file. Here is LogCat input. Technically I have no...

How to cache an HTTP POST response?

I would like to create a cacheable HTTP response for a POST request. My actual implementation responses the following for the POST request: HTTP/1.1 201 Created Expires: Sat, 03 Oct 2020 15:33:00 GMT Cache-Control: private,max-age=315360000,no-transform Content-Type: application/x-www-form-urlencoded; charset=UTF-8 Content-Length: 9 ET...

Has AJAX really solved problems with normal GET / POST ?

A passionate discussion from today. Developer 1: "AJAX is a set of tools, use it where it really helps, not just for the sake of it." Developer 2: "Its almost 2011, we can build rich desktop like applications in the browser, we should use AJAX everywhere and make a single page application with everything in it an A...

Garb request to Google Analytics fails from home ISP, but works elsewhere.

I'm trying to use the garb gem to access data from the Google analytics API and find that http requests using garb work just fine from a Linode account, but are refused from home (Comcast). Is Google rejecting some kinds of http requests from certain ISPs, or am I just doing something wrong? Simple example is below: require 'garb' Ga...

How to keep alive a user's session while they are posting on a forum?

I have a site with a session timeout of 15 minutes. On some pages a user occasionally spends longer than 15 minutes filling in a reply. What is the best solution to keep alive the session in this case? I already use JQuery on these pages, so possibly pinging a server, but on what events? The backend is a Struts on Tomcat. ...

Python HTTP Redirect requests forbidden

Hi! I'm trying to scrape a website where the URL is redirected, however programmatically trying this gives me an 403 Error code (Forbidden). I can place the URL in the browser and the browser will properly follow the url though... to show a simple example i'm trying to go to : http://en.wikipedia.org/w/index.php?title=Mike_tyson I've...

Handle HTTP POST with PHP

Hello all, I struggled half a day and came to conclusion that it can't be done. I threw away my php scripts and rewrote it in perl and it worked right from the start the way I wanted it to work. Still, I want to find out if such trivial task can be done correctly in PHP. The question: I have arbitrarily long (in size and time) file uploa...