zoukankan      html  css  js  c++  java
  • Ajax在调用含有SoapHeader的webservice方法

    ·         [WebService(Namespace = "http://tempuri.org/")]
    ·             [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    ·             public class WebService4JQuery : System.Web.Services.WebService
    ·             {
    ·                 
    ·                 public TestHeader THeader;
    ·          
    ·                 [WebMethod]
    ·                 [SoapHeader("THeader")]
    ·                 public string TestSoapHeader()
    ·                 {
    ·          
    ·                     return "THeader Value: " + THeader.HeaderData;
    ·                 }
    ·             }
    ·          
    ·             public class TestHeader : SoapHeader
    ·             {
    ·                 public string HeaderData { get; set; }
    ·             }


    #JQuery code in the webform page

    <script type="text/javascript">
     
            function CallWebMethodWithHeader() {
     
                var soapXML = 
                "<soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'>" +
                "  <soap:Header>" +
                    "<TestHeader xmlns='http://tempuri.org/'>" +
                        "<HeaderData>111111111111</HeaderData>" +
                    "</TestHeader>" +
                "</soap:Header>" +
                "<soap:Body>" +
                    "<TestSoapHeader xmlns='http://tempuri.org/' />" +
                "</soap:Body>" +
                "</soap:Envelope>";
            
                $.ajax({
                    url: "WebService4JQuery.asmx?op=TestSoapHeader",
                    type: "POST",
                    dataType: "xml",
                    contentType:"text/xml; charset=utf-8",
                    data: soapXML,
                    beforeSend: function (xhr) {
                        xhr.setRequestHeader('SOAPAction', 'http://tempuri.org/TestSoapHeader');
     
                    },
     
                    success: function (data) {
                        alert("webmethod call success");
                    },
                    error: function (err) {
                        alert("webmethod call failed");
                    }
     
                });
     
            }
        </script>
  • 相关阅读:
    使用InstelliJ IDEA创建Web应用程序
    别了WindowsXP
    在MyEclipse中搭建Spring MVC开发环境
    iPhone中国移动收不到彩信,联通不用设置都可以,具体设置方法:
    WebLogic 服务器配置
    c# 第五课 string
    c# 第五课 regex
    c# 第四课 Arrays
    c# 第四课 interfaces
    c# 第五课 async await
  • 原文地址:https://www.cnblogs.com/stonespawn/p/3522978.html
Copyright © 2011-2022 走看看