现有asp.net webservice应用程序下,有两个服务(a.asmx,b.asmx),
想实现a.asmx服务仅能使用soap协议访问,禁用post、get访问方式,
而b.asmx服务开放soap、post、get三种访问方式。
web.config的如下配置是全局的,有没有方法针对具体的服务区分设置呢?
<webServices>
<protocols>
<add name= "HttpPost"/>
<add name= "HttpGet"/>
</protocols>
</webServices>