c# - WCF over HTTPS using a WildCard SSL Certificate -
we developers of online in-browser management tool. our primary software hosted , accessible our customers on internet, every client has own primary software-instance , subdomain. illustration customera.ourdomain.com directs service client running on virtual server. customerb.ourdomain.com directs service on same or virtual server , vice versa.
we in process of switching windows phone , store apps. have developed wcf service , wp app. wcf service running side-by-side our primary software on 1 of our virtual servers , accessible test subdomain. have succesfully secured connection between app , service using 90-day trail certificate. certificate contains total subdomain name.
we secure our wcf service using wildcard certificate, each client and/or subdomain covered , don't need purchase certificate each customer.
is possible wcf? done before? cn name *.ourdomain.com. customers connect phones own service entering own subdomain name. in other words: wp app should able connect wcf service running on customera.ourdomain.com or customerb.ourdomain.com using same certificate.
many thanks!
is possible wcf? done before?
yes, have been using wildcard certificate digicert number of years
they provide utility ensure certificate installs correctly.
in terms of wcf config similar have
<servicecredentials> <servicecertificate x509findtype="findbysubjectname" findvalue="*.ourdomain.com" storelocation="localmachine" storename="my"/> </servicecredentials> on related note can produce own wildcard certificate (for testing purposes) works populating subjectaltnames field
c# wcf ssl
No comments:
Post a Comment