Questions tagged [little-proxy]

LittleProxy is a high performance HTTP proxy written in Java

From LittleProxy README:

LittleProxy is a high performance HTTP proxy written in Java atop Trustin Lee's excellent Netty event-based networking library. It's quite stable, performs well, and is easy to integrate into your projects.

Official Website: http://www.littleshoot.org/littleproxy

Useful Links:

35 questions
0
votes
1 answer

Unable to import io.netty.handler.codec.http with LittleProxy

I'm currently running an implementation of Netty 4.1 with LittleProxy. Within the ClientToProxyConnection class I added in the line: pipeline.addLast("aggregator", new HttpObjectAggregator(1048576)); I added this line to aggregate the chunked…
johns4ta
  • 886
  • 2
  • 12
  • 38
0
votes
1 answer

Calculating size of chunked requests in Netty 4.1 and LittleProxy

I'm currently running an implementation of Netty 4.1 with LittleProxy. I am modifying the code to print out the size of requests coming from the Client to Proxy, I am running into trouble when trying to calculate the size of requests with chunked…
johns4ta
  • 886
  • 2
  • 12
  • 38
0
votes
1 answer

HTTP content length exceeded 4194304 bytes

While testing I observed that media attachments more than 4194304 bytes are rejected by the proxy. It throws the message - "HTTP content length exceeded 4194304 bytes". Is this the functionality of LittleProxy implementation or there is any…
AnilJ
  • 1,951
  • 2
  • 33
  • 60
0
votes
1 answer

Http session in littleproxy

How do we handle the http session in littleproxy? I read about couple of approaches where in which one can use HTTP cookies and other is HTTP authentication headers. Does littleproxy supports cookie handling or does it support the authentication…
0
votes
1 answer

Netty Setting content size of HTTP Response to 0

For an experiment purpose where I need to drop a specific content (audio data) coming from youtube in a HTTP response message, I am using below code. Right now I am testing with specific video, and I know the size of the content. Ran some test…
AnilJ
  • 1,951
  • 2
  • 33
  • 60
1 2
3