[Dev] Increase the length of WSO2 UES Registry Role Name

2014-12-30 Thread Amila Dharmakeerthi
Hi,

We are using email as wso2 ues username.Some emails are little bit lengthy
than 30 characters.So it gives us an error message when registering a new
user.How can we increase the size of role name in the registry.

Thank you
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Increase the length of WSO2 UES Registry Role Name

2014-12-30 Thread Mohanadarshan Vivekanandalingam
Hi Amila,

You can increase the username length by modifying the user-mgt.xml file
which is in the /repository/conf directory.

Change below entries,

^[^~!#$;%^*+={}\\|<>,\'\"]{3,
*30*}$
^[\S]{3,*30*}$

Refer documentation [1] for more information..

[1] https://docs.wso2.com/display/Carbon400/User+Management+in+WSO2+Carbon

Thanks,
Mohan



On Tue, Dec 30, 2014 at 2:29 PM, Amila Dharmakeerthi 
wrote:

> Hi,
>
> We are using email as wso2 ues username.Some emails are little bit lengthy
> than 30 characters.So it gives us an error message when registering a new
> user.How can we increase the size of role name in the registry.
>
> Thank you
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*V. Mohanadarshan*
*Software Engineer,*
*Data Technologies Team,*
*WSO2, Inc. http://wso2.com  *
*lean.enterprise.middleware.*

email: mo...@wso2.com
phone:(+94) 771117673
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Increase the length of WSO2 UES Registry Role Name

2014-12-30 Thread Amila Dharmakeerthi
Thank you Mohan

On Tue, Dec 30, 2014 at 3:18 PM, Mohanadarshan Vivekanandalingam <
mo...@wso2.com> wrote:

> Hi Amila,
>
> You can increase the username length by modifying the user-mgt.xml file
> which is in the /repository/conf directory.
>
> Change below entries,
>
> ^[^~!#$;%^*+={}\\|<>,\'\"]{3,
> *30*}$
> ^[\S]{3,*30*}$
>
> Refer documentation [1] for more information..
>
> [1] https://docs.wso2.com/display/Carbon400/User+Management+in+WSO2+Carbon
>
> Thanks,
> Mohan
>
>
>
> On Tue, Dec 30, 2014 at 2:29 PM, Amila Dharmakeerthi  > wrote:
>
>> Hi,
>>
>> We are using email as wso2 ues username.Some emails are little bit
>> lengthy than 30 characters.So it gives us an error message when registering
>> a new user.How can we increase the size of role name in the registry.
>>
>> Thank you
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *V. Mohanadarshan*
> *Software Engineer,*
> *Data Technologies Team,*
> *WSO2, Inc. http://wso2.com  *
> *lean.enterprise.middleware.*
>
> email: mo...@wso2.com
> phone:(+94) 771117673
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Logout problem in wso2 ues

2014-12-30 Thread Amila Dharmakeerthi
Hi,

We are developing jaggery apps using wso2 ues product. When sign out from
the system all the sso sessions destroyed except one jaggery app. Any idea
how to solve this problem?

Thank you
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [DSS] start point for extending, creating plugins, new functions and resolving BUGs

2014-12-30 Thread Clovis Wichoski
Hi Anjana,

How I can follow the new developments for DSS 4.0, I'm think to implement a
custom query using JPA to use JPQL and output JSON generated by staxon, I
already started the research of how to implement this connector, but maybe
I can test in version 4.0 early. I have this solution as a JAX-RS
application, that act like an Data Service, but its better to see this
running inside DSS. What do you think?

Best Regards

Clóvis

2014-12-08 0:36 GMT-02:00 Anjana Fernando :

> Hi Clovis,
>
> Yeah, at the moment, the REST support in data services is not ideal, there
> are some technical limitations of Axis2 and how we handle the REST requests
> and JSON handling and so on. But we are going to fix these with our next
> major release of DSS, where we are going to re-architect how we implement
> RESTful behavior and how to handle different data formats, so after that,
> you will not have strict schema enforcements like "_postcountry" in the
> JSON payload.
>
> As for the NPE you're getting, can you please check on the latest 3.2.2
> release, if you still get this error, since we have fixed several JSON
> related bug in this release.
>
> You can certainly check out the necessary source code from our SVN
> repository (the current version is on our SVN at the moment, future
> development is done on Github). For example, the latest data services core
> component can be found here [1]. You can simply check it out, and build
> using Maven, and it should download all the required dependencies from the
> online repository. And you can do your fix, and build the jar and simply
> replace that jar in the product's /repository/components/plugins directory,
> to test it out (remember to replace the one in plugins directory, not just
> copy the build jar to the directory). And of course, patches are always
> welcome, simply create a JIRA for the product and attach it, and you can
> also send a mail to the @dev list.
>
> And lastly, do stay tuned for plans for DSS 4.0, these haven't been
> finalized yet, we will start discussions on these soon.
>
> [1]
> https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/components/data-services/org.wso2.carbon.dataservices.core/4.2.4
>
> Cheers,
> Anjana.
>
> On Fri, Dec 5, 2014 at 4:57 PM, Clovis Wichoski 
> wrote:
>
>> Hi,
>>
>> I'm researching for a way to improve some things in DSS, especially in
>> the REST part, for example, I wish to implement, a better way to receive
>> any JSON format, or do a better dynamic query construct without the SQL
>> injection problems, or to use JPQL instead SQL, and to support REST that
>> allow, dynamic filter, queries range and count of this filter, to support
>> WADL generation, etc...,
>> I know how to do these things using JAX-RS, but I like to create this
>> inside DSS as appears to be a better place for this type of service as its
>> especially focused in Data part of SOA.
>>
>> For example, today in DSS we must send this payload to create a New
>> Country:
>>
>> {
>> "_postcountry":{
>> "code":"7",
>> "name":"BRASIL",
>> "acronym":"BRA",
>> "bankCode":"1058",
>> "ddiCode":"55"
>> }
>> }
>>
>> and this broke the RESTFul idea to use HTTP Methods, as some clients use
>> today the payload just as:
>> {
>> "code":"7",
>> "name":"BRASIL",
>> "acronym":"BRA",
>> "bankCode":"1058",
>> "ddiCode":"55"
>> }
>>
>> I know we can deal with this using mediation in ESB to inject the parts
>> needed by DSS, but why dont support this directly in DSS to avoid
>> unnecessary overheads? or for example, a more complex scenario, where I
>> post a payload with all data, and create the other data if necessary.
>>
>> Other example, I wish to solve some bugs, like if we send this payload:
>>
>> {
>> "_postcountry":{
>> "code":"8",
>> "name":"BOLIVIA",
>> "acronym":"BOL",
>> "bankCode": null,
>> "ddiCode": null
>> }
>> }
>>
>> we got java.lang.NullPointerException
>> at
>> org.wso2.carbon.dataservices.core.description.query.SQLQuery.processNormalQuery(SQLQuery.java:863)
>> at
>> org.wso2.carbon.dataservices.core.description.query.SQLQuery.runQuery(SQLQuery.java:2247)
>> 
>>
>>
>> Then I wish to know what is the better point to starting implementing
>> this inside DSS, can the DSS developers point me to a roadmap of how to
>> achieve this, and cut the path of research just in code? About BUGs, whats
>> is the better way to discover the right source of the running version,
>> checkout, run tests, debug, try to solve, and after solved, send the patch?
>>
>> Thanks for any tip or help.
>>
>> Clóvis Wichoski
>> NeoInix
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Anjana Fernando*
> Senior Technical Lead
> WSO2 Inc. | http://wso2.com
> lean . enterprise . middleware
>

Re: [Dev] [ES] input type 'file' not retrieved

2014-12-30 Thread Shiva Balachandran
Hi Sameera and Denuwanthi,

I have a custom asset, i have overridden the files and added the input file
tags and the file upload works. But when i want to edit the asset, i need
to set the name of the previously uploaded file and preserve the local
location of where the file is so when the user clicks on edit he should be
able to view the previously added file name listed and when he clicks on
the choose file button it should open the location of the file in local
directory in the finder. I am able to retrieve the values but when i set it
to the input file tag field it does not work. I noticed that this happens
with the thumbnails and banners too.

What will happen when if a new thumbnail or banner is uploaded in the edit
mode? and is there a way to achieve the above mentioned requirement?


Thank you.

Regards,
Shiva Balachandran

On Thu, Dec 18, 2014 at 11:57 AM, Sameera Medagammaddegedara <
samee...@wso2.com> wrote:

