Re: [Dev] [IS] Clarification Regarding the behavior of Multiple Local Account Associations via the Dashboard

2015-12-03 Thread Nadeesha Meegoda
Thanks for the clear explanation and prompt response Chamila and Hasanthi. On Fri, Dec 4, 2015 at 12:38 PM, Hasanthi Purnima Dissanayake < hasan...@wso2.com> wrote: > Hi Nadeesha, > > When you are associating 'Account A' and 'Account B' to 'Account admin', > you are logically associating all the

Re: [Dev] [DAS][SPARK] How to drop temporary tables from spark?

2015-12-03 Thread Amani Soysa
Hi Niranda, Thank you for your fast response. The reason I tried to drop table in spark is because I saw spark jira related to it [1]. Anyway thanks for the insight on spark. [1] - https://issues.apache.org/jira/browse/SPARK-5264 On Thu, Dec 3, 2015 at 7:22 PM, Niranda Perera

Re: [Dev] WSO2 Carbon Kernel 5.0.0 - Beta Released !!!

2015-12-03 Thread Sameera Jayasoma
On Fri, Dec 4, 2015 at 11:15 AM, Sameera Jayasoma wrote: > > WSO2 Carbon Kernel 5.0.0 - *Beta* Released ! > > We are pleased to announce the beta release of WSO2 Carbon Kernel 5.0.0. > It is now available to download from here >

Re: [Dev] [IS] Clarification Regarding the behavior of Multiple Local Account Associations via the Dashboard

2015-12-03 Thread Hasanthi Purnima Dissanayake
Hi Nadeesha, When you are associating 'Account A' and 'Account B' to 'Account admin', you are logically associating all the three accounts together. So when you switch to account A and if you view the association you will able to see 'Account admin' and 'Account B' are associated. So AFAIK this

Re: [Dev] [IS] Clarification Regarding the behavior of Multiple Local Account Associations via the Dashboard

2015-12-03 Thread Chamila Wijayarathna
Hi Nadeesha, Yes, this is the expected behavior. What account association really means is if you associate two accounts, both accounts belongs to same user or something similar. In your case where 3 accounts are associated, it's similar to one person owns all 3 accounts. So all 3 accounts will

[Dev] [IS] Clarification Regarding the behavior of Multiple Local Account Associations via the Dashboard

2015-12-03 Thread Nadeesha Meegoda
Hi all, What is the expected behavior when two or more accounts are associated to one account? For example Assume there is 3 Local Accounts as "Admin", "A" and "B" Login as "Admin" to dashboard and Associate Account "A" and Account "B", Now Switch Account to Account "A". Currently Account

Re: [Dev] UserStoreManager get Roles of a User Store

2015-12-03 Thread Isura Karunaratne
You can find an implementation from [1] [1] https://github.com/IsuraD/carbon-identity/blob/master/components/entitlement/org.wso2.carbon.identity.entitlement/src/main/java/org/wso2/carbon/identity/entitlement/pap/CarbonEntitlementDataFinder.java On Thu, Dec 3, 2015 at 4:35 PM, Kasun Dananjaya

[Dev] WSO2-Axis2 - 1.6.1-wso2v16 released !

2015-12-03 Thread Nipuni Perera
Hi devs, Please note $subject. org.apache.axis2 axis2 1.6.1-wso2v16 Thanks, Nipuni -- Nipuni Perera Software Engineer; WSO2 Inc.; http://wso2.com Email: nip...@wso2.com Git hub profile: https://github.com/nipuni Blog : http://nipunipererablog.blogspot.com/ Mobile: +94 (71) 5626680

[Dev] WSO2-Axiom - 1.2.11-wso2v10 released !

2015-12-03 Thread Nipuni Perera
Hi devs, Please note $subject. org.apache.ws.commons.axiom axiom 1.2.11-wso2v10 Thanks, Nipuni -- Nipuni Perera Software Engineer; WSO2 Inc.; http://wso2.com Email: nip...@wso2.com Git hub profile: https://github.com/nipuni Blog : http://nipunipererablog.blogspot.com/ Mobile: +94 (71) 5626680

