关于Web Service安全

javarong 2004-12-08 10:07:52
大家来讨论一下,如何实现Web Service的安全访问,包括身份认证,授权,隐私等。
...全文
775 21 打赏 收藏 转发到动态 举报
写回复
用AI写文章
21 条回复
切换为时间正序
请发表友善的回复…
发表回复
singlepine 2005-08-13
  • 打赏
  • 举报
回复
http://www.microsoft.com/china/msdn/library/architecture/architecture/architecturetopic/BuildSucApp/BSAAsecmod10.mspx
http://www-128.ibm.com/developerworks/cn/webservices/ws-best11/
http://www.infosecurity.org.cn/article/xmlsec/xmlsec/23772.html
newnan 2005-04-19
  • 打赏
  • 举报
回复
mark
zhouzh197895 2004-12-30
  • 打赏
  • 举报
回复
要想安全可以對soap加密傳送啊。
qozms 2004-12-29
  • 打赏
  • 举报
回复
我也碰到这个问题,很恼火
风轻扬 2004-12-19
  • 打赏
  • 举报
回复
到微软网站下载最新的Web Service Enhancement 2.0 sp2,安装看看文档就能搞懂了,文档写的很详细,而且英文很简单,是目前最好的WSE的参考资料了,正在研究中。
YAOHE 2004-12-17
  • 打赏
  • 举报
回复
用头信息,或是限制IP,我现在就是这么做的!
yaoge 2004-12-17
  • 打赏
  • 举报
回复
iss
JerryYoungx 2004-12-16
  • 打赏
  • 举报
回复
时刻关注Web Services的加密!
1zhk 2004-12-16
  • 打赏
  • 举报
回复
wse2.0设置X509认证
bootblack 2004-12-16
  • 打赏
  • 举报
回复
mark
rustical 2004-12-12
  • 打赏
  • 举报
回复
学习,顶!
叶子哟 2004-12-12
  • 打赏
  • 举报
回复
没有什么好的认证办法!
可以用加密参数的方法来做,用双方认可以的一种加密串,如md5串等,根据双方预先约定的密钥
或是用每次均需传入用户名或密码的方法
也可以限定IP等方式
tongcheng 2004-12-12
  • 打赏
  • 举报
回复
mark
nga96 2004-12-12
  • 打赏
  • 举报
回复
对,就是用SOAP协议来开发的
_goto 2004-12-11
  • 打赏
  • 举报
回复
使用 WSE2.0, 结合证书服务。
在Internet环境,好像没办法使用window帐号认证,只能使用证书服务。SoapHeader 也不安全。
李天平 2004-12-11
  • 打赏
  • 举报
回复
使用SoapHeader传递Web Serivices自定义的身份验证数据
在调用Web Serivices时,往往需要身份验证,使得通过验证的用户才能调用你Web Serivices中的方法.当然你可以通过将参数添加到每个需要自定义身份验证方案的Web services方法中去,这需要花费很大的精力.IssueVision 中使用了非常常用而且有效便捷的方法-----使用SoapHeader来实现自定义身份验证数据的传递.
SoapHeader提供了一种方法,用于将数据传递到Web services方法或从Web services方法传递数据,条件是该数据不直接与Web services 方法的主功能相关. 你不用将参数添加到每个需要自定义身份验证方案的Web services 方法,而可以将引用从 SoapHeader 派生的类的 SoapHeaderAttribute 应用于每个Web services 方法。从 SoapHeader 派生的类的实现处理该自定义身份验证方案. IssueVision 就是利用SoapHeader的这种能力来实现自定义身份验证数据传递的.

我们来看一下如何利用SoapHeader来传递数据.

1. 首先需要在服务中定义一个从 SOAPHeader 派生的类,表示传入 SOAP 标头的数据.
IssueVision 在中IssueVisionWeb项目(此项目用于发布Web Services)中通过创建CredentialSoapHeader类来实现第一步.

CredentialSoapHeader.cs

using System.Web.Services.Protocols;

namespace IssueVision.Web
{
public class CredentialSoapHeader : SoapHeader
{
private string m_username;
private string m_password;

public string Username
{
get{ return m_username;}

set{ m_username = value;}
}

public string Password
{
get{ return m_password;}

set{ m_password = value;}
}
}
}





















2. 将服务的公共字段声明为该类型,使该SoapHeader在Web Services的公共合同中公开,并在创建代理时可由客户端使用.

IssueVision的Web Services----IssueVisionServices.asmx如此实现.

IssueVisionServices.asmx代码片断:

