我部署web應用到遠程服務器。我設置了IIS 7並且站點出現了。 作爲Web應用程序的一部分,存在對wcf服務的服務引用。 所有這一切工作正常我的本地一切運行。 我從未在部署服務器上對服務本身做過任何事情。我只是在IIS中設置了Web應用程序。現在我越來越這可能是從幾件事的插座異常錯誤,我只是想消除我的選擇......出版WCF服務
我的問題是我必須公佈服務爲我的部署過程的一部分或因爲我發佈了帶有附加服務參考的Web應用程序,我應該沒問題?
這裏,你可以看到有一個參考本地主機(這是不能忽視的好)這是怎麼解決的服務我的web配置部分?
</system.webServer>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IHSSWcfServices" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:49506/IHSSWcfServices.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IHSSWcfServices"
contract="ServiceReference1.IHSSWcfServices" name="BasicHttpBinding_IHSSWcfServices" />
</client>
</system.serviceModel>
@Ethan ....可以請你看看我的web配置我加? –
如果您將該地址網址粘貼到瀏覽器中,您是否獲得服務頁面? –