Re: [Dev] Bulk deleting files with a pattern in file connector

2016-10-17 Thread Vivekananthan Sivanayagam
Hi , It is released and published in the store[1] and updated the doc [2] also. [1] https://store.wso2.com/store/assets/esbconnector/details/48bab332-c6a6-4f5a-9b79-17e29c7ad4c6 [2]

Re: [Dev] Email Notification under a proxy server

2016-10-17 Thread Tishan Dahanayakage
Hi Aneela, I briefly went thorough the code before answering. This[1] is the line where we populate the properties and then later we use that properties to create a new session. I did not debug but it looks like we are setting everything coming from the configuration. Can you please remote debug

Re: [Dev] [IS] C5 Support for filtering

2016-10-17 Thread Johann Nallathamby
On Tue, Oct 18, 2016 at 10:05 AM, Vindula Jayawardana wrote: > Hi All, > > With the current user core implementation we support only the equal filter > (e.g. userName Eq "john"). However SCIM 2.0 specification [1] specify total > of 10 such simple filters and complex filters

[Dev] [Siddhi] [Markov Models Extension] What is the stored location of trained Markov matrices?

2016-10-17 Thread Bhashinee Nirmali
Hi All, I'm trying the Markov Models Extension of WSO2 CEP. I need to know the location where the newly built matrices are stored in. And do I need to built the matrix again after shutting down the CEP or is the created matrix still there in the memory? Thanks Undergraduate Faculty of

[Dev] [IS] C5 Support for filtering

2016-10-17 Thread Vindula Jayawardana
Hi All, With the current user core implementation we support only the equal filter (e.g. userName Eq "john"). However SCIM 2.0 specification [1] specify total of 10 such simple filters and complex filters which are combinations of simple filters using logical and grouping operators (e.g. userType

Re: [Dev] hi,abimaran,help me for this.

2016-10-17 Thread Rukshan Premathunga
Hi Christ, seems you have offset DAS by 10007. So can you check whether provided URL are accessible from the APIM node. Also can you confirm you have deploy the Capp in the DAS_HOME/repository/deployment/server/carbonapps directory. If cApp is is placed correctly, please login to the DAS

Re: [Dev] [AS 5.3.0]How to delete a Tenant?

2016-10-17 Thread wenxzhen
Before deleting a Tenant, the Tenant will be disabled or inactivated. If a Tenant is already in INACTIVE, deleting a TENANT will be still in problem? Thanks, Wenxing -- Original -- From: "Danushka Fernando";; Send time: Tuesday, Oct 18,

Re: [Dev] Bulk deleting files with a pattern in file connector

2016-10-17 Thread Malaka Silva
IMO we may not require that at the moment. Will proceed with the one level for the moment. On Mon, Oct 17, 2016 at 11:09 PM, Shazni Nazeer wrote: > HI Vivekanandan, > > I implemented this intentionally and had the same concern whether it > should be recursive. I thought it

Re: [Dev] [AS 5.3.0]How to delete a Tenant?

2016-10-17 Thread Danushka Fernando
Thing is when you delete a tenant, there are lot of things to delete. Starting from DB entries for tenant and userstore, registry data, artifacts, etc. Because if you are truly deleting a tenant then it should be possible to create a tenant with same domain name and also not to contain something

Re: [Dev] [AS 5.3.0]How to delete a Tenant?

2016-10-17 Thread wenxzhen
The problem is that we will have many "old" tenants and it's not convenient when we are doing verification during the development. What's the stopper to delete a Tenant? Can we do the delete with SQL statement "DELETE on CASCADE"? Thanks, Wenxing -- Original

Re: [Dev] [AS 5.3.0]How to delete a Tenant?

2016-10-17 Thread Thusitha Thilina Dayaratne
Hi Wenxing, There is no out of the box way to delete a tenant. But you can deactivate the unwanted tenants. Thanks Thusitha On Tue, Oct 18, 2016 at 6:56 AM, wenxzhen wrote: > Dear all, > > I searched the archive mail list, but can't find the answer. Please help > to

[Dev] [AS 5.3.0]How to delete a Tenant?

2016-10-17 Thread wenxzhen
Dear all, I searched the archive mail list, but can't find the answer. Please help to advice whether it's possible to delete a Tenant? and How? Thank you very much, Regards, Wenxing___ Dev mailing list Dev@wso2.org

[Dev] No SCM URL was provided to perform the release Issue when releasing carbon-device-mgt-plugins

2016-10-17 Thread Kamidu Punchihewa
Hi All, I am getting this issue while releasing the "carbon-device-mgt-plugins". I have tried releasing few time with different repository locations and after getting a new session also. Still getting this error. As given below the SCM URL is available on the pom file.

Re: [Dev] Bulk deleting files with a pattern in file connector

2016-10-17 Thread Shazni Nazeer
HI Vivekanandan, I implemented this intentionally and had the same concern whether it should be recursive. I thought it should not be. But if we need recursive delete IMO it should only be optional, meaning that it shouldn't be the default. May be we can include it as another parameter with

Re: [Dev] Bulk deleting files with a pattern in file connector

2016-10-17 Thread Vivekananthan Sivanayagam
Hi Malaka, I have tested and it deletes given pattern files only inside the given folder not the files inside the subfolder. If folder structure is below as described, Folder Folder001 test_001.txt test_002.txt Folder002 Folder002.1 test_0021.txt

Re: [Dev] WSO2 Committers += Anupama Pathirage

2016-10-17 Thread Anupama Pathirage
Hi, Thanks a lot Malli... :) And also thanks a lot for all the support you have given during the past period. It helped me a lot :) On Mon, Oct 17, 2016 at 3:33 AM, Rajith Vitharana wrote: > Congrats akke :) :) > > On 17 October 2016 at 14:01, Dilshani Subasinghe

