soap extensions

I

ivang

Hi.

Is it possible for SOAP extension to be called automatically for every web service method not applyin SoapExtensionAttribute for every of them?

Thanks.
 
H

Haacked

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/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top