tags:

views:

2

answers:

0

I'm currently attempting to build a WCF service that uses a basicHttpBinding and requires authentication. I intended to use SSL for the project, and since I want it to be accessible from a SmartDevice project, I configured the binding to use TransportWithMessageCredential as security mode.

However, this setting is not available in the .NET Compact Framework. It only supports Transport security, which does what I want(SSL), but I'm not quite sure how I'm supposed to get my SOAP message security information to the service side without being able to supply the credentials. Any idea?