Hi.
Is it possible for SOAP extension to be called automatically for every web service method not applyin SoapExtensionAttribute for every of them?
Thanks.
Yes you can by configuring it within the web.config file. Add the following
section:
<webServices>
<soapExtensionTypes>
<add type="MyNs.MyExtension, MyExtensionDll" priority="1" group="0" />
</soapExtensionTypes>
</webServices>
where MyNs.MyExtension is the fully qualified type name for your soap
extension and MyExtension is the name of the assembly containing the
extension (without the file extension).
http://haacked.com/
> Hi.
>
> Is it possible for SOAP extension to be called automatically for every web service method not applyin SoapExtensionAttribute for every of them?
>
> Thanks