Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6557615
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T13:05:46+00:00 2026-05-25T13:05:46+00:00

I have a client that generates its app.config using a Service Reference to a

  • 0

I have a client that generates its app.config using a Service Reference to a NetTCPBinding over my localhost. For some reason when I run my service and Update the Service Reference on the client the app.config file duplicates the endpoints (incrementing the name) instead of replacing the current file.

How can I stop the client app.config from duplicating the endpoints?

Here is my service app.config:

  <services>
    <service name="Embedded_DCC_Service.EmbeddedService" behaviorConfiguration="serviceBehavior">
      <endpoint
        name ="TCPEndPoint"
        binding="netTcpBinding"
        contract="Embedded_DCC_Service.IEmbeddedService"
        address="EmbeddedService"
        bindingConfiguration="EmbeddedService_Binding"
        />
      <endpoint
        name ="MetaDataTcpEndpoint"
        binding="mexTcpBinding"
        contract="IMetadataExchange"
        address="mex" 
        />
      <host>
        <baseAddresses>
          <add baseAddress="net.tcp://localhost:9292/"/>
        </baseAddresses>
      </host>
    </service>
  </services>

  <bindings>
    <netTcpBinding>
      <binding name="EmbeddedService_Binding" closeTimeout="infinite" openTimeout="infinite"
          receiveTimeout="infinite" sendTimeout="infinite" />
    </netTcpBinding>
  </bindings>

  <behaviors>
    <serviceBehaviors>
      <behavior name="serviceBehavior">
        <serviceMetadata httpGetEnabled="false"/>
      </behavior>
    </serviceBehaviors>
  </behaviors>

</system.serviceModel>

And the generated app.config on the client (with duplicate entries):

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>
    <bindings>
      <netTcpBinding>
        <binding name="TCPEndPoint" closeTimeout="00:01:00" openTimeout="00:01:00"
            receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false"
            transferMode="Buffered" transactionProtocol="OleTransactions"
            hostNameComparisonMode="StrongWildcard" listenBacklog="10"
            maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10"
            maxReceivedMessageSize="65536">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
              maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00"
              enabled="false" />
          <security mode="Transport">
            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign">
              <extendedProtectionPolicy policyEnforcement="Never" />
            </transport>
            <message clientCredentialType="Windows" />
          </security>
        </binding>
        <binding name="TCPEndPoint1" closeTimeout="00:01:00" openTimeout="00:01:00"
            receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false"
            transferMode="Buffered" transactionProtocol="OleTransactions"
            hostNameComparisonMode="StrongWildcard" listenBacklog="10"
            maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10"
            maxReceivedMessageSize="65536">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
              maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00"
              enabled="false" />
          <security mode="Transport">
            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign">
              <extendedProtectionPolicy policyEnforcement="Never" />
            </transport>
            <message clientCredentialType="Windows" />
          </security>
        </binding>
        <binding name="TCPEndPoint2" closeTimeout="00:01:00" openTimeout="00:01:00"
            receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false"
            transferMode="Buffered" transactionProtocol="OleTransactions"
            hostNameComparisonMode="StrongWildcard" listenBacklog="10"
            maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10"
            maxReceivedMessageSize="65536">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
              maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00"
              enabled="false" />
          <security mode="Transport">
            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign">
              <extendedProtectionPolicy policyEnforcement="Never" />
            </transport>
            <message clientCredentialType="Windows" />
          </security>
        </binding>
        <binding name="TCPEndPoint3" closeTimeout="00:01:00" openTimeout="00:01:00"
            receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false"
            transferMode="Buffered" transactionProtocol="OleTransactions"
            hostNameComparisonMode="StrongWildcard" listenBacklog="10"
            maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10"
            maxReceivedMessageSize="65536">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
              maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00"
              enabled="false" />
          <security mode="Transport">
            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign">
              <extendedProtectionPolicy policyEnforcement="Never" />
            </transport>
            <message clientCredentialType="Windows" />
          </security>
        </binding>
      </netTcpBinding>
    </bindings>
    <client>
      <endpoint address="net.tcp://localhost:9292/EmbeddedService"
          binding="netTcpBinding" bindingConfiguration="TCPEndPoint"
          contract="ServiceReference1.IEmbeddedService" name="TCPEndPoint">
        <identity>
          <userPrincipalName value="user@mmi.local" />
        </identity>
      </endpoint>
      <endpoint address="net.tcp://localhost:9292/EmbeddedService"
          binding="netTcpBinding" bindingConfiguration="TCPEndPoint1"
          contract="ServiceReference1.IEmbeddedService" name="TCPEndPoint1">
        <identity>
          <userPrincipalName value="user@mmi.local" />
        </identity>
      </endpoint>
      <endpoint address="net.tcp://localhost:9292/EmbeddedService"
          binding="netTcpBinding" bindingConfiguration="TCPEndPoint2"
          contract="ServiceReference1.IEmbeddedService" name="TCPEndPoint2">
        <identity>
          <userPrincipalName value="user@mmi.local" />
        </identity>
      </endpoint>
      <endpoint address="net.tcp://localhost:9292/EmbeddedService"
          binding="netTcpBinding" bindingConfiguration="TCPEndPoint3"
          contract="ServiceReference1.IEmbeddedService" name="TCPEndPoint3">
        <identity>
          <userPrincipalName value="user@mmi.local" />
        </identity>
      </endpoint>
    </client>
  </system.serviceModel>
</configuration>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T13:05:47+00:00Added an answer on May 25, 2026 at 1:05 pm

    Looks like your question is similar to this question

    It tells that this is a known bug in visual studio 2010 and tells to check this link.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have client application that uses WCF service to insert some data to backend
I have a page in one of my client's websites that generates an extensive
We have a client that has Oracle Standard , and a project that would
I have a client that is asking me to give them a listing of
I have a client that wants the application to be able to send SMS
I have a client that has a requirement to display PDFs directly within a
I have a client that wants to send a large number of SOAP Header
I have a client that is paying $1500 per month for hosting of 1
I have a client that has a PostgreSQL database and he cannot remember the
I have a client that is running a custom VB 6 application they wrote

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.