Re: [Dev] Supporting referential integrity in the database of WSO2MB

2015-07-07 Thread Lahiru Cooray
t;>> >>> -- >>> Anuja Herath >>> *Software Engineer* >>> *WSO2, Inc.* >>> Mobile : +94 (0)71 429 8861 >>> >>> ___ >>> Dev mailing list

Re: [Dev] Do we have free hosting for WSO2 APP Manager

2015-07-08 Thread Lahiru Cooray
nkedin.com/pub/nifras-ismail/54/343/94b> > > > > ___ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/

Re: [Dev] WSO2 Committers += CD Athuraliya

2015-08-02 Thread Lahiru Cooray
> > > ___ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 _

[Dev] Issue in writing a Custom function as Siddhi Extension

2014-10-14 Thread Lahiru Cooray
e data type as LONG. Can somebody please help me to figure out the reason for this?? Thanks... -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http:/

[Dev] Using an External Library in writing Siddhi Extention - Need clarifications

2014-10-15 Thread Lahiru Cooray
ok to copy the jar file under "CEP_HOME>repository>components>lib" ? [1]https://github.com/addthis/stream-lib -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ D

Re: [Dev] Issue in writing a Custom function as Siddhi Extension

2014-10-15 Thread Lahiru Cooray
> Lasantha > > On 14 October 2014 21:54, Lahiru Cooray wrote: > >> Hi, >> >> When writing a custom function as a Siddhi Extension I faced an issue in >> validating the parameter count passed. >> >> Eg: >> from InputStream1 >> select *cu

Re: [Dev] Using an External Library in writing Siddhi Extention - Need clarifications

2014-10-15 Thread Lahiru Cooray
Sampath wrote: > >> Hi, >> >> On Wed, Oct 15, 2014 at 1:25 PM, Lahiru Cooray wrote: >> >>> Hi, >>> >>> We are writing some extensions to Siddhi (eg: TopK, Cardinality, etc) >>> and we are using an external library (Stream Lib[1]) to

Re: [Dev] Using an External Library in writing Siddhi Extention - Need clarifications

2014-10-18 Thread Lahiru Cooray
Hi Jonann, Thanks a lot for the feedback. On Sat, Oct 18, 2014 at 7:07 PM, Johann Nallathamby wrote: > > > On Wed, Oct 15, 2014 at 1:25 PM, Lahiru Cooray wrote: > >> Hi, >> >> We are writing some extensions to Siddhi (eg: TopK, Cardinality, etc) and >> we a

Re: [Dev] Custome Function in siddhi query

2014-10-19 Thread Lahiru Cooray
__ >>> Dev mailing list >>> Dev@wso2.org >>> http://wso2.org/cgi-bin/mailman/listinfo/dev >>> >>> >> >> >> -- >> *V. Mohanadarshan* >> *Software Engineer,* >> *Data Technologies Team,* >> *

Re: [Dev] Custome Function in siddhi query

2014-10-19 Thread Lahiru Cooray
instance for multiple streams. On Sun, Oct 19, 2014 at 4:31 PM, Awanthika Senarath wrote: > Hi Lahiru, > > Yes, my bad. In that case he has to use a custom window. > > thanks and regards > > On Sun, Oct 19, 2014 at 3:21 PM, Lahiru Cooray wrote: > >> Hi, >> I

Re: [Dev] [CEP] Sending messages to multiple email addresses using CEP output email adapter

2014-11-04 Thread Lahiru Cooray
; http://wso2.com > lean.enterprise.middleware > > mobile: +94 719411002 > > > > ___ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile:

Re: [Dev] [CEP] Sending messages to multiple email addresses using CEP output email adapter

2014-11-04 Thread Lahiru Cooray
hts on best way to do this. > > Thanks and best regards. > > On Tue, Nov 4, 2014 at 4:26 PM, Lahiru Cooray wrote: > >> Hi Madhawa, >> >> As per the offline chat, to solve your problem you can simply concatenate >> the receiving email addresses related

[Dev] Where to store JS configurable data?

2014-11-17 Thread Lahiru Cooray
Hi all, I'm currently writing a Javascript library *(not a jaggery)* and I need to get some external inputs from the developer who's going to use that library. Please advice the best practice, where should I store that configurable data and how to access it. -- *Lahiru Cooray

Re: [Dev] Where to store JS configurable data?

