We were writing a custom auth prodider for our chat server http://www.igniterealtime.org/projects/openfire/index.jsp. We want the connection from clients to use a special token where using the Default Auth provider from its Admin console. Openfire provide a plugable authentication provider mechanism and provides one call HybridgAuthProvider http://www.igniterealtime.org/builds/openfire/docs/latest/documentation/javadoc/org/jivesoftware/openfire/auth/HybridAuthProvider.html. This auth provider allows us to chain up a [...]
Archive for January 31st, 2009
Careful using the Hybrid Auth Provider when writing a custom Openfire Auth Provider
Posted in Uncategorized, tagged Auth provider, ConnectionException, java, openfire on January 31, 2009 | Leave a Comment »
UIComponent Dictionary
Posted in Uncategorized, tagged actionscript 3, Components, flex on January 31, 2009 | Leave a Comment »
When you make a composite component that extends a existiong one such as Canvas. This component have a varity of VBox’s with HBox’s before you get to the data component. Now you want to access the them your code can get very smelly very quickly, cuz now you have to do a getChildByName(“”).getChaildByName(“).doSomthing. So I [...]