首先,我在服务器和网络方面的经验通常很少,所以如果我说的任何内容不正确或我遗漏了一些简单的东西,我深表歉意。
我目前正在尝试创建一个 WCF 服务应用程序,我可以向同一网络上的不同设备发出 HTTP 请求并接收 JSON 形式的响应。当我使用 Visual Studio 开发服务器托管应用程序时,我能够向本地主机发出这些请求并获得响应。
要求:
http://localhost:15021/Service1.svc/getData/myValue
回复:
{"GetDataResult":"You entered: myValue"}
运营合同:
[OperationContract]
[WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Json, BodyStyle = WebMessageBodyStyle.Wrapped, UriTemplate = "getData/{value}")]
string GetData(string value);
尽管这在我的机器上有效,但如果我尝试使用不同的机器,将 localhost 更改为机器 IP 地址,我将没有任何响应。我开始研究这个,如果我想要这个功能,我似乎需要用 IIS 来托管它。我发现了很多关于使用 IIS 托管 WCF 服务的教程,例如。http://www.codeproject.com/Articles/550796/A-Beginners-Tutorial-on-How-to-Host-a-WCF-Service。
这些教程的问题是他们总是使用基于控制台的“客户端”来运行合同,而我需要使用 HTTP 请求来执行此操作。是否有捷径可寻?
提前致谢。
编辑:
我相信我的 web.config 可能是我的问题的原因,但不确定
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<services>
<service name ="MongoWCF.Service1" >
<endpoint address="../Service1.svc"
binding="webHttpBinding"
contract="MongoWCF.IService1"
behaviorConfiguration="webBehavior" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="webBehavior">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>