User-1623675128 posted
Hello,
We have a project whihc has to call a web service with soapextenionType which we have added in app.config file of the startup rpoject nad its working great.
But the problem now is, in the same project we have to call another webservice#2 which doenst have any soap extension type; When we are debugging this the call is not going to webservice#2 as before making a call to service#2 its calling soapextenions class
of service#1.
How to avoid this getting first service soap extenion into second client.
our confi looks like below..
<system.web>
<webServices>
<soapExtensionTypes>
<add type="InterfaceLibrary.XXXClientExtension,InterfaceLibrary" priority="1" group="Low"/>
</soapExtensionTypes>
</webServices>
</system.web>
the second service is in different namespace all together if we comapre with forst one.