作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我对服务端点和主机基地址的用途有点困惑。到目前为止,在我所经历的所有示例中,他们都在讨论使用所需绑定(bind)设置端点,您通常可以导航到这些端点
但是,当我使用以下配置来设置和托管我的服务时,它似乎只公开了主机基地址。
<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>
最佳答案
在 IIS 上托管 WCF 服务时,基地址只能是 .svc 文件的 URL。如果您指定任何其他基地址,它将被忽略。您仍然可以为端点指定相对 URI,例如 address="basic"
或 address = "ws"
.那么端点上的地址就变成了<URL to the .svc file>/basic
和 <URL to the .svc file>/ws
在这种情况下。
关于WCF 服务端点与主机基地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6937853/
目前我有几个配置了以下目录的catalina bases, conf logs server webapps work bin、lib 和common 目录都还在$CATALINA_HOME 中。 我
我是一名优秀的程序员,十分优秀!