> Hi Denuwanthi,
>
> The ES will first scan for any file fields and put them in the ES
> storage.After which the options object is augmented with the name of the
> field and a storage UUID before being passed to the asset create method.if
> the file field is not found in the RXT definition it is ignored.In this
> case the wsdl_zip field is not defined in the RXT definition and is a file
> field.
>
> In order to by pass this behaviour you will need to implement a custom API
> endpoint and invoke your asset create logic.
>
> Thank You,
> Sameera
>
>
> On Tue, Dec 16, 2014 at 11:55 PM, Denuwanthi De Silva  > wrote:
>>
>> Hi,
>>
>> In the custom asset extension I'm working on, I have a requirement to
>> support file upload.
>>
>> Thus, in my overridden partial (create_form.hbs) I use
>> 
>> to get the html view of the file uploader.
>>
>> Then, in my extension's asset.js inside 'create' method, I try to access
>> the value taken by that html element by using,
>>
>> *options.wsdl_zip*
>>
>> But, when I actually browse file and log the above value, it prints
>> 'null' and the 'options' json object does not even contain 'wsdl_zip'
>> attribute.
>>
>> If I use a text field instead of using type 'file',
>>
>> 
>>
>>
>> options.wsdl_zip returns the value I entered in the text field.
>>
>> So, what could be the reason for not retrieving 'file' type inputs ?
>> Any other configurations need to be done?
>>
>> Thanks,
>> --
>> Denuwanthi De Silva
>> Software Engineer;
>> WSO2 Inc.; http://wso2.com,
>> Email: denuwan...@wso2.com
>>
>>
>>
>
> --
> Sameera Medagammaddegedara
> Software Engineer
>
> Contact:
> Email: samee...@wso2.com
> Mobile: + 94 077 255 3005
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Shiva Balachandran
Software Engineer
WSO2 Inc.

Mobile - +94 774445788
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [DSS] start point for extending, creating plugins, new functions and resolving BUGs

2014-12-30 Thread Anjana Fernando
Hi Clovis,

We are going to have some discussions and start on this early next year. At
the moment, it is holidays for us, starting back work on 5'th Jan. So, stay
tuned in the mailing lists in Jan, for the DSS 4.0 plans. I most probably
will be starting with a PoC with a possible new architecture for DSS. And
also, one of the items in the new design is to have proper extension points
to support new query types, data sources etc.. Native JSON / XML
input/output adapters will be implemented by default.

Cheers,
Anjana.

On Tue, Dec 30, 2014 at 5:08 PM, Clovis Wichoski 
wrote:

> Hi Anjana,
>
> How I can follow the new developments for DSS 4.0, I'm think to implement
> a custom query using JPA to use JPQL and output JSON generated by staxon, I
> already started the research of how to implement this connector, but maybe
> I can test in version 4.0 early. I have this solution as a JAX-RS
> application, that act like an Data Service, but its better to see this
> running inside DSS. What do you think?
>
> Best Regards
>
> Clóvis
>
> 2014-12-08 0:36 GMT-02:00 Anjana Fernando :
>
>> Hi Clovis,
>>
>> Yeah, at the moment, the REST support in data services is not ideal,
>> there are some technical limitations of Axis2 and how we handle the REST
>> requests and JSON handling and so on. But we are going to fix these with
>> our next major release of DSS, where we are going to re-architect how we
>> implement RESTful behavior and how to handle different data formats, so
>> after that, you will not have strict schema enforcements like
>> "_postcountry" in the JSON payload.
>>
>> As for the NPE you're getting, can you please check on the latest 3.2.2
>> release, if you still get this error, since we have fixed several JSON
>> related bug in this release.
>>
>> You can certainly check out the necessary source code from our SVN
>> repository (the current version is on our SVN at the moment, future
>> development is done on Github). For example, the latest data services core
>> component can be found here [1]. You can simply check it out, and build
>> using Maven, and it should download all the required dependencies from the
>> online repository. And you can do your fix, and build the jar and simply
>> replace that jar in the product's /repository/components/plugins directory,
>> to test it out (remember to replace the one in plugins directory, not just
>> copy the build jar to the directory). And of course, patches are always
>> welcome, simply create a JIRA for the product and attach it, and you can
>> also send a mail to the @dev list.
>>
>> And lastly, do stay tuned for plans for DSS 4.0, these haven't been
>> finalized yet, we will start discussions on these soon.
>>
>> [1]
>> https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/components/data-services/org.wso2.carbon.dataservices.core/4.2.4
>>
>> Cheers,
>> Anjana.
>>
>> On Fri, Dec 5, 2014 at 4:57 PM, Clovis Wichoski 
>> wrote:
>>
>>> Hi,
>>>
>>> I'm researching for a way to improve some things in DSS, especially in
>>> the REST part, for example, I wish to implement, a better way to receive
>>> any JSON format, or do a better dynamic query construct without the SQL
>>> injection problems, or to use JPQL instead SQL, and to support REST that
>>> allow, dynamic filter, queries range and count of this filter, to support
>>> WADL generation, etc...,
>>> I know how to do these things using JAX-RS, but I like to create this
>>> inside DSS as appears to be a better place for this type of service as its
>>> especially focused in Data part of SOA.
>>>
>>> For example, today in DSS we must send this payload to create a New
>>> Country:
>>>
>>> {
>>> "_postcountry":{
>>> "code":"7",
>>> "name":"BRASIL",
>>> "acronym":"BRA",
>>> "bankCode":"1058",
>>> "ddiCode":"55"
>>> }
>>> }
>>>
>>> and this broke the RESTFul idea to use HTTP Methods, as some clients use
>>> today the payload just as:
>>> {
>>> "code":"7",
>>> "name":"BRASIL",
>>> "acronym":"BRA",
>>> "bankCode":"1058",
>>> "ddiCode":"55"
>>> }
>>>
>>> I know we can deal with this using mediation in ESB to inject the parts
>>> needed by DSS, but why dont support this directly in DSS to avoid
>>> unnecessary overheads? or for example, a more complex scenario, where I
>>> post a payload with all data, and create the other data if necessary.
>>>
>>> Other example, I wish to solve some bugs, like if we send this payload:
>>>
>>> {
>>> "_postcountry":{
>>> "code":"8",
>>> "name":"BOLIVIA",
>>> "acronym":"BOL",
>>> "bankCode": null,
>>> "ddiCode": null
>>> }
>>> }
>>>
>>> we got java.lang.NullPointerException
>>> at
>>> org.wso2.carbon.dataservices.core.description.query.SQLQuery.processNormalQuery(SQLQuery.java:863)
>>> at
>>> org.wso2.carbon.dataservices.core.description.query.SQLQuery.runQuery(SQLQuery.java:2247)
>>> 
>>>
>>>
>>> Then I wish to know what is the better poi

[Dev] Maven registry plugin not available in nexus

2014-12-30 Thread Eranda Sooriyabandara
Hi Dev Studio team,
When create a registry resource project in DS 3.7.1 it shows the plugin
version as 2.0.10. But it is not available in nexus [1]. Please check.

thanks
Eranda

[1].
http://maven.wso2.org/nexus/content/groups/wso2-public/org/wso2/maven/maven-registry-plugin/

-- 

*Eranda Sooriyabandara*Senior Software Engineer;
Integration Technologies Team;
WSO2 Inc.; http://wso2.com
Lean . Enterprise . Middleware

E-mail: eranda AT wso2.com
Mobile: (812) 964-9032
Linked-In: http://www.linkedin.com/in/erandasooriyabandara
Blog: http://emsooriyabandara.blogspot.com/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Maven registry plugin not available in nexus

2014-12-30 Thread Susankha Nirmala
Hi Eranda,

It is available in nexus [1].

[1]-
http://maven.wso2.org/nexus/content/groups/wso2-public/org/wso2/maven/maven-registry-plugin/2.0.10/



On Wed, Dec 31, 2014 at 12:12 AM, Eranda Sooriyabandara 
wrote:

