Reputation: 8980
I'm looking for the simplest way to connect a WWSAPI client to a WCF server that satisfies a couple of requirements:
WWSAPI obviously doesn't support message level security so standard WSHttpBinding is out, so I was hoping for people more conversant with the technology would be able to offer a suggestion to the most appropriate binding/security combination(s).
Thanks!
Upvotes: 3
Views: 512
Reputation: 8980
Given the lack of answers I'll summarize my own findings after researching this over the past week:
Obviously this has other limitations around firewall usage (TCP communications generally need to have ports specifically opened for them) and domain/AD usage (Windows authentication appears to require a trust level between the two Windows accounts in use), but it would definitely be the simplest way.
And for those looking for the best way, my conclusion would be to use HTTPS and work your way through handling certificates appropriately.
Upvotes: 3