It looks to me like everything is working ok apart from the socket.ioconnection.
>From looking at WebClient.java:232, it looks like the websocket connection is to ws://..., which is for http, rather than wss://, which is for https. If you change: ... return "ws" + ... to ... return "wss" + ... does that make a difference? If that works, we can make the client configurable for https. Tad Glines can probably give a more educated answer on how to get this working. -Dave On Wed, Mar 30, 2011 at 5:16 AM, Scott Mitchell <smadirond...@gmail.com>wrote: > I set up wiab behind apache2 (www.familywave.org). It worked fine (online > and federating) until I tried to get https to work. I'm able to login but > do > I need to do something with jetty to get this to work? I tried the > following > with no success: > > Configuring Apache mod_proxy with > Jetty<http://docs.codehaus.org/display/JETTY/Configuring+mod_proxy>. > I subclass SelectChannelConnector and override customize as it says but > with not luck. Does anyone know what I'm missing? > > Thanks, > > Scott >
