How can i create server certificate for wcf service?
I created my first WCF service application that will run on IIS 7
The binding that i used is wshttpBinding.
开发者_JS百科Now, i wrote also client using Silverlight - and i can't create reference on the client that will be point on the WCF service because of the certificate issue.
How can i create server certificate for wcf service ?
The problem is not in the certificate (btw. default wsHttpBinding configuration don't need any certificate because it uses Windows authentication). The problem is in selected binding. Silverlight does not support wsHttpBinding so you will not be able to call the service anyway. Use basicHttpBinding instead.
精彩评论