简单的 REST WCF 服务示例代码 - 找不到终结点



我正在尝试第5章 - RESTful .Net中的部分示例,但由于某种原因无法使其工作(接收404-未找到)。

using System;
using System.ServiceModel;
using System.ServiceModel.Description;
using System.ServiceModel.Web;
[ServiceContract]
public class RestService
{
    [OperationContract]
    [WebGet(UriTemplate = "Hosting")]
    public void Hosting()
    {
        Console.WriteLine("RestService::Hosting()");
        WebOperationContext.Current.OutgoingResponse.StatusCode = System.Net.HttpStatusCode.OK;
    }
    static void Main(string[] args)
    {
        var host = new ServiceHost(typeof(RestService));
        var endpoint = host.AddServiceEndpoint(typeof(RestService), new WebHttpBinding(), "http://localhost:8080/Hosting");
        endpoint.Behaviors.Add(new WebHttpBehavior());
        host.Open();
        Console.ReadKey();
    }
}

如果我使用网络服务主机,它可以工作(返回状态代码正常),如下所示

    static void Main(string[] args)
    {
        var host = new WebServiceHost(typeof(RestService), new Uri("http://localhost:8080"));
        host.Open();
        Console.ReadKey();
    }

所以问题是如何使其与服务主机一起使用(如果可能的话,没有任何配置文件等)?

WebServiceHost 会为你创建一个端点,如果你继续使用它,没有任何问题。有关更多详细信息,请参阅此链接...

但是您也可以将以下配置添加到您的服务配置中以使用 ServiceHost,我已经给出了一个例子,您可以更改它以反映您的服务类。

<system.serviceModel>
        <services>
            <service name="YourService.DateTimeService" behaviorConfiguration="customBehavior">
                <endpoint address="Basic" binding="basicHttpBinding" contract="DifferentBindings.IDateTime">
                    <identity>
                        <dns value="localhost" />
                    </identity>
                </endpoint>             
                <endpoint address="Web" binding="webHttpBinding" contract="DifferentBindings.IDateTime" behaviorConfiguration="webHttpBehavior">
                    <identity>
                        <dns value="localhost"/>
                    </identity>
                </endpoint>
                <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />                
                <host>
                    <baseAddresses>
                        <add baseAddress="http://localhost:8731/DifferentBindings/DateTimeService/" />                      
                    </baseAddresses>
                </host>
            </service>
        </services>
        <behaviors>
            <serviceBehaviors>
                <behavior>
                    <!-- To avoid disclosing metadata information, 
          set the value below to false before deployment -->
                    <serviceMetadata httpGetEnabled="True"/>
                    <!-- To receive exception details in faults for debugging purposes, 
          set the value below to true.  Set to false before deployment 
          to avoid disclosing exception information -->
                    <serviceDebug includeExceptionDetailInFaults="False" />
                </behavior>             
            </serviceBehaviors>
            <endpointBehaviors>
                <behavior name="webHttpBehavior">
                    <webHttp/>
                </behavior>
            </endpointBehaviors>
        </behaviors>
    </system.serviceModel>

所以我很好奇WCF会有多复杂。试过了。它向前推进。

我使用本教程创建了一个简单的服务,该服务具有一个 doWork 方法,该方法需要一个字符串并返回一个问候语。

问候:

[DataContract]
public class Greeting
{
    [DataMember]
    public string Str { get; set; }
}

SVC 合同:

[OperationContract]
[WebInvoke(Method = "ResponseFormat = WebMessageFormat.BodyStyle = WebMessageBodyStyle.Bare, UriTemplate = "sayHello/{name}/")]
Greeting DoWork(string name);

Svc Impl:

public class GreetingService : IGreetingService
{
    public Greeting DoWork(string name)
    {
        return new Greeting {Str = string.Format("Hello {0}", name)};
    }
}

然后,您可以首先通过以下方式对其进行测试:

  • 右键单击可视化工作室中的 svc 文件>浏览器中的视图
  • 将"说你好/测试"添加到网址
  • 在浏览器中查看问候语
为此

,可以使用$http或$resource服务在AngularJS中实现

消费者
<!DOCTYPE html>
<html ng-app="restTest">
<head>
    <title></title>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.27/angular.min.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.27/angular-resource.min.js"></script>
    <script language="javascript">
        // set up the app
        var app = angular.module('restTest', ['ngResource']);
        // create a controller
        app.controller('RestTestCtrl', function ($scope, $http, $resource) {
            // initial greeting
            $scope.greeting = "Not greeted yet";
            // say hello, consuming the svc using $http
            $scope.sayHelloHttp = function () {
                var url = "http://localhost:7507/GreetingService.svc/sayHello/" + $scope.inName + "/";
                $http.get(url).
                    success(function(data) {
                        $scope.greeting = data.Str;
                    });
            }
            // say hello, consuming the svc using $resource
            $scope.sayHelloRest = function () {
                var GreetingSvc = $resource("http://localhost:7507/GreetingService.svc/sayHello/:name");
                GreetingSvc.get({ name: $scope.inName }, function(data) {
                    $scope.greeting = data.Str;
                });
            }
        });
    </script>
</head>
    <body ng-controller="RestTestCtrl">
        <!-- bind the value of this input to the scope -->
        <input type="text" ng-model="inName"/>
        <button ng-click="sayHelloHttp()">$http</button>
        <button ng-click="sayHelloRest()">$resource</button>
        <!-- bind the greeting property -->
        <div>{{greeting}}</div>
    </body>
</html>

我想上面的一切都可以表达得更先进,但它应该给你一个基本和工作的例子来开始。

最新更新