我在Visual Studio 2010中創建了一個WCF服務並將其發佈到運行IIS 7.5的服務器上。需要什麼網址才能使用WCF服務
它有一個方法 - 被稱爲returnNumber。這需要一個名爲numberIn的int參數,將其乘以2並返回答案。
如果我把
http://myserver/TestService/Service1.svc?wsdl
在瀏覽器中,它顯示XHTML的網頁。
我應該使用什麼網址,以便我可以從瀏覽器調用我的WCF服務 - 在QueryString中傳遞一個數字,以便調用returnNumber方法?
而且下面的反應 - 丹尼爾 - 這裏是我的代碼:
web配置:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<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>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
包含接口的IServicer1.cs文件:
namespace NumberTest
{
[ServiceContract]
public interface IService1
{
[OperationContract(IsOneWay = false)]
int returnNumber(int numberIn);
}
}
和Service1.svc.cs
namespace NumberTest
{
public class NumberService : IService1
{
public int returnNumber(int numberIn)
{
int returnValue = numberIn * 2;
return returnValue;
}
}
我已經發表了以上
http://myServer/TestService
,如果我從VS Web應用程序中添加一個引用到WCF服務時,returnNumber方法公開,如果我把它的工作原理。
我該如何允許運行不是asp.net的網站的人(因此他們不能添加服務引用)能夠調用我的returnNumber方法並獲取數字?
你或許應該考慮網頁API的這種功能 – Alex
當你說一個「網頁API」你的意思是SOAP Web服務? –
不,我的意思是ASP.net WebApi框架。 Google是你的朋友... – Alex