oracle.stellent.ridc.protocol.http.HttpProtocolException:Http status:需要HTTP / 1.1 401授权

时间:2017-04-11 13:34:44

标签: oracle-ucm

我在使用oracle UCM 10 g的RIDC代码ping服务器时遇到一些问题,我正在获得HTTP / 1.1 401 Authorization Required异常。

import java.util.logging.Level;
import java.util.logging.Logger;
import oracle.stellent.ridc.IdcClient;
import oracle.stellent.ridc.IdcClientException;
import oracle.stellent.ridc.IdcClientManager;
import oracle.stellent.ridc.IdcContext;
import oracle.stellent.ridc.model.DataBinder;
import oracle.stellent.ridc.protocol.ServiceResponse;

public class PingGuest {
IdcClientManager manager = new IdcClientManager();

IdcClient idcClient;

public PingGuest() throws IdcClientException {
    this.idcClient = manager.createClient("Server Address");
    idcClient.getConfig ().setProperty ("http.library", "apache4");
    IdcContext userPasswordContext = new IdcContext("user", "pass");
    DataBinder dataBinder = this.idcClient.createBinder ();
    dataBinder.putLocal ("IdcService", "PING_SERVER");
    ServiceResponse response = idcClient.sendRequest (userPasswordContext, dataBinder);
}
public static void main(String args[]){
    try {
        new PingGuest();
    } catch (IdcClientException ex) {
        Logger.getLogger(PingGuest.class.getName()).log(Level.SEVERE, null, ex);
    }
}
}

这是错误。

oracle.stellent.ridc.protocol.http.HttpProtocolException: Http status: HTTP/1.1 401 Authorization Required

感谢任何形式的帮助。

1 个答案:

答案 0 :(得分:0)

您已省略了服务器地址。我理解为什么你省略了它,但是那个错误可能会导致你看到的问题。如果您已阅读较新的文档,请记住它在旧版本中有所不同。