我创建了一个WCF 4
Web 服务并将其托管在我的 上,我在项目的发布 Web 部分IIS 7
给出了以下内容:Service URL:
WCF
http://localhost:8084/service1.svc
.
然后我绑定我发布web site
的端口:4567
和类型:http
在IIS
。
To checked it i clicked on `web site` at `IIS` and click on the browse.
It open a following page at my browser:
这意味着 Web 服务已成功托管在IIS
. 现在我想调用我的实例方法并在浏览器中返回输出。让我粘贴你的示例代码Iservice.cs
和service.svc.cs
#Iservice.cs:
namespace some.decryption
{
[ServiceContract]
public interface Iservice
{
[OperationContract, WebInvoke(Method = "GET", UriTemplate = "/getdata", ResponseFormat = WebMessageFormat.Json)]
string getdata();
}}
而我的service.svc.cs
:
public bool getdata()
{
return somenamespace.getfetcheddll();
}
和serviceDll.cs
:
namespace somenamespace{
internal static class UnsafeNativeMethods
{
_dllLocation = "some.dll";
[DllImport(_dllLocation, CallingConvention = CallingConvention.Cdecl)]
public static extern bool OnDecryption();
}
public static string getfetcheddll()
{
return UnsafeNativeMethods.OnDecryption();
}}
我应该如何getdata()
从浏览器调用方法?
我已经把它some.dll
放在同一个项目文件夹中。我应该在哪里做?
编辑:
我忘了粘贴我的web.config
:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
为此,我关注了这个博客:创建演练