Impact of .net 6 lack of wcf on CSLA #2364
Replies: 1 comment 1 reply
-
It probably depends on which WCF services you are using. If you are just using it for hosting, there are alternatives. If you are using advanced parts of the WS-* spec (transactions, routing, etc.) then I don't have a great answer. There is an open source WCF project under way, though I don't know how rapidly it is progressing, as I haven't followed it closely. Modern .NET does make it very easy to host an HTTP endpoint though, and in fact aspnetcore includes the Kestrel server so web sites can "self host". There are security considerations in how it is configured and used, but if all you are looking for is hosting an endpoint, that might be your answer. That allows you to use the HttpProxy data portal channel, which (honestly) has seen a lot of love and improvement over the past several years and is almost certainly superior to WcfProxy in most regards at this point. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Folks,
I've been reading a lot about how WCF is no longer supported in the up coming .Net 6 release and was wondering if that will impact those of us who are using CSLA as a windows service? Is there something that we should know/do? My application uses a windows service to communication between the business layer on a server and WPF and don't want to get caught flat-footed.
Beta Was this translation helpful? Give feedback.
All reactions