> Hi Dev Studio team,
> When create a registry resource project in DS 3.7.1 it shows the plugin
> version as 2.0.10. But it is not available in nexus [1]. Please check.
>
> thanks
> Eranda
>
> [1].
> http://maven.wso2.org/nexus/content/groups/wso2-public/org/wso2/maven/maven-registry-plugin/
>
> --
>
> *Eranda Sooriyabandara*Senior Software Engineer;
> Integration Technologies Team;
> WSO2 Inc.; http://wso2.com
> Lean . Enterprise . Middleware
>
> E-mail: eranda AT wso2.com
> Mobile: (812) 964-9032
> Linked-In: http://www.linkedin.com/in/erandasooriyabandara
> Blog: http://emsooriyabandara.blogspot.com/
>
>
>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Susankha Nirmala
Software Engineer
WSO2, Inc.: http://wso2.com
lean.enterprise.middleware
Mobile : +94 77 593 2146
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Isuru Ranawaka

2014-12-30 Thread Ravindra Ranwala
Congratulations Isuru !!


Regards,

On Tue, Dec 30, 2014 at 11:09 AM, Maheeka Jayasuriya 
wrote:

> Congrats Isuru !
>
>
> Thanks,
>
> Maheeka Jayasuriya
> Software Engineer
> Mobile : +9450661
>
> On Mon, Dec 29, 2014 at 6:33 PM, Ravi Undupitiya  wrote:
>
>> Congratulations Isuru!!
>>
>> On Mon, Dec 29, 2014 at 4:41 PM, Harsha Kumara  wrote:
>>
>>> Congratulations Isuru!
>>>
>>> On Mon, Dec 29, 2014 at 12:10 PM, Niranda Perera 
>>> wrote:
>>>
 Congrats Isuru

 On Mon, Dec 29, 2014 at 10:23 AM, Priyadarssini Kishokumar <
 priyadarss...@wso2.com> wrote:

> Congratulations Isuru ...!!!
>
> On Mon, Dec 29, 2014 at 10:13 AM, Shashika Karunatilaka <
> shashi...@wso2.com> wrote:
>
>> Congrats Isuru
>>
>> On Mon, Dec 29, 2014 at 10:11 AM, Kasun De Silva 
>> wrote:
>>
>>> Congratz Isuru..!!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Mon, Dec 29, 2014 at 10:10 AM, Prasanna Dangalla <
>>> prasa...@wso2.com> wrote:
>>>
 Congratulations..

 On Mon, Dec 29, 2014 at 10:06 AM, Milinda Perera >>> > wrote:

> Congratulations Isuru ... :)
>
> On Mon, Dec 29, 2014 at 9:39 AM, Chamin Nalinda 
> wrote:
>
>> Congratulations Isuru :)
>>
>> On Sun, Dec 28, 2014 at 7:26 PM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats!
>>>
>>> On Mon, Dec 29, 2014 at 8:15 AM, Dakshika Jayathilaka <
>>> daksh...@wso2.com> wrote:
>>>
 Congratulations Isuru !!!

 *Dakshika Jayathilaka*
 Software Engineer
 WSO2, Inc.
 lean.enterprise.middleware
 0771100911

 On Mon, Dec 29, 2014 at 7:53 AM, Kasun Indrasiri <
 ka...@wso2.com> wrote:

> Hi devs,
>
> Its my pleasure to welcome Isuru Ranawaka as a WSO2 Committer.
>
> IsuruR, welcome aboard and keep up the good work.
>
> Thanks.
>
> --
> Kasun Indrasiri
> Software Architect
> WSO2, Inc.; http://wso2.com
> lean.enterprise.middleware
>
> cell: +94 77 556 5206
> Blog : http://kasunpanorama.blogspot.com/
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>> Thanks
>>> Abimaran Kugathasan
>>>
>>> Software Engineer | WSO2 Inc
>>> Data & APIs Technologies Team
>>> Mobile : +94 773922820
>>>
>>> 
>>> 
>>> 
>>>   
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Chamin Nalinda*
>>
>> Intern - Engineering
>> WSO2 Inc. http://www.wso2.com
>> lean.enterprise.middleware
>>
>> Mobile: (+94) 77 241 66 04
>> Linkedin: https://www.linkedin.com/in/chaminnalinda
>> Web: http://www.ckreativity.com
>> Blog: http://techspiro.blogspot.com/
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Milinda Perera
> Software Engineer;
> WSO2 Inc. http://wso2.com ,
> Mobile: (+94) 714 115 032
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Prasanna Dangalla
 Software Engineer, WSO2, Inc.; http://wso2.com/
 lean.enterprise.middleware

 cell: +94 777 55 80 30 | +94 718 11 27 51
 twitter: @prasa77

 ___
 Dev mailing list

Re: [Dev] WSO2 Committers += Sandamal Weerasinghe

2014-12-30 Thread Ravindra Ranwala
Congrats Sandamal !


Regards,

On Mon, Dec 29, 2014 at 10:25 PM, Chanuka Dissanayake 
wrote:

> Congratulations Sandamal.. :)
>
> On Mon, Dec 29, 2014 at 6:33 PM, Ravi Undupitiya  wrote:
>
>> Congratulations Sandamal!!
>>
>> On Mon, Dec 29, 2014 at 7:54 AM, Kasun Indrasiri  wrote:
>>
>>> Hi devs,
>>>
>>> Its my pleasure to welcome Sandamal Weerasinghe as a WSO2 Committer.
>>>
>>> Sandamal, welcome aboard and keep up the good work.
>>>
>>> Thanks.
>>>
>>> --
>>> Kasun Indrasiri
>>> Software Architect
>>> WSO2, Inc.; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> cell: +94 77 556 5206
>>> Blog : http://kasunpanorama.blogspot.com/
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Ravi Undupitiya*
>> Senior Software Engineer; WSO2 http://wso2.com
>>
>>
>> *E-mail: r...@wso2.com **M: **+94 772 930 712
>> <%2B94%C2%A0772%20930%20712>*
>>
>> Lean . Enterprise . Middleware
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Chanuka Dissanayake
> *Software Engineer | **WSO2 Inc.*; http://wso2.com
>
> Mobile: +94 71 33 63 596
> Email: chan...@wso2.com
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Ravindra Ranwala
Software Engineer
WSO2, Inc: http://wso2.com

Mobile: +94714198770
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Buddhima Wijeweera

2014-12-30 Thread Ravindra Ranwala
Congrats Buddhima !


Regards,

On Mon, Dec 29, 2014 at 8:28 PM, Chamin Nalinda  wrote:

> Congratulations  Buddhima !!!
>
> On Mon, Dec 29, 2014 at 6:38 PM, Ravi Undupitiya  wrote:
>
>> Congratulations Buddhima!!
>>
>> On Mon, Dec 29, 2014 at 7:55 AM, Kasun Indrasiri  wrote:
>>
>>> Hi devs,
>>>
>>> Its my pleasure to welcome Buddhima Wijeweera as a WSO2 Committer.
>>>
>>> Buddhima, welcome aboard and keep up the good work.
>>>
>>> Thanks.
>>>
>>> --
>>> Kasun Indrasiri
>>> Software Architect
>>> WSO2, Inc.; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> cell: +94 77 556 5206
>>> Blog : http://kasunpanorama.blogspot.com/
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Ravi Undupitiya*
>> Senior Software Engineer; WSO2 http://wso2.com
>>
>>
>> *E-mail: r...@wso2.com **M: **+94 772 930 712
>> <%2B94%C2%A0772%20930%20712>*
>>
>> Lean . Enterprise . Middleware
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Chamin Nalinda*
>
> Intern - Engineering
> WSO2 Inc. http://www.wso2.com
> lean.enterprise.middleware
>
> Mobile: (+94) 77 241 66 04
> Linkedin: https://www.linkedin.com/in/chaminnalinda
> Web: http://www.ckreativity.com
> Blog: http://techspiro.blogspot.com/
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Ravindra Ranwala
Software Engineer
WSO2, Inc: http://wso2.com

Mobile: +94714198770
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Kasun De Silva

2014-12-30 Thread Ravindra Ranwala
Congratulations Kasun !



Regards,

On Mon, Dec 29, 2014 at 12:05 PM, Jerad Rutnam  wrote:

> Congratulations Kasun :)
>
> On Mon, Dec 29, 2014 at 10:13 AM, Shashika Karunatilaka <
> shashi...@wso2.com> wrote:
>
>> Congrats Kasun
>>
>> On Mon, Dec 29, 2014 at 9:38 AM, Chamin Nalinda  wrote:
>>
>>> Congratulations Kasun :)
>>>
>>> On Sun, Dec 28, 2014 at 7:29 PM, Tharindu Dharmarathna <
>>> tharin...@wso2.com> wrote:
>>>
 Congrats kasun!!

 On Mon, Dec 29, 2014 at 7:35 AM, Danesh Kuruppu 
 wrote:

