[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webservices

Re: How to configure a SOAP extension to run on the client side?

Christian Weyer

8/25/2003 7:45:00 AM

Hi,
this is actually quite simple. The best and easiest approach is to configure it in the application's .config file. Just like this:
<webServices>
<soapExtensionTypes>
<add type="MyTpe, MyAssembly" priority="1" group="0"/>
</soapExtensionTypes>
</webServices>

Cheers,
--
Christian Weyer
Microsoft .NET & Service Oriented Architectures

[Microsoft Regional Director, Germany]
http://www.regionaldir...

* XML Web Services: http://www.xmlwebse...
* Weblog: http://weblogs.asp.n...



> Hello,
>
> I could not find anywhere instructions how to apply a soap extension to run
> on the client.
> All explanations that I have encountered so far explain the operation of a
> soap extension on the client or the server. But when it comes to explaining
> how to configure the extension to run on a specific web method it refers
> only to the server side (using attribute or configuration).
>
> Thanks
> Amnon
>
>