Is it possible to make JSON requests using Fiddler's Request Builder?

82,750

I think it should be more like this:

POST /ws/MyWebService.asmx/TestEvent HTTP/1.1
Host: x.x.x.x
Content-Type: application/json; charset=utf-8
Content-Length: 15

{"strData":"1"}

And it is in the connection that you specify which server to connect to.

Share:
82,750
V-Man
Author by

V-Man

Updated on December 30, 2021

Comments

  • V-Man
    V-Man over 2 years

    I keep getting a Request format is invalid.

    Here's the raw http that gets sent:

    POST http://x.x.x.x/ws/MyWebService.asmx/TestEvent HTTP/1.1
    contentType: "application/json; charset=utf-8",
      dataType: "json",
      data: {"strData":"1"}
    Host: x.x.x.x
    Content-Length: 4
    

    Any help is greatly appreciated.

    Thanks!