WCF服务必须具备哪些条件才能用作服务/web引用?

本文关键字:服务 web 引用 条件 WCF | 更新日期: 2023-09-27 18:07:48

这些天我正在学习WCF,可能不知道从哪里开始。我想创建WCF REST服务,它将通过HTTP请求(GET, PUT…)进行访问。同时我希望能够将此服务添加为服务引用或web引用,并将其作为普通方法在web应用程序客户端中使用。这个问题很广泛,所以我将感谢任何提示或指导。

此时,我有功能服务并在我的主机上运行它们。我可以添加服务引用和Web引用。正如我所认识到的,服务引用更适合新代码,因为它使用WCF通信,因此它包含了所有以前的通信通道。当我添加这些引用时,我可以使用对GetSimpleDataService的引用,但不能使用它的方法。当我尝试添加这些方法作为参考时,注意到元数据的问题。

WCF接口:

[ServiceContract]
public interface IGetSimpleDataService
{
    [OperationContract]
    [WebGet(UriTemplate = "User/{ID}")]
    User GetUser(string ID);
    [OperationContract]
    [ScriptMethod(UseHttpGet = true)]
    User GetUserByMethod(string ID);
    [OperationContract]
    [WebGet]
    string ActivationTest();
    [OperationContract]
    [WebMethod]
    string WebMethodTest();
}

web . config:

<?xml version="1.0"?>
<configuration>
  <appSettings>
    <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
  </appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.5.2" />
    <httpRuntime targetFramework="4.5.2"/>
  </system.web>
  <system.serviceModel>
    <services>
      <service name="StoryHubWCFApp.TestStudentService" behaviorConfiguration="serviceBehavior">
        <endpoint address=""
              binding="webHttpBinding"
              contract="StoryHubWCFApp.ITestStudentService"
              behaviorConfiguration="web"
      />
      </service>
    <service name="StoryHubWCFApp.GetSimpleDataService" behaviorConfiguration="serviceBehavior">
      <endpoint address=""
            binding="webHttpBinding"
            contract="StoryHubWCFApp.IGetSimpleDataService"
            behaviorConfiguration="web"/>
    </service>
    </services>
    <behaviors>
      <endpointBehaviors>
        <behavior name="web">
          <webHttp />
        </behavior>
      </endpointBehaviors>
      <serviceBehaviors>
        <behavior name="serviceBehavior">
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
        <behavior name="">
          <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="false" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <protocolMapping>
        <add binding="basicHttpsBinding" scheme="https" />
    </protocolMapping>    
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
    <directoryBrowse enabled="true"/>
  </system.webServer>
</configuration>

现在我可以通过get请求获取数据,但我希望能够像这样使用Web/service引用的服务:

string s = MyServices.ActivationTest();

我假设使用这样的方法,它返回或接受int和字符串以外的值,我应该有[DataContracts]?我也明白了,我必须使用[WebMethod]或[ScriptMethod],但到目前为止我还没有成功。

谢谢你的更正

WCF服务必须具备哪些条件才能用作服务/web引用?

你可以让它几乎像你的例子一样顺利…因为你的话题很广泛,我就不详细讲了,只给出一些提示。

对于您自己的类,能够使用它们作为参数和/或返回类型。(在您的案例中是User)您必须定义序列化什么以及如何序列化。你可以在这里阅读:

https://msdn.microsoft.com/en-us/library/ms733127 (v = vs.110) . aspx

https://msdn.microsoft.com/en-us/library/ms733811 (v = vs.110) . aspx

的例子:

[DataContract]
public class User
{
    // This member is serialized.
    [DataMember]
    string FullName;
    // This is not serialized because the DataMemberAttribute 
    // has not been applied.
    private string MailingAddress;
}

现在你可以使用你的类了。

调用服务:

您可以添加服务引用:https://msdn.microsoft.com/en-us/library/bb386386.aspx(这将是为您的服务生成的代理)

或者您可以使用ChannelFactory: https://msdn.microsoft.com/en-us/library/ms734681(v=vs.110).aspx(这样你就可以完全控制代码,但可能需要做更多的设置,即端点。)