没有从WCF REST服务(新手)获得预期的结果

时间:2012-08-14 21:19:55

标签: wcf web-services rest

我是WCF Web服务的新手。我正在尝试测试我简单的hello world web服务。 现在,我正在做自我托管。我正在启动主机应用程序,打开浏览器并输入我的资源的地址。我还运行Fiddler并使用Composer创建了一个Request。在这两种情况下,我都会得到“你已经创建了一项服务”。包含指向.wsdl的链接的页面。

我期待在我的回复中看到“Hello World”文本或者有一个“...... Hello world”的网页。

我错过了什么?或者我只是误解了这个过程?

App.Config中

<?xml version="1.0"?>
<configuration>

    <system.serviceModel>
      <services>
         <service name="My.Core.Services.GreetingService" behaviorConfiguration="MyServiceTypeBehaviors">
            <host>
               <baseAddresses>
                 <add baseAddress="http://localhost:8080/greeting"/>
               </baseAddresses>
            </host>
            <endpoint name="GreetingService" binding="webHttpBinding" contract="My.Core.Services.IGreetingService"/>
            <endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex" />
       </service>
    </services>

    <behaviors>
       <serviceBehaviors>
            <behavior name="MyServiceTypeBehaviors" >
                <serviceMetadata httpGetEnabled="true" />
            </behavior>
       </serviceBehaviors>
    </behaviors>
   </system.serviceModel>

<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>

主机代码

using System;
using System.ServiceModel;
using My.Core.Services;    

namespace My.Service.Host
{
    class Program
    {
        static void Main(string[] args)
        {
            using (var host = new ServiceHost(typeof(GreetingService)))
            {
                host.Open();
                Console.WriteLine("The service is ready.");
                Console.WriteLine("Press <ENTER> to terminate service.");
                Console.WriteLine();
                Console.ReadLine();
                host.Close();
            }
        }
}

}

Hello World Contract and Service

using System.ServiceModel;
using System.ServiceModel.Web;

namespace My.Core.Services
{
   [ServiceContract]
   public interface IGreetingService
   {
      [OperationContract]
      [WebGet(UriTemplate = "/")]
      string GetGreeting();
   }
}

using System.Collections.Generic;

namespace My.Core.Services
{
    public class GreetingService : IGreetingService
    {
        public string GetGreeting()
        {
             return "Greeting...Hello World";
        }
    }
}

2 个答案:

答案 0 :(得分:1)

如果我理解正确,您可以在以下网址上看到您的wsdl链接

http://localhost:8080/greeting

为了现在调用您的端点,您需要将其添加到网址中,如此

http://localhost:8080/greeting/GetGreeting/

我不完全确定为什么你在那里有UriTemplate的东西,除了我猜你可能只是从一个例子中复制粘贴它。除非你有你想要定义的特定查询字符串参数,否则你真的不需要它,它会使事情变得复杂,所以我建议把它拿出来。这意味着您的界面看起来像这样......

[ServiceContract]
public interface IGreetingService
{
   [OperationContract]
   [WebGet]
   string GetGreeting();
}

...然后你可以在网址上丢失最后的“/”。

答案 1 :(得分:0)

我找出问题所在。当我使用url:“http:// localhost:8080 / greeting”时,服务器发送临时页面。当我在url的末尾添加反斜杠“/”时,它会执行我的服务。 所以,“http:// localhost:8080 / greeting /”工作,并将“... Hello World”发回给我。