从隔离页面使用WCF服务(框架4)

时间:2011-11-19 16:43:33

标签: wcf service

我描述情况:

我在IIS7中发布了某种wcf服务。

我的工作流程中有一点我动态生成一个页面(.Aspx),当用户输入并确认时,服务就会消耗。

问题基本上是我不知道该怎么做,我有一个你必须使用wcf服务的页面,但该页面不属于任何Visual Studio解决方案,只是在同一目录下的IIS中托管作为我的网站,在解决方案(网站)中。

我无法对服务进行服务引用,或者我无法做到,然后我无法使用例如:“使用myService;”在我的页面中。

有什么建议吗?是否可以在不添加服务引用的情况下使用de wcf服务? 谢谢!

1 个答案:

答案 0 :(得分:1)

我会在@CF_s建议的WCF中定义一个JSON端点。然后,我将使用jQuery来调用服务,并使用JSON2.js来对请求进行字符串化。

以下是一个示例HTML页面,您可以轻松将其作为工作流程的一部分输出(注意,不需要生成任何内容)......

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>JSON Demo</title>
    <script src="jquery-1.4.4.min.js" type="text/javascript"></script>
    <script src="json2.js" type="text/javascript"></script>
    <script type="text/javascript">

        // You could set this value when you generate the HTML
        var SERVICE_URL = "http://localhost:48788/JsonDemoService.svc";

        $(document).ready(function () {
            $('#GoButton').click(function () {
                // Construct a customer object (you could pass pure JSON 
                // but I prefer to use objects and then stringify at the end)
                var customer = {
                    name: $('#Name').val()
                };

                $.ajax({
                    type: 'POST',
                    url: SERVICE_URL + "/AddCustomer",
                    data: JSON.stringify(customer),
                    success: function () {
                        // Handle a successful return here
                    },
                    error: function (xhr, thrownError) {
                        // Handle an error calling the service here                        
                        alert(thrownError);
                    },
                    contentType: "application/json",
                    dataType: "html"
                });
            });
        });
    </script>
</head>
<body>    
    <input id="Name"/>
    <input id="GoButton" type="button" value="Test"/>
</body>
</html>

您可以看到 - 将对象发送到WCF服务非常简单。完成图片的是服务......

服务实施

using System.Runtime.Serialization;
using System.ServiceModel;

namespace Demo
{
    [DataContract]
    public class Customer
    {
        // Use the Name parameter to specify a lowercase name
        // so that it looks like Javascript on the client and
        // c# on the server
        [DataMember(Name = "name")]
        public string Name { get; set; }
    }

    [ServiceContract]
    public interface IJsonDemoService
    {
        [OperationContract]
        void AddCustomer(Customer customer);
    }

    public class JsonDemoService : IJsonDemoService
    {
        public void AddCustomer(Customer customer)
        {
            // Add the customer here
        }
    }    
}

.svc文件

<%@ ServiceHost Service="Demo.JsonDemoService" %>

的web.config

<?xml version="1.0"?>
<configuration>  
  <system.web>
    <compilation debug="true" targetFramework="4.0" />  
  </system.web>
  <system.serviceModel>
    <bindings />
    <services>
      <service name="Demo.JsonDemoService">
        <endpoint address=""
              behaviorConfiguration="json"
              binding="webHttpBinding"
              name="jsonEndpoint"
              contract="Demo.IJsonDemoService" />
      </service>
    </services>
    <behaviors>
      <endpointBehaviors>
        <behavior name="json">
          <webHttp/>
        </behavior>
      </endpointBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
</configuration>

绑定配置中的重要部分 - 它只是告诉WCF期望JSON。