Blade3
Blade3

Reputation: 4380

Testing a Json web service Post operation on Internet explorer

I know I can test POST web service operations on fiddler, but I want to be able to test directly on IE. How do I do a post on a RESTful service call, passing in a JSON object using only IE?

Upvotes: 0

Views: 2294

Answers (1)

LouD
LouD

Reputation: 3844

Several options:

  • The address bar does a GET, so the easiest way to do a POST is with script in an html file on disk.
  • If you don't want to use a separate file, you can use the F12 debugger and use the console.
  • You said no Fiddler, but jsFiddle.net works great on IE.

For the script itself:

Upvotes: 1

Related Questions