Reputation:
I inherited an asmx web service. I am mostly familiar w/ WCF. How do I know which WSE version this older web service is using? 1.0, 2.0, or 3.0?
Upvotes: 0
Views: 202
Reputation: 161791
It may not be using WSE at all (if you're lucky).
Look at the version of Microsoft.Web.Services you're using. If it's Microsoft.Web.Services2.dll, then you're using WSE 2.0 (even more obsolete than WSE 3.0).
Upvotes: 1