本文介绍了你如何保护网络服务?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有一个连接到WebService的Windows窗体应用程序。所有 方法调用都在SOAP标头中进行了身份验证。现在用户名 和密码是未加密发送的,这是不好的。我在想使用SSL的,但我对性能略感担忧。通过 的数据不是特别敏感,我们只是不希望未经授权的用户 访问网络服务。 For这种情况下,保护Web服务的最佳方法是什么? SSL?加密用户名/密码?其他。 谢谢。 David 解决方案 SSL是最简单的。除非您发送大量数据,否则您将不会发现任何差异并且很容易实现。 - Chad Z. Hower(又名Kudzu) - http://www.hower.org/Kudzu/ 编程是一种反击的艺术形式 博客: http://blogs.atozed.com/kudzu SSL是最简单的。除非您发送大量数据或高容量,否则您不会发现任何差异并且很容易实现。 - Chad Z. Hower(又名Kudzu) - http://www.hower.org/Kudzu/ 编程是一种反击的艺术形式 博客: http ://blogs.atozed.com/kudzu SSL会将其分成块,所以特别适合低音量,这样会很好。 我们在SSL上运行我们的主要网络服务之一没有任何麻烦。 - Chad Z. Hower(又名Kudzu) - http://www.hower.org/Kudzu/ 编程是一个反击的艺术形式 博客: http: //blogs.atozed.com/kudzu I have a Windows Forms application that connects to a WebService. All themethod calls have authentication in the SOAP header. Right now the usernameand password are being sent unencrypted, which is not good. I was thinkingof using SSL, but am slightly concerned about performance. The data beingpassed is not particularly sensitive, we just do not want unauthorized usersaccessing the web service. For this scenario, what is the best method of securing the web service?SSL? Encrypt the username/password? Other. Thanks. David 解决方案 SSL is the easiest. Unless you are sending large amounts of data, or highvolumes you wont notice any difference and its very easy to implement.--Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/"Programming is an art form that fights back" Blog: http://blogs.atozed.com/kudzu SSL is the easiest. Unless you are sending large amounts of data, or high volumes you wont notice any difference and its very easy to implement. -- Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/ "Programming is an art form that fights back" Blog: http://blogs.atozed.com/kudzu SSL will break it into chunks, so it will be fine especially for low volume.We run one of our major web services on SSL without any troubles.--Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/"Programming is an art form that fights back" Blog: http://blogs.atozed.com/kudzu 这篇关于你如何保护网络服务?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-25 01:11