Reputation: 25573
I have an app used Microsoft.Web.Services3 before. Now I want to move this app to .NET 4.x. What's the replacment for Microsoft.Web.Services3.dll in .NET 4.x?
or I should keep the assembly Microsoft.Web.Services3.dll and the reference to it in my app even I use .NET 4.x?
Upvotes: 2
Views: 6061
Reputation: 155945
You might want to consider migrating your WSE Web Services to WCF. That article says
The benefits of migrating WSE 3.0 Web services to Windows Communication Foundation (WCF) include improved performance and the support of additional transports, additional security scenarios, and WS-* specifications. A Web service that is migrated from WSE 3.0 to WCF can experience up to a 200% to 400% performance improvement.
Upvotes: 2
Reputation: 161783
Microsoft.Web.Services3.dll is part of the obsolete WSE 3.0.
There is no direct replacement. You should rewrite the service to use WCF.
Upvotes: 0