vote up 0 vote down star

I need to know what is public key infastructure. I need to know is this related to sending requests and response as like WsHttpbinding in WCF.

flag

47% accept rate

3 Answers

vote up 4 vote down check

There is no direct relation between a PKI and a WCF service. PKI is the infrastructure for creating and managing digital certificates that among many other purposes can be used to encrypt the data flowing through a WCF service.

Once you have a private key and a digital certificate to distribute its coresponding public key you can "forget" about the PKI behind it (in most cases).

If you need further information on how to actually use the certificates to secure your WCF, let me know.

link|flag
@Alex I just used my WCF Service client in my local machine. For every request for my client totally 5 requests and responses are sending on. I need to know why and what logic used here in WCF wsHttpBinding – BALAMURUGAN Jun 17 at 10:17
well... I can't tell you for sure until I do some tests on my own, but I don't know(think) if that's encryption related. – AlexDrenea Jun 17 at 10:25
vote up 0 vote down

AlexDrenea is right on. No direct tie between PKI and WCF.

More info on WCF binding is readily available from:

and

Both are great introductions to the concepts behind binding and the top results on Google.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.