Ideas on simulating webservices for local automated testing.

Posted by novice123 on Stack Overflow See other posts from Stack Overflow or by novice123
Published on 2010-04-03T21:20:57Z Indexed on 2010/04/03 21:23 UTC
Read the original article Hit count: 273

I am testing an app, which talks to different webservices over the internet. For my automated testing, I don't want to go over the network. To achieve this, I need to simulate the webservice on my machine using another app. My initial thought is to record all the requests and responses between client and webservice, and then just write a simulation app which replays these responses. The disadvantage here is that everytime the webservice protocol changes a bit, I have to modify all my recorded resposnes. so I am looking to see if there are more elegant solutions.

have anyone solved a similar problem? any thoughts, suggestion are appreciated.

© Stack Overflow or respective owner

Related posts about testing

Related posts about simulation