> Congrats Kasun !!!
>
> On Sun, Dec 28, 2014 at 4:51 PM, Manula Chathurika Thantriwatte <
> manu...@wso2.com> wrote:
>
>> Congratulations !!!
>>
>> On Sun, Dec 28, 2014 at 1:56 PM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats!
>>>
>>> On Sun, Dec 28, 2014 at 1:31 PM, Nirmal Fernando 
>>> wrote:
>>>
 Congratzz Kasun !!

 On Sun, Dec 28, 2014 at 11:11 AM, Vijitha Ekanayake <
 vijit...@wso2.com> wrote:

> Congratulations Kasun !!!
>
> On Sat, Dec 27, 2014 at 8:49 AM, Prasanna Dangalla <
> prasa...@wso2.com> wrote:
>
>> Congratulations Kasun !!!
>>
>> On Sat, Dec 27, 2014 at 10:18 PM, Dimuthu Leelarathne <
>> dimut...@wso2.com> wrote:
>>
>>> Hi all,
>>>
>>> WSO2 welcomes Kasun De Silva as WSO2 committer!
>>>
>>> Congratulations!
>>>
>>> thanks,
>>> dimuthu
>>>
>>> --
>>> Dimuthu Leelarathne
>>> 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/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Prasanna Dangalla
>> Software Engineer, WSO2, Inc.; http://wso2.com/
>> lean.enterprise.middleware
>>
>> cell: +94 777 55 80 30 | +94 718 11 27 51
>> twitter: @prasa77
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Vijitha Ekanayake
> Software Engineer*, *WSO2, Inc.; http://wso2.com/
> Mobile : +94 777 24 73 39 | +94 718 74 44 08
> lean.enterprise.middleware
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --

 Thanks & regards,
 Nirmal

 Senior Software Engineer- Platform Technologies Team, WSO2 Inc.
 Mobile: +94715779733
 Blog: http://nirmalfdo.blogspot.com/



 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>> Thanks
>>> Abimaran Kugathasan
>>>
>>> Software Engineer | WSO2 Inc
>>> Data & APIs Technologies Team
>>> Mobile : +94 773922820
>>>
>>> 
>>> 
>>>   
>>>   
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Regards,
>> Manula Chathurika Thantriwatte
>> Software Engineer
>> WSO2 Inc. : http://wso2.com
>> lean . enterprise . middleware
>>
>> email : manu...@wso2.com / man...@apache.org
>> phone : +94 772492511
>> blog : http://manulachathurika.blogspot.com/
>>
>>
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
>
> Danesh Kuruppu
> Software Engineer
> WSO2 Inc,
> Mobile: +94 (77) 1690552
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --

 *Tharindu Dharmarathna*Associate Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 mobile: *+94779109091 <%2B94779109091>*

 ___
 Dev mai

Re: [Dev] WSO2 Committers += Hasintha Indrajee

2014-12-30 Thread Pulasthi Mahawithana
Congrats Hasintha !

On Tue, Dec 30, 2014 at 8:47 AM, Prasanna Dangalla 
wrote:

> Congratulations
>
> On Tue, Dec 30, 2014 at 8:39 AM, Supun Sethunga  wrote:
>
>> Congratz Hasintha!
>>
>> On Mon, Dec 29, 2014 at 10:24 PM, Chanuka Dissanayake 
>> wrote:
>>
>>> Congratulations Hasintha .. :)
>>>
>>> On Mon, Dec 29, 2014 at 9:16 PM, Gayan Gunawardana 
>>> wrote:
>>>
 Congratz Hasintha ...!

 On Mon, Dec 29, 2014 at 9:08 PM, Thanuja Jayasinghe 
 wrote:

> Congratz Hasintha.!!!
>
> On Mon, Dec 29, 2014 at 10:29 AM, Tharindu Edirisinghe <
> tharin...@wso2.com> wrote:
>
>> Congratulations Hasintha !!!
>>
>> On Mon, Dec 29, 2014 at 8:51 PM, Milinda Perera 
>> wrote:
>>
>>> Congratulations Hasintha ... :)
>>>
>>> On Mon, Dec 29, 2014 at 8:27 PM, Chamin Nalinda 
>>> wrote:
>>>
 Congratulations Hasintha :)

 On Mon, Dec 29, 2014 at 7:47 PM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats!
>
> On Mon, Dec 29, 2014 at 4:44 PM, Vijitha Ekanayake <
> vijit...@wso2.com> wrote:
>
>> Congratulations Hasintha !!!
>>
>> On Mon, Dec 29, 2014 at 4:39 PM, Harsha Kumara 
>> wrote:
>>
>>> Congratulations Hasintha!
>>>
>>> On Mon, Dec 29, 2014 at 3:43 PM, Kalpa Welivitigoda <
>>> kal...@wso2.com> wrote:
>>>
 Congratulations Hasintha !

 On Mon, Dec 29, 2014 at 2:38 PM, Kasun De Silva <
 kas...@wso2.com> wrote:

> Congratz Hasintha...!!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Mon, Dec 29, 2014 at 1:53 PM, Darshana Gunawardana <
> darsh...@wso2.com> wrote:
>
>> Congratulations Hasintha..!!!
>>
>> On Mon, Dec 29, 2014 at 1:42 PM, Johann Nallathamby <
>> joh...@wso2.com> wrote:
>>
>>> Hi All,
>>>
>>> It's my pleasure to announce Hasintha Indrajee as a WSO2
>>> Committer. Hasintha has been a valuable contributor for
>>> WSO2 Identity Server product, and in recognition of his 
>>> contribution to
>>> WSO2, he has been voted as a WSO2 Committer.
>>>
>>> Hasintha, congratulations and keep up the good work!
>>>
>>> Thanks & Regards.
>>>
>>> --
>>>
>>> *Johann Dilantha Nallathamby*
>>> Associate Technical Lead & Product Lead of WSO2 Identity
>>> Server
>>> Integration Technologies Team
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>>
>>> Mobile - *+9476950*
>>> Blog - *http://nallaa.wordpress.com
>>> *
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Regards,
>>
>>
>> *Darshana Gunawardana*Software Engineer
>> WSO2 Inc.; http://wso2.com
>>
>> *E-mail: darsh...@wso2.com *
>> *Mobile: +94718566859 <%2B94718566859>*Lean . Enterprise .
>> Middleware
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Best Regards,

 Kalpa Welivitigoda
 Software Engineer, WSO2 Inc. http://wso2.com
 Email: kal...@wso2.com
 Mobile: +94776509215

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>> Harsha Kumara
>>> Software Engineer, WSO2 Inc.
>>> Mobile: +94775505618
>>> Blog:harshcreationz.blogspot.com
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.o

Re: [Dev] WSO2 Committers += Buddhima Wijeweera

2014-12-30 Thread Pulasthi Mahawithana
Congrats Buddima !

On Wed, Dec 31, 2014 at 8:25 AM, Ravindra Ranwala  wrote:

> Congrats Buddhima !
>
>
> Regards,
>
> On Mon, Dec 29, 2014 at 8:28 PM, Chamin Nalinda  wrote:
>
>> Congratulations  Buddhima !!!
>>
>> On Mon, Dec 29, 2014 at 6:38 PM, Ravi Undupitiya  wrote:
>>
>>> Congratulations Buddhima!!
>>>
>>> On Mon, Dec 29, 2014 at 7:55 AM, Kasun Indrasiri  wrote:
>>>
 Hi devs,

 Its my pleasure to welcome Buddhima Wijeweera as a WSO2 Committer.

 Buddhima, welcome aboard and keep up the good work.

 Thanks.

 --
 Kasun Indrasiri
 Software Architect
 WSO2, Inc.; http://wso2.com
 lean.enterprise.middleware

 cell: +94 77 556 5206
 Blog : http://kasunpanorama.blogspot.com/

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>> *Ravi Undupitiya*
>>> Senior Software Engineer; WSO2 http://wso2.com
>>>
>>>
>>> *E-mail: r...@wso2.com **M: **+94 772 930 712
>>> <%2B94%C2%A0772%20930%20712>*
>>>
>>> Lean . Enterprise . Middleware
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Chamin Nalinda*
>>
>> Intern - Engineering
>> WSO2 Inc. http://www.wso2.com
>> lean.enterprise.middleware
>>
>> Mobile: (+94) 77 241 66 04
>> Linkedin: https://www.linkedin.com/in/chaminnalinda
>> Web: http://www.ckreativity.com
>> Blog: http://techspiro.blogspot.com/
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Ravindra Ranwala
> Software Engineer
> WSO2, Inc: http://wso2.com
> 
> Mobile: +94714198770
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Pulasthi Mahawithana*
Software Engineer
WSO2 Inc., http://wso2.com/
Mobile: +94-71-5179022
Blog: http://blog.pulasthi.org
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Sandamal Weerasinghe

