5

我创建了一个WCF 4Web 服务并将其托管在我的 上,我在项目的发布 Web 部分IIS 7给出了以下内容:Service URL:WCF

http://localhost:8084/service1.svc.

然后我绑定我发布web site的端口:4567和类型:httpIIS

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.csservice.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" />

为此,我关注了这个博客:创建演练

4

1 回答 1

4

默认情况下 -HTTP被转换为wsHttpBindingSOAP服务,因此您不能只从浏览器中调用它。帮助页面上的?wsdl后缀似乎也指向了这个方向。

要测试 SOAP 服务,您需要一个支持 SOAP 的工具,例如 Microsoft WCF 测试客户端SoapUI

尝试使用 WCF 测试客户端 - 您可以使用该工具通过帮助页面上显示的 URL 连接到您的服务吗?你看到你的服务了吗?

于 2013-01-04T15:21:31.437 回答