2014-11-17 Thread Lahiru Cooray
2, Inc. >> lean.enterprise.middleware >> 0771100911 >> >> On Tue, Nov 18, 2014 at 10:00 AM, Lahiru Cooray wrote: >> >>> Hi all, >>> >>> I'm currently writing a Javascript library *(not a jaggery)* and I need >>> to get some exter

Re: [Dev] Obtain the tenant ID of the currently logged in user from Jaggery

2014-11-20 Thread Lahiru Cooray
, Inc. > lean | enterprise | middleware > Mobile : +94 716546324 > > ___ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engine

Re: [Dev] Time series Siddhi extension use Apache commons math functions?

2014-11-24 Thread Lahiru Cooray
__ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman/listinfo/dev

[Dev] what would be more efficient? obj.clone() or new object?

2014-12-04 Thread Lahiru Cooray
) { JSONObject obj = new JSONObject(); obj.put("NAME", rs.getString("NAME")); jsonArr.add(obj); } -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mail

Re: [Dev] what would be more efficient? obj.clone() or new object?

2014-12-04 Thread Lahiru Cooray
) { obj = new JSONObject(); obj.put("NAME", rs.getString("NAME")); jsonArr.add(obj); } On Fri, Dec 5, 2014 at 11:05 AM, Lahiru Cooray wrote: > > Hi, > > I'm trying to execute a SQL and store the result in a Json Array. > > What would be the

[Dev] Request to commit the patch APPM-254

2014-12-08 Thread Lahiru Cooray
Hi, Please review and commit the diff attached with [1] [1] - https://wso2.org/jira/browse/APPM-254 Thanks. -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list

Re: [Dev] Request to commit the patch APPM-254

2014-12-09 Thread Lahiru Cooray
gt; > Senior Software Engineer, > WSO2 Inc. > > email : ruw...@wso2.com > mobile : +94 77 9110413 > blog : http://thoughts.ruwan-ace.com/ > www: :http://wso2.com > > > On Tue, Dec 9, 2014 at 12:12 PM, Lahiru Cooray wrote: > >> Hi, >> >> Please rev

[Dev] Request to commit the patch APPM-49

2014-12-10 Thread Lahiru Cooray
Hi, Please review and commit the diff attached with [1] [1] https://wso2.org/jira/browse/APPM-49 -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http

[Dev] Please review and commit : APPM-224

2014-12-12 Thread Lahiru Cooray
Hi, Please merge the PR https://github.com/wso2/app-manager/pull/89 (fix for : https://wso2.org/jira/browse/APPM-224) -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing

[Dev] Please review and commit : APPM-155

2014-12-16 Thread Lahiru Cooray
Hi, Please merge the PR https://github.com/wso2/app-manager/pull/92 -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman

Re: [Dev] Please review and commit : APPM-155

2014-12-16 Thread Lahiru Cooray
n Yatawara > > Senior Software Engineer, > WSO2 Inc. > > email : ruw...@wso2.com > mobile : +94 77 9110413 > blog : http://thoughts.ruwan-ace.com/ > www: :http://wso2.com > > > On Tue, Dec 16, 2014 at 6:55 PM, Lahiru Cooray wrote: >> >> Hi, >> >>

[Dev] Please review and commit : APPM-265

2014-12-17 Thread Lahiru Cooray
Hi, Please merge the PR https://github.com/wso2/app-manager/pull/94 -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman

Re: [Dev] WSO2 Committers += Roshan Wijesena

2014-12-23 Thread Lahiru Cooray
ssociate Tech Lead - WSO2, Inc. http://wso2.com > email : nuw...@wso2.com > Phone : +94 777 775 729 > > ___ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer

[Dev] Please review and commit

2014-12-23 Thread Lahiru Cooray
Hi, Please merge the PR https://github.com/wso2/app-manager/pull/108 -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman

[Dev] .NET Sample Application hosting space

2015-01-05 Thread Lahiru Cooray
Hi, I'm writing a sample .NET application to test with AppManager and I need to know is there any internal IIS Server available to host my sample app?? -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 6

Re: [Dev] [DEV] Need clarification regarding "Allow Anonymous Access" option

2015-02-17 Thread Lahiru Cooray
__ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman/listinfo/dev

Re: [Dev] WSO2 Committers += Aiyadurai Rajeevn

