0

我有一个自己托管 WCF 服务的控制台应用程序。当用户访问 asp.net 应用程序并单击页面上的按钮时,如何编写一些脚本来调用这个自托管的 WCF 服务(本地托管的服务)。我猜我的脚本有问题,请帮忙。

namespace SelfHost
{
  [ServiceContract]
  public interface IHelloWorldService
  {
      [OperationContract]
      string SayHello(string name);
  }

  [AspNetCompatibilityRequirements(RequirementsMode =     AspNetCompatibilityRequirementsMode.Allowed)]
  public class HelloWorldService : IHelloWorldService
  {
    public string SayHello(string name)
    {
        return string.Format("Hello, {0}", name);
    }
}

class Program
{
    static void Main(string[] args)
    {
        Uri baseAddress = new Uri("http://127.0.0.1/hello");

        // Create the ServiceHost.
        using (ServiceHost host = new ServiceHost(typeof(HelloWorldService), baseAddress))
        {
            // Enable metadata publishing.
            ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
            smb.HttpGetEnabled = true;
            smb.MetadataExporter.PolicyVersion = PolicyVersion.Policy15;
            host.Description.Behaviors.Add(smb);

            // Open the ServiceHost to start listening for messages. Since
            // no endpoints are explicitly configured, the runtime will create
            // one endpoint per base address for each service contract implemented
            // by the service.
            host.Open();

            Console.WriteLine("The service is ready at {0}", baseAddress);
            Console.WriteLine("Press <Enter> to stop the service.");
            Console.ReadLine();

            // Close the ServiceHost.
            host.Close();
        }
    }
}

调用服务的脚本

<script type="text/javascript">
    function invokeService() {
        $(document).ready(function () {
            var userName = " test";

            $.ajax({
                type: "POST",
                async: "false",
                url: "http://127.0.0.1:8080/hello",
                data: "{'name':'" + userName + "'}",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                processData: true,
                method: "SayHello",
                success: function (result) {
                    AjaxSucceeded(result);
                },
                error: function (retult) {
                    AjaxFailed(result);
                }
            });
        });
    }
4

2 回答 2

0

不希望以这种方式使用 jquery 调用 WCF 服务。

最大的问题是您公开了一个Soap 服务并尝试使用类似rest 的客户端来调用它。

从 .net 3.5 开始,WCF 允许您将 WCF 服务操作公开给非 SOAP 端点。您必须以这种方式公开您的服务才能使用 Jquery 使用它。

MSDN 的起点,即这里,几年前在msdn 杂志上有一个很好的介绍。

一个非常简单的例子是(没有任何配置)

[ServiceContract]
public interface IService
{
    [OperationContract]
    [WebGet(BodyStyle=WebMessageBodyStyle.Bare, RequestFormat=WebMessageFormat.Json, ResponseFormat=WebMessageFormat.Json)]
    string EchoWithGet(string s);

    [OperationContract]
    [WebInvoke(BodyStyle=WebMessageBodyStyle.Bare, RequestFormat=WebMessageFormat.Json, ResponseFormat=WebMessageFormat.Json)]
    string EchoWithPost(string s);
}

public class Service : IService
{
    public string EchoWithGet(string s)
    {
        return "You said " + s;
    }

    public string EchoWithPost(string s)
    {
        return "You said " + s;
    }
}

class Program
{
    static void Main(string[] args)
    {
        WebServiceHost host = new WebServiceHost(typeof(Service), new Uri("http://localhost:8000/"));
        ServiceEndpoint ep = host.AddServiceEndpoint(typeof(IService), new WebHttpBinding(), "");
        ServiceDebugBehavior sdb = host.Description.Behaviors.Find<ServiceDebugBehavior>();
        sdb.HttpHelpPageEnabled = false;
        host.Open();
        Console.WriteLine("Service is running");
        Console.WriteLine("Press enter to quit...");
        Console.ReadLine();
        host.Close();
    }
}
于 2013-06-17T08:10:11.350 回答
-1

刚刚发现不允许通过脚本进行跨域调用。所以另一种方法是有一个命令行应用程序或控制台文件来调用 wcf 服务。然后在注册表中注册这个应用程序。然后从脚本启动应用程序。

于 2013-06-20T04:29:29.677 回答