这将是一个愚蠢的问题,但是:
当我在 vs 2012 中创建 WCF 服务库时,在 app.config 中我可以找到有关该服务的信息,如下所示。
<system.serviceModel>
<services>
<service name="WcfServiceLibrary1.Service1">
<host>
<baseAddresses>
<add baseAddress = "http://localhost:8733/Design_Time_Addresses/WcfServiceLibrary1/Service1/" />
</baseAddresses>
</host>
<!-- Service Endpoints -->
<!-- Unless fully qualified, address is relative to base address supplied above -->
<endpoint address="" binding="basicHttpBinding" contract="WcfServiceLibrary1.IService1">
但是当我创建一个 azure wcf 项目(托管在 webrole 中)时,我在 web.config 中找不到任何关于此的信息。我在哪里可以找到它们?启动服务的线路在哪里?
谢谢你的回答,对不起我的英语。
吨