Re: [Dev] Dynamic zip file download from Jaggery application

2016-10-17 Thread Chathura Dilan
Hi Godwin, Yes, Jaggery File API is only working within Jaggery app context according to documentation. so you will have to read it from Java and pass it to jaggery. That's how we are doing with mobile apps. On Mon, Oct 17, 2016 at 6:57 PM, Godwin Shrimal wrote: > Hi Chathura,

Re: [Dev] Dynamic zip file download from Jaggery application

2016-10-17 Thread Godwin Shrimal
Hi Chathura, Yes there is a better approach than save those files in the jaggery app > itself. This is mainly because jaggery app is getting bulky, difficult for > clustering, and less security. > > What we have done for mobile app is store them in a secured place such as >

Re: [Dev] Dynamic zip file download from Jaggery application

2016-10-17 Thread Chathura Dilan
Hi Godwin, Yes there is a better approach than save those files in the jaggery app itself. This is mainly because jaggery app is getting bulky, difficult for clustering, and less security. What we have done for mobile app is store them in a secured place such as /repository/resources/mobileapps

Re: [Dev] Bulk deleting files with a pattern in file connector

2016-10-17 Thread Malaka Silva
Thx Shazni, @Vivekananthan - Can you please check and release. On Mon, Oct 17, 2016 at 6:36 PM, Shazni Nazeer wrote: > Hi Malaka, > > Please find the created jiira below and the PR in [2] > > [1] https://wso2.org/jira/browse/ESBCONNECT-135 > [2]

Re: [Dev] Dynamic zip file download from Jaggery application

2016-10-17 Thread Ruwan Abeykoon
Hi Godwin, I think all the tasks about create/zip/delete the folder better be done in modular java code. Then we can call the java code with Jaggery. Then we would not need to detect the Context. We can use the "system.temp" folder to store the temporary file/folders. Cheers, Ruwan On Mon, Oct

Re: [Dev] Bulk deleting files with a pattern in file connector

2016-10-17 Thread Shazni Nazeer
Hi Malaka, Please find the created jiira below and the PR in [2] [1] https://wso2.org/jira/browse/ESBCONNECT-135 [2] https://github.com/wso2-extensions/esb-connector-file/pull/14 Shazni Nazeer Associate Technical Lead | WSO2 Mob : +94 37331 LinkedIn : http://lk.linkedin.com/in/shazninazeer

Re: [Dev] Dynamic zip file download from Jaggery application

2016-10-17 Thread Dinusha Senanayaka
We have done something similar in AppM for mobile apps where publisher uploads binary (.apk etc) and users comes to store install these apps to device. Download has handled as a byte stream and storage location is stored in property of app-manger.xml

[Dev] Dynamic zip file download from Jaggery application

2016-10-17 Thread Godwin Shrimal
Hi All, We need to dynamically create zip file and allow download it from jaggery application. For resolve the concurrent access of the system, we are going to create a directory with the time-stamp and archive that directory and allow user to download it. Then we need to create a separate

Re: [Dev] [IS] Public cert download link not seen in the custom tenant keystore

2016-10-17 Thread Asela Pathberiya
On Mon, Oct 17, 2016 at 5:33 PM, Niranda Perera wrote: > Hi all, > > I have replaced my tenant keystore with a another keystore following this > blog from Asela [1] > > One thing I noticed while doing this is, the Public cert download link > does not appear in the subsequently

