1. http://blog.csdn.net/sonken_0824/article/details/7359754  ubuntu 配置eclipse的tomcat插件

2. http://blog.csdn.net/b275518834/article/details/12445815     eclipse web插件安装

3.http://www.cnblogs.com/xwdreamer/   这家伙的各类资料都很多


下面来详细解析NTLM验证过程,仍然是七步过程:

  1. 用户登录时输入的user name、password和domain name,然后Client端计算password的hash值并保存在本地

  2. 客户端将user name的明文发送给DC

  3. DC生成一个16-byte的随机数,叫做challenge,传输给client

  4. client收到challenge以后,在复制一份拷贝,然后将其中一个challenge用password hash加密,这个叫做response,然后将challenge,response以及user name传送给server

  5. server端在收到client传送过来的三份内容以后将它们转发给DC

  6. DC在收到user name,response,challenge以后,根据user name在account database中找到其对应的password hash,然后用这个password hash加密challenge

  7. 最后一步是客户端将response跟加密后的challenge进行比较,如果相同则NTLM验证成功。