Reputation: 70277
Is there an easy way to replace code that uses Web Services Enhancements (WSE) 3.0 for Microsoft .NET with someone less esoteric like WCF?
Upvotes: 5
Views: 1297
Reputation: 7480
WSE 3.0 is mostly about transport and message security, IIRC. WCF is the latest approach from MS to these implementations, so you should consider WSE as deprecated.
Transitioning to WCF from WSE? Nothing easy. There are new constructs to understand how WCF channels work to provide the same functionality that WSE provided (and then some.)
And WCF is not less esoteric -- it's just differently esoteric. Both are quite complex with their implementations and configuration soup, but WCF has the blessing of continued support and development.
Upvotes: 4