所以我很困惑什麼服務端點和主機基地址。在我到目前爲止所走過的所有例子中,他們都討論瞭如何使用所需的綁定來設置端點,並且您通常可以導航到這些端點WCF服務端點vs主機基地址
Hoever當我使用以下配置來設置和託管我的服務時,公開主機基地址。
<configuration>
<system.web>
<compilation debug="true" />
</system.web>
<!-- When deploying the service library project, the content of the config file must be added to the host's
app.config file. System.Configuration does not support config files for libraries. -->
<system.serviceModel>
<services>
<service name="HostService.EvalService">
<endpoint address="http://localhost:8080/basic"
binding="basicHttpBinding" contract="HostService.IEvalService" />
<endpoint address="http://localhost:8080/ws"
binding="wsHttpBinding" contract="HostService.IEvalService" />
<endpoint address="mex" binding="mexHttpBinding"
name="mex" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080/EvalsService" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
有人可以向我解釋這個嗎?
我應該還是能夠導航到端點?目前我不能 –
您將無法導航到瀏覽器中的端點,但端點仍處於活動狀態,客戶端應該能夠正常連接。 –
我不知道爲什麼MS沒有在他們的怪異文檔中陳述你的一些子彈。 – PositiveGuy