Re: [Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP?

2016-10-11 Thread Godwin Shrimal
Hi Wenxing, I can't find the tables called UM_*GROUP *and UM_USER_*GROUP *in the wso2as-5.3.0, can you point me exactly where do you refer those tables ? Thanks Godwin On Tue, Oct 11, 2016 at 5:03 PM, wenxzhen wrote: > Hi Godwin, > > For the 2 APIs below, I think it's

Re: [Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP?

2016-10-11 Thread wenxzhen
Sorry. For the Group tables, I can find the UM_GROUP definition in the sql files from AS 5.3.0. Is there anything wrong? -- Original -- From: "wenxzhen";; Date: Oct 11, 2016 To: "Godwin Shrimal"; Cc:

[Dev] Clarification regarding carbon-appmgt permissions

2016-10-11 Thread Megala Uthayakumar
Hi All, I am working on a jira regarding adding app-store related permissions to EMM console [1]. In EMM we use app-store for installing and handling mobile apps. So I thought of adding the permissions that are only related with mobile-apps. But in carbon-appmgt, when the user logins, it checks

Re: [Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP?

2016-10-11 Thread Lakshani Gamage
Hi Wenxzhen, Could you please tell us from which sql file you found UM_GROUP definition? I couldn't find it anywhere in AS 5.3.0. Thanks, Lakshani. On Tue, Oct 11, 2016 at 5:45 PM, wenxzhen wrote: > > Sorry. For the Group tables, I can find the UM_GROUP definition in the

Re: [Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP?

2016-10-11 Thread Godwin Shrimal
Pls check the database model in /dbscripts/mysql.sql and you find the source for JDBCUserStoreManager in https://github.com/wso2/carbon-kernel/blob/4.4.x/core/org.wso2.carbon.user.core/src/main/java/org/wso2/carbon/user/core/jdbc/JDBCUserStoreManager.java Thanks Godwin On Tue, Oct 11, 2016 at

Re: [Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP?

2016-10-11 Thread wenxzhen
Hi Godwin, OK, I see. If I wanna use the Group tables, what's the best way to do the support? Thanks for the support. Regards, Wenxing -- Original -- From: "Godwin Shrimal";; Send time: Tuesday, Oct 11, 2016 8:34 PM To:

Re: [Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP?

2016-10-11 Thread wenxzhen
Hi Godwin, For the 2 APIs below, I think it's for the Roles, but not the Groups. There are tables for UM_GROUP and UM_ROLE. I think there are different Thanks, Wenxing -- Original -- From: "Godwin Shrimal";; Send time: Tuesday, Oct 11,

Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Mushthaq Rumy
Congrats Madawa :) On Tue, Oct 11, 2016 at 2:25 PM, Sameera Gunarathne wrote: > Congrats madawa !! :) > > On Tue, Oct 11, 2016 at 1:31 PM, Lahiru J Ekanayake > wrote: > >> Congrats Madawa :) >> >> On Tue, Oct 11, 2016 at 1:28 PM, Eranda Rajapakshe

Re: [Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP?

2016-10-11 Thread Godwin Shrimal
Hi wenxing, You can use https://localhost:9443/services/UserAdmin?wsdl for this and see below for operation information. Get groups : getAllRolesNames Get User groups : getRolesOfUsers Let us know if you need further information on this. Thanks Godwin On Tue, Oct 11, 2016 at 3:40 PM,

Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Kasun Thennakoon
Congrats Madawa! On Tue, Oct 11, 2016 at 12:04 PM, Chandana Napagoda wrote: > Hi Devs, > > It is my pleasure to welcome Madawa Soysa as a WSO2 Committer. Madawa has > made some great contributions to WSO2 Governance Registry and WSO2 > Enterprise Store products during the

Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Sameera Medagammaddegedara
Congrats Madawa! On Tue, Oct 11, 2016 at 4:01 PM, Mushthaq Rumy wrote: > Congrats Madawa :) > > On Tue, Oct 11, 2016 at 2:25 PM, Sameera Gunarathne > wrote: > >> Congrats madawa !! :) >> >> On Tue, Oct 11, 2016 at 1:31 PM, Lahiru J Ekanayake

Re: [Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP?

2016-10-11 Thread wenxzhen
I got it from product-as\modules\distribution\src\resources\sql\mysql.sql. By the way, I can't find the source codes for the org.wso2.carbon.user.core.jdbc.JDBCUserStoreManager either? -- Original -- From: "Godwin Shrimal";; Send time:

[Dev] Error in sending a notification through Email Publisher; Unknown SMTP host: smtp.gmail.com

2016-10-11 Thread Aneela Safdar
Hi, I am trying to send notification using Email adapter of Event Publisher. This is my output-event-adapter.xml's Email configurations             safdar.anee...@gmail.com     Aneela Safdar     */property>     smtp.gmail.com     587     true     true

Re: [Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP?

2016-10-11 Thread wenxzhen
Dear experts, Please advice as it's really important to our implementation. Thanks, Wenxing -- Original -- From: "wenxzhen";; Date: Oct 11, 2016 To: "wenxzhen"; "dev"; Subject: Re:[Dev] Where can

Re: [Dev] Error in sending a notification through Email Publisher; Unknown SMTP host: smtp.gmail.com

2016-10-11 Thread Lakshman Udayakantha
One of answers of this question[1] might solve your question. [1] http://stackoverflow.com/questions/10085856/java-mail-exception-error Thanks On Tue, Oct 11, 2016 at 3:28 PM, Aneela Safdar wrote: > Hi, > > I am trying to send notification using Email adapter of Event

Re: [Dev] Clarification regarding carbon-appmgt permissions

2016-10-11 Thread Dinusha Senanayaka
Hi Megala, Ideally there should be a permission called Mobile App/Subscribe, but currently it has only Web App/Subscribe. This is something we should improve later. Regards, Dinusha. On Tue, Oct 11, 2016 at 9:23 PM, Megala Uthayakumar wrote: > Hi All, > > I am working on a

Re: [Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP?

2016-10-11 Thread wenxzhen
Hi Lakshani and Godwin, Sorry for the carelessness, those tables were added by our colleagues year ago. Please ignore my words. Thanks, Wenxing -- Original -- From: "Lakshani Gamage";; Send time: Wednesday, Oct 12, 2016 0:08 AM To:

Re: [Dev] Clarification regarding carbon-appmgt permissions

2016-10-11 Thread Dinusha Senanayaka
On Wed, Oct 12, 2016 at 9:02 AM, Megala Uthayakumar wrote: > Hi Dinusha, > > Thanks for the response. For the time being, we will include the webapp > related permissions as well in the EMM console. > +1. Please create a JIRA as improvement to track this. > > Thanks. > >

Re: [Dev] Clarification regarding carbon-appmgt permissions

2016-10-11 Thread Megala Uthayakumar
Create a jira [1] to track this. [1] https://wso2.org/jira/browse/CAPPMGT-2 Thanks. On Wed, Oct 12, 2016 at 9:29 AM, Dinusha Senanayaka wrote: > > > On Wed, Oct 12, 2016 at 9:02 AM, Megala Uthayakumar > wrote: > >> Hi Dinusha, >> >> Thanks for the response.

Re: [Dev] Clarification regarding carbon-appmgt permissions

2016-10-11 Thread Megala Uthayakumar
Hi Dinusha, Thanks for the response. For the time being, we will include the webapp related permissions as well in the EMM console. Thanks. Regards, Megala On Wed, Oct 12, 2016 at 6:42 AM, Dinusha Senanayaka wrote: > Hi Megala, > > Ideally there should be a permission

Re: [Dev] Latency in Deployment Synchronizer

2016-10-11 Thread Fathima Dilhasha
Hi All, I had a chat with KasunG and following are the facts I got to know which explains the latency I was experiencing. 1. There is a scheduled task which is running in the DepSync enabled manager nodes to commit new artifacts. (The *DeploymentUpdateInterval* in carbon.xml defines how

Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Prakhash Sivakumar
Congratz Madawa.. ! :D On Tue, Oct 11, 2016 at 12:09 PM, Sabra Ossen wrote: > Congratz Madawa.. !!! :D > > On Tue, Oct 11, 2016 at 12:07 PM, Nisala Nanayakkara > wrote: > >> Congratz Madawa ! :D >> >> On Tue, Oct 11, 2016 at 12:04 PM, Chandana Napagoda

Re: [Dev] WSO2 Committers += Eranda Rajapaksha

2016-10-11 Thread Heshitha Hettihewa
Congratz Eranda.!!! :) On Tue, Oct 11, 2016 at 12:18 PM, Rajith Vitharana wrote: > Congratz Eranda ... :) :) > > On 10 October 2016 at 18:14, Senduran Balasubramaniyam > wrote: > >> Congratulations Eranda !! >> >> On Mon, Oct 10, 2016 at 6:11 PM,

Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Sabra Ossen
Congratz Madawa.. !!! :D On Tue, Oct 11, 2016 at 12:07 PM, Nisala Nanayakkara wrote: > Congratz Madawa ! :D > > On Tue, Oct 11, 2016 at 12:04 PM, Chandana Napagoda > wrote: > >> Hi Devs, >> >> It is my pleasure to welcome Madawa Soysa as a WSO2 Committer.

[Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Chandana Napagoda
Hi Devs, It is my pleasure to welcome Madawa Soysa as a WSO2 Committer. Madawa has made some great contributions to WSO2 Governance Registry and WSO2 Enterprise Store products during the last few months and in recognition of his commitment and contributions, he has been voted as a Committer for

Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Chanaka Cooray
Congratz Madawa !!! On Tue, Oct 11, 2016 at 12:12 PM, Prakhash Sivakumar wrote: > Congratz Madawa.. ! :D > > On Tue, Oct 11, 2016 at 12:09 PM, Sabra Ossen wrote: > >> Congratz Madawa.. !!! :D >> >> On Tue, Oct 11, 2016 at 12:07 PM, Nisala Nanayakkara

Re: [Dev] WSO2 Committers += Eranda Rajapaksha

2016-10-11 Thread Fathima Dilhasha
Congratz Eranda!! :) On Mon, Oct 10, 2016 at 6:36 PM, Dilshani Subasinghe wrote: > Congrats Eranda :) > > On Mon, Oct 10, 2016 at 6:24 PM, Chanaka Cooray wrote: > >> Congratz Eranda !!! >> >> On Mon, Oct 10, 2016 at 6:14 PM, Senduran Balasubramaniyam < >>

Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Fathima Dilhasha
Congratz Madawa!! :) On Tue, Oct 11, 2016 at 12:14 PM, Chanaka Cooray wrote: > Congratz Madawa !!! > > On Tue, Oct 11, 2016 at 12:12 PM, Prakhash Sivakumar > wrote: > >> Congratz Madawa.. ! :D >> >> On Tue, Oct 11, 2016 at 12:09 PM, Sabra Ossen

Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Nisala Nanayakkara
Congratz Madawa ! :D On Tue, Oct 11, 2016 at 12:04 PM, Chandana Napagoda wrote: > Hi Devs, > > It is my pleasure to welcome Madawa Soysa as a WSO2 Committer. Madawa has > made some great contributions to WSO2 Governance Registry and WSO2 > Enterprise Store products during the

Re: [Dev] WSO2 Committers += Eranda Rajapaksha

2016-10-11 Thread Rajith Vitharana
Congratz Eranda ... :) :) On 10 October 2016 at 18:14, Senduran Balasubramaniyam wrote: > Congratulations Eranda !! > > On Mon, Oct 10, 2016 at 6:11 PM, Nadeeshaan Gunasinghe < > nadeesh...@wso2.com> wrote: > >> Congrats Eranda !! >> >> >> *Nadeeshaan Gunasinghe* >> Software

Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Malintha Fernando
Congrats Madawa! :) On Tue, Oct 11, 2016 at 12:15 PM, Fathima Dilhasha wrote: > Congratz Madawa!! :) > > On Tue, Oct 11, 2016 at 12:14 PM, Chanaka Cooray > wrote: > >> Congratz Madawa !!! >> >> On Tue, Oct 11, 2016 at 12:12 PM, Prakhash Sivakumar

