查看 http://msdn.microsoft.com/en-us/library/ms731303.aspx 和 http://msdn.microsoft.com/en-us/library/ms789007.aspx,给出了指定服务行为的示例,但是有没有办法在行为配置中指定端点行为? 类似的东西
<service name="ServiceName1" behaviorConfiguration="ServiceBehavior1;EndpointBehavior1">
...
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehavior1">
...
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="EndpointBehavior1">
...
</behavior>
</endpointBehaviors>
</behaviors>
...
愚蠢的问题,web.config 的端点元素也有它自己的 behaviorConfiguration 属性。
<endpoint
behaviorConfiguration="EndpointBehavior1" ...