String url = "some_url";
HttpClient httpClient = new HttpClient();
httpClient.start();
Map<String, Object> options = new HashMap<String, Object>();
LongPollingTransport transport = new LongPollingTransport(options, httpClient);
BayeuxClient client = new BayeuxClient(url, transport);
client.getChannel(Channel.META_HANDSHAKE).addListener(new ClientSessionChannel.MessageListener() {
public void onMessage(ClientSessionChannel channel, Message message) {
System.out.println(message);
}
});
client.handshake();
得到
{"failure":{"exception":"org.cometd.common.TransportException: {httpCode=403}","message":{"supportedConnectionTypes":["long-polling"],"channel":"/meta/handshake","id":"2","version":"1.0"},"httpCode":403,"connectionType":"long-polling"},"channel":"/meta/handshake","id":"2","subscription":null,"successful":false}
所以我的第一个猜测是添加授权标头。我怎样才能做到这一点? Jetty 9 用于服务器和客户端代码库。
请查看这个测试用例,它展示了如何做到这一点。
这是在 CometD 8 中如何在 JettyHttpClientTransport 中添加授权。从 CometD 5 开始,LongPollingTransport 被 JettyHttpClientTransport 取代
ClientTransport transport = new JettyHttpClientTransport(null, httpClient) {
@Override
protected void customize(Request request) {
String authorization = userName + ":" + password;
byte[] bytes = Base64.getEncoder().encode(authorization.getBytes(StandardCharsets.UTF_8));
String encoded = new String(bytes, StandardCharsets.UTF_8);
request.headers(headers -> headers.put("Authorization", "Basic " + encoded));
}
};
BayeuxClient client = new BayeuxClient(cometdURL, transport);