2
votes
4answers
75 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 …
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 …
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?
1
vote
3answers
40 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 …
2
votes
2answers
63 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 - …
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
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?
…
0
votes
1answer
18 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 …
1
vote
4answers
86 views
C++ HTTP Library
Is there a good open source library in C++ which will allow me to grab the contents of an URL (the response to a POST or a GET, like a web service's response) to a string?
0
votes
1answer
53 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 …
1
vote
7answers
95 views
How can I make Perl find my modules?
sh-3.2# perl -v
This is perl, v5.8.9 built for darwin-2level
...
sh-3.2# perl 2348.pl
Can't locate HTTP/Cookies.pm in @INC (@INC contains: /opt/local/lib/perl5/site_perl/5.8.9/darwin-2level …
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 …
3
votes
3answers
75 views
Download file using partial download (HTTP)
Is there a way to download huge and still growing file using partial-download feature ? It seems that code like this
import urllib
urllib.urlretrieve ("http://www.example.com/huge-growing-file", …
1
vote
3answers
53 views
http or https authentication for Intranet Web applications
I’m developing an Intranet application and I want to make a secure authentication.
One approach can be use “https”. The problem is that the server doesn’t have a trusted certificate, therefore is a …
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 …