2014-12-30 Thread Pulasthi Mahawithana
Congrats Sandamal !

On Wed, Dec 31, 2014 at 8:25 AM, Ravindra Ranwala  wrote:

> Congrats Sandamal !
>
>
> Regards,
>
> On Mon, Dec 29, 2014 at 10:25 PM, Chanuka Dissanayake 
> wrote:
>
>> Congratulations Sandamal.. :)
>>
>> On Mon, Dec 29, 2014 at 6:33 PM, Ravi Undupitiya  wrote:
>>
>>> Congratulations Sandamal!!
>>>
>>> On Mon, Dec 29, 2014 at 7:54 AM, Kasun Indrasiri  wrote:
>>>
 Hi devs,

 Its my pleasure to welcome Sandamal Weerasinghe as a WSO2 Committer.

 Sandamal, welcome aboard and keep up the good work.

 Thanks.

 --
 Kasun Indrasiri
 Software Architect
 WSO2, Inc.; http://wso2.com
 lean.enterprise.middleware

 cell: +94 77 556 5206
 Blog : http://kasunpanorama.blogspot.com/

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>> *Ravi Undupitiya*
>>> Senior Software Engineer; WSO2 http://wso2.com
>>>
>>>
>>> *E-mail: r...@wso2.com **M: **+94 772 930 712
>>> <%2B94%C2%A0772%20930%20712>*
>>>
>>> Lean . Enterprise . Middleware
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Chanuka Dissanayake
>> *Software Engineer | **WSO2 Inc.*; http://wso2.com
>>
>> Mobile: +94 71 33 63 596
>> Email: chan...@wso2.com
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Ravindra Ranwala
> Software Engineer
> WSO2, Inc: http://wso2.com
> 
> Mobile: +94714198770
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Pulasthi Mahawithana*
Software Engineer
WSO2 Inc., http://wso2.com/
Mobile: +94-71-5179022
Blog: http://blog.pulasthi.org
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Kasun De Silva

2014-12-30 Thread Pulasthi Mahawithana
Congrats Kasun !

On Wed, Dec 31, 2014 at 8:27 AM, Ravindra Ranwala  wrote:

> Congratulations Kasun !
>
>
>
> Regards,
>
> On Mon, Dec 29, 2014 at 12:05 PM, Jerad Rutnam  wrote:
>
>> Congratulations Kasun :)
>>
>> On Mon, Dec 29, 2014 at 10:13 AM, Shashika Karunatilaka <
>> shashi...@wso2.com> wrote:
>>
>>> Congrats Kasun
>>>
>>> On Mon, Dec 29, 2014 at 9:38 AM, Chamin Nalinda  wrote:
>>>
 Congratulations Kasun :)

 On Sun, Dec 28, 2014 at 7:29 PM, Tharindu Dharmarathna <
 tharin...@wso2.com> wrote:

> Congrats kasun!!
>
> On Mon, Dec 29, 2014 at 7:35 AM, Danesh Kuruppu 
> wrote:
>
>> Congrats Kasun !!!
>>
>> On Sun, Dec 28, 2014 at 4:51 PM, Manula Chathurika Thantriwatte <
>> manu...@wso2.com> wrote:
>>
>>> Congratulations !!!
>>>
>>> On Sun, Dec 28, 2014 at 1:56 PM, Abimaran Kugathasan <
>>> abima...@wso2.com> wrote:
>>>
 Congrats!

 On Sun, Dec 28, 2014 at 1:31 PM, Nirmal Fernando 
 wrote:

> Congratzz Kasun !!
>
> On Sun, Dec 28, 2014 at 11:11 AM, Vijitha Ekanayake <
> vijit...@wso2.com> wrote:
>
>> Congratulations Kasun !!!
>>
>> On Sat, Dec 27, 2014 at 8:49 AM, Prasanna Dangalla <
>> prasa...@wso2.com> wrote:
>>
>>> Congratulations Kasun !!!
>>>
>>> On Sat, Dec 27, 2014 at 10:18 PM, Dimuthu Leelarathne <
>>> dimut...@wso2.com> wrote:
>>>
 Hi all,

 WSO2 welcomes Kasun De Silva as WSO2 committer!

 Congratulations!

 thanks,
 dimuthu

 --
 Dimuthu Leelarathne
 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/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>> Prasanna Dangalla
>>> Software Engineer, WSO2, Inc.; http://wso2.com/
>>> lean.enterprise.middleware
>>>
>>> cell: +94 777 55 80 30 | +94 718 11 27 51
>>> twitter: @prasa77
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Vijitha Ekanayake
>> Software Engineer*, *WSO2, Inc.; http://wso2.com/
>> Mobile : +94 777 24 73 39 | +94 718 74 44 08
>> lean.enterprise.middleware
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
>
> Thanks & regards,
> Nirmal
>
> Senior Software Engineer- Platform Technologies Team, WSO2 Inc.
> Mobile: +94715779733
> Blog: http://nirmalfdo.blogspot.com/
>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Thanks
 Abimaran Kugathasan

 Software Engineer | WSO2 Inc
 Data & APIs Technologies Team
 Mobile : +94 773922820

 
 
 
   


 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>> Regards,
>>> Manula Chathurika Thantriwatte
>>> Software Engineer
>>> WSO2 Inc. : http://wso2.com
>>> lean . enterprise . middleware
>>>
>>> email : manu...@wso2.com / man...@apache.org
>>> phone : +94 772492511
>>> blog : http://manulachathurika.blogspot.com/
>>>
>>>
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>>
>> Danesh Kuruppu
>> Software Engineer
>> WSO2 Inc,
>> Mobile: +94 (77) 1690552
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>

Re: [Dev] WSO2 Committers += Isuru Ranawaka

2014-12-30 Thread Pulasthi Mahawithana
Congrats Isuru !

On Wed, Dec 31, 2014 at 8:23 AM, Ravindra Ranwala  wrote:

> Congratulations Isuru !!
>
>
> Regards,
>
> On Tue, Dec 30, 2014 at 11:09 AM, Maheeka Jayasuriya 
> wrote:
>
>> Congrats Isuru !
>>
>>
>> Thanks,
>>
>> Maheeka Jayasuriya
>> Software Engineer
>> Mobile : +9450661
>>
>> On Mon, Dec 29, 2014 at 6:33 PM, Ravi Undupitiya  wrote:
>>
>>> Congratulations Isuru!!
>>>
>>> On Mon, Dec 29, 2014 at 4:41 PM, Harsha Kumara  wrote:
>>>
 Congratulations Isuru!

 On Mon, Dec 29, 2014 at 12:10 PM, Niranda Perera 
 wrote:

> Congrats Isuru
>
> On Mon, Dec 29, 2014 at 10:23 AM, Priyadarssini Kishokumar <
> priyadarss...@wso2.com> wrote:
>
>> Congratulations Isuru ...!!!
>>
>> On Mon, Dec 29, 2014 at 10:13 AM, Shashika Karunatilaka <
>> shashi...@wso2.com> wrote:
>>
>>> Congrats Isuru
>>>
>>> On Mon, Dec 29, 2014 at 10:11 AM, Kasun De Silva 
>>> wrote:
>>>
 Congratz Isuru..!!!

 *Kasun de Silva*
 Software Engineer | *WSO2 Inc.*; http://wso2.com
 lean.enterprise.middleware

 email   : kas...@wso2.com
 mobile : +94 77 794 4260


 On Mon, Dec 29, 2014 at 10:10 AM, Prasanna Dangalla <
 prasa...@wso2.com> wrote:

