I am calling WCF Service (wsHttpBinding with Message Security mode) from ios device but i am not able to see encrypted request and response . while i am calling service from TestClient i can see request and response is encrypted.i want my request and response should be secure on network . my configuration in web.config
<wsHttpBinding>
<binding name="Service.BasicHttp.BindingConfig">
<security mode="Message" />
</binding>
</wsHttpBinding>
--binding applied on endpoint
<endpoint address="" binding="wsHttpBinding" contract="CloudMitoAPI.ICloudMitoService" bindingConfiguration="Service.BasicHttp.BindingConfig"/>
You should add some parameter secure parameter in which add both json object and encrypted secure object in your request and then when you send it to server check the parameter object and encrypted secure object with your secret key is it proper or tampered.