SoapUI with Fiddler

Viewed 45761

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?

5 Answers

Sometimes it happens that default port 8888 is used by some other application. Like in my case it was python so it did not worked using 8888

So the port number you mention should be the one where Fiddler is listening.

capture snapshots so its easy to understand

Step 1 & Step 2 to be performed on Fiddler
Step 3 & Step 4 on Soapui/ReadyaPI

enter image description here

Related