Any quickstart example for User Management?
- Login or register to post comments
- Printer friendly version
- 142 reads

WSO2 Mercury is a WS-ReliableMessaging specification implementation that uses Apache Axis2/Java as the SOAP engine.

WSO2 Identity Solution is a set of Relying Party components and an Identity Provider to enable CardSpace and OpenID authentication.

WSO2 WSF/Spring integrates Apache Axis2 into Spring and provides a Code First approach to create Web Services for the Spring user.

WSO2 WSAS is an enterprise ready Web services engine powered by Apache Axis2. It is a lightweight, high performing platform for SOA

WSO2 WSF C++, a binding of WSO2 WSF/C into C++ is an extension for consuming Web Services in C++.

WSO2 User Manager is a library enabling user authentication and authorization in applications to be handled in a homogeneous manner.

WSO2 WSF/C is a framework based on Apache Axis2/C, Rampart/C and Sandesha2/C for providing and consuming Web services in C.

WSO2 WSF/Ruby, a binding of WSO2 WSF/C into Ruby is an extension for consuming Web Services in Ruby.

WSO2 WSF/Perl, a binding of WSO2 WSF/C into Perl is a Perl extension for consuming Web Services in Perl.
Realm realm = new
Realm realm = new XYZRealm(); XYZRealmConfig config = (XYZRealmConfig) realm .getRealmConfiguration(); /*Call setter methods on the configuration object*/ config.set....... config.set....... realm.init(config); // now you can get Authenticator, UserStoreAdmin, UserStoreReader, Authorizor and AuthorizationAdmin from the realm */ realm.getAuthenticator().authenticate("anne", "annepass");The above code is from the documentation provided in the distribution.
Thank you