WCF服务& TCP绑定问题

时间:2014-01-23 19:37:58

标签: wcf nettcpbinding

我正在学习wcf。所以我只写一个简单的地方,我使用TCP绑定& basicHttpBinding的。 当我只使用basicHttpBinding运行服务时,没有问题发生,但当我把tcp绑定,然后出现问题。所以我在这里粘贴我的代码和屏幕截图。 我的解决方案屏幕截图 enter image description here

这是我的完整代码,其中包含配置条目详细信息

namespace WcfServiceLibrary4
{
    // NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService1" in both code and config file together.
    [ServiceContract]
    public interface IService1
    {

        [OperationContract]
        string GetData(int value);

        [OperationContract]
        CompositeType GetDataUsingDataContract(CompositeType composite);

        // TODO: Add your service operations here
    }


    // Use a data contract as illustrated in the sample below to add composite types to service operations.
    [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; }
        }
    }
}

namespace WcfServiceLibrary4
{
    // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in code, svc and config file together.
    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;
        }
    }
}

<?xml version="1.0"?>
<configuration>

  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <services>
      <service name="WcfServiceLibrary4.Service1">
        <host>
          <baseAddresses>
            <!--<add baseAddress = "http://localhost:8733/Service1/" />-->
            <add baseAddress="net.tcp://localhost:8734/Service1/"/>
          </baseAddresses>
        </host>
        <!--<endpoint address="" binding="basicHttpBinding" contract="WcfServiceLibrary4.IService1"/>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>-->
        <endpoint address=""    binding="netTcpBinding" contract="WcfServiceLibrary4.IService1"/>
        <endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange"/>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <serviceMetadata httpGetEnabled="False" httpsGetEnabled="False"/>
          <serviceDebug includeExceptionDetailInFaults="False" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>

 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>

</configuration>

当我从VS2010 IDE运行应用程序时,会出现名为的错误,无法添加服务。可能无法访问服务元数据。确保您的服务正在运行并公开元数据。

所以搜索谷歌并从这个网址我知道我必须开始少量服务 http://rohitguptablog.wordpress.com/2011/06/16/configuring-wcf-service-with-nettcpbinding/

enter image description here

但是当我尝试启动这些服务时,我收到了错误 enter image description here

所以请详细指导我如何启动这些服务,并指导我在我的电脑中需要设置的其他内容因此我可以使用来自vs2010 ide的我的电脑上的tcp绑定来测试我的wcf应用程序。感谢

1 个答案:

答案 0 :(得分:1)