WCF服务必须用作服务/ Web引用的必要条件是什么?

时间:2015-08-13 08:59:17

标签: c# .net web-services wcf service

这些天我正在学习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],但到目前为止我还没有成功。

感谢关于任何更正。

1 个答案:

答案 0 :(得分:0)

你可以这样做,几乎和你的例子一样顺利...... 由于你的主题非常广泛,我不会详细说明。

对于您自己的类,能够将它们用作参数和/或返回类型。 (在你的情况下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 (使用此功能,您可以完全控制代码,但可能需要进行更多设置,即端点。)