2015-02-25 Thread Lahiru Cooray
Architect & Product Lead of App Factory > > WSO2, Inc. (http://wso2.com) > email: dimut...@wso2.com > Mobile : 0773661935 > > Lean . Enterprise . Middleware > > ___ > Dev mailing list > Dev@wso2.org > http://wso2.org/c

Re: [Dev] [Announce] WSO2 Committers += Asok Perera

2015-03-09 Thread Lahiru Cooray
Director of Engineering > gtalk: samee...@wso2.com > Tel : 94 11 214 5345 > Fax :94 11 2145300 > *WSO2, Inc.* <http://wso2.com/> > lean.enterprise.middleware > > > > ___ > Dev mailing list > Dev@wso2.org > http://

Re: [Dev] [Jaggery] How to convert String value of true/false to Boolean in Jaggery?

2015-03-10 Thread Lahiru Cooray
gt;>>>>>> Mobile : +94 773922820 >>>>>>>>> >>>>>>>>> <http://stackoverflow.com/users/515034> >>>>>>>>> <http://lk.linkedin.com/in/abimaran> >>>>>>>>> <http://www

Re: [Dev] [APPM] Improving usability on Application detail view - Publisher

2015-03-11 Thread Lahiru Cooray
cancel button in the > context bottom with other > related actions. > > WDYT? > > Thank you, > > Regards, > > *Dakshika Jayathilaka* > Software Engineer > WSO2, Inc. > lean.enterprise.middleware > 0771100911 > > ______

Re: [Dev] [DEV] Problem regarding Transaction Handling in MySQL

2015-05-27 Thread Lahiru Cooray
Sasikala Kottegoda > *Software Engineer* > WSO2 Inc., http://wso2.com/ > lean. enterprise. middleware > Mobile: +94 774835928/712792401 > > ___ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer WSO

Re: [Dev] Writing to a database in WSO2 Synapse

2015-06-02 Thread Lahiru Cooray
_ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman/listinfo/dev

Re: [Dev] CSS and DIV Structure

2014-09-04 Thread Lahiru Cooray
st > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman/listinfo/dev

[Dev] how to pass credentials - using a AXIOM (client)

2014-09-09 Thread Lahiru Cooray
g an AXIOM client. I need to know how to pass credentials when using an AXIOM client?* -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org

Re: [Dev] how to pass credentials - using a AXIOM (client)

2014-09-09 Thread Lahiru Cooray
EsNCmIAQ> >> lean.enterprise.middleware >> >> Mobile: +94722241032 >> >> On Tue, Sep 9, 2014 at 8:46 PM, Vimalanathan Rajeevan > > wrote: >> >>> Hi Lahiru, >>> >>> Can I know what kind of error you are getting when using AXIOM clie

Re: [Dev] Getting some Error message while running IS sample: configuring SAML2 SSO

2014-09-11 Thread Lahiru Cooray
stinfo/dev >>>> >>>> >>> >>> >>> -- >>> Regards, >>> >>> >>> *Darshana Gunawardana*Software Engineer >>> WSO2 Inc.; http://wso2.com >>> >>> *E-mail: darsh...@wso2.com * >>> *Mobile

[Dev] Error in writing a Carbon component

2014-09-17 Thread Lahiru Cooray
RROR] mvn -rf :wso2carbon-student-mgt-repository JDWP exit error JVMTI_ERROR_WRONG_PHASE(112): on getting class status [../../../src/share/back/util.c:1283] JDWP exit error JVMTI_ERROR_INVALID_ENVIRONMENT(116): on raw monitor enter [../../../src/share/back/util.c:1052] *******

Re: [Dev] Error in writing a Carbon component

2014-09-17 Thread Lahiru Cooray
hots/maven2 > > > repository.dev.java.net-maven2 > Java.net Repository for Maven > http://download.java.net/maven/2/ > default > > > > > Do a clean mvn build. This may solve your problem > &

[Dev] Error while building Carbon

2014-09-21 Thread Lahiru Cooray
plugin 2.3.2 7.0.34 3.0.1 ****** *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 6

Re: [Dev] Error while building Carbon

2014-09-21 Thread Lahiru Cooray
tion+Prerequisites > > Thanks. > /Gayashan > > On Mon, Sep 22, 2014 at 9:35 AM, Lahiru Cooray wrote: > >> I'm Im following tutorial[1] to build carbon from the source: >> >> [1]http://java.dzone.com/articles/how-build-wso2-carbon-420 >> >> Runnin

