Re: apollo admin interface over HTTPS

2014-01-24 Thread craig w
I've created an issue: https://issues.apache.org/jira/browse/APLO-347 thanks On Fri, Jan 24, 2014 at 10:03 AM, Hiram Chirino wrote: > Nope. That's a bit odd please raise a JIRA issue so we can track this > down. > > On Fri, Jan 24, 2014 at 7:03 AM, craig w wrote: >

apollo admin interface over HTTPS

2014-01-24 Thread craig w
I've setup Apollo 1.6 and I've enabled the web admin interface over http and https: http://0.0.0.0:8161"; /> https://0.0.0.0:8162"; /> If I access the interface over HTTP, I get the login form, which I fill-out and can then access the page. If I logout of the HTTP session, and then try access th

Re: Apply login module to certain channels

2013-05-29 Thread craig w
t; define which destination can be accessed by anonymous users/groups. > > > Regards > -- > Dejan Bosanac > -- > Red Hat, Inc. > FuseSource is now part of Red Hat > dbosa...@redhat.com > Twitter: @dejanb > Blog: http://sensatic.net > ActiveMQ in

Apply login module to certain channels

2013-05-28 Thread craig w
Is it possible to configure a login module such that it only affects certain destinations (topics/queues)? For some destinations I'd like to require username/password, some others I'd like to require client certificates. Meanwhile I have some other channels that don't need username/password auth o

Re: CertificateLoginModule -- access to destination being subscribed to?

2013-05-28 Thread craig w
c456". I think some sort of custom authorization is required ( http://activemq.apache.org/apollo/documentation/user-manual.html#Authorization) but I'm not sure the current capabilities are sufficient for my needs. Any ideas would be greatly appreciated. Thanks On Tue, May 28, 2

CertificateLoginModule -- access to destination being subscribed to?

2013-05-28 Thread craig w
When a client (websocket in particular) connects to Apollo using wss://, is there some way to tell which destination they're subscribing to (/topic/foo for example)? I need custom login logic that does some verification with a 3rd party service when a user tries to connect and subscribe to a certa

Re: Custom Login Module -- how to make Apollo use it?

2013-05-28 Thread craig w
Nevermind, my JAR didn't include the class files. Putting the JAR into $APOLLO_HOME/lib works just fine. On Tue, May 28, 2013 at 5:36 AM, craig w wrote: > I'm working on creating a custom login module for Apollo and I'm wondering > how to actually use it. > > So

Custom Login Module -- how to make Apollo use it?

2013-05-28 Thread craig w
I'm working on creating a custom login module for Apollo and I'm wondering how to actually use it. So far I've created a JAR that contains a class, we'll say, MyLoginModule which extends the CertificateLoginModule provided by Apollo. Currently, I'm overriding the "login" method to just do some Sys