> Congratulations..
>
> On Mon, Dec 29, 2014 at 10:06 AM, Milinda Perera <
> milin...@wso2.com> wrote:
>
>> Congratulations Isuru ... :)
>>
>> On Mon, Dec 29, 2014 at 9:39 AM, Chamin Nalinda 
>> wrote:
>>
>>> Congratulations Isuru :)
>>>
>>> On Sun, Dec 28, 2014 at 7:26 PM, Abimaran Kugathasan <
>>> abima...@wso2.com> wrote:
>>>
 Congrats!

 On Mon, Dec 29, 2014 at 8:15 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Isuru !!!
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Mon, Dec 29, 2014 at 7:53 AM, Kasun Indrasiri <
> ka...@wso2.com> wrote:
>
>> Hi devs,
>>
>> Its my pleasure to welcome Isuru Ranawaka as a WSO2
>> Committer.
>>
>> IsuruR, welcome aboard and keep up the good work.
>>
>> Thanks.
>>
>> --
>> Kasun Indrasiri
>> Software Architect
>> WSO2, Inc.; http://wso2.com
>> lean.enterprise.middleware
>>
>> cell: +94 77 556 5206
>> Blog : http://kasunpanorama.blogspot.com/
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Thanks
 Abimaran Kugathasan

 Software Engineer | WSO2 Inc
 Data & APIs Technologies Team
 Mobile : +94 773922820

 
 
 
   


 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>> *Chamin Nalinda*
>>>
>>> Intern - Engineering
>>> WSO2 Inc. http://www.wso2.com
>>> lean.enterprise.middleware
>>>
>>> Mobile: (+94) 77 241 66 04
>>> Linkedin: https://www.linkedin.com/in/chaminnalinda
>>> Web: http://www.ckreativity.com
>>> Blog: http://techspiro.blogspot.com/
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Milinda Perera
>> Software Engineer;
>> WSO2 Inc. http://wso2.com ,
>> Mobile: (+94) 714 115 032
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --

Re: [Dev] WSO2 Committers += Kasun De Silva

2014-12-30 Thread Thilini Anoratna
Congratulations !!! :)


Regards.


On Wed, Dec 31, 2014 at 9:40 AM, Pulasthi Mahawithana 
wrote:

> Congrats Kasun !
>
> On Wed, Dec 31, 2014 at 8:27 AM, Ravindra Ranwala 
> wrote:
>
>> Congratulations Kasun !
>>
>>
>>
>> Regards,
>>
>> On Mon, Dec 29, 2014 at 12:05 PM, Jerad Rutnam  wrote:
>>
>>> Congratulations Kasun :)
>>>
>>> On Mon, Dec 29, 2014 at 10:13 AM, Shashika Karunatilaka <
>>> shashi...@wso2.com> wrote:
>>>
 Congrats Kasun

 On Mon, Dec 29, 2014 at 9:38 AM, Chamin Nalinda 
 wrote:

> Congratulations Kasun :)
>
> On Sun, Dec 28, 2014 at 7:29 PM, Tharindu Dharmarathna <
> tharin...@wso2.com> wrote:
>
>> Congrats kasun!!
>>
>> On Mon, Dec 29, 2014 at 7:35 AM, Danesh Kuruppu 
>> wrote:
>>
>>> Congrats Kasun !!!
>>>
>>> On Sun, Dec 28, 2014 at 4:51 PM, Manula Chathurika Thantriwatte <
>>> manu...@wso2.com> wrote:
>>>
 Congratulations !!!

 On Sun, Dec 28, 2014 at 1:56 PM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats!
>
> On Sun, Dec 28, 2014 at 1:31 PM, Nirmal Fernando 
> wrote:
>
>> Congratzz Kasun !!
>>
>> On Sun, Dec 28, 2014 at 11:11 AM, Vijitha Ekanayake <
>> vijit...@wso2.com> wrote:
>>
>>> Congratulations Kasun !!!
>>>
>>> On Sat, Dec 27, 2014 at 8:49 AM, Prasanna Dangalla <
>>> prasa...@wso2.com> wrote:
>>>
 Congratulations Kasun !!!

 On Sat, Dec 27, 2014 at 10:18 PM, Dimuthu Leelarathne <
 dimut...@wso2.com> wrote:

> Hi all,
>
> WSO2 welcomes Kasun De Silva as WSO2 committer!
>
> Congratulations!
>
> thanks,
> dimuthu
>
> --
> Dimuthu Leelarathne
> 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/cgi-bin/mailman/listinfo/dev
>
>


 --
 Prasanna Dangalla
 Software Engineer, WSO2, Inc.; http://wso2.com/
 lean.enterprise.middleware

 cell: +94 777 55 80 30 | +94 718 11 27 51
 twitter: @prasa77

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>> Vijitha Ekanayake
>>> Software Engineer*, *WSO2, Inc.; http://wso2.com/
>>> Mobile : +94 777 24 73 39 | +94 718 74 44 08
>>> lean.enterprise.middleware
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>>
>> Thanks & regards,
>> Nirmal
>>
>> Senior Software Engineer- Platform Technologies Team, WSO2 Inc.
>> Mobile: +94715779733
>> Blog: http://nirmalfdo.blogspot.com/
>>
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Thanks
> Abimaran Kugathasan
>
> Software Engineer | WSO2 Inc
> Data & APIs Technologies Team
> Mobile : +94 773922820
>
> 
> 
> 
>   
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Regards,
 Manula Chathurika Thantriwatte
 Software Engineer
 WSO2 Inc. : http://wso2.com
 lean . enterprise . middleware

 email : manu...@wso2.com / man...@apache.org
 phone : +94 772492511
 blog : http://manulachathurika.blogspot.com/




 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>

Re: [Dev] WSO2 Committers += Hasintha Indrajee

2014-12-30 Thread Amal Gunatilake
Congratz Hasintha !

Thank you  & Best regards,

*Amal Gunatilake*
 Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

On Wed, Dec 31, 2014 at 9:37 AM, Pulasthi Mahawithana 
wrote:

> Congrats Hasintha !
>
> On Tue, Dec 30, 2014 at 8:47 AM, Prasanna Dangalla 
> wrote:
>
>> Congratulations
>>
>> On Tue, Dec 30, 2014 at 8:39 AM, Supun Sethunga  wrote:
>>
>>> Congratz Hasintha!
>>>
>>> On Mon, Dec 29, 2014 at 10:24 PM, Chanuka Dissanayake 
>>> wrote:
>>>
 Congratulations Hasintha .. :)

 On Mon, Dec 29, 2014 at 9:16 PM, Gayan Gunawardana 
 wrote:

> Congratz Hasintha ...!
>
> On Mon, Dec 29, 2014 at 9:08 PM, Thanuja Jayasinghe 
> wrote:
>
>> Congratz Hasintha.!!!
>>
>> On Mon, Dec 29, 2014 at 10:29 AM, Tharindu Edirisinghe <
>> tharin...@wso2.com> wrote:
>>
>>> Congratulations Hasintha !!!
>>>
>>> On Mon, Dec 29, 2014 at 8:51 PM, Milinda Perera 
>>> wrote:
>>>
 Congratulations Hasintha ... :)

 On Mon, Dec 29, 2014 at 8:27 PM, Chamin Nalinda 
 wrote:

> Congratulations Hasintha :)
>
> On Mon, Dec 29, 2014 at 7:47 PM, Abimaran Kugathasan <
> abima...@wso2.com> wrote:
>
>> Congrats!
>>
>> On Mon, Dec 29, 2014 at 4:44 PM, Vijitha Ekanayake <
>> vijit...@wso2.com> wrote:
>>
>>> Congratulations Hasintha !!!
>>>
>>> On Mon, Dec 29, 2014 at 4:39 PM, Harsha Kumara >> > wrote:
>>>
 Congratulations Hasintha!

 On Mon, Dec 29, 2014 at 3:43 PM, Kalpa Welivitigoda <
 kal...@wso2.com> wrote:

> Congratulations Hasintha !
>
> On Mon, Dec 29, 2014 at 2:38 PM, Kasun De Silva <
> kas...@wso2.com> wrote:
>
>> Congratz Hasintha...!!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Mon, Dec 29, 2014 at 1:53 PM, Darshana Gunawardana <
>> darsh...@wso2.com> wrote:
>>
>>> Congratulations Hasintha..!!!
>>>
>>> On Mon, Dec 29, 2014 at 1:42 PM, Johann Nallathamby <
>>> joh...@wso2.com> wrote:
>>>
 Hi All,

 It's my pleasure to announce Hasintha Indrajee as a WSO2
 Committer. Hasintha has been a valuable contributor for
 WSO2 Identity Server product, and in recognition of his 
 contribution to
 WSO2, he has been voted as a WSO2 Committer.

 Hasintha, congratulations and keep up the good work!

 Thanks & Regards.

 --

 *Johann Dilantha Nallathamby*
 Associate Technical Lead & Product Lead of WSO2 Identity
 Server
 Integration Technologies Team
 WSO2, Inc.
 lean.enterprise.middleware

 Mobile - *+9476950*
 Blog - *http://nallaa.wordpress.com
 *

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>> Regards,
>>>
>>>
>>> *Darshana Gunawardana*Software Engineer
>>> WSO2 Inc.; http://wso2.com
>>>
>>> *E-mail: darsh...@wso2.com *
>>> *Mobile: +94718566859 <%2B94718566859>*Lean . Enterprise .
>>> Middleware
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Best Regards,
>
> Kalpa Welivitigoda
> Software Engineer, WSO2 Inc. http://wso2.com
> Email: kal...@wso2.com
> Mobile: +94776509215
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cg

