我正在學習wcf。所以我只寫了一個簡單的地方,我使用TCP綁定& basicHttpBinding。 當我運行basicHttpBinding只有服務,然後沒有問題發生,但是當我把tcp綁定然後出現問題。所以我在這裏粘貼我的代碼和屏幕截圖。 我的解決方法畫面拍攝 WCF服務和TCP綁定問題
這裏是我的配置條目詳細
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/
但是當我嘗試啓動這些服務,那麼我得到錯誤
所以請詳細指導我如何才能啓動這些服務,並指導我還需要在我的電腦中安裝什麼,結果我可以使用來自vs2010 ide的電腦上的tcp綁定來測試我的wcf應用程序。謝謝
基本上,當我從WCF測試客戶端,然後我得到錯誤的測試我的服務。這就是爲什麼我沒有考慮iis。我想如果會有問題,然後wcf測試客戶端喊,我想有一些問題可能在我的代碼或配置代碼或可能是我必須開始少量服務。我嘗試啓動服務但出現錯誤。所以只要告訴我我如何開始這些服務?如果有什麼我需要安裝然後告訴我。謝謝 – Thomas
你開始網絡TCP端口共享服務:http://msdn.microsoft.com/en-us/library/ms733925(v=vs.110).aspx –
那麼你是自主或IIS託管? –