0
votes
0answers
125 views

Getting http chunked response with Tcp

I would like to know how can be read an http response with Transfer-Encoding chunked. I wrote an example of what I am doing. One problem I came across with this is that clientStream.DataAvailable ...
1
vote
1answer
151 views

Socket components TcpClient can use http proxy?

The TcpClient access site content, can use an HTTP proxy? Or use socket5 agents it?If you can, then, how to do?
2
votes
1answer
601 views

HTTP Response GZip Compression

I have a Proxy which handles HTTP Requests. Now when I get a GZipped HTTP Response, I'm decompressing it like : MemoryStream ms = new MemoryStream(); if (response.ContentLength > 0) buffer = ...
0
votes
1answer
440 views

How to connect to a http proxy via TCP?

I'm trying to figure out how proxy connections work via TCP. I've started by downloading stacksoft library and installing Squid proxy on a remote server. Now I'm trying to connect to it via c# ...
0
votes
1answer
248 views

Server sending invalid gzip to TcpClient

I'm trying to learn more about how web and tcp work by implementing web tcp client. Currently, my web request function looks like this: public string SendWebRequest(SocketWebRequest request) ...
1
vote
1answer
335 views

How to get page via TcpClient?

I'm trying to send a GET request to a page via TCP stream. Here's what my code looks like: public class SocketLevelWebClient { public string SendWebRequest(string url, string request) { ...
0
votes
3answers
903 views

use TcpClient to send request to server

I am asking this question primarily because I do not have some ideas clear. I belive I understand how a webserver works but for some reason I am getting different results than expected. So basically ...
1
vote
0answers
129 views

VB.NET don't get a successfull answer of a HTTP-Server

tcpClient.Connect("www.***.com", 80) Dim message As String = "GET /***.html HTTP/1.1" & Chr(10) & "Host: www.***.com" & Chr(10) ...
3
votes
1answer
199 views

Make multiple HTTP requests/responses when 4xx response loses the connection

I am working on a client for a REST API. The server returns 4xx responses as a matter of course. At the moment, I am using HttpWebRequest/HttpWebResponse to make the calls. The problem is that ...
0
votes
3answers
949 views

Downloading file via TcpClient from HTTP server

I`m learning HTTP, and decide to use TcpClient for downloading file from internet. private void requireBtn_Click(object sender, EventArgs e) { var client = new TcpClient(addressBox.Text, 80); var ...
3
votes
3answers
867 views

How to determine if an HTTP response is complete

I am working on building a simple proxy which will log certain requests which are passed through it. The proxy does not need to interfere with the traffic being passed through it (at this point in the ...
3
votes
3answers
4k views

how to keep multiple Java HttpConnections open to same destination

We are using HttpURLConnection API to invoke a REST API to the same provider often (kind of an aggregation usecase). We want to keep a pool of 5 connections always open to the provider host (always ...
2
votes
2answers
2k views

.Net C# TcpClient / Socket HTTP Client Performance / Efficiency

I'm writing an HTTP client using the .Net TcpClient / Sockets. So far, the client handles both Content-Length and chunked responses by iterating through the NetworkStream response (after writing a ...