can’t find a solution for my problem. I have created a wcf and I’m consuming it from jquery on my asp.net page. When I deployed it using http:// its working fine but when I use https:// and changing the security mode to transport, im getting errors. But if i will just set the security mode to none, i can access it from browser. Can you please guide to figure it out? I’m deploying it to windows server 2003. Thanks!
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"
multipleSiteBindingsEnabled="true" />
<behaviors>
<endpointBehaviors>
<behavior name="QPServiceAspNetAjaxBehavior">
<enableWebScript />
</behavior>
</endpointBehaviors>
</behaviors>
<services>
<service name="tService">
<endpoint address="" behaviorConfiguration="tServiceAspNetAjaxBehavior"
binding="webHttpBinding" bindingConfiguration="webBinding" contract="tService" />
</service>
</services>
<bindings>
<webHttpBinding>
<binding name="webBinding">
<security mode="None">
</security>
</binding>
</webHttpBinding>
</bindings>
</system.serviceModel>
after several trial and error. i found a solution that allows the wcf configuration for both HTTP and HTTPS and the configuration below is the solution to my problem. thanks for answering my question.