[Dev] [IS] Public cert download link not seen in the custom tenant keystore

2016-10-17 Thread Niranda Perera
Hi all, I have replaced my tenant keystore with a another keystore following this blog from Asela [1] One thing I noticed while doing this is, the Public cert download link does not appear in the subsequently added keystores. Please refer the screenshots attached. ​ before.jpg

Re: [Dev] WSO2 Committers += Anupama Pathirage

2016-10-17 Thread Madhawa Gunasekara
Congratulations :) On Mon, Oct 17, 2016 at 2:03 PM, Rajith Vitharana wrote: > Congrats akke :) :) > > On 17 October 2016 at 14:01, Dilshani Subasinghe > wrote: > >> Congrats :) :) >> >> On Mon, Oct 17, 2016 at 1:35 PM, Anjana Fernando

Re: [Dev] WSO2 Committers += Anupama Pathirage

2016-10-17 Thread Rajith Vitharana
Congrats akke :) :) On 17 October 2016 at 14:01, Dilshani Subasinghe wrote: > Congrats :) :) > > On Mon, Oct 17, 2016 at 1:35 PM, Anjana Fernando wrote: > >> Hi everyone, >> >> It's my pleasure to announce Anupama as a WSO2 committer. Anupama has >> made

Re: [Dev] WSO2 Committers += Anupama Pathirage

2016-10-17 Thread Dilshani Subasinghe
Congrats :) :) On Mon, Oct 17, 2016 at 1:35 PM, Anjana Fernando wrote: > Hi everyone, > > It's my pleasure to announce Anupama as a WSO2 committer. Anupama has made > great contributions to WSO2 DSS/DAS in improving the products. In > recognizing the work that has been done,

Re: [Dev] [EMM Android Agent] Compile error - missing package org.apache.http

2016-10-17 Thread Hasitha Amal De Silva
Hi Sidath, True, but its supposed to be included within the android 22 sdk.. and I noticed that AndroidHttpClient should be included within the SDK itself. However after building this with the android 23 sdk with hidden APIs, the issue went away. Thanks On Mon, Oct 17, 2016 at 1:47 PM, Sidath

Re: [Dev] hi,abimaran,help me for this.

2016-10-17 Thread Rukshan Premathunga
HI Chirst, Yes. Please configure on all the nodes using api-manager.xml Thanks and Regards On Mon, Oct 17, 2016 at 1:46 PM, christ Feng wrote: > Hi, rukshan, > > I really configure analytics using admin-dashboard on publisher node. I > clustering APIM for 4 nodes

Re: [Dev] [EMM Android Agent] Compile error - missing package org.apache.http

2016-10-17 Thread Sidath Weerasinghe
Hi Hasitha, I think you miss the dependency in the gradle. http://stackoverflow.com/questions/31433687/android-gradle-apache-httpclient-does-not-exist On Mon, Oct 17, 2016 at 1:32 PM, Hasitha Amal De Silva wrote: > Hi, > > While trying to build the APK for android agent at

[Dev] WSO2 Committers += Anupama Pathirage

2016-10-17 Thread Anjana Fernando
Hi everyone, It's my pleasure to announce Anupama as a WSO2 committer. Anupama has made great contributions to WSO2 DSS/DAS in improving the products. In recognizing the work that has been done, she has been voted in as a WSO2 committer. Anupama, welcome aboard and all the best! .. Cheers,

[Dev] [EMM Android Agent] Compile error - missing package org.apache.http

2016-10-17 Thread Hasitha Amal De Silva
Hi, While trying to build the APK for android agent at [1], I'm getting the following compile errors. .../iotserver/product-emm/modules/mobile-agents/android/client/volley/src/main/java/com/android/volley/toolbox/HttpStack.java Error:(22, 23) error: package org.apache.http does not exist

Re: [Dev] hi,abimaran,help me for this.

2016-10-17 Thread Rukshan Premathunga
Hi Christ, Can you please attached your api-manager.xml in the gateway node. This could be a configuration isse. Thanks and Regards On Mon, Oct 17, 2016 at 10:32 AM, Abimaran Kugathasan wrote: > Hi Christ, > > In which node your are getting this exception? Is it in Gateway

Re: [Dev] Checking the existence of the roles with the character "@"

2016-10-17 Thread Megala Uthayakumar
Hi Ishara, Thanks for the reply. But I think your suggestion won't work either. While debugging in super-tenant mode, I found that we are not sending the tenant id with role name. So it will will still go through the same path and return false for already existing role which has a "@" character.