```
0HTTP/1.1 401 Unauthorized
Connection: Keep-Alive
Date: Mon, 11 Sep 2017 09:37:51 GMT
Content-Length: 1468
Content-Type: text/html; charset=UTF-8
WWW-Authenticate: Basic realm="WebLogic Server"
X-Powered-By: Servlet/2.5 JSP/2.1
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
原因是,weblogic默认会对包含http basic认证头的请求进行验证(weblogic自己的验证),
也就是说,发给应用程序用的认证信息被weblogic拦截了。
要禁用weblogin的认证,可以编辑domain下的,
在security-configuration节点内,增加下面一句话。
<enforce-valid-basic-auth-credentials>false</enforce-valid-basic-auth-credentials>
查考:
/?=blog/article&uid=24648266&id=5732277