SoapUI with Fiddler

fiddlersoapui

I am trying to route my soapUI web service requests via fiddler, but it doesn't seems to work. I tried url's like

http://localhost./myservice/myservice.asmx
http://localhost:8888/myservice/myservice.asmx

The later one though goes via fiddler, but it returns the request itself rather than the response from webservice. Any help?

Best Answer

Try File > Preferences > Proxy Settings Host 127.0.0.1 Port 8888

and use http://localhost/myservice/myservice.asmx

Here is a post that explain this a little bit more

Related Topic