我正在學習WCF。我有一個ASP.NET MVC2網絡應用程序,我想從應用程序發送MIME格式的電子郵件,所以我想我會將電子郵件功能封裝在一個單獨的WCF項目中以供將來重用等。因此,我添加了一個WCF服務庫解決方案,編寫了電子郵件功能的編碼,向Web項目添加了服務引用,並且在VS內運行時,它都可以正常工作。但是,如果我從瀏覽器窗口(而不是通過Visual Studio'F5')訪問Web應用程序,則WCF服務不起作用。我得到以下錯誤:WCF服務庫僅適用於從Visual Studio運行時
Unable to connect to the remote server at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context) at System.Net.HttpWebRequest.GetRequestStream() at System.ServiceModel.Channels.HttpOutput.WebRequestHttpOutput.GetOutputStream() No connection could be made because the target machine actively refused it 127.0.0.1:8732 at System.Net.Sockets.Socket.DoConnect
在Web應用程序的web.config文件進行了修訂(通過WCF)如下:
<system.serviceModel>
<bindings>
<wsHttpBinding>
<binding name="WSHttpBinding_IEmailService" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<reliableSession ordered="true" inactivityTimeout="00:10:00"
enabled="false" />
<security mode="Message">
<transport clientCredentialType="Windows" proxyCredentialType="None"
realm="" />
<message clientCredentialType="Windows" negotiateServiceCredential="true"
algorithmSuite="Default" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:8732/Design_Time_Addresses/Email/EmailService/"
binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IEmailService"
contract="EmailServiceReference.IEmailService" name="WSHttpBinding_IEmailService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
</client>
</system.serviceModel>
什麼我需要做的就是應用+服務在VS2010之外工作?另外,當我最終部署到我們的服務器時,任何部署提示都將不勝感激。
謝謝。
編輯 感謝您的所有答案。鑑於我打算在網絡上部署它,我應該創建一個單獨的Web應用程序或Web服務,然後引用服務庫,然後我將在適當的時候部署到獨立的Web服務器?
要解決這個問題,並且考慮到我最終希望部署到獨立於主Web應用程序的Web服務器,我應該創建第三個VS項目(網站項目)(並添加到此解決方案) WCF服務的主機?打包WCF服務的最佳方法是什麼,以便我可以在本地和生產Web服務器上運行?謝謝 – DEH
你在想什麼是正確的。您可以將您的網站和wcf服務打包到兩個不同的虛擬目錄中。但請記住,選擇IIS來承載WCF會限制傳輸協議......但考慮到您的情況,這應該不是什麼大問題。 – Illuminati