Setting up web services with x509 and multiple clients and how to distinguish clients?
问题 Following these two links, I was able to implement a simple web service with x509 certification, and an authenticated test client to consume the service. Right now, it looks something like this: -------------- | ServiceA.svc | ------------> Test Client 1 | -GetData() | -------------- How can I extend what I have to accomplish something like this: -------------- | ServiceA.svc | ------------> Test Client 1 | -GetData() | ------------> Test Client 2 | -SaveData() | -------------- | ServiceB.svc