Note that there are some explanatory texts on larger screens.

plurals
  1. POWCF in windows phone security transport
    text
    copied!<p>WP supports only basicHttpBinding. My app sends sensitive data through WCF and store them in DB. Data are sent as plain text and this is inacceptable. I found some solutions but it isn't working. I've set securityMode to Transport but I've got exception. Here is my web.config file:</p> <pre><code>&lt;system.serviceModel&gt; &lt;behaviors&gt; &lt;serviceBehaviors&gt; &lt;behavior name="serviceBehavior"&gt; &lt;serviceMetadata httpGetEnabled="true" /&gt; &lt;serviceDebug httpHelpPageEnabled="true" includeExceptionDetailInFaults="true" /&gt; &lt;/behavior&gt; &lt;/serviceBehaviors&gt; &lt;/behaviors&gt; &lt;bindings&gt; &lt;basicHttpBinding&gt; &lt;binding name="baseBinding" &gt; &lt;security mode="Transport" /&gt; &lt;/binding&gt; &lt;/basicHttpBinding&gt; &lt;/bindings&gt; &lt;services&gt; &lt;service behaviorConfiguration="serviceBehavior" name="TestWCF.WcfNotificationService.WcfNotificationService"&gt; &lt;endpoint address="base" binding="basicHttpBinding" bindingConfiguration="baseBinding" contract="TestWCF.WcfNotificationService.IWcfNotificationService" /&gt; &lt;host&gt; &lt;timeouts openTimeout="00:05:00" /&gt; &lt;/host&gt; &lt;/service&gt; &lt;/services&gt; </code></pre> <p></p> <p>when I update service reference in client I get error:</p> <blockquote> <p>Could not find a base address that matches scheme https for the endpoint with binding BasicHttpBinding. Registered base address schemes are [http].</p> </blockquote> <p>Could you help me, what I have to do? Thanks</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload