2
votes

I need to test a server and to send a chunked request from Fiddler. I need to send something very simple, for example 'a' character as a content.

There is a Request Builder tab where I can set Transfer-Encoding: chunked header, but how do I specify Request Body?

1
Do you need have a dynamic response, or can you simply record and replay some previous traffic that has the chunking you require?Paul Grime
@PaulGrime I just do not have any chunked request examples and no previous traffic.IT Hit WebDAV
I'm a Java person and Fiddler uses JScript.NET, but I think you can call out to standard .NET classes. So maybe one of the class like this could help - github.com/mono/mono/blob/…. Otherwise, I'd use Java and Apache HTTPComponents to perform the chunking for me in a separate process.Paul Grime

1 Answers

6
votes

Looks like very simple, just need to add 2 CR LF after 0:

5<CR><LF>
aaaaa<CR><LF>
0<CR><LF><CR><LF>