Re: [Dev] WSO2 Committers += Buddhima Wijeweera

2014-12-30 Thread Amal Gunatilake
Congratz Buddima !

Thank you  & Best regards,

*Amal Gunatilake*
 Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

On Wed, Dec 31, 2014 at 9:37 AM, Pulasthi Mahawithana 
wrote:

> Congrats Buddima !
>
> On Wed, Dec 31, 2014 at 8:25 AM, Ravindra Ranwala 
> wrote:
>
>> Congrats Buddhima !
>>
>>
>> Regards,
>>
>> On Mon, Dec 29, 2014 at 8:28 PM, Chamin Nalinda  wrote:
>>
>>> Congratulations  Buddhima !!!
>>>
>>> On Mon, Dec 29, 2014 at 6:38 PM, Ravi Undupitiya  wrote:
>>>
 Congratulations Buddhima!!

 On Mon, Dec 29, 2014 at 7:55 AM, Kasun Indrasiri 
 wrote:

> Hi devs,
>
> Its my pleasure to welcome Buddhima Wijeweera as a WSO2 Committer.
>
> Buddhima, welcome aboard and keep up the good work.
>
> Thanks.
>
> --
> Kasun Indrasiri
> Software Architect
> WSO2, Inc.; http://wso2.com
> lean.enterprise.middleware
>
> cell: +94 77 556 5206
> Blog : http://kasunpanorama.blogspot.com/
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Ravi Undupitiya*
 Senior Software Engineer; WSO2 http://wso2.com


 *E-mail: r...@wso2.com **M: **+94 772 930 712
 <%2B94%C2%A0772%20930%20712>*

 Lean . Enterprise . Middleware

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>> *Chamin Nalinda*
>>>
>>> Intern - Engineering
>>> WSO2 Inc. http://www.wso2.com
>>> lean.enterprise.middleware
>>>
>>> Mobile: (+94) 77 241 66 04
>>> Linkedin: https://www.linkedin.com/in/chaminnalinda
>>> Web: http://www.ckreativity.com
>>> Blog: http://techspiro.blogspot.com/
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Ravindra Ranwala
>> Software Engineer
>> WSO2, Inc: http://wso2.com
>> 
>> Mobile: +94714198770
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Pulasthi Mahawithana*
> Software Engineer
> WSO2 Inc., http://wso2.com/
> Mobile: +94-71-5179022
> Blog: http://blog.pulasthi.org
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Sandamal Weerasinghe

2014-12-30 Thread Amal Gunatilake
Congratz Sandamal !

Thank you  & Best regards,

*Amal Gunatilake*
 Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

On Wed, Dec 31, 2014 at 9:39 AM, Pulasthi Mahawithana 
wrote:

> Congrats Sandamal !
>
> On Wed, Dec 31, 2014 at 8:25 AM, Ravindra Ranwala 
> wrote:
>
>> Congrats Sandamal !
>>
>>
>> Regards,
>>
>> On Mon, Dec 29, 2014 at 10:25 PM, Chanuka Dissanayake 
>> wrote:
>>
>>> Congratulations Sandamal.. :)
>>>
>>> On Mon, Dec 29, 2014 at 6:33 PM, Ravi Undupitiya  wrote:
>>>
 Congratulations Sandamal!!

 On Mon, Dec 29, 2014 at 7:54 AM, Kasun Indrasiri 
 wrote:

> Hi devs,
>
> Its my pleasure to welcome Sandamal Weerasinghe as a WSO2 Committer.
>
> Sandamal, welcome aboard and keep up the good work.
>
> Thanks.
>
> --
> Kasun Indrasiri
> Software Architect
> WSO2, Inc.; http://wso2.com
> lean.enterprise.middleware
>
> cell: +94 77 556 5206
> Blog : http://kasunpanorama.blogspot.com/
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Ravi Undupitiya*
 Senior Software Engineer; WSO2 http://wso2.com


 *E-mail: r...@wso2.com **M: **+94 772 930 712
 <%2B94%C2%A0772%20930%20712>*

 Lean . Enterprise . Middleware

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>> Chanuka Dissanayake
>>> *Software Engineer | **WSO2 Inc.*; http://wso2.com
>>>
>>> Mobile: +94 71 33 63 596
>>> Email: chan...@wso2.com
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Ravindra Ranwala
>> Software Engineer
>> WSO2, Inc: http://wso2.com
>> 
>> Mobile: +94714198770
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Pulasthi Mahawithana*
> Software Engineer
> WSO2 Inc., http://wso2.com/
> Mobile: +94-71-5179022
> Blog: http://blog.pulasthi.org
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Isuru Ranawaka

2014-12-30 Thread Amal Gunatilake
Congratz Isuru !

Thank you  & Best regards,

*Amal Gunatilake*
 Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

On Wed, Dec 31, 2014 at 9:41 AM, Pulasthi Mahawithana 
wrote:

> Congrats Isuru !
>
> On Wed, Dec 31, 2014 at 8:23 AM, Ravindra Ranwala 
> wrote:
>
>> Congratulations Isuru !!
>>
>>
>> Regards,
>>
>> On Tue, Dec 30, 2014 at 11:09 AM, Maheeka Jayasuriya 
>> wrote:
>>
>>> Congrats Isuru !
>>>
>>>
>>> Thanks,
>>>
>>> Maheeka Jayasuriya
>>> Software Engineer
>>> Mobile : +9450661
>>>
>>> On Mon, Dec 29, 2014 at 6:33 PM, Ravi Undupitiya  wrote:
>>>
 Congratulations Isuru!!

 On Mon, Dec 29, 2014 at 4:41 PM, Harsha Kumara 
 wrote:

> Congratulations Isuru!
>
> On Mon, Dec 29, 2014 at 12:10 PM, Niranda Perera 
> wrote:
>
>> Congrats Isuru
>>
>> On Mon, Dec 29, 2014 at 10:23 AM, Priyadarssini Kishokumar <
>> priyadarss...@wso2.com> wrote:
>>
>>> Congratulations Isuru ...!!!
>>>
>>> On Mon, Dec 29, 2014 at 10:13 AM, Shashika Karunatilaka <
>>> shashi...@wso2.com> wrote:
>>>
 Congrats Isuru

 On Mon, Dec 29, 2014 at 10:11 AM, Kasun De Silva 
 wrote:

> Congratz Isuru..!!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Mon, Dec 29, 2014 at 10:10 AM, Prasanna Dangalla <
> prasa...@wso2.com> wrote:
>
>> Congratulations..
>>
>> On Mon, Dec 29, 2014 at 10:06 AM, Milinda Perera <
>> milin...@wso2.com> wrote:
>>
>>> Congratulations Isuru ... :)
>>>
>>> On Mon, Dec 29, 2014 at 9:39 AM, Chamin Nalinda >> > wrote:
>>>
 Congratulations Isuru :)

 On Sun, Dec 28, 2014 at 7:26 PM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats!
>
> On Mon, Dec 29, 2014 at 8:15 AM, Dakshika Jayathilaka <
> daksh...@wso2.com> wrote:
>
>> Congratulations Isuru !!!
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Mon, Dec 29, 2014 at 7:53 AM, Kasun Indrasiri <
>> ka...@wso2.com> wrote:
>>
>>> Hi devs,
>>>
>>> Its my pleasure to welcome Isuru Ranawaka as a WSO2
>>> Committer.
>>>
>>> IsuruR, welcome aboard and keep up the good work.
>>>
>>> Thanks.
>>>
>>> --
>>> Kasun Indrasiri
>>> Software Architect
>>> WSO2, Inc.; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> cell: +94 77 556 5206
>>> Blog : http://kasunpanorama.blogspot.com/
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Thanks
> Abimaran Kugathasan
>
> Software Engineer | WSO2 Inc
> Data & APIs Technologies Team
> Mobile : +94 773922820
>
> 
> 
> 
>   
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Chamin Nalinda*

 Intern - Engineering
 WSO2 Inc. http://www.wso2.com
 lean.enterprise.middleware

 Mobile: (+94) 77 241 66 04
 Linkedin: https://www.linkedin.com/in/chaminnalinda
 Web: http://www.ckreativity.com
 Blog: http://techspiro.blogspot.com/


 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>

