Search Results

1
vote

What is the best way of handling non-validating SSL certificates in C#

What about the certsender argument? Does it contain anything sensible so that you can tell what connection the callback is happening for? I checked the .NET API but it doesn't say what …
0
votes

How do I know WHEN to close an HTTP 1.1 Keep-Alive Connection?

You should read the RFCs dealing with the Keep-Alive feature. Otherwise you might end up with a server that doesn't work as expected. As @[Stephen] has already pointed out, the server is fr …
4
votes

HTTP vs HTTPS performance

In addition to everything mentioned so far, please keep in mind that some (all?) web browsers do not store cached content obtained over HTTPS on the local hard-drive for security reasons. This mean …
3
votes

“Method Not Implemented” error - Firefox 3

You may want to check the logs of the server to see what's causing the issue. For example, it might be that these requests are garbled, say, because of a flaw in the HTTP 1.1 persistent connection …
1
vote

How do I report an error midway through a chunked http repsonse without closing the connection?

Once the server has sent the status line (the very first line of the response) to the client, you can't change the status code of the response anymore. Many servers delay sending the response by bu …
1
vote

HTTP 1.1 Persistent Connections using Sockets in Java

According to your code, the only time you'll even reach the statements dealing with sending the second request is when the server closes the output stream (your input stream) after receiving/respo …
0
votes

How to test persistent connection in a HTTP server?

Netcat. You can type in the request(s) and see the response(s) from the server. If you know the HTTP protocol, it's not a problem at all. In fact, it's better than curl or other higher-level librar …
0
votes

URL Based Authentication Link

You should probably use HTTPS to avoid the credentials being eavesdropped upon while in transit to the third party web server. …
0
votes

rtsp over http over a proxy

See whether issuing the same request but bypassing the proxy (e.g., replay the request you posted above using Netcat) results in more than four bytes streamed in the response body. S …
1
vote

Are socket connections faster than http on Blackberry?

One difference between a socket and an HTTP connection on the BlackBerry is that HTTP connections may be transparently routed via an HTTP proxy in the case of BES and BIS connections. …