Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-users] How to access the HttpSender's HttpChannel?
  • From: "Test, Erik" <Erik.Test@xxxxxxxxxxx>
  • Date: Wed, 29 Jul 2020 18:20:33 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=tridium.com; dmarc=pass action=none header.from=tridium.com; dkim=pass header.d=tridium.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=fqbFSokwdMbbwJ7AOj5bLX0gvr+A6l/uUUoclM9YCRA=; b=E5oJJ/s43OBEszzo6+k1zXMFvsZTviO1cuIg5h5g9+ViOz3aD12FyJehuHuHvQYXtCBFeiSR8oYsN9ifBW83/BdmBAAo4V3RUdFcttsDbMns8OjF8bvoXVMp+7o2hIKL4DGC5wtCg+e3NMcYKbzF/6HMSxBqicJAf95GBipMD6kqieNmZ2EzZWIEG9q0bhky7PGaGtb0wYqLWsgTrv4FgGl2d6wF1TaF1sDb6W8x1OmliwqYnW1LiCVujOj9Qdl7iwDxiQKzizr3FPPs1VQBeinfN0CAabDoeLPz4R7jzjEaVGfOt5Uq/3WvCSEyR5c8De7PZVk79FZYOP4eRVboAw==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=ZhROy0fzz0L6FxJvACo3A228/EbbxVB7A3TrQ4dgW101XeWfblaCqA4vLmuqEN9tYWmYx7QMk1clVY2Q38hj/2PhfUJ6hiuw1mFps0NBskhLoGLZm+4RucqaFgG+FRr3zZXP1zDm2uHmTrNHPHWJ6ZtexJiDWP2V5MlvAL9bMGiiJ55k0CtfxXk36g9Y1b+Hbw3T0WO5bgsT6xYTcabNBSTK+uKa5a+yoti+DyQrBW/IegPAFU6vQHKiPuyvmqx78/qmrLMpqSFgowjH2kKstulTXgxiBL4El7hHIn+NId/5oTU+8OpLwSsHN3YPQVB1RxsGpW5ujK/1v9Ao7xTH6A==
  • Delivered-to: jetty-users@xxxxxxxxxxx
  • Dlp-product: dlpe-windows
  • Dlp-reaction: no-action
  • Dlp-version: 11.5.0.60
  • List-archive: <https://www.eclipse.org/mailman/private/jetty-users>
  • List-help: <mailto:jetty-users-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/jetty-users>, <mailto:jetty-users-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/jetty-users>, <mailto:jetty-users-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AdZl0xxiTcadv5HYS4GR9av9klLJSAAAc2yQ
  • Thread-topic: How to access the HttpSender's HttpChannel?

Hello!

 

I have a WebSocketClient that is failing because of an SSLException in the HttpSender. That’s expected.

 

I’d like to get access to the exception so I can propagate it up to the method that calls my code but I’m not seeing a way to get that exception. I’ve been going in circles in the Jetty code for a while now so I suspect I’m misunderstanding something. Is it possible to get exceptions on the HttpSender’s HttpChannel from the WebSocketClient?

 


Back to the top