Tôi muốn tách phần system.serviceModel của web.config thành một tệp riêng biệt để tạo điều kiện cho một số cài đặt môi trường. Nỗ lực của tôi đã thành công. Khi tôi thử sử dụng phương pháp này. Mã WCF ném một ngoại lệ: "Các loại initializer cho 'System.ServiceModel.ClientBase 1
ném một ngoại lệ bất cứ ai có thể cho tôi biết những gì tôi đang làm saiTôi có thể tách system.serviceModel thành một tệp .config riêng biệt không?
Web.config:.?
<configuration>
<system.serviceModel configSource="MyWCF.config" />
....
MyWCF. cấu hình:
<system.serviceModel>
<extensions>
...
</extensions>
<bindings>
...
</bindings>
<behaviors>
...
</behaviors>
<client>
...
</client>
</system.serviceModel>
Mẹo hay ... phần này có thể rất bận. – JoeGeeky