Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.

Join them; it only takes a minute:

Sign up
Join the Stack Overflow community to:
  1. Ask programming questions
  2. Answer and help your peers
  3. Get recognized for your expertise

I need some help cause I'm looking for an easy html file using AngularJS so I can do different WebApi calls and see results, statuscode, and time of start-end... but I can't find any good and easy sample over Internet, just some using WepApi2 or Jquery... It will fantastic if someone knows anything because I'm really lost on this issue and need to test lot of WebAPi calls to try to find what's wrong in my app... Any help would really be apreciated. Many thanks!

share|improve this question
up vote 0 down vote accepted

Why not using Postman to do your tests? I mean you will never find a HTML file which will exactly call your API. I do all my WebApi tests with Postman.

share|improve this answer
    
Many thanks Andre, I'll take a look to this REST client. Anyway the main idea was to integrate in our app using our controller/repository functions andalso to simulate concurrent calls ... I don't know if this feature is supported on Postman but I'll investigate right now and try to speak with my boss :) Thx for this fantastic idea ;) – Fxbrandon Mar 21 '15 at 11:53
    
for you backend it doesn't matters who calls your API. Postman does the same as if you call it with a HTML site. As long as you don't need the view. If you then need more information from the request it self you can see the request with fiddler – Andre Mar 21 '15 at 12:15
    
Your answer was really helpfull Andre, just one more question... it's possible with this tools making more than 1 asynchronous call to the WebApi? Thx. – Fxbrandon Mar 22 '15 at 9:02
    
I'm note sure if I understand it correct. You can make as many calls as you want. Or do you mean make muliple calls at the same time? Can you please mark my answer as correct in this case? – Andre Mar 23 '15 at 9:41
    
Many thx, finally Postman did the job. I wanted to make multiple calls so I discovered that there's a collection runner. Many thanks for your time and patience.U're great!!! – Fxbrandon Mar 25 '15 at 7:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.