
Explanation/Reference:
Explanation:
Target 1: wsHTTPBinding
wsHttpBinding is the full-blown binding, which supports a ton of WS-* features and standards. It has lots more security features: you can use sessionful connections, you can use reliable messaging, you can use transactional control.
Incorrect: Not basicHttpBinding: basicHttpBinding is the very basic binding (SOAP 1.1). It is not much in terms of security, not much else in terms of features, but compatible to just about any SOAP client out there. It is great for interoperability, but weak on features and security.
Target 2: timeout
Bindingconfiguration (Target 2) and Binding name (Target 4) must be the same. Timeout is not use elsewhere and is an appropriate choice.
Target 3: WSHttpBinding
Target 4: timeout
Bindingconfiguration (Target 2) and Binding name (Target 4) must be the same. Timeout is not use elsewhere and is an appropriate choice.
Target 5: CloseTimeout
The following timeouts are available on WCF bindings: OpenTimeout, CloseTimeout, SendTimeout, and ReceiveTimeout.
Target 6: 03:00:00
3 hours, 0 minutes, and 0 seconds.
Target 7: WSHttpBinding
Reference:https://msdn.microsoft.com/en-us/library/hh924831(v=vs.110).aspx