Tagged Questions

0
votes
0answers
5 views

emulating iPhone video player behaviour

I need to debug a networking application which handles video downloaded by iPhone from Youtube. iPhone downloads chunks of video by requesting each time a different file range (by adding Content-Range …
0
votes
1answer
56 views

Does jQuery support reading JSON from X-JSON HTTP headers?

Is jQuery able to read JSON data from X-JSON HTTP headers returned by the server? I've been searching through the jQuery docs, but all the examples I can find use JSON returned in the request body …
2
votes
2answers
41 views

Is safe to use “X-…” header in a HTTP response?

I have to pass a meta-information in my HTTP response so I figured out that I could use the response header, for instance "X-MyData: 123456". Is that safe? I mean, there is a possibility that a client …
2
votes
4answers
76 views

My http server in c++ is not sending all files back correctly

I'm working on an HTTP server in c++, and right now it works for requests of text files, but when trying to get a jpeg or something, only part of the file gets sent. The problem seems to be that when …
1
vote
3answers
42 views

I just want to download this URL…but it is giving me an error! …unicode.. (Python)

theurl = 'http://bit.ly/6IcCtf/' urlReq = urllib2.Request(theurl) urlReq.add_header('User-Agent',random.choice(agents)) urlResponse = urllib2.urlopen(urlReq) htmlSource = urlResponse.read() if unicode …
0
votes
0answers
15 views

P2P traverse HTTP proxy

Is there any P2P client that can traverse HTTP proxy inside a corporation network?
1
vote
5answers
37 views

Is it possible to send a http request only to get the last modified time?

Instead of the file itself? EDIT Best with a demo in PHP?
0
votes
4answers
43 views

how come on some sites you can log in under http://mysite.com and then when you go to http://www.mysite.com you’re not logged in?

Hey, When I log onto some sites, ex. http://mysite.com and then go to http://www.mysite.com, I'm not logged in? But if I switch back to http://mysite.com (without the www's) I'm logged in again? …
2
votes
1answer
31 views

Browser support of multipart responses

Hi, I would like to create a HTTP response, using multipart/mixed, but I'm not sure which browsers support it; and if it's as convenient as it sounds, from the client's point of view. To be honest, I …
0
votes
1answer
19 views

How to upload a file from app in VC++ 6 to a web server?

I have an application in VC++ 6 (not MFC) , feature requires it to upload a file to a web server on regular basis. Web server is under our control, anonymous upload scripts/page are already setup that …
0
votes
1answer
10 views

Data is not sent with http response in my http server

Hi, I'm working on making an HTTP server for my class. But, the returned file is not being displayed by firefox. I construct a response header and put in the right content-length of the file I want …
2
votes
2answers
64 views

learning http and cgi

I just learned ruby, and already have some html/javascript/css background. When i learn rails i found that there's just too much magic. I want to use ruby to create a dynamic website from scratch - …
0
votes
1answer
54 views

Writing crawler that stay logged in with any server

I am writing a crawler. Once after the crawler logs into a website I want to make the crawler to "stay-always-logged-in". How can I do that? Is a client (like browser, crawler etc.,) make a server to …
0
votes
1answer
11 views

What is Container-Based Authentication?

I know the "XMLHttpRequest" object supports a method "open" which has an optional parameter of a username and password. I just found out that these parameters can be supplier for requests requiring …
3
votes
2answers
22 views

How does wsgi handle multiple request headers with the same name?

In WSGI headers are represented in the environ as 'HTTP_XXX' values. For example the value Cookie: header is stored at the HTTP_COOKIE key of the environ. How are multiple request headers with the …

1 2 3 4 5 115 next
15 30 50 per page