I asked a question here a while back on how to hide my http request calls and make them more secure in my application. I did not want people to use fiddler 2 to see the call and set up a auto responder. Everyone told me to go SSL and calls will be hidden and information kept safe.
I bought and installed a SSL Certificate and got everything set up. I booted up fiddler 2 and ran a test application that connect to a https web service as well as connected to a https php script.
Fiddler 2 was able to not only detect both requests, but decrypt them as well! I was able to see all information going back and fourth. Which brings my question.
What is the point of having SSL if it made 0 security differences. With or without SSL I can see all information going back and fourth and STILL set up a auto responder.
Is there something in .net I am missing to better hide my calls going over SSL?
EDIT
I am adding a new part to this question as of some of the response I have gotten. What if a app connected to a web service to login. The app sends the web service a username and a password. The web service then sends data back to the app saying good login data or bad. Even if going over SSL the person using fiddler 2 could just set up a auto responder and the application is then "cracked". I understand how it could be useful to use need to see the data in debugging, but my question is what exactly should one do make sure the SSL is connecting to is the one it was requesting. Basically saying there can not be a middle man.