public class IssueVisionServices : WebService
{
...
private CredentialSoapHeader m_credentials;

// custom SOAP header to pass credentials
public CredentialSoapHeader Credentials
{
get { return m_credentials; }
set { m_credentials = value; }
}
.......
}

3. 在Web Services使用 SoapHeader 自定义属性定义一组关联的标头,服务中的每个 WebMethod 都可以使用.(默认情况下,标头是必需的,但也可以定义可选标头)

IssueVisionServices.asmx代码片断:

....
[WebMethod(Description="Returns the lookup tables for IssueVision.")]
[SoapHeader("Credentials")]
public IVDataSet GetLookupTables()
{
SecurityHelper.VerifyCredentials(this);
return new IVData().GetLookupTables();
}

SecurityHelper类的VerifyCredentials方法用来从Web Services中的SoapHeader类来得到自定义身份验证凭据(如用户名和密码).

SecurityHelper.cs代码片断如下:

// verifies the clients credentials
public static void VerifyCredentials(IssueVisionServices service)
{
if (service.Credentials == null || service.Credentials.Username == null || service.Credentials.Password == null ) //如果没有认证信息,返回SoapException,这样就不能匿名调用Web Method了
{
EventLogHelper.LogFailureAudit("A login was attempted with missing credential information.");
throw new SoapException(string.Empty, SoapException.ClientFaultCode, "Security");
}

string password = Authenticate(service.Credentials);
}

// authenticates a user's credentials passed in a custom SOAP header
private static string Authenticate( CredentialSoapHeader header)
{
DataSet dataSet = new DataSet();
string dbPasswordHash;

try
{
SqlConnection conn = new SqlConnection(Common.ConnectionString);
SqlCommand cmd = new SqlCommand("GetUser", conn);
cmd.Parameters.Add("@UserName", header.Username);
cmd.CommandType = CommandType.StoredProcedure;
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.Fill(dataSet);
}
catch (Exception ex)
{
EventLogHelper.LogFailureAudit(string.Format("The GetUser stored procedure encounted a problem: {0}", ex.ToString()));
throw new SoapException(string.Empty, SoapException.ServerFaultCode, "Database");
}

// does the user exist?
if (dataSet.Tables[0].Rows.Count == 0)
{
EventLogHelper.LogFailureAudit(string.Format("The username {0} does not exist.", header.Username));
throw new SoapException(string.Empty, SoapException.ClientFaultCode, "Security");
}
else
{
// we found the user, verify the password hash by compare the Salt + PasswordHash
DataRow dataRow = dataSet.Tables[0].Rows[0];
dbPasswordHash = (string)dataRow["PasswordHash"];
string dbPasswordSalt = (string)dataRow["PasswordSalt"];

// create a hash based on the user's salt and the input password
string passwordHash = HashString(dbPasswordSalt + header.Password);

// does the computed hash match the database hash?
if (string.Compare(dbPasswordHash, passwordHash) != 0)
{
EventLogHelper.LogFailureAudit(string.Format("The password for the username {0} was incorrect.", header.Username));
throw new SoapException(string.Empty, SoapException.ClientFaultCode, "Security");
}
}

return dbPasswordHash;
}

4. 最后客户端在调用要求标头的方法之前,需直接在代理类上设置标头.
IssueVision 的SmartClient端的WebServicesLayer类来调用此Web Services

WebServicesLayer.cs程序片断如下:

private static IssueVisionServices GetWebServiceReference(string username, string password)
{
IssueVisionServices dataService = new IssueVisionServices();

CredentialSoapHeader header = new CredentialSoapHeader();
header.Username = username;
header.Password = password;
dataService.CredentialSoapHeaderValue = header;

InitWebServiceProxy(dataService);
return dataService;
}

通过以上步骤就可以完成Web Services自定义身份验证了.IssueVision中还有很多相关的操作,因为在这里只是讨论一下SoapHeader的用法,就不在列举了.


nealbzdn 2004-12-11
  • 打赏
  • 举报
回复
http://blog.csdn.net/nealbzdn/archive/2004/12/04/204488.aspx
rottenapple 2004-12-10
  • 打赏
  • 举报
回复
WSE
Tomgus 2004-12-08
  • 打赏
  • 举报
回复
http://dev.csdn.net/develop/article/43/43345.shtm
http://dev.csdn.net/develop/article/54/54503.shtm
Tomgus 2004-12-08
  • 打赏
  • 举报
回复
http://www.microsoft.com/china/msdn/library/architecture/architecture/architecturetopic/BuildSucApp/BSAAsecmod10.mspx
加载更多回复(1)

12,162

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 Web Services
社区管理员
  • Web Services社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