While developing Silverlight and WCF apps you will have to share the default credentials from Silverlight to WCF service sometime.
This is how you can do;
1) Create the <basicHttpBinding> with the following information under the <bindings> section;
<basicHttpBinding>
<binding name="BasicBinding0">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows"/>
</security>
</binding>
</basicHttpBinding>
2) Add the below piece of section under the <System.ServiceModel> section
<serviceHostingEnvironment aspNetCompatibilityEnabled="true">
</serviceHostingEnvironment>
3) Add the below piece of code above the OperationContract behavior;
[System.ServiceModel.Activation.AspNetCompatibilityRequirements(RequirementsMode=System.ServiceModel.Activation.AspNetCompatibilityRequirementsMode.Allowed)]
public class StaticDataProcessing : ProcessTaskWCFBase
Please note that steps 2 and 3 are needed to avoid the HttpContext.Current coming as NULL issue.
This way you can pass the default credentials from Silverlight to WCF.
This is how you can do;
1) Create the <basicHttpBinding> with the following information under the <bindings> section;
<basicHttpBinding>
<binding name="BasicBinding0">
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows"/>
</security>
</binding>
</basicHttpBinding>
2) Add the below piece of section under the <System.ServiceModel> section
<serviceHostingEnvironment aspNetCompatibilityEnabled="true">
</serviceHostingEnvironment>
3) Add the below piece of code above the OperationContract behavior;
[System.ServiceModel.Activation.AspNetCompatibilityRequirements(RequirementsMode=System.ServiceModel.Activation.AspNetCompatibilityRequirementsMode.Allowed)]
public class StaticDataProcessing : ProcessTaskWCFBase
Please note that steps 2 and 3 are needed to avoid the HttpContext.Current coming as NULL issue.
This way you can pass the default credentials from Silverlight to WCF.
No comments:
Post a Comment