首 页 行业热点 新车 试驾评测 养车用车 车型库

vb6.0调用wcf

发布网友 发布时间:2022-04-20 21:50

我来回答

1个回答

热心网友 时间:2023-10-04 12:50

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>

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

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com