Hi,
I'm trying to replace the default machine.config settings for the "client" handler with my own handler, however, when i run it, i'm getting this error:
"Section or group name 'client' is already defined. Updates to this may only occure at the configuration level where it is defined."
here is how my app.config looks like:
<configuration>
<configSections>
<remove name="client"/>
<sectionGroup name="system.serviceModel" type="System.ServiceModel.Configuration.ServiceModelSectionGroup, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="client" type="xyz.Messaging.CustomClientSection, Point.Messaging" />
</sectionGroup>
</configSections>
Please let me know if you have any idea why it seems like that it doesn't remove this section (as one would expect) and gives me this error instead.
Thanks.