2

我想通过 http 适配器调用休息服务。我向其余服务的 url 发出获取请求,但它位于受密码保护的域中。(如果我尝试从浏览器访问 url,它会弹出一个输入用户名和密码的窗口。)如何将这些凭据与我的 get 请求一起传递?在此之前我必须提出一个帖子请求吗?

4

1 回答 1

3

使用 HTTP 适配器的元素。

<authentication>
  <basic/>
    <serverIdentity>
      <username> ${user} </username>
      <password> ${password} </password>
   </serverIdentity>
</authentication>  

它将在访问服务 url 时传递网络凭据。

于 2014-06-09T15:44:37.487 回答