Re: [Dev] Error when building carbon orbit

2014-09-23 Thread Lahiru Cooray
e Engineering Intern > WSO2 Inc.; http://wso2.com > lean.enterprise.middleware > > email: ramin...@wso2.com > mob: +94772339350 > mob: +94782731766 > > ___ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mail

[Dev] Error wile building carbon-feature-repository (branch: release-4.2.x)

2016-01-05 Thread Lahiru Cooray
he.org/confluence/display/MAVEN/MojoExecutionException -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman/listinfo/dev

Re: [Dev] Error wile building carbon-feature-repository (branch: release-4.2.x)

2016-01-05 Thread Lahiru Cooray
Hi APIM team, Could you please update the repo with missing versions. Thank you.. On Tue, Jan 5, 2016 at 7:06 PM, Lahiru Cooray wrote: > Hi, > > I get the below error while building the carbon-feature-repository ( > https://github.com/wso2/carbon-feature-repository > relea

Re: [Dev] Error wile building carbon-feature-repository (branch: release-4.2.x)

2016-01-09 Thread Lahiru Cooray
Hi Chamila, Thank you. Now its working. On Fri, Jan 8, 2016 at 6:09 PM, Chamila Adhikarinayake wrote: > Hi Lahiru, > Released the missing repos. You can try building it now. > > Chamila > > On Wed, Jan 6, 2016 at 12:32 PM, Lahiru Cooray wrote: > >> Hi APIM team, >

Re: [Dev] Error wile building carbon-feature-repository (branch: release-4.2.x)

2016-01-18 Thread Lahiru Cooray
her. Thank you. On Sat, Jan 9, 2016 at 4:02 PM, Lahiru Cooray wrote: > Hi Chamila, > Thank you. Now its working. > > On Fri, Jan 8, 2016 at 6:09 PM, Chamila Adhikarinayake > wrote: > >> Hi Lahiru, >> Released the missing repos. You can try building it now. >>

Re: [Dev] Error wile building carbon-feature-repository (branch: release-4.2.x)

2016-01-18 Thread Lahiru Cooray
adding Manu and Sinthuja On Mon, Jan 18, 2016 at 5:07 PM, Lahiru Cooray wrote: > Hi Dakshika, > Currently we are using Jaggery Server Feature 0.10.1 and this particular > dependency is not included in released P2 repo. > (https://github.com/wso2/carbon-feature-repository > relea

Re: [Dev] Error wile building carbon-feature-repository (branch: release-4.2.x)

2016-01-31 Thread Lahiru Cooray
a: WDYT? >>>>>> >>>>>> [1] - >>>>>> https://github.com/wso2/carbon-feature-repository/tree/release-4.2.x >>>>>> >>>>>> Regards, >>>>>> Nira >>>>>> >>>>>> On

Re: [Dev] Issue when starting the server - SSLException: Connection has been shutdown

2016-02-02 Thread Lahiru Cooray
t(TM) 64-Bit Server VM 25.51-b03,Oracle Corporation > > > [1] > http://www.vitharana.org/2012/04/how-to-browse-h2-database-of-wso2.html > > > Thank you. > > Regards, > > -- > > *Dilini GunatilakeSoftware Engineer - QA Team* > Mobile : +94 (0) 771 162518 > dili.

Re: [Dev] Selenium UI Testing [GREG/ES - Publisher]

2016-02-09 Thread Lahiru Cooray
t; lean . enterprise . middleware. >>> >>> >>> ___ >>> Dev mailing list >>> Dev@wso2.org >>> http://wso2.org/cgi-bin/mailman/listinfo/dev >>> >>> >> >> >> -- >>

[Dev] [AppM] Remove foreign key constraints from STAT tables

2016-03-02 Thread Lahiru Cooray
external tables, so need to remove the foreign key constraints. WDYT? -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman/listinfo

Re: [Dev] [APIM] New Throttling Engine Database Schema Design

2016-03-03 Thread Lahiru Cooray
Mobile : +94 (0) 714 868488 > upe...@wso2.com > > ___ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154

Re: [Dev] [APIM] New Throttling Engine Database Schema Design

2016-03-04 Thread Lahiru Cooray
p://wso2.org/cgi-bin/mailman/listinfo/dev >>> >>> >> >> >> -- >> Nuwan Dias >> >> Technical Lead - WSO2, Inc. http://wso2.com >> email : nuw...@wso2.com >> Phone : +94 777 775 729 >> > > > > -- > *Upekka Pathirana* > Software Engineering Intern > WSO2 Inc.; http://wso2.com > Mobile : +94 (0) 714 868488 > upe...@wso2.com > -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman/listinfo/dev

Re: [Dev] WSO2 DAS: SPARK SQL query with UNION producing errors

2016-03-08 Thread Lahiru Cooray
Charini Vimansha Nanayakkara >>> Software Engineer at WSO2 >>> Mobile: 0714126293 >>> >>> >>> ___________ >>> Dev mailing list >>> Dev@wso2.org >>> http://wso2.org/cgi-bin/mailman/listinfo/dev >>

Re: [Dev] WSO2 DAS: SPARK SQL query with UNION producing errors

2016-03-08 Thread Lahiru Cooray
you! > > On Tue, Mar 8, 2016 at 1:43 PM, Lahiru Cooray wrote: > >> Hi Charini, >> In addition, if you could get the same resultset using sql joins (instead >> of unions) you can increase the performance when querying. >> When using union's, it takes a considerabl

[Dev] [DEV] WSO2 App Manager 1.2.0 Milestone 2 Released

2016-03-09 Thread Lahiru Cooray
pgrade. 4. New theme for store UI *Bug Fixes* WSO2 App Manager 1.2.0-M2 resolved issues <https://wso2.org/jira/browse/APPM-1324?filter=12981> Regards, App Manager Team. -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +9

Re: [Dev] Shall we use latest APPM in EMM?

2016-03-18 Thread Lahiru Cooray
gt;>>>>>>> discussion to dev@ so we can discuss about any possible >>>>>>>>>>>>>> concerns, etc there. >>>>>>>>>>>>>> >>>>>>>>>>>>>> Cheers, &

[Dev] [DEV] WSO2 App Manager 1.2.0 Milestone 4 Released

2016-04-19 Thread Lahiru Cooray
s://wso2.org/jira/browse/APPM-1360?filter=12981&jql=project%20%3D%20APPM%20AND%20fixVersion%20%3D%20%221.2.0-M4%22%20AND%20status%20in%20(Resolved%2C%20Closed)> Regards, App Manager Team. -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterpris

Re: [Dev] [DEV] WSO2 App Manager 1.2.0 Milestone 4 Released

2016-04-19 Thread Lahiru Cooray
[Adding architecture list] On Tue, Apr 19, 2016 at 10:14 PM, Lahiru Cooray wrote: > Hi All, > > WSO2 App Manager team pleased to announce > the WSO2 APP Manager 1.2.0 - Milestone 4 release. It contains following new > features, improvements and bug fixes. > > You can downl

[Dev] [AppM] Response field filter for REST API

2016-04-27 Thread Lahiru Cooray
on": " ", "version": "1.0", "lifecycleState": "CREATED" }, { "name": "app2", "context": "/app2", "id": "c9ddf00d-c42f-4299-931c-bcda69c68050", "provider": "admin", "description": " ", "version": "1.0", "lifecycleState": "CREATED" } ], "count": 2 } -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman/listinfo/dev

Re: [Dev] [AppM] Response field filter for REST API

2016-04-27 Thread Lahiru Cooray
revious": "", >> "next": "", >> "list": [ >> { >> "name": "app1", >> "context": "/app1", >> "id": "65c8485d-11d9-4f05-a418-17dfb737e1

Re: [Dev] [AppM] Response field filter for REST API

2016-04-27 Thread Lahiru Cooray
;t you follow the limit offset approach? >> It has to be consistent among the platform? >> >> [1] - >> https://github.com/wso2/product-emm/blob/master/modules/apps/jax-rs/mdm-admin/src/main/java/org/wso2/carbon/mdm/api/Operation.java >> >> Regards, >> >> Dil

Re: [Dev] [AppM] Response field filter for REST API

2016-04-28 Thread Lahiru Cooray
llFields* > > [1] > http://www.vinaysahni.com/best-practices-for-a-pragmatic-restful-api#limiting-fields > > Regards, > Dinusha. > > On Thu, Apr 28, 2016 at 3:22 PM, Dilshan Edirisuriya > wrote: > >> Sorry I didnt get the context initially. >> >> On 28 April

Re: [Dev] [AppM] Response field filter for REST API

2016-04-29 Thread Lahiru Cooray
agara Gunathunga wrote: > > > On Thu, Apr 28, 2016 at 4:50 PM, Dinusha Senanayaka > wrote: > >> >> >> On Thu, Apr 28, 2016 at 4:28 PM, Lahiru Cooray wrote: >> >>> +1 >>> since the query param name already indicates it is a field filter

Re: [Dev] Platform test - Copy files to another servers conf directory.

2015-09-22 Thread Lahiru Cooray
_ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman/listinfo/dev

[Dev] [Validate Mediator] JSON validation issue

2017-11-24 Thread Lahiru Cooray
Hi team, Im using ESB 5.0.0 and trying to validate a json payload against a schema. Below is my sample synapse code snippet {"Error":$1"}

[Dev] [ESB] Issue with Salesforce REST connector

2017-11-30 Thread Lahiru Cooray
Hi team, Im using ESB Salesforce REST connector to performce some operations in SF. http://ws.apache.org/ns/synapse"; name="sendOrder" context="/sendOrder"> https://ap5.salesforce.com/ XXX XXX https://login.salesforce.com

Re: [Dev] [ESB] Issue with Salesforce REST connector

2017-11-30 Thread Lahiru Cooray
rs/ >​.​ >​ >For example: registryPath = "connectors/salesforcerest". > > > ​Thanks, > Rajith​ > > > [1] https://docs.wso2.com/display/ESBCONNECTORS/Configuring+ > Salesforce+Operations > > On Thu, Nov 30, 2017 at 12:56 PM, Lahiru Cooray

Re: [Dev] [AppM] Creating XACML Policies and Service Providers in Tenants

2016-08-08 Thread Lahiru Cooray
+ [DEV] On Mon, Aug 8, 2016 at 3:19 PM, Lahiru Cooray wrote: > Hi all, > > *Current behaviour:* > Currently in AppM, when we are creating XACML policies/Service Providers > via IS admin services, we are providing the super tenant admin credentials > (where the credentials are

Re: [Dev] [AppM] Creating XACML Policies and Service Providers in Tenants

2016-08-08 Thread Lahiru Cooray
>>> Hi Lahiru. >>> >>> >>> Its not the admin user.User trying to do this operation should have >>> enough permission to do this. >>> >>> Use >>> >>> >>> >>> *entitlement/policy/view* >>>

[Dev] Cookie based authorization to PEP proxy

2016-08-18 Thread Lahiru Cooray
n the cookie is available it will authenticate using the cookie and if not it will validate the credentials. WDYT? [1] https://wso2.org/jira/browse/IDENTITY-4987 -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 6

[Dev] Merge changes to PEP Proxy - https://wso2.org/jira/browse/IDENTITY-4987

2016-08-25 Thread Lahiru Cooray
Hi, Could you please review and merge the PR [1] [1] https://github.com/wso2-extensions/identity-agent-entitlement-proxy/pull/15 -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154

Re: [Dev] Merge changes to PEP Proxy - https://wso2.org/jira/browse/IDENTITY-4987

2016-08-26 Thread Lahiru Cooray
Kind reminder! On Thu, Aug 25, 2016 at 12:37 PM, Lahiru Cooray wrote: > Hi, > Could you please review and merge the PR [1] > > [1] https://github.com/wso2-extensions/identity-agent- > entitlement-proxy/pull/15 > > -- > *Lahiru Cooray* > Software Engineer &

Re: [Dev] Why not ship creator and publisher roles pre-built in API-M?

2016-09-18 Thread Lahiru Cooray
Vice President Delivery >>>> >>>> WSO2 Inc. >>>> http://wso2.com >>>> >>>> >>>> ___ >>>> Dev mailing list >>>> Dev@wso2.org >>>> http://wso2.org/cgi-bin/mailm

Re: [Dev] [dev][APIM 1.7] Alternatives for API creation/deletion audit logs

2016-10-27 Thread Lahiru Cooray
__ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman/listinfo/dev

Re: [Dev] Shall we change the convention for placement of DB Query String in Java Code.

2016-11-03 Thread Lahiru Cooray
compiler make them constants. >>>>>>>> Putting them as constants serve no purpose as the query will never >>>>>>>> be reused in proper designed Data Access layer. We should reuse the >>>>>>>> code, >>>>>>>> n

Re: [Dev] Shall we change the convention for placement of DB Query String in Java Code.

2016-11-04 Thread Lahiru Cooray
On Fri, Nov 4, 2016 at 11:30 AM, Maduranga Siriwardena wrote: > > > On Fri, Nov 4, 2016 at 11:01 AM, Lahiru Cooray wrote: > >> >> >> On Thu, Nov 3, 2016 at 10:57 AM, Maduranga Siriwardena < >> madura...@wso2.com> wrote: >> >>> Hi Ruwan, &

Re: [Dev] [IS][Analytics] Getting column names of 'Security View Alerts' table from a common place for rendering and PDF generating.

2016-11-17 Thread Lahiru Cooray
m/signature] <http://wso2.com/signature> > > _______ > Dev mailing list > Dev@wso2.org > http://wso2.org/cgi-bin/mailman/listinfo/dev > > -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman/listinfo/dev

Re: [Dev] [Oracle] How to handle insertion of empty string in oracle.

2017-01-09 Thread Lahiru Cooray
> >>>> *Tharindu Dharmarathna*Software Engineer >>>> WSO2 Inc.; http://wso2.com >>>> lean.enterprise.middleware >>>> >>>> mobile: *+94779109091 <+94%2077%20910%209091>* >>>> >>> >&g

Re: [Dev] Account Lock/Disable Feature in IS 6.0.0

2017-01-20 Thread Lahiru Cooray
gt;> >> What is the best way handle account disable check? We can do this from a >> inceptor level, then we need to check account disable in each operation. >> >> Thanks >> Isura. >> >> >> >> >> >> *Isura Dilhara Karunaratn

Re: [Dev] Error when using appm restapi

2017-01-25 Thread Lahiru Cooray
uot;,"name":"Catalog"," > category":"Business","appmeta":{"path":"2d40ed0e1b22977c. > apk","package":"org.wso2.app.catalog","version":"1.0"}} > > [1] > ERROR - GlobalThrowableMap

[Dev] [DEV] WSO2 App Manager 1.2.0 Milestone 5 Released

2016-05-23 Thread Lahiru Cooray
20%221.2.0-M5%22%20AND%20status%20in%20(Resolved%2C%20Closed)> Regards, App Manager Team. -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http:/

[Dev] WSO2 App Manager 1.2.0-ALPHA Released!

2016-05-27 Thread Lahiru Cooray
38] <https://wso2.org/jira/browse/APPM-1438> - Responsive store UI by Boostrap3 upgrade [APPM-1439] <https://wso2.org/jira/browse/APPM-1439> - Kernal version upgrade to 4.4.5 Reporting Problems Issues can be reported through public JIRA <https://wso2.org/jira/browse/APPM> proj

[Dev] WSO2 App Manager 1.2.0-Beta Released!

2016-06-20 Thread Lahiru Cooray
sion upgrade to 4.4.5 Bug Fixes WSO2 App Manager 1.2.0-beta resolved issues <https://wso2.org/jira/issues/?filter=13104> Reporting Problems Issues can be reported through public JIRA <https://wso2.org/jira/browse/APPM> project assigned to WSO2 AppM. Thanks, App Manager team --

[Dev] WSO2 App Manager 1.2.0-Beta2 Released!

2016-07-08 Thread Lahiru Cooray
RA <https://wso2.org/jira/browse/APPM> project assigned to WSO2 AppM. Thanks, App Manager team -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org http://wso2.org/cgi-bin/mailman/listinfo/dev

[Dev] [VOTE] WSO2 App Manager 1.2.0 RC2

2016-07-18 Thread Lahiru Cooray
. [+] Stable - go ahead and release [-] Broken - do not release (please explain why) Thanks, App Manager Team -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list Dev@wso2.org

[Dev] [VOTE] WSO2 App Manager 1.2.0 RC3

2016-07-20 Thread Lahiru Cooray
as follows. [+] Stable - go ahead and release [-] Broken - do not release (please explain why) Thanks, App Manager Team -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing

Re: [Dev] [VOTE] WSO2 App Manager 1.2.0 RC3

2016-07-20 Thread Lahiru Cooray
Tested following Scenarios: - SSO and SLO - App visibility restrictions - Resource level role based restriction - Favourite apps/page functionality - Sorting and searching +1 Stable - Go ahead and release. On Wed, Jul 20, 2016 at 11:09 PM, Lahiru Cooray wrote: > Hi D