This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-10-05
Channels
- # announcements (19)
- # babashka (28)
- # beginners (62)
- # biff (3)
- # calva (19)
- # cider (24)
- # clj-kondo (8)
- # cljdoc (15)
- # clojure (32)
- # clojure-europe (16)
- # clojure-nl (1)
- # clojure-norway (17)
- # clojure-uk (8)
- # clojuredesign-podcast (26)
- # cursive (64)
- # datomic (43)
- # deps-new (1)
- # fulcro (4)
- # honeysql (1)
- # hyperfiddle (46)
- # kaocha (16)
- # lsp (15)
- # missionary (51)
- # music (1)
- # nbb (4)
- # off-topic (55)
- # pedestal (11)
- # podcasts-discuss (1)
- # polylith (7)
- # practicalli (1)
- # releases (4)
- # shadow-cljs (120)
- # tools-build (34)
- # vscode (1)
- # xtdb (2)
We're continuing to have trouble updating the SSL support for Tomcat; the API is quite different between 9 and 10 and this is a big distraction from all the more interesting things we'd like to be working on. Does anyone here have a goo d understanding of SSL support in Tomcat?
If anyone wants to try https://helidon.io/nima, the new loom webserver from oracle, we have a first draft of a pedestal adapter here: https://github.com/xledger/pedestal-helidon/ (This is just pasted and adapted from @mpenet’s https://github.com/mpenet/mina)

you should be able to make it way more minimal. :handler is wired via server options, which is just a multimethod. You could just create a :pedestal-handler mm that does what you need and not have to fork the whole project that way.
see https://github.com/mpenet/mina/blob/main/src/s_exp/mina/options.clj#L9 and https://github.com/mpenet/mina/blob/main/src/s_exp/mina/handler.clj#L23
Unforked a lot of it now: https://github.com/xledger/pedestal-helidon/commit/7f6e21043fc894e1021955e297d132b04742485b I left the modified request/context adapter, since I don't think there is a way to use the one from mina without loosing some of the nice perf stuff you added.