Re: [Dev] WSO2 Committers += Kasun De Silva

2014-12-30 Thread Amal Gunatilake
Congratz Kasun !

Thank you  & Best regards,

*Amal Gunatilake*
 Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

On Wed, Dec 31, 2014 at 12:06 PM, Thilini Anoratna 
wrote:

> Congratulations !!! :)
>
>
> Regards.
>
>
> On Wed, Dec 31, 2014 at 9:40 AM, Pulasthi Mahawithana 
> wrote:
>
>> Congrats Kasun !
>>
>> On Wed, Dec 31, 2014 at 8:27 AM, Ravindra Ranwala 
>> wrote:
>>
>>> Congratulations Kasun !
>>>
>>>
>>>
>>> Regards,
>>>
>>> On Mon, Dec 29, 2014 at 12:05 PM, Jerad Rutnam  wrote:
>>>
 Congratulations Kasun :)

 On Mon, Dec 29, 2014 at 10:13 AM, Shashika Karunatilaka <
 shashi...@wso2.com> wrote:

> Congrats Kasun
>
> On Mon, Dec 29, 2014 at 9:38 AM, Chamin Nalinda 
> wrote:
>
>> Congratulations Kasun :)
>>
>> On Sun, Dec 28, 2014 at 7:29 PM, Tharindu Dharmarathna <
>> tharin...@wso2.com> wrote:
>>
>>> Congrats kasun!!
>>>
>>> On Mon, Dec 29, 2014 at 7:35 AM, Danesh Kuruppu 
>>> wrote:
>>>
 Congrats Kasun !!!

 On Sun, Dec 28, 2014 at 4:51 PM, Manula Chathurika Thantriwatte <
 manu...@wso2.com> wrote:

> Congratulations !!!
>
> On Sun, Dec 28, 2014 at 1:56 PM, Abimaran Kugathasan <
> abima...@wso2.com> wrote:
>
>> Congrats!
>>
>> On Sun, Dec 28, 2014 at 1:31 PM, Nirmal Fernando > > wrote:
>>
>>> Congratzz Kasun !!
>>>
>>> On Sun, Dec 28, 2014 at 11:11 AM, Vijitha Ekanayake <
>>> vijit...@wso2.com> wrote:
>>>
 Congratulations Kasun !!!

 On Sat, Dec 27, 2014 at 8:49 AM, Prasanna Dangalla <
 prasa...@wso2.com> wrote:

> Congratulations Kasun !!!
>
> On Sat, Dec 27, 2014 at 10:18 PM, Dimuthu Leelarathne <
> dimut...@wso2.com> wrote:
>
>> Hi all,
>>
>> WSO2 welcomes Kasun De Silva as WSO2 committer!
>>
>> Congratulations!
>>
>> thanks,
>> dimuthu
>>
>> --
>> Dimuthu Leelarathne
>> 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/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Prasanna Dangalla
> Software Engineer, WSO2, Inc.; http://wso2.com/
> lean.enterprise.middleware
>
> cell: +94 777 55 80 30 | +94 718 11 27 51
> twitter: @prasa77
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Vijitha Ekanayake
 Software Engineer*, *WSO2, Inc.; http://wso2.com/
 Mobile : +94 777 24 73 39 | +94 718 74 44 08
 lean.enterprise.middleware

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>>
>>> --
>>>
>>> Thanks & regards,
>>> Nirmal
>>>
>>> Senior Software Engineer- Platform Technologies Team, WSO2 Inc.
>>> Mobile: +94715779733
>>> Blog: http://nirmalfdo.blogspot.com/
>>>
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Thanks
>> Abimaran Kugathasan
>>
>> Software Engineer | WSO2 Inc
>> Data & APIs Technologies Team
>> Mobile : +94 773922820
>>
>> 
>> 
>> 
>>   
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Regards,
> Manula Chathurika Thantriwatte
> Software Engineer
> WSO2 Inc. : http://wso2.com
> lean . enterprise . m

Re: [Dev] WSO2 Committers += Hasintha Indrajee

2014-12-30 Thread Isuru Ranawaka
Congratz Hasintha !!

On Wed, Dec 31, 2014 at 12:09 PM, Amal Gunatilake  wrote:

> Congratz Hasintha !
>
> Thank you  & Best regards,
>
> *Amal Gunatilake*
>  Software Engineer
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> On Wed, Dec 31, 2014 at 9:37 AM, Pulasthi Mahawithana 
> wrote:
>
>> Congrats Hasintha !
>>
>> On Tue, Dec 30, 2014 at 8:47 AM, Prasanna Dangalla 
>> wrote:
>>
>>> Congratulations
>>>
>>> On Tue, Dec 30, 2014 at 8:39 AM, Supun Sethunga  wrote:
>>>
 Congratz Hasintha!

 On Mon, Dec 29, 2014 at 10:24 PM, Chanuka Dissanayake >>> > wrote:

> Congratulations Hasintha .. :)
>
> On Mon, Dec 29, 2014 at 9:16 PM, Gayan Gunawardana 
> wrote:
>
>> Congratz Hasintha ...!
>>
>> On Mon, Dec 29, 2014 at 9:08 PM, Thanuja Jayasinghe > > wrote:
>>
>>> Congratz Hasintha.!!!
>>>
>>> On Mon, Dec 29, 2014 at 10:29 AM, Tharindu Edirisinghe <
>>> tharin...@wso2.com> wrote:
>>>
 Congratulations Hasintha !!!

 On Mon, Dec 29, 2014 at 8:51 PM, Milinda Perera 
 wrote:

> Congratulations Hasintha ... :)
>
> On Mon, Dec 29, 2014 at 8:27 PM, Chamin Nalinda 
> wrote:
>
>> Congratulations Hasintha :)
>>
>> On Mon, Dec 29, 2014 at 7:47 PM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats!
>>>
>>> On Mon, Dec 29, 2014 at 4:44 PM, Vijitha Ekanayake <
>>> vijit...@wso2.com> wrote:
>>>
 Congratulations Hasintha !!!

 On Mon, Dec 29, 2014 at 4:39 PM, Harsha Kumara <
 hars...@wso2.com> wrote:

> Congratulations Hasintha!
>
> On Mon, Dec 29, 2014 at 3:43 PM, Kalpa Welivitigoda <
> kal...@wso2.com> wrote:
>
>> Congratulations Hasintha !
>>
>> On Mon, Dec 29, 2014 at 2:38 PM, Kasun De Silva <
>> kas...@wso2.com> wrote:
>>
>>> Congratz Hasintha...!!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Mon, Dec 29, 2014 at 1:53 PM, Darshana Gunawardana <
>>> darsh...@wso2.com> wrote:
>>>
 Congratulations Hasintha..!!!

 On Mon, Dec 29, 2014 at 1:42 PM, Johann Nallathamby <
 joh...@wso2.com> wrote:

> Hi All,
>
> It's my pleasure to announce Hasintha Indrajee as a WSO2
> Committer. Hasintha has been a valuable contributor for
> WSO2 Identity Server product, and in recognition of his 
> contribution to
> WSO2, he has been voted as a WSO2 Committer.
>
> Hasintha, congratulations and keep up the good work!
>
> Thanks & Regards.
>
> --
>
> *Johann Dilantha Nallathamby*
> Associate Technical Lead & Product Lead of WSO2 Identity
> Server
> Integration Technologies Team
> WSO2, Inc.
> lean.enterprise.middleware
>
> Mobile - *+9476950*
> Blog - *http://nallaa.wordpress.com
> *
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Regards,


 *Darshana Gunawardana*Software Engineer
 WSO2 Inc.; http://wso2.com

 *E-mail: darsh...@wso2.com *
 *Mobile: +94718566859 <%2B94718566859>*Lean . Enterprise .
 Middleware

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev


>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Best Regards,
>>
>> Kalpa Welivitigoda
>> Software Engineer