I probably don't understand something with endpoints in wcf.

I've simple exemplary wcf service in "clean" wcf service library.

It's

public interface IService1
    {
        [OperationContract]
        string GetData(int value);

        [OperationContract]
        CompositeType GetDataUsingDataContract(CompositeType composite);
    }

    [DataContract]
    public class CompositeType
    {
        bool boolValue = true;
        string stringValue = "Hello ";

        [DataMember]
        public bool BoolValue
        {
            get { return boolValue; }
            set { boolValue = value; }
        }

        [DataMember]
        public string StringValue
        {
            get { return stringValue; }
            set { stringValue = value; }
        }
    }

And standard implementation

public class Service1 : IService1
{
    public string GetData(int value)
    {
        return string.Format("You entered: {0}", value);
    }

    public CompositeType GetDataUsingDataContract(CompositeType composite)
    {
        if (composite == null)
        {
            throw new ArgumentNullException("composite");
        }
        if (composite.BoolValue)
        {
            composite.StringValue += "Suffix";
        }
        return composite;
    }
}

And app.config file with net.tcp endpoint

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>

    <services>
      <service name="WcfServiceLibrary1.Service1" behaviorConfiguration="MyBehavior">

        <host>
          <baseAddresses>
            <add baseAddress = "net.tcp://localhost:8080/WcfServiceLibrary1/Service1/" />
          </baseAddresses>
        </host>

        <endpoint address="" 
                  binding="netTcpBinding" 
                  contract="WcfServiceLibrary1.IService1" />

        <endpoint address="mex" 
                  binding="mexTcpBinding" 
                  contract="IMetadataExchange" />
      </service>
    </services>

    <behaviors>
      <serviceBehaviors>
        <behavior name="MyBehavior">
          <serviceMetadata />
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>

</configuration>

And now:

svcutil WcfServiceLibrary1.dll
svcutil *.wsdl *.xsd /language:C# /out:/MyProxy.cs /config:app.config

Why in this output app.proxy I get

<client>
    <endpoint binding="basicHttpBinding" bindingConfiguration="DefaultBinding_IService1"
        contract="IService1" name="DefaultBinding_IService1_IService1" />
</client>

Why http instead of net.tcp?

If I define in my App.config http-endpoint then output app.config is the same like above. What's going on?

link|improve this question

72% accept rate
feedback

1 Answer

I found probably reason. I don't know why but

svcutil WcfServiceLibrary1.dll
svcutil *.wsdl *.xsd /language:C# /out:/MyProxy.cs /config:app.config

generate other data than

svcutil net.tcp://localhost:8080/WcfServiceLibrary1/Service1/ /language:C# /out:/MyProxy.cs /config:app.config

Does someone know why? (*.dll is just newly compiled so there must be actual data)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.