Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Advice on replacing Web Services Enhancements (WSE) 3.0 for Microsoft .NET

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?

like image 978
Jonathan Allen Avatar asked Oct 15 '22 10:10

Jonathan Allen


1 Answers

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.

like image 140
jro Avatar answered Oct 20 '22 01:10

jro