I have a following app.config file (in client side code):
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="microsoft.web.services2"
type="Microsoft.Web.Services2.Configuration.WebServicesConfiguration,
Microsoft.Web.Services2, Version=2.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" />
</configSections>
<microsoft.web.services2>
<security>
<x509 verifyTrust="false" />
</security>
<diagnostics />
</microsoft.web.services2>
</configuration>
The trouble is that it requires the EXE to be bound to
"microsoft.web.services2.dll". But my EXE is generic and does not bind to
any third party assemblies. So how can I get the same behavior through code
so that my EXE does not have to bind it to wse binary?
Thanks.
Raghu - 05 Oct 2005 20:51 GMT
I simply removed the reference and re-tried after retaining the changes in
the config file.
>I have a following app.config file (in client side code):
>
[quoted text clipped - 20 lines]
>
> Thanks.