Re: [Dev] WSO2 Committers += Eranda Rajapaksha

2016-10-11 Thread Sabra Ossen
Congratz Eranda :D On Tue, Oct 11, 2016 at 12:21 PM, Heshitha Hettihewa wrote: > Congratz Eranda.!!! :) > > On Tue, Oct 11, 2016 at 12:18 PM, Rajith Vitharana > wrote: > >> Congratz Eranda ... :) :) >> >> On 10 October 2016 at 18:14, Senduran

[Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP?

2016-10-11 Thread wenxzhen
Dear all, From the database model shipped with AS 5.3.0, I can see that a User can be in a Group. How about the APIs? where can I find it and where it's the source codes? Please advice. Thanks, Wenxing___ Dev mailing list Dev@wso2.org

Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Eranda Rajapakshe
Congrats Madawa!! :) On Tue, Oct 11, 2016 at 12:52 PM, Malintha Fernando wrote: > Congrats Madawa! :) > > On Tue, Oct 11, 2016 at 12:15 PM, Fathima Dilhasha > wrote: > >> Congratz Madawa!! :) >> >> On Tue, Oct 11, 2016 at 12:14 PM, Chanaka Cooray

Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Lahiru J Ekanayake
Congrats Madawa :) On Tue, Oct 11, 2016 at 1:28 PM, Eranda Rajapakshe wrote: > Congrats Madawa!! :) > > On Tue, Oct 11, 2016 at 12:52 PM, Malintha Fernando > wrote: > >> Congrats Madawa! :) >> >> On Tue, Oct 11, 2016 at 12:15 PM, Fathima Dilhasha

Re: [Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP?

2016-10-11 Thread wenxzhen
Appreciated if anyone can advice. -- Original -- From: "wenxzhen";; Date: Oct 11, 2016 To: "dev"; Subject: [Dev] Where can I find the APIs for UM_GROUP/UM_USER_GROUP? Dear all, From the database model shipped with AS

Re: [Dev] WSO2 Committers += Madawa Soysa

2016-10-11 Thread Sameera Gunarathne
Congrats madawa !! :) On Tue, Oct 11, 2016 at 1:31 PM, Lahiru J Ekanayake wrote: > Congrats Madawa :) > > On Tue, Oct 11, 2016 at 1:28 PM, Eranda Rajapakshe > wrote: > >> Congrats Madawa!! :) >> >> On Tue, Oct 11, 2016 at 12:52 PM, Malintha Fernando

[Dev] WSO2 Identity Server 5.3.0 Milestone 5 Released..!!

2016-10-11 Thread Pulasthi Mahawithana
The WSO2 Identity Server team is pleased to announce the 5th Milestone of WSO2 Identity Server 5.3.0. You can download this distribution from following locations Runtime : https://github.com/wso2/product-is/releases/tag/v5.3.0-m5 Analytics :