Web Service Soap认证

SOAP中的验证

VisualSW

          Web Service提供开放式的服务,但是在我们的开发中,需要涉及到访问Web Service权限的问题,这就需要解决控制Web Service的访问权限。

 

通过SOAP Header,我们可以简单的实现权限控制:

首先创建一个简单的Web ServiceSoapCheck:

SoapCheck.cs(注意红色部分注释)

using System;

using System.IO;

using System.Collections;

using System.ComponentModel;

using System.Data;

using System.Data.SqlClient;

using System.Diagnostics;

using System.Web;

using System.Web.Services;

using System.Web.Services.Protocols;

 

namespace TESTSOAP.WebService

{                 

          [WebService (Namespace="TESTSOAP.WebService",

                    Description="TESTSOAP Web Services",

                    Name="TESTSOAP GEID")]  

          public class SoapCheck : System.Web.Services.WebService

          {

                    //实例化Account对象

                    public Account oAccount=new Account();          

 

                    public SoapCheck()

                    {                          

                             InitializeComponent();

                             strConnection=GetConString();

                  }

 

                    #region Component Designer generated code

                  

                    //Required by the Web Services Designer

                    private IContainer components = null;

                                     

                    /// <summary>

                    /// Required method for Designer support - do not modify

                    /// the contents of this method with the code editor.

                    /// </summary>

                    private void InitializeComponent()

                    {

                  }

 

                    /// <summary>

                    /// Clean up any resources being used.

                    /// </summary>

                    protected override void Dispose( bool disposing )

                    {

                             if(disposing && components != null)

                             {

                                       components.Dispose();

                             }

                             base.Dispose(disposing);              

                  }

                  

                    #endregion   

 

                    //需要Soap Header验证的方法前面添加如下

                    [SoapHeader("oAccount")]

                    [WebMethod (Description="TESTSOAP GetReturn")]

                    public string GetReturn()                      

                    {

                             if(oAccount.CheckAccount())

                             {

                                       return "Login Successed!";

                             }

                             else

                             {

                                       return "Login Fail!";

                             }                 

                  }                  

          }

}

 

Account类:

继承自SoapHeader,以使用SoapHeader

Account.cs

using System;

using System.Web.Services.Protocols;

 

namespace TESTSOAP.WebService

{       

          public class Account:SoapHeader

          {

                    public string User;

                    public string PassWord;

 

                    public Boolean CheckAccount()

                    {

                             if(User=="Admin" && PassWord=="Admin")

                             {

                                       return true;

                             }

                             else

                             {

                                       return false;

                             }

                  }                  

          }

}

Soap Xml格式:

 

<?xml version="1.0" encoding="utf-8"?>

<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>

    <Account xmlns=" TESTWebService ">

      <User>string</User>

      <PassWord>string</PassWord>

    </Account>

  </soap:Header>

  <soap:Body>

    <GetGlobalEmpID xmlns=" TESTWebService ">

    </GetGlobalEmpID>

  </soap:Body>

用用户名和密码替换xml中的红色部分。

 

客户端调用的VB例子:

Public Function TESTSoap(byval strUser as string,byval strPassWord as string) As String

    Dim objHttp As MSXML2.XMLHTTP

    Dim strSoap As String

    Dim strUrl As String

    Dim xmlDoc As MSXML2.DOMDocument

   

    On Error GoTo ErrHandle

    Set objHttp = CreateObject("MSXML2.XMLHTTP")

    Set xmlDoc = CreateObject("MSXML2.DOMDocument")

   

    strUrl = "http://localhost/SoapCheck.asmx"

   

    strUser = Trim$(strUser)

   

    strPassWord = Trim$(strPassWord)

 

    '生成Soap XML

    strSoap = "<?xml version=""1.0"" encoding=""utf-8""?>"

    strSoap = strSoap & vbCrLf & "<soap:Envelope xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" "

    strSoap = strSoap & vbCrLf & "xmlns:xsd=""http://www.w3.org/2001/XMLSchema"" "

    strSoap = strSoap & vbCrLf & "xmlns:soap=""http://schemas.xmlsoap.org/soap/envelope/"">"

    strSoap = strSoap & vbCrLf & "<soap:Header>"

    strSoap = strSoap & vbCrLf & "<Account xmlns=TESTSOAP.WebService>"

    strSoap = strSoap & vbCrLf & "<strUser>" & strUser & "</strUser>"

    strSoap = strSoap & vbCrLf & "<strPassWord>" & strPassWord & "</strPassWord>"

    strSoap = strSoap & vbCrLf & "</Account>"

    strSoap = strSoap & vbCrLf & "</soap:Header>"

    strSoap = strSoap & vbCrLf & "<soap:Body>"

   

    strSoap = strSoap & vbCrLf & "<GetReturn xmlns=TESTSOAP.WebService>"

   

    strSoap = strSoap & vbCrLf & "</GetReturn>"

   

    strSoap = strSoap & vbCrLf & "</soap:Body>"

    strSoap = strSoap & vbCrLf & "</soap:Envelope>"

   

    objHttp.open "POST", strUrl, False

    objHttp.setRequestHeader "Content-Type", "text/xml;charset=utf-8"

    objHttp.setRequestHeader "Content-Length", Len(strSoap)

    objHttp.setRequestHeader "SOAPAction", strUrl & "GetReturn"

 

    objHttp.send strSoap

   

    xmlDoc.async = False

    xmlDoc.loadXML (objHttp.responseText)

   

    TESTSoap = xmlDoc.selectNodes("//soap:Envelope//soap:Body//SoapCheckResponse//GetReturnResult").Item(0).Text

   

    Exit Function

ErrHandle:

    TESTSoap = "Communicate With Web Services Error"

End Function

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值