wcf web服务用什么调用方法

 我来答
huanglenzhi
2016-03-12 · 知道合伙人数码行家
huanglenzhi
知道合伙人数码行家
采纳数:117538 获赞数:517184
长期从事计算机组装,维护,网络组建及管理。对计算机硬件、操作系统安装、典型网络设备具有详细认知。

向TA提问 私信TA
展开全部

1. 创建服务

2. 修改接口

为了做演示,我们将默认的那个Operation修改一下

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
using System.ServiceModel.Web;
namespace WebApplication1
{
   // 注意: 如果更改此处的接口名称 "INorthwindService",也必须更新 Web.config 中对 "INorthwindService" 的引用。
   [ServiceContract]
   public interface INorthwindService
   {
       [OperationContract]
       [WebGet(UriTemplate="HelloWorld")]
       string HelloWorld();
   }
}

注意,我们这里加了一个WebGet的Attribute,这将允许WCF服务直接通过地址调用

3. 实现服务

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;

namespace WebApplication1
{
   // 注意: 如果更改此处的类名 "NorthwindService",也必须更新 Web.config 中对 "NorthwindService" 的引用。
   public class NorthwindService : INorthwindService
   {

       #region INorthwindService 成员

       public string HelloWorld()
       {
           return "Hello,world";
       }

       #endregion
   }
}

这里的实现依然是我最喜欢的HelloWorld

4. 修改配置文件(web.config),要支持直接通过WebGet的方法调用WCF服务,必须用一个特殊的binding,是webHttpBinding

<system.serviceModel>
 <behaviors>
  <serviceBehaviors>
   <behavior name="WebApplication1.NorthwindServiceBehavior">
    <serviceMetadata httpGetEnabled="true" />
    <serviceDebug includeExceptionDetailInFaults="false" />
   behavior>
  serviceBehaviors>
   <endpointBehaviors>
     <behavior name="test">
       <webHttp/>
     behavior>
   endpointBehaviors>
 behaviors>
 <services>
  <service behaviorConfiguration="WebApplication1.NorthwindServiceBehavior"
   name="WebApplication1.NorthwindService">
   <endpoint address="" binding="webHttpBinding" contract="WebApplication1.INorthwindService" behaviorConfiguration="test">
    <identity>
     <dns value="localhost" />
    identity>
   endpoint>
   <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  service>
 services>
system.serviceModel>

上面的粗斜体部分是要添加或者修改的

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
?>

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式