Re: [Dev] UserStoreManager get Roles of a User Store

2015-12-03 Thread Kasun Dananjaya Delgolla
Thanks a lot :) On Thu, Dec 3, 2015 at 4:49 PM, Isura Karunaratne wrote: > You can find an implementation from [1] > > > [1] >

[Dev] [DAS][SPARK] How to drop temporary tables from spark?

2015-12-03 Thread Amani Soysa
Hi Niranda/Anjana, I wanted to change the schema of an existing temporary table in spark, however, when I change the schema when defining the table it did not work because the table already existed. So I tried to drop according to spark manual "DROP [TEMPORARY] TABLE [IF EXISTS] tbl_name" and

Re: [Dev] UserStoreManager get Roles of a User Store

2015-12-03 Thread Kasun Dananjaya Delgolla
Hi Isura, We found multiple implementations for this class. Which one should we use? Thanks On Thu, Dec 3, 2015 at 3:16 PM, Kasun Dananjaya Delgolla wrote: > Hi Isura, > > Thanks a lot. We will try with that. > > Thanks > > On Thu, Dec 3, 2015 at 2:25 PM, Isura Karunaratne

[Dev] Utility Method to Retrieve Services URL of a Server

2015-12-03 Thread Chamila Wijayarathna
Hi all, Is there any utility method to retrieve services URL (eg :- https://localhost:9443/services/ ) from java or jaggery? Thank You! -- *Chamila Dilshan Wijayarathna,* Software

[Dev] UserStoreManager get Roles of a User Store

2015-12-03 Thread Kasun Dananjaya Delgolla
Hi All, We have user creation module in our EMM front end jaggery app. There, we have a field which lists available user stores + another field which lists roles. When a particular user store is selected, we want the roles of that user store listed on the role selector. The problem is, we don't

Re: [Dev] UserStoreManager get Roles of a User Store

2015-12-03 Thread Isura Karunaratne
Hi Kasun, You can use following method in AbstractUserStoreManager to get the filtered role names. public final String[] getRoleNames(String filter, int maxItemLimit, boolean noInternalRoles, boolean noSystemRole, boolean noSharedRoles){ } Thanks Isura On

Re: [Dev] UserStoreManager get Roles of a User Store

2015-12-03 Thread Kasun Dananjaya Delgolla
Hi Isura, Thanks a lot. We will try with that. Thanks On Thu, Dec 3, 2015 at 2:25 PM, Isura Karunaratne wrote: > Hi Kasun, > > You can use following method in AbstractUserStoreManager to get the > filtered role names. > > public final String[] getRoleNames(String filter, int

Re: [Dev] [DAS][SPARK] How to drop temporary tables from spark?

2015-12-03 Thread Niranda Perera
Hi Amani, Please find my comments inline. On Thu, Dec 3, 2015 at 6:29 PM, Amani Soysa wrote: > Hi Niranda/Anjana, > > I wanted to change the schema of an existing temporary table in spark, > however, when I change the schema when defining the table it did not work > because the

[Dev] WSO2 developer Studio Kernel 4.0.0-Beta released.

2015-12-03 Thread Kavith Lokuhewage
We are pleased to announce the beta release of WSO2 developer Studio Kernel 4.0.0. P2 repository of WSO2 developer Studio kernel 4.0.0-Beta is available here . Source and Tag Location for this release is available

[Dev] carbon feature plugin 2.0.0 Beta Released!

2015-12-03 Thread Dinusha Boteju
*WSO2 Carbon Feature plugin 2.0.0 - Beta Released!* We are pleased to inform you that the carbon feature plugin 2.0.0 - beta is now available to use. Source for this release is available here. Documentation for WSO2 carbon

[Dev] [Puppet Modules] nodes.pp.sample File

2015-12-03 Thread Imesh Gunaratne
Hi Manula, Do you think we need this file in the root folder? https://github.com/wso2/puppet-modules/blob/master/nodes.pp.sample Thanks -- *Imesh Gunaratne* Senior Technical Lead WSO2 Inc: http://wso2.com T: +94 11 214 5345 M: +94 77 374 2057 W: http://imesh.gunaratne.org Lean . Enterprise .