Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Rajkumar Rajaratnam
Congrats Firzhan !!!

On Tue, Dec 23, 2014 at 1:14 PM, Waruna Jayaweera  wrote:

> Congratulations Firzhan :D
>
> On Tue, Dec 23, 2014 at 12:35 PM, Milinda Perera 
> wrote:
>
>> Congratulations firzhan  :)
>>
>> On Tue, Dec 23, 2014 at 12:14 PM, Abimaran Kugathasan 
>> wrote:
>>
>>> Congrats!
>>>
>>> On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
>>> manu...@wso2.com> wrote:
>>>
 Congratulations Firzhan.

 On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
 parapa...@wso2.com> wrote:

> Congratz Firzan !!!
>
> On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana <
> darsh...@wso2.com> wrote:
>
>> Congratulations Firzhan !!!.. Keep up the good work..
>>
>> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
>> sendu...@wso2.com> wrote:
>>
>>> Congratulations Firzhan !!
>>>
>>> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
>>> anurud...@wso2.com> wrote:
>>>
 Congratulations Firzhan!!

 On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna <
 ar...@wso2.com> wrote:

> Congratzz Firzhan...!!!
>
> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
> wrote:
>
>> Congratz Firzan !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
>> nand...@wso2.com> wrote:
>>
>>> Hi All,
>>>
>>> It is my pleasure to welcome Firzhan as a WSO2 committer.
>>> Firzhan is a key member of Business Process Server Team and has 
>>> contributed
>>> to Both BPS and IS.
>>> Welcome aboard and week up the good work !
>>>
>>> Regards
>>> Nandika
>>>
>>> --
>>> Nandika Jayawardana
>>> Senior Technical Lead
>>> WSO2 Inc ; http://wso2.com
>>> 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
>>
>>
>
>
> --
>
> *Aruna Sujith Karunarathna* | Software Engineer
> WSO2, Inc | lean. enterprise. middleware.
> #20, Palm Grove, Colombo 03, Sri Lanka
> Mobile: +94 71 9040362 | Work: +94 112145345
> Email: ar...@wso2.com | Web: www.wso2.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Anuruddha Premalal*
 Software Eng. | WSO2 Inc.
 Mobile : +94710461070
 Web site : www.regilandvalley.com


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


>>>
>>>
>>> --
>>> *Senduran *
>>> Software Engineer,
>>> WSO2, Inc.;  http://wso2.com/ 
>>> Mobile: +94 77 952 6548
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Thanks & Regards
> --
> Srisunmugaraja Paraparan
> Software Engineer,
> WSO2 Inc. - lean . enterprise . middleware |  wso2.com
>
> email : parapa...@wso2.com, mobile : +94 77 0362151
>
> ___
> 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] "InvalidKeySpecException: key spec not recognised" while decoding public key

2014-12-22 Thread Ananthaneshan Elampooran
Hi Team,

I get "java.security.spec.InvalidKeySpecException: key spec not recognised"
exception while running it in carbon component but the same code (library)
works fine as a self contained web application.

I am using "buncycastle" library to decode public key.

here is the code:
public PublicKey decodePublicKey(byte[] encodedPublicKey) throws
U2fException {
try {
X9ECParameters curve = SECNamedCurves.getByName("secp256r1");
ECPoint point;
try {
point = curve.getCurve().decodePoint(encodedPublicKey);
} catch (RuntimeException e) {
throw new U2fException("Could not parse user public key",
e);
}

return KeyFactory.getInstance("ECDSA").generatePublic(
new ECPublicKeySpec(point,
new ECParameterSpec(
curve.getCurve(),
curve.getG(),
curve.getN(),
curve.getH()
)
)
);
} catch (InvalidKeySpecException e) {
throw new U2fException(ERROR_DECODING_PUBLIC_KEY, e);
} catch (NoSuchAlgorithmException e) {
throw new U2fException(ERROR_DECODING_PUBLIC_KEY, e);
}
}

online resources suggests its because class loading issues[1
], also the provider
installation guide[2
].

I tried installing JCE provider to jre, didn't help. web application is
working without installing the provider

need information regards JCE provider class loading and security policy
details in carbon.

1. http://www.bouncycastle.org/jira/browse/BJA-131
2. http://www.bouncycastle.org/wiki/display/JA1/Provider+Installation
*E. Ananthaneshan*
Associate Software Engineer
WSO2, Inc: http://wso2.com
Mob: +94 712307125
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] https support for sample axis2server in automation framework

2014-12-22 Thread Waruna Perera
HI All,

https support in sample axis2server in automation framework added. You can
find the how to use it in the attached doc.

Thanks,

-- 
Waruna Perera
Senior Software Engineer - Test Automation
Mobile: +94 77 3867037
WSO2, Inc.; http://wso2.com/
lean . enterprise . middlewear.


Axis2serverHTTPStransportsupport.pdf
Description: Adobe PDF document
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Nirmal Fernando
Congratz Gayan!!

On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda  wrote:

> Congratulations Gayan !
>
> On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana 
> wrote:
>
>> Hi,
>>
>> It is with great pleasure that I welcome Gayan as a WSO2 committer,
>> Congratulations and keep up with the good work! ..
>>
>> --
>> Lakmal Warusawithana
>> Vice President, Apache Stratos
>> Director - Cloud Architecture; WSO2 Inc.
>> Mobile : +94714289692
>> Blog : http://lakmalsview.blogspot.com/
>>
>>
>> ___
>> 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
>
>


-- 

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


Re: [Dev] Implementing a Log Agent to send logs to BAM

2014-12-22 Thread Dineepa Edirisinghe
Hi Chamila,

The agent listens to the log files which means it publish events ones the
log entry is added. And also it can read the complete logs and publish as
well. Initially the agent listens to log files and send events to BAM, but
listening to the TCP and UDP to get logs and sending them can be done as a
continuation.

Thank you

Dineepa Edirisinghe
Software Engineer-Intern
WSO2

Mob: +94 777 867 396

On Tue, Dec 23, 2014 at 12:30 PM, Chamila De Alwis 
wrote:

> Hi Dineepa,
>
> Would this agent listen to logs in real time and send new lines to BAM or
> would it parse static files? Furthermore, is there going to be any
> intermediate processing of the log entries before being passed to BAM?
>
>
> On Mon, Dec 22, 2014 at 11:45 AM, Dineepa Edirisinghe 
> wrote:
>
>> At the given time I will be considering to write an agent which listens
>> log files, but the agent will be implementing in an extensible way so that
>> the functionality of listening to TCP or UDP and send can be considered
>> later.
>>
>> I didn't quite understand this. Does this mean the agent can act as an
> intermediary to some remote resource?
>
>
>
> Regards,
> Chamila de Alwis
> Software Engineer | WSO2 | +94772207163
> Blog: code.chamiladealwis.com
>
>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Waruna Jayaweera
Congratulations Firzhan :D

On Tue, Dec 23, 2014 at 12:35 PM, Milinda Perera  wrote:

> Congratulations firzhan  :)
>
> On Tue, Dec 23, 2014 at 12:14 PM, Abimaran Kugathasan 
> wrote:
>
>> Congrats!
>>
>> On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
>> manu...@wso2.com> wrote:
>>
>>> Congratulations Firzhan.
>>>
>>> On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
>>> parapa...@wso2.com> wrote:
>>>
 Congratz Firzan !!!

 On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana <
 darsh...@wso2.com> wrote:

> Congratulations Firzhan !!!.. Keep up the good work..
>
> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
> sendu...@wso2.com> wrote:
>
>> Congratulations Firzhan !!
>>
>> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
>> anurud...@wso2.com> wrote:
>>
>>> Congratulations Firzhan!!
>>>
>>> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna >> > wrote:
>>>
 Congratzz Firzhan...!!!

 On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
 wrote:

> Congratz Firzan !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
> nand...@wso2.com> wrote:
>
>> Hi All,
>>
>> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan
>> is a key member of Business Process Server Team and has contributed 
>> to Both
>> BPS and IS.
>> Welcome aboard and week up the good work !
>>
>> Regards
>> Nandika
>>
>> --
>> Nandika Jayawardana
>> Senior Technical Lead
>> WSO2 Inc ; http://wso2.com
>> 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
>
>


 --

 *Aruna Sujith Karunarathna* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 9040362 | Work: +94 112145345
 Email: ar...@wso2.com | Web: www.wso2.com


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


>>>
>>>
>>> --
>>> *Anuruddha Premalal*
>>> Software Eng. | WSO2 Inc.
>>> Mobile : +94710461070
>>> Web site : www.regilandvalley.com
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Senduran *
>> Software Engineer,
>> WSO2, Inc.;  http://wso2.com/ 
>> Mobile: +94 77 952 6548
>>
>> ___
>> 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
>
>


 --
 Thanks & Regards
 --
 Srisunmugaraja Paraparan
 Software Engineer,
 WSO2 Inc. - lean . enterprise . middleware |  wso2.com

 email : parapa...@wso2.com, mobile : +94 77 0362151

 ___
 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
>>>
>>>
>>
>>
>> --
>> Thanks
>> Abimaran Kugathasan
>>
>> Software Engineer | WSO2 Inc
>> Data & APIs Technologies Team
>> Mobile : +94 773922820
>>
>> 
>> 

Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Damith Wickramasinghe
Congratzz... :)

On Tue, Dec 23, 2014 at 1:03 PM, Vijitha Ekanayake 
wrote:

> Congratulations Firzhan..
>
> On Tue, Dec 23, 2014 at 12:54 PM, Prasanna Dangalla 
> wrote:
>
>> Congratulations
>>
>> On Tue, Dec 23, 2014 at 12:53 PM, Danesh Kuruppu  wrote:
>>
>>> Congrats Firzhan !!!
>>>
>>> On Tue, Dec 23, 2014 at 12:47 PM, Buddhima Wijeweera 
>>> wrote:
>>>
 Congratulations Firzhan !!!

 On Tue, Dec 23, 2014 at 12:40 PM, Shazni Nazeer 
 wrote:

> Congratz Firzhan!!!
>
> Shazni Nazeer
>
> Senior Software Engineer
>
> Mob : +94 37331
> LinkedIn : http://lk.linkedin.com/in/shazninazeer
> Blog : http://shazninazeer.blogspot.com
>
> On Tue, Dec 23, 2014 at 12:36 PM, Pulasthi Mahawithana <
> pulast...@wso2.com> wrote:
>
>> Congrats Firzhan !
>>
>> On Tue, Dec 23, 2014 at 12:14 PM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats!
>>>
>>> On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
>>> manu...@wso2.com> wrote:
>>>
 Congratulations Firzhan.

 On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
 parapa...@wso2.com> wrote:

> Congratz Firzan !!!
>
> On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana <
> darsh...@wso2.com> wrote:
>
>> Congratulations Firzhan !!!.. Keep up the good work..
>>
>> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
>> sendu...@wso2.com> wrote:
>>
>>> Congratulations Firzhan !!
>>>
>>> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
>>> anurud...@wso2.com> wrote:
>>>
 Congratulations Firzhan!!

 On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna <
 ar...@wso2.com> wrote:

> Congratzz Firzhan...!!!
>
> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva <
> kas...@wso2.com> wrote:
>
>> Congratz Firzan !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
>> nand...@wso2.com> wrote:
>>
>>> Hi All,
>>>
>>> It is my pleasure to welcome Firzhan as a WSO2 committer.
>>> Firzhan is a key member of Business Process Server Team and has 
>>> contributed
>>> to Both BPS and IS.
>>> Welcome aboard and week up the good work !
>>>
>>> Regards
>>> Nandika
>>>
>>> --
>>> Nandika Jayawardana
>>> Senior Technical Lead
>>> WSO2 Inc ; http://wso2.com
>>> 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
>>
>>
>
>
> --
>
> *Aruna Sujith Karunarathna* | Software Engineer
> WSO2, Inc | lean. enterprise. middleware.
> #20, Palm Grove, Colombo 03, Sri Lanka
> Mobile: +94 71 9040362 | Work: +94 112145345
> Email: ar...@wso2.com | Web: www.wso2.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Anuruddha Premalal*
 Software Eng. | WSO2 Inc.
 Mobile : +94710461070
 Web site : www.regilandvalley.com


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


>>>
>>>
>>> --
>>> *Senduran *
>>> Software Engineer,
>>> WSO2, Inc.;  http://wso2.com/ 
>>> Mobile: +94 77 952 6548
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>

Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Vijitha Ekanayake
Congratulations Firzhan..

On Tue, Dec 23, 2014 at 12:54 PM, Prasanna Dangalla 
wrote:

> Congratulations
>
> On Tue, Dec 23, 2014 at 12:53 PM, Danesh Kuruppu  wrote:
>
>> Congrats Firzhan !!!
>>
>> On Tue, Dec 23, 2014 at 12:47 PM, Buddhima Wijeweera 
>> wrote:
>>
>>> Congratulations Firzhan !!!
>>>
>>> On Tue, Dec 23, 2014 at 12:40 PM, Shazni Nazeer  wrote:
>>>
 Congratz Firzhan!!!

 Shazni Nazeer

 Senior Software Engineer

 Mob : +94 37331
 LinkedIn : http://lk.linkedin.com/in/shazninazeer
 Blog : http://shazninazeer.blogspot.com

 On Tue, Dec 23, 2014 at 12:36 PM, Pulasthi Mahawithana <
 pulast...@wso2.com> wrote:

> Congrats Firzhan !
>
> On Tue, Dec 23, 2014 at 12:14 PM, Abimaran Kugathasan <
> abima...@wso2.com> wrote:
>
>> Congrats!
>>
>> On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
>> manu...@wso2.com> wrote:
>>
>>> Congratulations Firzhan.
>>>
>>> On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
>>> parapa...@wso2.com> wrote:
>>>
 Congratz Firzan !!!

 On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana <
 darsh...@wso2.com> wrote:

> Congratulations Firzhan !!!.. Keep up the good work..
>
> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
> sendu...@wso2.com> wrote:
>
>> Congratulations Firzhan !!
>>
>> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
>> anurud...@wso2.com> wrote:
>>
>>> Congratulations Firzhan!!
>>>
>>> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna <
>>> ar...@wso2.com> wrote:
>>>
 Congratzz Firzhan...!!!

 On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva <
 kas...@wso2.com> wrote:

> Congratz Firzan !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
> nand...@wso2.com> wrote:
>
>> Hi All,
>>
>> It is my pleasure to welcome Firzhan as a WSO2 committer.
>> Firzhan is a key member of Business Process Server Team and has 
>> contributed
>> to Both BPS and IS.
>> Welcome aboard and week up the good work !
>>
>> Regards
>> Nandika
>>
>> --
>> Nandika Jayawardana
>> Senior Technical Lead
>> WSO2 Inc ; http://wso2.com
>> 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
>
>


 --

 *Aruna Sujith Karunarathna* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 9040362 | Work: +94 112145345
 Email: ar...@wso2.com | Web: www.wso2.com


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


>>>
>>>
>>> --
>>> *Anuruddha Premalal*
>>> Software Eng. | WSO2 Inc.
>>> Mobile : +94710461070
>>> Web site : www.regilandvalley.com
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Senduran *
>> Software Engineer,
>> WSO2, Inc.;  http://wso2.com/ 
>> Mobile: +94 77 952 6548
>>
>> ___
>> 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

Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Inshaf Mahath
Congrats Firzhan !!!

On Tue, Dec 23, 2014 at 12:54 PM, Prasanna Dangalla 
wrote:

> Congratulations
>
> On Tue, Dec 23, 2014 at 12:53 PM, Danesh Kuruppu  wrote:
>
>> Congrats Firzhan !!!
>>
>> On Tue, Dec 23, 2014 at 12:47 PM, Buddhima Wijeweera 
>> wrote:
>>
>>> Congratulations Firzhan !!!
>>>
>>> On Tue, Dec 23, 2014 at 12:40 PM, Shazni Nazeer  wrote:
>>>
 Congratz Firzhan!!!

 Shazni Nazeer

 Senior Software Engineer

 Mob : +94 37331
 LinkedIn : http://lk.linkedin.com/in/shazninazeer
 Blog : http://shazninazeer.blogspot.com

 On Tue, Dec 23, 2014 at 12:36 PM, Pulasthi Mahawithana <
 pulast...@wso2.com> wrote:

> Congrats Firzhan !
>
> On Tue, Dec 23, 2014 at 12:14 PM, Abimaran Kugathasan <
> abima...@wso2.com> wrote:
>
>> Congrats!
>>
>> On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
>> manu...@wso2.com> wrote:
>>
>>> Congratulations Firzhan.
>>>
>>> On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
>>> parapa...@wso2.com> wrote:
>>>
 Congratz Firzan !!!

 On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana <
 darsh...@wso2.com> wrote:

> Congratulations Firzhan !!!.. Keep up the good work..
>
> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
> sendu...@wso2.com> wrote:
>
>> Congratulations Firzhan !!
>>
>> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
>> anurud...@wso2.com> wrote:
>>
>>> Congratulations Firzhan!!
>>>
>>> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna <
>>> ar...@wso2.com> wrote:
>>>
 Congratzz Firzhan...!!!

 On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva <
 kas...@wso2.com> wrote:

> Congratz Firzan !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
> nand...@wso2.com> wrote:
>
>> Hi All,
>>
>> It is my pleasure to welcome Firzhan as a WSO2 committer.
>> Firzhan is a key member of Business Process Server Team and has 
>> contributed
>> to Both BPS and IS.
>> Welcome aboard and week up the good work !
>>
>> Regards
>> Nandika
>>
>> --
>> Nandika Jayawardana
>> Senior Technical Lead
>> WSO2 Inc ; http://wso2.com
>> 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
>
>


 --

 *Aruna Sujith Karunarathna* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 9040362 | Work: +94 112145345
 Email: ar...@wso2.com | Web: www.wso2.com


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


>>>
>>>
>>> --
>>> *Anuruddha Premalal*
>>> Software Eng. | WSO2 Inc.
>>> Mobile : +94710461070
>>> Web site : www.regilandvalley.com
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Senduran *
>> Software Engineer,
>> WSO2, Inc.;  http://wso2.com/ 
>> Mobile: +94 77 952 6548
>>
>> ___
>> 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 . Enterp

Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Vijitha Ekanayake
Congratulations Gayan .. !!!

On Tue, Dec 23, 2014 at 12:56 PM, Prasanna Dangalla 
wrote:

> Congratulations...
>
> On Tue, Dec 23, 2014 at 12:30 PM, Upul Bandara  wrote:
>
>> Congratulations Gayan !!!
>>
>> On Tue, Dec 23, 2014 at 10:56 AM, Manula Chathurika Thantriwatte <
>> manu...@wso2.com> wrote:
>>
>>> Congratulations Gayan !!!
>>>
>>> On Tue, Dec 23, 2014 at 10:33 AM, Inosh Perera  wrote:
>>>
 Congrats Gayan!!

 On Tue, Dec 23, 2014 at 10:29 AM, Buddhima Wijeweera >>> > wrote:

> Congratulations Gayan !!!
>
> On Tue, Dec 23, 2014 at 10:28 AM, Samith Dassanayake 
> wrote:
>
>> Congratz Gayan!
>>
>> On Tue, Dec 23, 2014 at 10:22 AM, Dakshika Jayathilaka <
>> daksh...@wso2.com> wrote:
>>
>>> Congratulations Gayan !
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Dec 23, 2014 at 10:18 AM, Supun Sethunga 
>>> wrote:
>>>
 Congratz Gayan!

 On Tue, Dec 23, 2014 at 10:15 AM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats Gayan! :)
>
> On Tue, Dec 23, 2014 at 10:07 AM, Harsha Kumara 
> wrote:
>
>> Congratulations Gayan!
>>
>> On Tue, Dec 23, 2014 at 9:54 AM, Danesh Kuruppu 
>> wrote:
>>
>>> Congrats Gayan !!
>>>
>>>
>>> On Tue, Dec 23, 2014 at 9:28 AM, Kasun De Silva >> > wrote:
>>>
 Congratz Gayan !!!

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

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


 On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda <
 kal...@wso2.com> wrote:

> Congratulations Gayan !
>
> On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana <
> lak...@wso2.com> wrote:
>
>> Hi,
>>
>> It is with great pleasure that I welcome Gayan as a WSO2
>> committer, Congratulations and keep up with the good work! ..
>>
>> --
>> Lakmal Warusawithana
>> Vice President, Apache Stratos
>> Director - Cloud Architecture; WSO2 Inc.
>> Mobile : +94714289692
>> Blog : http://lakmalsview.blogspot.com/
>>
>>
>> ___
>> 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
>
>

 ___
 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
>>>
>>>
>>
>>
>> --
>> Harsha Kumara
>> Software Engineer, WSO2 Inc.
>> Mobile: +94775505618
>> Blog:harshcreationz.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
>
>


 --
 *Supun Sethunga*
 Software Engineer
 W

Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Prasanna Dangalla
Congratulations...

On Tue, Dec 23, 2014 at 12:30 PM, Upul Bandara  wrote:

> Congratulations Gayan !!!
>
> On Tue, Dec 23, 2014 at 10:56 AM, Manula Chathurika Thantriwatte <
> manu...@wso2.com> wrote:
>
>> Congratulations Gayan !!!
>>
>> On Tue, Dec 23, 2014 at 10:33 AM, Inosh Perera  wrote:
>>
>>> Congrats Gayan!!
>>>
>>> On Tue, Dec 23, 2014 at 10:29 AM, Buddhima Wijeweera 
>>> wrote:
>>>
 Congratulations Gayan !!!

 On Tue, Dec 23, 2014 at 10:28 AM, Samith Dassanayake 
 wrote:

> Congratz Gayan!
>
> On Tue, Dec 23, 2014 at 10:22 AM, Dakshika Jayathilaka <
> daksh...@wso2.com> wrote:
>
>> Congratulations Gayan !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Dec 23, 2014 at 10:18 AM, Supun Sethunga 
>> wrote:
>>
>>> Congratz Gayan!
>>>
>>> On Tue, Dec 23, 2014 at 10:15 AM, Abimaran Kugathasan <
>>> abima...@wso2.com> wrote:
>>>
 Congrats Gayan! :)

 On Tue, Dec 23, 2014 at 10:07 AM, Harsha Kumara 
 wrote:

> Congratulations Gayan!
>
> On Tue, Dec 23, 2014 at 9:54 AM, Danesh Kuruppu 
> wrote:
>
>> Congrats Gayan !!
>>
>>
>> On Tue, Dec 23, 2014 at 9:28 AM, Kasun De Silva 
>> wrote:
>>
>>> Congratz Gayan !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda <
>>> kal...@wso2.com> wrote:
>>>
 Congratulations Gayan !

 On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi,
>
> It is with great pleasure that I welcome Gayan as a WSO2
> committer, Congratulations and keep up with the good work! ..
>
> --
> Lakmal Warusawithana
> Vice President, Apache Stratos
> Director - Cloud Architecture; WSO2 Inc.
> Mobile : +94714289692
> Blog : http://lakmalsview.blogspot.com/
>
>
> ___
> 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


>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Harsha Kumara
> Software Engineer, WSO2 Inc.
> Mobile: +94775505618
> Blog:harshcreationz.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


>>>
>>>
>>> --
>>> *Supun Sethunga*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean | enterprise | middleware
>>> Mobile : +94 716546324
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>

Re: [Dev] WSO2 Committers += Hasitha Amal De Silva

2014-12-22 Thread Prasanna Dangalla
Congratulations...

On Tue, Dec 23, 2014 at 12:38 PM, Pulasthi Mahawithana 
wrote:

> Congrats Hasitha !
>
> On Tue, Dec 23, 2014 at 10:35 AM, Inosh Perera  wrote:
>
>> Congrats Hasitha!
>>
>> On Tue, Dec 23, 2014 at 10:29 AM, Samith Dassanayake 
>> wrote:
>>
>>> Congratz Hasitha!
>>>
>>> On Mon, Dec 22, 2014 at 5:12 PM, Kalpa Welivitigoda 
>>> wrote:
>>>
 Congratulations Hasitha !

 On Mon, Dec 22, 2014 at 5:11 PM, Ramith Jayasinghe 
 wrote:

> Hi Hasitha,
> Congratulations!
> It is with great pleasure that we welcome you as a WSO2 committer.
> Keep up the good work!
>
>
> --
> Ramith Jayasinghe
> Technical Lead
> WSO2 Inc., http://wso2.com
> lean.enterprise.middleware
>
> E: ram...@wso2.com
>
>
> ___
> 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


>>>
>>>
>>> --
>>> Best Regards
>>>
>>> Samith Dassanayake
>>> Software Engineer, WSO2 Inc.
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Inosh Perera
>> Software Engineer, WSO2 Inc.
>> Tel: 0785293686
>>
>> ___
>> 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
>
>


-- 
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


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Prasanna Dangalla
Congratulations

On Tue, Dec 23, 2014 at 12:53 PM, Danesh Kuruppu  wrote:

> Congrats Firzhan !!!
>
> On Tue, Dec 23, 2014 at 12:47 PM, Buddhima Wijeweera 
> wrote:
>
>> Congratulations Firzhan !!!
>>
>> On Tue, Dec 23, 2014 at 12:40 PM, Shazni Nazeer  wrote:
>>
>>> Congratz Firzhan!!!
>>>
>>> Shazni Nazeer
>>>
>>> Senior Software Engineer
>>>
>>> Mob : +94 37331
>>> LinkedIn : http://lk.linkedin.com/in/shazninazeer
>>> Blog : http://shazninazeer.blogspot.com
>>>
>>> On Tue, Dec 23, 2014 at 12:36 PM, Pulasthi Mahawithana <
>>> pulast...@wso2.com> wrote:
>>>
 Congrats Firzhan !

 On Tue, Dec 23, 2014 at 12:14 PM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats!
>
> On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
> manu...@wso2.com> wrote:
>
>> Congratulations Firzhan.
>>
>> On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
>> parapa...@wso2.com> wrote:
>>
>>> Congratz Firzan !!!
>>>
>>> On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana <
>>> darsh...@wso2.com> wrote:
>>>
 Congratulations Firzhan !!!.. Keep up the good work..

 On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
 sendu...@wso2.com> wrote:

> Congratulations Firzhan !!
>
> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
> anurud...@wso2.com> wrote:
>
>> Congratulations Firzhan!!
>>
>> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna <
>> ar...@wso2.com> wrote:
>>
>>> Congratzz Firzhan...!!!
>>>
>>> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva <
>>> kas...@wso2.com> wrote:
>>>
 Congratz Firzan !!!

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

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


 On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
 nand...@wso2.com> wrote:

> Hi All,
>
> It is my pleasure to welcome Firzhan as a WSO2 committer.
> Firzhan is a key member of Business Process Server Team and has 
> contributed
> to Both BPS and IS.
> Welcome aboard and week up the good work !
>
> Regards
> Nandika
>
> --
> Nandika Jayawardana
> Senior Technical Lead
> WSO2 Inc ; http://wso2.com
> 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


>>>
>>>
>>> --
>>>
>>> *Aruna Sujith Karunarathna* | Software Engineer
>>> WSO2, Inc | lean. enterprise. middleware.
>>> #20, Palm Grove, Colombo 03, Sri Lanka
>>> Mobile: +94 71 9040362 | Work: +94 112145345
>>> Email: ar...@wso2.com | Web: www.wso2.com
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Anuruddha Premalal*
>> Software Eng. | WSO2 Inc.
>> Mobile : +94710461070
>> Web site : www.regilandvalley.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Senduran *
> Software Engineer,
> WSO2, Inc.;  http://wso2.com/ 
> Mobile: +94 77 952 6548
>
> ___
> 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


>>>
>>>
>>> --
>>> Tha

Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Danesh Kuruppu
Congrats Firzhan !!!

On Tue, Dec 23, 2014 at 12:47 PM, Buddhima Wijeweera 
wrote:

> Congratulations Firzhan !!!
>
> On Tue, Dec 23, 2014 at 12:40 PM, Shazni Nazeer  wrote:
>
>> Congratz Firzhan!!!
>>
>> Shazni Nazeer
>>
>> Senior Software Engineer
>>
>> Mob : +94 37331
>> LinkedIn : http://lk.linkedin.com/in/shazninazeer
>> Blog : http://shazninazeer.blogspot.com
>>
>> On Tue, Dec 23, 2014 at 12:36 PM, Pulasthi Mahawithana <
>> pulast...@wso2.com> wrote:
>>
>>> Congrats Firzhan !
>>>
>>> On Tue, Dec 23, 2014 at 12:14 PM, Abimaran Kugathasan >> > wrote:
>>>
 Congrats!

 On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
 manu...@wso2.com> wrote:

> Congratulations Firzhan.
>
> On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
> parapa...@wso2.com> wrote:
>
>> Congratz Firzan !!!
>>
>> On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana <
>> darsh...@wso2.com> wrote:
>>
>>> Congratulations Firzhan !!!.. Keep up the good work..
>>>
>>> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
>>> sendu...@wso2.com> wrote:
>>>
 Congratulations Firzhan !!

 On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
 anurud...@wso2.com> wrote:

> Congratulations Firzhan!!
>
> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna <
> ar...@wso2.com> wrote:
>
>> Congratzz Firzhan...!!!
>>
>> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva > > wrote:
>>
>>> Congratz Firzan !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
>>> nand...@wso2.com> wrote:
>>>
 Hi All,

 It is my pleasure to welcome Firzhan as a WSO2 committer.
 Firzhan is a key member of Business Process Server Team and has 
 contributed
 to Both BPS and IS.
 Welcome aboard and week up the good work !

 Regards
 Nandika

 --
 Nandika Jayawardana
 Senior Technical Lead
 WSO2 Inc ; http://wso2.com
 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
>>>
>>>
>>
>>
>> --
>>
>> *Aruna Sujith Karunarathna* | Software Engineer
>> WSO2, Inc | lean. enterprise. middleware.
>> #20, Palm Grove, Colombo 03, Sri Lanka
>> Mobile: +94 71 9040362 | Work: +94 112145345
>> Email: ar...@wso2.com | Web: www.wso2.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Anuruddha Premalal*
> Software Eng. | WSO2 Inc.
> Mobile : +94710461070
> Web site : www.regilandvalley.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Senduran *
 Software Engineer,
 WSO2, Inc.;  http://wso2.com/ 
 Mobile: +94 77 952 6548

 ___
 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
>>>
>>>
>>
>>
>> --
>> Thanks & Regards
>> --
>> Srisunmugaraja Paraparan
>> Software Engineer,
>> WSO2 Inc. - lean . enterprise . middleware |  wso2.com
>>
>> email : parapa...@wso2.com, mobile : +94 77 0362151
>>
>> ___
>> Dev mailing lis

Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Buddhima Wijeweera
Congratulations Firzhan !!!

On Tue, Dec 23, 2014 at 12:40 PM, Shazni Nazeer  wrote:

> Congratz Firzhan!!!
>
> Shazni Nazeer
>
> Senior Software Engineer
>
> Mob : +94 37331
> LinkedIn : http://lk.linkedin.com/in/shazninazeer
> Blog : http://shazninazeer.blogspot.com
>
> On Tue, Dec 23, 2014 at 12:36 PM, Pulasthi Mahawithana  > wrote:
>
>> Congrats Firzhan !
>>
>> On Tue, Dec 23, 2014 at 12:14 PM, Abimaran Kugathasan 
>> wrote:
>>
>>> Congrats!
>>>
>>> On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
>>> manu...@wso2.com> wrote:
>>>
 Congratulations Firzhan.

 On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
 parapa...@wso2.com> wrote:

> Congratz Firzan !!!
>
> On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana <
> darsh...@wso2.com> wrote:
>
>> Congratulations Firzhan !!!.. Keep up the good work..
>>
>> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
>> sendu...@wso2.com> wrote:
>>
>>> Congratulations Firzhan !!
>>>
>>> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
>>> anurud...@wso2.com> wrote:
>>>
 Congratulations Firzhan!!

 On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna <
 ar...@wso2.com> wrote:

> Congratzz Firzhan...!!!
>
> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
> wrote:
>
>> Congratz Firzan !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
>> nand...@wso2.com> wrote:
>>
>>> Hi All,
>>>
>>> It is my pleasure to welcome Firzhan as a WSO2 committer.
>>> Firzhan is a key member of Business Process Server Team and has 
>>> contributed
>>> to Both BPS and IS.
>>> Welcome aboard and week up the good work !
>>>
>>> Regards
>>> Nandika
>>>
>>> --
>>> Nandika Jayawardana
>>> Senior Technical Lead
>>> WSO2 Inc ; http://wso2.com
>>> 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
>>
>>
>
>
> --
>
> *Aruna Sujith Karunarathna* | Software Engineer
> WSO2, Inc | lean. enterprise. middleware.
> #20, Palm Grove, Colombo 03, Sri Lanka
> Mobile: +94 71 9040362 | Work: +94 112145345
> Email: ar...@wso2.com | Web: www.wso2.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Anuruddha Premalal*
 Software Eng. | WSO2 Inc.
 Mobile : +94710461070
 Web site : www.regilandvalley.com


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


>>>
>>>
>>> --
>>> *Senduran *
>>> Software Engineer,
>>> WSO2, Inc.;  http://wso2.com/ 
>>> Mobile: +94 77 952 6548
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Thanks & Regards
> --
> Srisunmugaraja Paraparan
> Software Engineer,
> WSO2 Inc. - lean . enterprise . middleware |  wso2.com
>
> email : parapa...@wso2.com, mobile : +94 77 0362151
>
> ___
> 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...@apac

Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Shazni Nazeer
Congratz Firzhan!!!

Shazni Nazeer

Senior Software Engineer

Mob : +94 37331
LinkedIn : http://lk.linkedin.com/in/shazninazeer
Blog : http://shazninazeer.blogspot.com

On Tue, Dec 23, 2014 at 12:36 PM, Pulasthi Mahawithana 
wrote:

> Congrats Firzhan !
>
> On Tue, Dec 23, 2014 at 12:14 PM, Abimaran Kugathasan 
> wrote:
>
>> Congrats!
>>
>> On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
>> manu...@wso2.com> wrote:
>>
>>> Congratulations Firzhan.
>>>
>>> On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
>>> parapa...@wso2.com> wrote:
>>>
 Congratz Firzan !!!

 On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana <
 darsh...@wso2.com> wrote:

> Congratulations Firzhan !!!.. Keep up the good work..
>
> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
> sendu...@wso2.com> wrote:
>
>> Congratulations Firzhan !!
>>
>> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
>> anurud...@wso2.com> wrote:
>>
>>> Congratulations Firzhan!!
>>>
>>> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna >> > wrote:
>>>
 Congratzz Firzhan...!!!

 On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
 wrote:

> Congratz Firzan !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
> nand...@wso2.com> wrote:
>
>> Hi All,
>>
>> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan
>> is a key member of Business Process Server Team and has contributed 
>> to Both
>> BPS and IS.
>> Welcome aboard and week up the good work !
>>
>> Regards
>> Nandika
>>
>> --
>> Nandika Jayawardana
>> Senior Technical Lead
>> WSO2 Inc ; http://wso2.com
>> 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
>
>


 --

 *Aruna Sujith Karunarathna* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 9040362 | Work: +94 112145345
 Email: ar...@wso2.com | Web: www.wso2.com


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


>>>
>>>
>>> --
>>> *Anuruddha Premalal*
>>> Software Eng. | WSO2 Inc.
>>> Mobile : +94710461070
>>> Web site : www.regilandvalley.com
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Senduran *
>> Software Engineer,
>> WSO2, Inc.;  http://wso2.com/ 
>> Mobile: +94 77 952 6548
>>
>> ___
>> 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
>
>


 --
 Thanks & Regards
 --
 Srisunmugaraja Paraparan
 Software Engineer,
 WSO2 Inc. - lean . enterprise . middleware |  wso2.com

 email : parapa...@wso2.com, mobile : +94 77 0362151

 ___
 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
>>>
>>>
>>
>>
>> --
>> Thanks
>> Abimaran Kugathasan
>>
>> So

Re: [Dev] WSO2 Committers += Hasitha Amal De Silva

2014-12-22 Thread Pulasthi Mahawithana
Congrats Hasitha !

On Tue, Dec 23, 2014 at 10:35 AM, Inosh Perera  wrote:

> Congrats Hasitha!
>
> On Tue, Dec 23, 2014 at 10:29 AM, Samith Dassanayake 
> wrote:
>
>> Congratz Hasitha!
>>
>> On Mon, Dec 22, 2014 at 5:12 PM, Kalpa Welivitigoda 
>> wrote:
>>
>>> Congratulations Hasitha !
>>>
>>> On Mon, Dec 22, 2014 at 5:11 PM, Ramith Jayasinghe 
>>> wrote:
>>>
 Hi Hasitha,
 Congratulations!
 It is with great pleasure that we welcome you as a WSO2 committer.
 Keep up the good work!


 --
 Ramith Jayasinghe
 Technical Lead
 WSO2 Inc., http://wso2.com
 lean.enterprise.middleware

 E: ram...@wso2.com


 ___
 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
>>>
>>>
>>
>>
>> --
>> Best Regards
>>
>> Samith Dassanayake
>> Software Engineer, WSO2 Inc.
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Inosh Perera
> Software Engineer, WSO2 Inc.
> Tel: 0785293686
>
> ___
> 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 += Gimantha Bandara

2014-12-22 Thread Pulasthi Mahawithana
Congrats Gimantha !

On Tue, Dec 23, 2014 at 10:48 AM, Dunith Dhanushka  wrote:

> Congrats Gimantha!
>
> On Tue, Dec 23, 2014 at 10:34 AM, Inosh Perera  wrote:
>
>> Congrats Gimantha!
>>
>> On Tue, Dec 23, 2014 at 10:32 AM, Danesh Kuruppu  wrote:
>>
>>> Congrats Gimantha !!
>>>
>>> On Tue, Dec 23, 2014 at 10:28 AM, Abimaran Kugathasan >> > wrote:
>>>
 Congrats!

 On Tue, Dec 23, 2014 at 10:23 AM, Buddhima Wijeweera >>> > wrote:

> Congratulations Gimantha !!!
>
> On Tue, Dec 23, 2014 at 10:21 AM, Milinda Perera 
> wrote:
>
>> Congratulations gimantha  :)
>>
>> On Tue, Dec 23, 2014 at 9:58 AM, Lasitha Wattaladeniya <
>> lasit...@wso2.com> wrote:
>>
>>> Congratulations gima !
>>>
>>> On Tue, Dec 23, 2014 at 9:50 AM, Sajini De Silva 
>>> wrote:
>>>
 Congratulations Gimantha!!!

 On Tue, Dec 23, 2014 at 9:48 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Gimantha!
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Dec 23, 2014 at 9:25 AM, Denuwanthi De Silva <
> denuwan...@wso2.com> wrote:
>
>> Congrats Gimantha!!
>>
>> On Tue, Dec 23, 2014 at 9:16 AM, Pirinthapan Mahendran <
>> pirintha...@wso2.com> wrote:
>>
>>> Congrats Gimantha..!!
>>>
>>>
>>>
>>> Mahendran Pirinthapan
>>> Software Engineer | WSO2 Inc.
>>> Mobile +94772378732.
>>>
>>> On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara >> > wrote:
>>>
 Congratulations Gimantha!

 On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva <
 kas...@wso2.com> wrote:

> Congratz Gimantha !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera <
> nira...@wso2.com> wrote:
>
>> Congrats Gimantha! :-)
>>
>> On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando <
>> anj...@wso2.com> wrote:
>>
>>> Hi,
>>>
>>> It is with great pleasure that I welcome Gimantha as a WSO2
>>> committer, Congratulations and keep up with the good work! ..
>>>
>>> Cheers,
>>> Anjana.
>>> --
>>> *Anjana Fernando*
>>> Senior Technical Lead
>>> WSO2 Inc. | http://wso2.com
>>> lean . enterprise . middleware
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Niranda Perera*
>> Software Engineer, WSO2 Inc.
>> Mobile: +94-71-554-8430
>> Twitter: @n1r44 
>>
>> ___
>> 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
>
>


 --
 Harsha Kumara
 Software Engineer, WSO2 Inc.
 Mobile: +94775505618
 Blog:harshcreationz.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
>>>
>>>
>>
>>
>> --
>> Denuwanthi De Silva
>> Software Engineer;
>> WSO2 Inc.; http://wso2.com,
>> Email: denuwan...@wso2.com
>>
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.

Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Pulasthi Mahawithana
Congrats Firzhan !

On Tue, Dec 23, 2014 at 12:14 PM, Abimaran Kugathasan 
wrote:

> Congrats!
>
> On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
> manu...@wso2.com> wrote:
>
>> Congratulations Firzhan.
>>
>> On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
>> parapa...@wso2.com> wrote:
>>
>>> Congratz Firzan !!!
>>>
>>> On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana <
>>> darsh...@wso2.com> wrote:
>>>
 Congratulations Firzhan !!!.. Keep up the good work..

 On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
 sendu...@wso2.com> wrote:

> Congratulations Firzhan !!
>
> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
> anurud...@wso2.com> wrote:
>
>> Congratulations Firzhan!!
>>
>> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna 
>> wrote:
>>
>>> Congratzz Firzhan...!!!
>>>
>>> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
>>> wrote:
>>>
 Congratz Firzan !!!

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

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


 On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
 nand...@wso2.com> wrote:

> Hi All,
>
> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan
> is a key member of Business Process Server Team and has contributed 
> to Both
> BPS and IS.
> Welcome aboard and week up the good work !
>
> Regards
> Nandika
>
> --
> Nandika Jayawardana
> Senior Technical Lead
> WSO2 Inc ; http://wso2.com
> 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


>>>
>>>
>>> --
>>>
>>> *Aruna Sujith Karunarathna* | Software Engineer
>>> WSO2, Inc | lean. enterprise. middleware.
>>> #20, Palm Grove, Colombo 03, Sri Lanka
>>> Mobile: +94 71 9040362 | Work: +94 112145345
>>> Email: ar...@wso2.com | Web: www.wso2.com
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Anuruddha Premalal*
>> Software Eng. | WSO2 Inc.
>> Mobile : +94710461070
>> Web site : www.regilandvalley.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Senduran *
> Software Engineer,
> WSO2, Inc.;  http://wso2.com/ 
> Mobile: +94 77 952 6548
>
> ___
> 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


>>>
>>>
>>> --
>>> Thanks & Regards
>>> --
>>> Srisunmugaraja Paraparan
>>> Software Engineer,
>>> WSO2 Inc. - lean . enterprise . middleware |  wso2.com
>>>
>>> email : parapa...@wso2.com, mobile : +94 77 0362151
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> 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
>
>


-- 
*Pulasthi Mahawit

Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Milinda Perera
Congratulations firzhan  :)

On Tue, Dec 23, 2014 at 12:14 PM, Abimaran Kugathasan 
wrote:

> Congrats!
>
> On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
> manu...@wso2.com> wrote:
>
>> Congratulations Firzhan.
>>
>> On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
>> parapa...@wso2.com> wrote:
>>
>>> Congratz Firzan !!!
>>>
>>> On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana <
>>> darsh...@wso2.com> wrote:
>>>
 Congratulations Firzhan !!!.. Keep up the good work..

 On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
 sendu...@wso2.com> wrote:

> Congratulations Firzhan !!
>
> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
> anurud...@wso2.com> wrote:
>
>> Congratulations Firzhan!!
>>
>> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna 
>> wrote:
>>
>>> Congratzz Firzhan...!!!
>>>
>>> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
>>> wrote:
>>>
 Congratz Firzan !!!

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

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


 On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
 nand...@wso2.com> wrote:

> Hi All,
>
> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan
> is a key member of Business Process Server Team and has contributed 
> to Both
> BPS and IS.
> Welcome aboard and week up the good work !
>
> Regards
> Nandika
>
> --
> Nandika Jayawardana
> Senior Technical Lead
> WSO2 Inc ; http://wso2.com
> 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


>>>
>>>
>>> --
>>>
>>> *Aruna Sujith Karunarathna* | Software Engineer
>>> WSO2, Inc | lean. enterprise. middleware.
>>> #20, Palm Grove, Colombo 03, Sri Lanka
>>> Mobile: +94 71 9040362 | Work: +94 112145345
>>> Email: ar...@wso2.com | Web: www.wso2.com
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Anuruddha Premalal*
>> Software Eng. | WSO2 Inc.
>> Mobile : +94710461070
>> Web site : www.regilandvalley.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Senduran *
> Software Engineer,
> WSO2, Inc.;  http://wso2.com/ 
> Mobile: +94 77 952 6548
>
> ___
> 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


>>>
>>>
>>> --
>>> Thanks & Regards
>>> --
>>> Srisunmugaraja Paraparan
>>> Software Engineer,
>>> WSO2 Inc. - lean . enterprise . middleware |  wso2.com
>>>
>>> email : parapa...@wso2.com, mobile : +94 77 0362151
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> 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
>
>


-- 
Mili

Re: [Dev] Implementing a Log Agent to send logs to BAM

2014-12-22 Thread Chamila De Alwis
Hi Dineepa,

Would this agent listen to logs in real time and send new lines to BAM or
would it parse static files? Furthermore, is there going to be any
intermediate processing of the log entries before being passed to BAM?


On Mon, Dec 22, 2014 at 11:45 AM, Dineepa Edirisinghe 
wrote:

> At the given time I will be considering to write an agent which listens
> log files, but the agent will be implementing in an extensible way so that
> the functionality of listening to TCP or UDP and send can be considered
> later.
>
> I didn't quite understand this. Does this mean the agent can act as an
intermediary to some remote resource?



Regards,
Chamila de Alwis
Software Engineer | WSO2 | +94772207163
Blog: code.chamiladealwis.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Upul Bandara
Congratulations Gayan !!!

On Tue, Dec 23, 2014 at 10:56 AM, Manula Chathurika Thantriwatte <
manu...@wso2.com> wrote:

> Congratulations Gayan !!!
>
> On Tue, Dec 23, 2014 at 10:33 AM, Inosh Perera  wrote:
>
>> Congrats Gayan!!
>>
>> On Tue, Dec 23, 2014 at 10:29 AM, Buddhima Wijeweera 
>> wrote:
>>
>>> Congratulations Gayan !!!
>>>
>>> On Tue, Dec 23, 2014 at 10:28 AM, Samith Dassanayake 
>>> wrote:
>>>
 Congratz Gayan!

 On Tue, Dec 23, 2014 at 10:22 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Gayan !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Dec 23, 2014 at 10:18 AM, Supun Sethunga 
> wrote:
>
>> Congratz Gayan!
>>
>> On Tue, Dec 23, 2014 at 10:15 AM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats Gayan! :)
>>>
>>> On Tue, Dec 23, 2014 at 10:07 AM, Harsha Kumara 
>>> wrote:
>>>
 Congratulations Gayan!

 On Tue, Dec 23, 2014 at 9:54 AM, Danesh Kuruppu 
 wrote:

> Congrats Gayan !!
>
>
> On Tue, Dec 23, 2014 at 9:28 AM, Kasun De Silva 
> wrote:
>
>> Congratz Gayan !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda <
>> kal...@wso2.com> wrote:
>>
>>> Congratulations Gayan !
>>>
>>> On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana <
>>> lak...@wso2.com> wrote:
>>>
 Hi,

 It is with great pleasure that I welcome Gayan as a WSO2
 committer, Congratulations and keep up with the good work! ..

 --
 Lakmal Warusawithana
 Vice President, Apache Stratos
 Director - Cloud Architecture; WSO2 Inc.
 Mobile : +94714289692
 Blog : http://lakmalsview.blogspot.com/


 ___
 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
>>>
>>>
>>
>> ___
>> 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
>
>


 --
 Harsha Kumara
 Software Engineer, WSO2 Inc.
 Mobile: +94775505618
 Blog:harshcreationz.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
>>>
>>>
>>
>>
>> --
>> *Supun Sethunga*
>> Software Engineer
>> WSO2, Inc.
>> lean | enterprise | middleware
>> Mobile : +94 716546324
>>
>> ___
>> 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

 Samith Dassanayake
 Software Engineer, WSO2 Inc.

>

[Dev] ESB Error when running test cases

2014-12-22 Thread Irham Iqbal
Hi All,

when running ESB test cases i am getting the following Error.

java.lang.NoSuchMethodError:
org.wso2.carbon.inbound.stub.InboundAdminStub.getAllInboundEndpointNames()Ljava/lang/String;
at
org.wso2.esb.integration.common.clients.inbound.endpoint.InboundAdminClient.getAllInboundEndpointNames(InboundAdminClient.java:68)
at
org.wso2.esb.integration.common.utils.ESBTestCaseUtils.getAllInboundEndpoints(ESBTestCaseUtils.java:397)
at
org.wso2.esb.integration.common.utils.ESBIntegrationTest.deleteInboundEndpoints(ESBIntegrationTest.java:266)
at
org.wso2.esb.integration.common.utils.ESBIntegrationTest.cleanup(ESBIntegrationTest.java:143)
at
org.wso2.carbon.esb.mailto.transport.receiver.test.MailToTransportActionAfterFailureDELETETestCase.deleteService(MailToTransportActionAfterFailureDELETETestCase.java:70)

It's because method getAllInboundEndpointNames() from InboundAdminStub was
returning a string earlier now it has been changed to return a
InboundEndpointDTO Object Array. We are using this method to get
endpointName.
How can i get endpointName from InboundEndpointDTO object?

Thanks,
Iqbal

-- 
Irham Iqbal
Software Engineer - Test Automation
 WSO2, Inc.: http://wso2.com
lean. enterprise. middleware
phone: +94 777888452
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [ESB] Error in building a branch for debugging purpose

2014-12-22 Thread Eranda Rajapakshe
Hi,
We are going to build a new inbound endpoint for ESB, and right now trying
to understand the existing file inbound endpoint by running it in debug
mode.

When we try to create the eclipse project in [1] directory using the
command mvn eclipse:eclipse we got the following error. Please help!

[1].
https://github.com/wso2-dev/carbon-mediation/tree/master/components/inbound-endpoints/org.wso2.carbon.inbound.endpoint

Thank you!


> [INFO] Preparing eclipse:eclipse
>
> Downloading:
>> http://maven.wso2.org/nexus/content/groups/wso2-public//org/wso2/carbon/org.wso2.carbon.core/4.3.0-SNAPSHOT/org.wso2.carbon.core-4.3.0-SNAPSHOT.pom
>
> [INFO] Unable to find resource
>> 'org.wso2.carbon:org.wso2.carbon.core:pom:4.3.0-SNAPSHOT' in repository
>> wso2-nexus (http://maven.wso2.org/nexus/content/groups/wso2-public/)
>
> Downloading:
>> http://maven.wso2.org/nexus/content/repositories/releases//org/wso2/carbon/org.wso2.carbon.core/4.3.0-SNAPSHOT/org.wso2.carbon.core-4.3.0-SNAPSHOT.pom
>
> [INFO] Unable to find resource
>> 'org.wso2.carbon:org.wso2.carbon.core:pom:4.3.0-SNAPSHOT' in repository
>> wso2.releases (http://maven.wso2.org/nexus/content/repositories/releases/
>> )
>
> Downloading:
>> http://maven.wso2.org/nexus/content/repositories/snapshots//org/wso2/carbon/org.wso2.carbon.core/4.3.0-SNAPSHOT/org.wso2.carbon.core-4.3.0-SNAPSHOT.pom
>
> [INFO] Unable to find resource
>> 'org.wso2.carbon:org.wso2.carbon.core:pom:4.3.0-SNAPSHOT' in repository
>> wso2.snapshots (
>> http://maven.wso2.org/nexus/content/repositories/snapshots/)
>
> Downloading:
>> http://maven.wso2.org/nexus/content/groups/wso2-public//org/wso2/carbon/org.wso2.carbon.utils/4.3.0-SNAPSHOT/org.wso2.carbon.utils-4.3.0-SNAPSHOT.pom
>
> [INFO] Unable to find resource
>> 'org.wso2.carbon:org.wso2.carbon.utils:pom:4.3.0-SNAPSHOT' in repository
>> wso2-nexus (http://maven.wso2.org/nexus/content/groups/wso2-public/)
>
> Downloading:
>> http://maven.wso2.org/nexus/content/repositories/releases//org/wso2/carbon/org.wso2.carbon.utils/4.3.0-SNAPSHOT/org.wso2.carbon.utils-4.3.0-SNAPSHOT.pom
>
> [INFO] Unable to find resource
>> 'org.wso2.carbon:org.wso2.carbon.utils:pom:4.3.0-SNAPSHOT' in repository
>> wso2.releases (http://maven.wso2.org/nexus/content/repositories/releases/
>> )
>
> Downloading:
>> http://maven.wso2.org/nexus/content/repositories/snapshots//org/wso2/carbon/org.wso2.carbon.utils/4.3.0-SNAPSHOT/org.wso2.carbon.utils-4.3.0-SNAPSHOT.pom
>
> [INFO] Unable to find resource
>> 'org.wso2.carbon:org.wso2.carbon.utils:pom:4.3.0-SNAPSHOT' in repository
>> wso2.snapshots (
>> http://maven.wso2.org/nexus/content/repositories/snapshots/)
>
> Downloading:
>> http://maven.wso2.org/nexus/content/groups/wso2-public//org/wso2/carbon/org.wso2.carbon.core/4.3.0-SNAPSHOT/org.wso2.carbon.core-4.3.0-SNAPSHOT.jar
>
> [INFO] Unable to find resource
>> 'org.wso2.carbon:org.wso2.carbon.core:jar:4.3.0-SNAPSHOT' in repository
>> wso2-nexus (http://maven.wso2.org/nexus/content/groups/wso2-public/)
>
> Downloading:
>> http://maven.wso2.org/nexus/content/repositories/releases//org/wso2/carbon/org.wso2.carbon.core/4.3.0-SNAPSHOT/org.wso2.carbon.core-4.3.0-SNAPSHOT.jar
>
> [INFO] Unable to find resource
>> 'org.wso2.carbon:org.wso2.carbon.core:jar:4.3.0-SNAPSHOT' in repository
>> wso2.releases (http://maven.wso2.org/nexus/content/repositories/releases/
>> )
>
> Downloading:
>> http://maven.wso2.org/nexus/content/repositories/snapshots//org/wso2/carbon/org.wso2.carbon.core/4.3.0-SNAPSHOT/org.wso2.carbon.core-4.3.0-SNAPSHOT.jar
>
> [INFO] Unable to find resource
>> 'org.wso2.carbon:org.wso2.carbon.core:jar:4.3.0-SNAPSHOT' in repository
>> wso2.snapshots (
>> http://maven.wso2.org/nexus/content/repositories/snapshots/)
>
> Downloading:
>> http://maven.wso2.org/nexus/content/groups/wso2-public//org/wso2/carbon/org.wso2.carbon.utils/4.3.0-SNAPSHOT/org.wso2.carbon.utils-4.3.0-SNAPSHOT.jar
>
> [INFO] Unable to find resource
>> 'org.wso2.carbon:org.wso2.carbon.utils:jar:4.3.0-SNAPSHOT' in repository
>> wso2-nexus (http://maven.wso2.org/nexus/content/groups/wso2-public/)
>
> Downloading:
>> http://maven.wso2.org/nexus/content/repositories/releases//org/wso2/carbon/org.wso2.carbon.utils/4.3.0-SNAPSHOT/org.wso2.carbon.utils-4.3.0-SNAPSHOT.jar
>
> [INFO] Unable to find resource
>> 'org.wso2.carbon:org.wso2.carbon.utils:jar:4.3.0-SNAPSHOT' in repository
>> wso2.releases (http://maven.wso2.org/nexus/content/repositories/releases/
>> )
>
> Downloading:
>> http://maven.wso2.org/nexus/content/repositories/snapshots//org/wso2/carbon/org.wso2.carbon.utils/4.3.0-SNAPSHOT/org.wso2.carbon.utils-4.3.0-SNAPSHOT.jar
>
> [INFO] Unable to find resource
>> 'org.wso2.carbon:org.wso2.carbon.utils:jar:4.3.0-SNAPSHOT' in repository
>> wso2.snapshots (
>> http://maven.wso2.org/nexus/content/repositories/snapshots/)
>
> [INFO]
>> -

Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Harsha Kumara
Congratulations Firzhan!

On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
manu...@wso2.com> wrote:

> Congratulations Firzhan.
>
> On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
> parapa...@wso2.com> wrote:
>
>> Congratz Firzan !!!
>>
>> On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana > > wrote:
>>
>>> Congratulations Firzhan !!!.. Keep up the good work..
>>>
>>> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
>>> sendu...@wso2.com> wrote:
>>>
 Congratulations Firzhan !!

 On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
 anurud...@wso2.com> wrote:

> Congratulations Firzhan!!
>
> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna 
> wrote:
>
>> Congratzz Firzhan...!!!
>>
>> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
>> wrote:
>>
>>> Congratz Firzan !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
>>> nand...@wso2.com> wrote:
>>>
 Hi All,

 It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan
 is a key member of Business Process Server Team and has contributed to 
 Both
 BPS and IS.
 Welcome aboard and week up the good work !

 Regards
 Nandika

 --
 Nandika Jayawardana
 Senior Technical Lead
 WSO2 Inc ; http://wso2.com
 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
>>>
>>>
>>
>>
>> --
>>
>> *Aruna Sujith Karunarathna* | Software Engineer
>> WSO2, Inc | lean. enterprise. middleware.
>> #20, Palm Grove, Colombo 03, Sri Lanka
>> Mobile: +94 71 9040362 | Work: +94 112145345
>> Email: ar...@wso2.com | Web: www.wso2.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Anuruddha Premalal*
> Software Eng. | WSO2 Inc.
> Mobile : +94710461070
> Web site : www.regilandvalley.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Senduran *
 Software Engineer,
 WSO2, Inc.;  http://wso2.com/ 
 Mobile: +94 77 952 6548

 ___
 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
>>>
>>>
>>
>>
>> --
>> Thanks & Regards
>> --
>> Srisunmugaraja Paraparan
>> Software Engineer,
>> WSO2 Inc. - lean . enterprise . middleware |  wso2.com
>>
>> email : parapa...@wso2.com, mobile : +94 77 0362151
>>
>> ___
>> 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
>
>


-- 
Harsha Kumara
Software Engineer, WSO2 Inc.
Mobile: +94775505618
Blog:harshcreationz.blogspot.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Asitha Nanayakkara
Congratulations Firzhan !!!

On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
sendu...@wso2.com> wrote:

> Congratulations Firzhan !!
>
> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal 
> wrote:
>
>> Congratulations Firzhan!!
>>
>> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna 
>> wrote:
>>
>>> Congratzz Firzhan...!!!
>>>
>>> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
>>> wrote:
>>>
 Congratz Firzan !!!

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

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


 On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana >>> > wrote:

> Hi All,
>
> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan is a
> key member of Business Process Server Team and has contributed to Both BPS
> and IS.
> Welcome aboard and week up the good work !
>
> Regards
> Nandika
>
> --
> Nandika Jayawardana
> Senior Technical Lead
> WSO2 Inc ; http://wso2.com
> 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


>>>
>>>
>>> --
>>>
>>> *Aruna Sujith Karunarathna* | Software Engineer
>>> WSO2, Inc | lean. enterprise. middleware.
>>> #20, Palm Grove, Colombo 03, Sri Lanka
>>> Mobile: +94 71 9040362 | Work: +94 112145345
>>> Email: ar...@wso2.com | Web: www.wso2.com
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Anuruddha Premalal*
>> Software Eng. | WSO2 Inc.
>> Mobile : +94710461070
>> Web site : www.regilandvalley.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Senduran *
> Software Engineer,
> WSO2, Inc.;  http://wso2.com/ 
> Mobile: +94 77 952 6548
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Asitha Nanayakkara*
Software Engineer
WSO2, Inc. http://wso2.com/
Mob: + 94 77 85 30 682
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Abimaran Kugathasan
Congrats!

On Tue, Dec 23, 2014 at 12:09 PM, Manula Chathurika Thantriwatte <
manu...@wso2.com> wrote:

> Congratulations Firzhan.
>
> On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
> parapa...@wso2.com> wrote:
>
>> Congratz Firzan !!!
>>
>> On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana > > wrote:
>>
>>> Congratulations Firzhan !!!.. Keep up the good work..
>>>
>>> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
>>> sendu...@wso2.com> wrote:
>>>
 Congratulations Firzhan !!

 On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
 anurud...@wso2.com> wrote:

> Congratulations Firzhan!!
>
> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna 
> wrote:
>
>> Congratzz Firzhan...!!!
>>
>> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
>> wrote:
>>
>>> Congratz Firzan !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
>>> nand...@wso2.com> wrote:
>>>
 Hi All,

 It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan
 is a key member of Business Process Server Team and has contributed to 
 Both
 BPS and IS.
 Welcome aboard and week up the good work !

 Regards
 Nandika

 --
 Nandika Jayawardana
 Senior Technical Lead
 WSO2 Inc ; http://wso2.com
 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
>>>
>>>
>>
>>
>> --
>>
>> *Aruna Sujith Karunarathna* | Software Engineer
>> WSO2, Inc | lean. enterprise. middleware.
>> #20, Palm Grove, Colombo 03, Sri Lanka
>> Mobile: +94 71 9040362 | Work: +94 112145345
>> Email: ar...@wso2.com | Web: www.wso2.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Anuruddha Premalal*
> Software Eng. | WSO2 Inc.
> Mobile : +94710461070
> Web site : www.regilandvalley.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Senduran *
 Software Engineer,
 WSO2, Inc.;  http://wso2.com/ 
 Mobile: +94 77 952 6548

 ___
 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
>>>
>>>
>>
>>
>> --
>> Thanks & Regards
>> --
>> Srisunmugaraja Paraparan
>> Software Engineer,
>> WSO2 Inc. - lean . enterprise . middleware |  wso2.com
>>
>> email : parapa...@wso2.com, mobile : +94 77 0362151
>>
>> ___
>> 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
>
>


-- 
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


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Lasantha Fernando
Congratz Firzhan!!

On 23 December 2014 at 12:09, Manula Chathurika Thantriwatte <
manu...@wso2.com> wrote:

> Congratulations Firzhan.
>
> On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
> parapa...@wso2.com> wrote:
>
>> Congratz Firzan !!!
>>
>> On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana > > wrote:
>>
>>> Congratulations Firzhan !!!.. Keep up the good work..
>>>
>>> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
>>> sendu...@wso2.com> wrote:
>>>
 Congratulations Firzhan !!

 On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal <
 anurud...@wso2.com> wrote:

> Congratulations Firzhan!!
>
> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna 
> wrote:
>
>> Congratzz Firzhan...!!!
>>
>> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
>> wrote:
>>
>>> Congratz Firzan !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
>>> nand...@wso2.com> wrote:
>>>
 Hi All,

 It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan
 is a key member of Business Process Server Team and has contributed to 
 Both
 BPS and IS.
 Welcome aboard and week up the good work !

 Regards
 Nandika

 --
 Nandika Jayawardana
 Senior Technical Lead
 WSO2 Inc ; http://wso2.com
 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
>>>
>>>
>>
>>
>> --
>>
>> *Aruna Sujith Karunarathna* | Software Engineer
>> WSO2, Inc | lean. enterprise. middleware.
>> #20, Palm Grove, Colombo 03, Sri Lanka
>> Mobile: +94 71 9040362 | Work: +94 112145345
>> Email: ar...@wso2.com | Web: www.wso2.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Anuruddha Premalal*
> Software Eng. | WSO2 Inc.
> Mobile : +94710461070
> Web site : www.regilandvalley.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Senduran *
 Software Engineer,
 WSO2, Inc.;  http://wso2.com/ 
 Mobile: +94 77 952 6548

 ___
 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
>>>
>>>
>>
>>
>> --
>> Thanks & Regards
>> --
>> Srisunmugaraja Paraparan
>> Software Engineer,
>> WSO2 Inc. - lean . enterprise . middleware |  wso2.com
>>
>> email : parapa...@wso2.com, mobile : +94 77 0362151
>>
>> ___
>> 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
>
>


-- 
*Lasantha Fernando*
Software Engineer - Data Technologies Team
WSO2 Inc. http://wso2.com

email: lasan...@wso2.com
mobile: (+94) 71 5247551
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Manula Chathurika Thantriwatte
Congratulations Firzhan.

On Tue, Dec 23, 2014 at 12:08 PM, Srisunmugaraja Paraparan <
parapa...@wso2.com> wrote:

> Congratz Firzan !!!
>
> On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana 
> wrote:
>
>> Congratulations Firzhan !!!.. Keep up the good work..
>>
>> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
>> sendu...@wso2.com> wrote:
>>
>>> Congratulations Firzhan !!
>>>
>>> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal >> > wrote:
>>>
 Congratulations Firzhan!!

 On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna 
 wrote:

> Congratzz Firzhan...!!!
>
> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
> wrote:
>
>> Congratz Firzan !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
>> nand...@wso2.com> wrote:
>>
>>> Hi All,
>>>
>>> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan is
>>> a key member of Business Process Server Team and has contributed to Both
>>> BPS and IS.
>>> Welcome aboard and week up the good work !
>>>
>>> Regards
>>> Nandika
>>>
>>> --
>>> Nandika Jayawardana
>>> Senior Technical Lead
>>> WSO2 Inc ; http://wso2.com
>>> 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
>>
>>
>
>
> --
>
> *Aruna Sujith Karunarathna* | Software Engineer
> WSO2, Inc | lean. enterprise. middleware.
> #20, Palm Grove, Colombo 03, Sri Lanka
> Mobile: +94 71 9040362 | Work: +94 112145345
> Email: ar...@wso2.com | Web: www.wso2.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Anuruddha Premalal*
 Software Eng. | WSO2 Inc.
 Mobile : +94710461070
 Web site : www.regilandvalley.com


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


>>>
>>>
>>> --
>>> *Senduran *
>>> Software Engineer,
>>> WSO2, Inc.;  http://wso2.com/ 
>>> Mobile: +94 77 952 6548
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Thanks & Regards
> --
> Srisunmugaraja Paraparan
> Software Engineer,
> WSO2 Inc. - lean . enterprise . middleware |  wso2.com
>
> email : parapa...@wso2.com, mobile : +94 77 0362151
>
> ___
> 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 += Firzhan Naqash

2014-12-22 Thread Srisunmugaraja Paraparan
Congratz Firzan !!!

On Tue, Dec 23, 2014 at 12:06 PM, Darshana Gunawardana 
wrote:

> Congratulations Firzhan !!!.. Keep up the good work..
>
> On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
> sendu...@wso2.com> wrote:
>
>> Congratulations Firzhan !!
>>
>> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal 
>> wrote:
>>
>>> Congratulations Firzhan!!
>>>
>>> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna 
>>> wrote:
>>>
 Congratzz Firzhan...!!!

 On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
 wrote:

> Congratz Firzan !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana <
> nand...@wso2.com> wrote:
>
>> Hi All,
>>
>> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan is
>> a key member of Business Process Server Team and has contributed to Both
>> BPS and IS.
>> Welcome aboard and week up the good work !
>>
>> Regards
>> Nandika
>>
>> --
>> Nandika Jayawardana
>> Senior Technical Lead
>> WSO2 Inc ; http://wso2.com
>> 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
>
>


 --

 *Aruna Sujith Karunarathna* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 9040362 | Work: +94 112145345
 Email: ar...@wso2.com | Web: www.wso2.com


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


>>>
>>>
>>> --
>>> *Anuruddha Premalal*
>>> Software Eng. | WSO2 Inc.
>>> Mobile : +94710461070
>>> Web site : www.regilandvalley.com
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Senduran *
>> Software Engineer,
>> WSO2, Inc.;  http://wso2.com/ 
>> Mobile: +94 77 952 6548
>>
>> ___
>> 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
>
>


-- 
Thanks & Regards
--
Srisunmugaraja Paraparan
Software Engineer,
WSO2 Inc. - lean . enterprise . middleware |  wso2.com

email : parapa...@wso2.com, mobile : +94 77 0362151
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Darshana Gunawardana
Congratulations Firzhan !!!.. Keep up the good work..

On Tue, Dec 23, 2014 at 11:59 AM, Senduran Balasubramaniyam <
sendu...@wso2.com> wrote:

> Congratulations Firzhan !!
>
> On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal 
> wrote:
>
>> Congratulations Firzhan!!
>>
>> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna 
>> wrote:
>>
>>> Congratzz Firzhan...!!!
>>>
>>> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva 
>>> wrote:
>>>
 Congratz Firzan !!!

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

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


 On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana >>> > wrote:

> Hi All,
>
> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan is a
> key member of Business Process Server Team and has contributed to Both BPS
> and IS.
> Welcome aboard and week up the good work !
>
> Regards
> Nandika
>
> --
> Nandika Jayawardana
> Senior Technical Lead
> WSO2 Inc ; http://wso2.com
> 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


>>>
>>>
>>> --
>>>
>>> *Aruna Sujith Karunarathna* | Software Engineer
>>> WSO2, Inc | lean. enterprise. middleware.
>>> #20, Palm Grove, Colombo 03, Sri Lanka
>>> Mobile: +94 71 9040362 | Work: +94 112145345
>>> Email: ar...@wso2.com | Web: www.wso2.com
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Anuruddha Premalal*
>> Software Eng. | WSO2 Inc.
>> Mobile : +94710461070
>> Web site : www.regilandvalley.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Senduran *
> Software Engineer,
> WSO2, Inc.;  http://wso2.com/ 
> Mobile: +94 77 952 6548
>
> ___
> 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*Lean . Enterprise . Middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Senduran Balasubramaniyam
Congratulations Firzhan !!

On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal 
wrote:

> Congratulations Firzhan!!
>
> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna 
> wrote:
>
>> Congratzz Firzhan...!!!
>>
>> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva  wrote:
>>
>>> Congratz Firzan !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana 
>>> wrote:
>>>
 Hi All,

 It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan is a
 key member of Business Process Server Team and has contributed to Both BPS
 and IS.
 Welcome aboard and week up the good work !

 Regards
 Nandika

 --
 Nandika Jayawardana
 Senior Technical Lead
 WSO2 Inc ; http://wso2.com
 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
>>>
>>>
>>
>>
>> --
>>
>> *Aruna Sujith Karunarathna* | Software Engineer
>> WSO2, Inc | lean. enterprise. middleware.
>> #20, Palm Grove, Colombo 03, Sri Lanka
>> Mobile: +94 71 9040362 | Work: +94 112145345
>> Email: ar...@wso2.com | Web: www.wso2.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Anuruddha Premalal*
> Software Eng. | WSO2 Inc.
> Mobile : +94710461070
> Web site : www.regilandvalley.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Senduran *
Software Engineer,
WSO2, Inc.;  http://wso2.com/ 
Mobile: +94 77 952 6548
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Himasha Guruge
Congrats Firzhan!!

On Tue, Dec 23, 2014 at 11:54 AM, Anuruddha Premalal 
wrote:

> Congratulations Firzhan!!
>
> On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna 
> wrote:
>
>> Congratzz Firzhan...!!!
>>
>> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva  wrote:
>>
>>> Congratz Firzan !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana 
>>> wrote:
>>>
 Hi All,

 It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan is a
 key member of Business Process Server Team and has contributed to Both BPS
 and IS.
 Welcome aboard and week up the good work !

 Regards
 Nandika

 --
 Nandika Jayawardana
 Senior Technical Lead
 WSO2 Inc ; http://wso2.com
 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
>>>
>>>
>>
>>
>> --
>>
>> *Aruna Sujith Karunarathna* | Software Engineer
>> WSO2, Inc | lean. enterprise. middleware.
>> #20, Palm Grove, Colombo 03, Sri Lanka
>> Mobile: +94 71 9040362 | Work: +94 112145345
>> Email: ar...@wso2.com | Web: www.wso2.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Anuruddha Premalal*
> Software Eng. | WSO2 Inc.
> Mobile : +94710461070
> Web site : www.regilandvalley.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Himasha Guruge
*Software Engineer*
WS*O2* *Inc.*
Mobile: +94 777459299
himas...@wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [AF] Status Update - Nodejs Apptype

2014-12-22 Thread Hasitha Weerasinghe
Hi All,

I'm working on adding Node.js apptype to Appfactory. I have completed the
following tasks

* Creating Node.js cartridge in openstack
* Adding Node.js modules to puppet master
* Maven archetype for Node.js
* Creating apptype xml

Also I've tested the above tasks by deploying the apptype and creating it.
Application creation and build was successful and the generated project
structure was correctly added to gitblit. Now mainly I have to work on the
application subscription and deployment.

So the remaining task as of now are,

* Cartridge subscription
* Writing application processor type class


*Hasitha Weerasinghe*
*Software Engineer Intern - WSO2  *
Mobile : +94 776 33 6626
Email  :  hasit...@wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Shared user manager db ES and ESB

2014-12-22 Thread Senduran Balasubramaniyam
Hi,

I have shared the user manager db between ES and ESB. If I create a tenant
in ES or ESB which is visible to the other side. (i.e If I create a tenant
in ES which is visible to ESB). But when I log in to ESB with the created
tenant following exception is thrown in the console and the ESB management
console is stating with default carbon theme.

Error retrieving the resource
/_system/governance/repository/theme/admin/main.css. Resource does not
exist at path /_system/governance/repository/theme/admin/main.css
{org.wso2.carbon.registry.app.ResourceServlet}
org.wso2.carbon.registry.core.exceptions.ResourceNotFoundException:
Resource does not exist at path
/_system/governance/repository/theme/admin/main.css

likewise If I create a tenant in ESB and tried to log in from ES, the
behavior is same. In addition to that I couldn’t log in to ES’s publisher
or store using the tenant’s credential. Following exception is thrown

Error when reading claim values for generating SAML Response
org.wso2.carbon.identity.base.IdentityException: Key Store with a name :
.jks does not exist.

I have only shared the user manager db, ES and ESB are using separate
registries.
Is it ok to share only the user manager db. What is the recommended way to
share the tenants across the products

Thanks
Senduran
​
-- 
*Senduran *
Software Engineer,
WSO2, Inc.;  http://wso2.com/ 
Mobile: +94 77 952 6548
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Anuruddha Premalal
Congratulations Firzhan!!

On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna  wrote:

> Congratzz Firzhan...!!!
>
> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva  wrote:
>
>> Congratz Firzan !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana 
>> wrote:
>>
>>> Hi All,
>>>
>>> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan is a
>>> key member of Business Process Server Team and has contributed to Both BPS
>>> and IS.
>>> Welcome aboard and week up the good work !
>>>
>>> Regards
>>> Nandika
>>>
>>> --
>>> Nandika Jayawardana
>>> Senior Technical Lead
>>> WSO2 Inc ; http://wso2.com
>>> 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
>>
>>
>
>
> --
>
> *Aruna Sujith Karunarathna* | Software Engineer
> WSO2, Inc | lean. enterprise. middleware.
> #20, Palm Grove, Colombo 03, Sri Lanka
> Mobile: +94 71 9040362 | Work: +94 112145345
> Email: ar...@wso2.com | Web: www.wso2.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Anuruddha Premalal*
Software Eng. | WSO2 Inc.
Mobile : +94710461070
Web site : www.regilandvalley.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Niranda Perera
Congrats Firzhan! :-)

On Tue, Dec 23, 2014 at 11:51 AM, Aruna Karunarathna  wrote:

> Congratzz Firzhan...!!!
>
> On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva  wrote:
>
>> Congratz Firzan !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana 
>> wrote:
>>
>>> Hi All,
>>>
>>> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan is a
>>> key member of Business Process Server Team and has contributed to Both BPS
>>> and IS.
>>> Welcome aboard and week up the good work !
>>>
>>> Regards
>>> Nandika
>>>
>>> --
>>> Nandika Jayawardana
>>> Senior Technical Lead
>>> WSO2 Inc ; http://wso2.com
>>> 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
>>
>>
>
>
> --
>
> *Aruna Sujith Karunarathna* | Software Engineer
> WSO2, Inc | lean. enterprise. middleware.
> #20, Palm Grove, Colombo 03, Sri Lanka
> Mobile: +94 71 9040362 | Work: +94 112145345
> Email: ar...@wso2.com | Web: www.wso2.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Niranda Perera*
Software Engineer, WSO2 Inc.
Mobile: +94-71-554-8430
Twitter: @n1r44 
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Aruna Karunarathna
Congratzz Firzhan...!!!

On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva  wrote:

> Congratz Firzan !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana 
> wrote:
>
>> Hi All,
>>
>> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan is a
>> key member of Business Process Server Team and has contributed to Both BPS
>> and IS.
>> Welcome aboard and week up the good work !
>>
>> Regards
>> Nandika
>>
>> --
>> Nandika Jayawardana
>> Senior Technical Lead
>> WSO2 Inc ; http://wso2.com
>> 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
>
>


-- 

*Aruna Sujith Karunarathna* | Software Engineer
WSO2, Inc | lean. enterprise. middleware.
#20, Palm Grove, Colombo 03, Sri Lanka
Mobile: +94 71 9040362 | Work: +94 112145345
Email: ar...@wso2.com | Web: www.wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Kalpa Welivitigoda
Congratulations Firhan !

On Tue, Dec 23, 2014 at 11:48 AM, Kasun De Silva  wrote:

> Congratz Firzan !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana 
> wrote:
>
>> Hi All,
>>
>> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan is a
>> key member of Business Process Server Team and has contributed to Both BPS
>> and IS.
>> Welcome aboard and week up the good work !
>>
>> Regards
>> Nandika
>>
>> --
>> Nandika Jayawardana
>> Senior Technical Lead
>> WSO2 Inc ; http://wso2.com
>> 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


Re: [Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Kasun De Silva
Congratz Firzan !!!

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

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


On Tue, Dec 23, 2014 at 11:46 AM, Nandika Jayawardana 
wrote:

> Hi All,
>
> It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan is a key
> member of Business Process Server Team and has contributed to Both BPS and
> IS.
> Welcome aboard and week up the good work !
>
> Regards
> Nandika
>
> --
> Nandika Jayawardana
> Senior Technical Lead
> WSO2 Inc ; http://wso2.com
> 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


[Dev] WSO2 Committers += Firzhan Naqash

2014-12-22 Thread Nandika Jayawardana
Hi All,

It is my pleasure to welcome Firzhan as a WSO2 committer. Firzhan is a key
member of Business Process Server Team and has contributed to Both BPS and
IS.
Welcome aboard and week up the good work !

Regards
Nandika

-- 
Nandika Jayawardana
Senior Technical Lead
WSO2 Inc ; http://wso2.com
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [ESB][Carbon] Error deploying Carbon-Mediation UI bundle in org.wso2.carbon.logging

2014-12-22 Thread Maheeka Jayasuriya
Hi all,

Any solution on this?


Thanks,

Maheeka Jayasuriya
Software Engineer
Mobile : +9450661

On Mon, Dec 22, 2014 at 10:12 AM, Maheeka Jayasuriya 
wrote:

> Hi All,
>
> I am developing a new mediator for ESB and I developed a new module in
> carbon-mediation/components/mediation-ui/mediators-ui as
> org.wso2.carbon.mediator.foreach.ui.
>
> UI bundle is built and deployed at ESB dropins folder and when the server
> starts the OSGI service for this is not started. It remains in INSTALLED
> state.
>
> 295INSTALLED   org.wso2.carbon.mediator.foreach.ui_4.3.0.SNAPSHOT
>>
>
> osgi> diag 295
>> reference:file:../plugins/org.wso2.carbon.mediator.foreach.ui_4.3.0.SNAPSHOT.jar
>> [295]
>>   Direct constraints which are unresolved:
>> Missing imported package org.apache.commons.logging_[1.2.0,2.0.0).
>>
>
> After checking the carbon4-kernel repository, I noticed that in
> commons.logging version has been changed to 1.2 [1]
>
> 1.2
>>
>
> After noticing this change I downloaded a latest ESB snapshot [2] which
> may contain this change in logging dependency (I was previously working on
> a snapshot built on November 12th). But the new build gives following error
> when starting the server.
>
> CARBON_HOME environment variable is set to
>> /Users/maheeka/Downloads/wso2esb-4.9.0-SNAPSHOT 2
>> log4j:ERROR Could not instantiate class
>> [org.wso2.carbon.logging.appender.CarbonMemoryAppender].
>> java.lang.ClassNotFoundException:
>> org.wso2.carbon.logging.appender.CarbonMemoryAppender
>> at
>> org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:501)
>> at
>> org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:421)
>> at
>> org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:412)
>> at
>> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:107)
>> at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
>> at java.lang.Class.forName0(Native Method)
>> at java.lang.Class.forName(Class.java:171)
>> at org.apache.log4j.helpers.Loader.loadClass(Loader.java:198)
>> at
>> org.apache.log4j.helpers.OptionConverter.instantiateByClassName(OptionConverter.java:327)
>> at
>> org.apache.log4j.helpers.OptionConverter.instantiateByKey(OptionConverter.java:124)
>> at
>> org.apache.log4j.PropertyConfigurator.parseAppender(PropertyConfigurator.java:785)
>> at
>> org.apache.log4j.PropertyConfigurator.parseCategory(PropertyConfigurator.java:768)
>> at
>> org.apache.log4j.PropertyConfigurator.configureRootCategory(PropertyConfigurator.java:648)
>> at
>> org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:514)
>> at
>> org.apache.log4j.PropertyConfigurator.doConfigure(PropertyConfigurator.java:580)
>> at
>> org.apache.log4j.helpers.OptionConverter.selectAndConfigure(OptionConverter.java:526)
>> at org.apache.log4j.LogManager.(LogManager.java:127)
>> at
>> org.slf4j.impl.Log4jLoggerFactory.getLogger(Log4jLoggerFactory.java:73)
>> at org.slf4j.LoggerFactory.getLogger(LoggerFactory.java:242)
>> at org.slf4j.LoggerFactory.getLogger(LoggerFactory.java:254)
>> at com.atomikos.logging.Slf4jLogger.(Slf4jLogger.java:8)
>> at
>> com.atomikos.logging.Slf4JLoggerFactoryDelegate.createLogger(Slf4JLoggerFactoryDelegate.java:7)
>> at
>> com.atomikos.logging.LoggerFactory.createLogger(LoggerFactory.java:12)
>> at com.atomikos.logging.LoggerFactory.(LoggerFactory.java:52)
>> at
>> com.atomikos.transactions.internal.AtomikosActivator.(AtomikosActivator.java:47)
>> at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native
>> Method)
>> at
>> sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
>> at
>> sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
>> at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
>> at java.lang.Class.newInstance0(Class.java:357)
>> at java.lang.Class.newInstance(Class.java:310)
>> at
>> org.eclipse.osgi.framework.internal.core.AbstractBundle.loadBundleActivator(AbstractBundle.java:167)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:679)
>> at
>> org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:381)
>> at
>> org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:390)
>> at
>> org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:1176)
>> at
>> org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:559)
>> at
>> org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:544)
>> at
>> org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:457)
>> at
>> org.eclipse.osgi.framework.

Re: [Dev] Update Tutorial on How to write WSO2 carbon component

2014-12-22 Thread Nirdesha Munasinghe
+1 for adding this to the Carbon docs.

On Fri, Dec 19, 2014 at 11:15 AM, Praneesha Chandrasiri 
wrote:

> Thanks for bringing this up Chamin!
>
> @Nilmini - May be we can add this content to Carbon docs after Amal
> confirms.
>
> On Fri, Dec 19, 2014 at 1:34 AM, Amal Gunatilake  wrote:
>>
>> Hi Chamin,
>>
>> Thanks for letting know. I had this in mind to update the configs but
>> didn't get a chance to attend. I'll review and update the configurations.
>>
>> Thank you  & Best regards,
>>
>> *Amal Gunatilake*
>>  Software Engineer
>> WSO2 Inc.; http://wso2.com
>> lean.enterprise.middleware
>>
>> On Fri, Dec 19, 2014 at 1:14 AM, Chamin Nalinda  wrote:
>>
>>> Hi all,
>>>
>>> I think the following tutorial[1] need a small update. The existing pom
>>> in related to Student Manager UI Component missing some dependencies,
>>> repositories and plugin management.
>>>
>>> Following are missing.
>>>
>>>  
>>> org.apache.axis2.wso2
>>> axis2-client
>>> 1.6.1.wso2v10
>>>   
>>>
>>> 
>>> 
>>> wso2-nexus
>>> WSO2 internal Repository
>>> http://maven.wso2.org/nexus/content/groups/wso2-public/
>>> 
>>> 
>>> true
>>> daily
>>> ignore
>>> 
>>> 
>>> 
>>>
>>>  
>>>  
>>>  
>>>  
>>>  org.eclipse.m2e
>>>  lifecycle-mapping
>>>  1.0.0
>>>  
>>>  
>>>  
>>>  
>>>  
>>>  
>>>  org.codehaus.mojo
>>>  
>>>  
>>>  build-helper-maven-plugin
>>>  
>>>  
>>>  [1.9.1,)
>>>  
>>>  
>>>  add-source
>>>  
>>>  
>>>  
>>>  
>>>  
>>>  
>>>  
>>>  
>>>  
>>>  
>>>  
>>> 
>>>
>>>
>>>
>>> I think these need to add otherwise a build fail will occur following a
>>> warning.ma
>>>
>>> @Amal : like to know your opinion.
>>>
>>> @Praneesha : please to the update this if Amal agrees and  relevant to
>>> documentation team.
>>>
>>>
>>>
>>> * [java] Retrieving document at
>>> 'src/main/resources/StudentManager.wsdl'. [java] Dec 18, 2014 6:46:33 PM
>>> org.apache.axis2.schema.SchemaCompiler compile [java] WARNING: No
>>> schemaLocation for import of http://data.mgt.student.carbon.wso2.org/xsd
>>> ; compilation may fail*
>>>
>>> Here I attached the pom file with necessary changes.
>>>
>>> [1]
>>> http://wso2.com/library/tutorials/2014/03/how-to-write-a-wso2-carbon-component/
>>>
>>> --
>>> *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/
>>>
>>>
>
> --
> Thanks & Best Regards,
> *Praneesha Chandrasiri*
> *Technical Writer*
> *WSO2 Inc. *
> *Mobile: +(94) 718156888 <%2B%2894%29%20718156888>*
> *E-mail: pranee...@wso2.com *
>
>  --
> You received this message because you are subscribed to the Google Groups
> "WSO2 techcontent-group" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to techcontent-group+unsubscr...@wso2.com.
> For more options, visit https://groups.google.com/a/wso2.com/d/optout.
>



-- 

Thanks,

Nirdesha Munasinghe,
WSO2 Inc.
Web:http://wso2.com

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


Re: [Dev] Upgrading CQL to the latest release version 2.1.3

2014-12-22 Thread Harsha Kumara
Thanks Maheshika. I have committed changes for the data reader with latest
cql driver version.

@Prabath, can we sync up the wso2-dev repos with wso2?

Thanks,
Harsha

On Tue, Dec 23, 2014 at 11:05 AM, Maheshika Goonetilleke  wrote:

> Hi Sameera
>
> Successfully deployed.
>
>
>
> On Mon, Dec 22, 2014 at 5:15 PM, Sameera Jayasoma 
> wrote:
>
>> Maheshika, Can you release this?
>>
>> Thanks,
>> Sameera.
>>
>> On Mon, Dec 22, 2014 at 4:27 PM, Asitha Nanayakkara 
>> wrote:
>>>
>>> Hi Sameera,
>>>
>>> I tested this with MB. And this resolved the issues in Hector and CQL
>>> driver.
>>>
>>> Thanks,
>>> Asitha
>>>
>>> On Mon, Dec 22, 2014 at 3:05 PM, Sameera Jayasoma 
>>> wrote:
>>>
 Merged the PR.

 Did you guys test your scenarios with this orbit bundle? Once released
 if we find a bug, we have to release a new version.

 Thanks,
 Sameera.

 On Sun, Dec 21, 2014 at 11:25 PM, Harsha Kumara 
 wrote:
>
> Hi Sameera,
>
> I have updated the pull request and replied to the comments. Please
> review and merge.
>
> Thanks,
> Harsha
>
> On Fri, Dec 19, 2014 at 7:39 PM, Sameera Jayasoma 
> wrote:
>
>> I put some comments to the PR. Please check and reply.
>>
>> Thanks,
>> Sameera.
>>
>> On Fri, Dec 19, 2014 at 5:25 PM, Ramith Jayasinghe 
>> wrote:
>>>
>>> Hi Sameera,
>>>  Could we have this reviewed and merged?
>>> regards
>>> Ramith
>>>
>>> On Thu, Dec 18, 2014 at 4:02 PM, Harsha Kumara 
>>> wrote:
>>>
 Hi Ramith/Prabath,

 Asitha and myself tested the CQL upgrade and found that there a is
 a dependency issue with hector as it required cassandra thrift 
 dependency.
 Previously, older version of CQL needed Cassandra as a dependency which
 includes thrift. With the latest upgrade, we CQL does not depend on
 Cassandra and can be used as it is because of it's already a OSGi 
 bundle.
 Since cassandra thrift needed for hector, I have created orbit bundle 
 for
 cassandra-thrift version 1.2.13.wso2v4. Previous versions of cassandra
 thrift has some issues with their dependencies.

 Pull request in [1] needs to merge and deploy before upgrading the
 CQL version in data reader component.

 [1] - https://github.com/wso2/orbit/pull/46/files

 Thanks,
 Harsha

 On Wed, Dec 10, 2014 at 4:08 PM, Ramith Jayasinghe >>> > wrote:
>
> we need to test a new driver on cassandra ring (with a MB load
> test).
>
> On Wed, Dec 10, 2014 at 3:55 PM, Harsha Kumara 
> wrote:
>
>> Hi All,
>>
>> Since there are number of improvements made for the latest CQL
>> driver, we are going to upgrade CQL driver to the latest version 
>> which also
>> need for MB as well. Current version is 1.0.8.wso2v1 which we added  
>> as
>> orbit bundle due to dependency conflicts in OSGi environment. With 
>> the
>> latest release, they have removed cassandra and jackson dependencies 
>> from
>> CQL driver. We most probably can update the CQL driver to the 2.1.3 
>> without
>> a orbit bundle.
>>
>> Since there are some API changes, we will needs to fix them.
>> Please find [1] and [2] as upgrade instructions from datastax.
>>
>> We are now testing the cql upgrade with latest version from
>> https://github.com/wso2-dev/carbon-storage-management/tree/cql_upgrade
>> branch,
>>
>> @Asitha,Madhawa can you update the thread whether data reader
>> feature with the latest CQL driver works as expected in MB?
>>
>> [1] -hhttps://
>> github.com/datastax/java-driver/blob/2.0/driver-core/Upgrade_guide_to_2.0.rst
>> [2] -
>> https://github.com/datastax/java-driver/blob/2.1/driver-core/Upgrade_guide_to_2.1.rst
>> [3] -https://github.com/datastax/java-driver
>>
>> Thanks,
>> Harsha
>>
>> --
>> Harsha Kumara
>> Software Engineer, WSO2 Inc.
>> Mobile: +94775505618
>> Blog:harshcreationz.blogspot.com
>>
>
>
>
> --
> Ramith Jayasinghe
> Technical Lead
> WSO2 Inc., http://wso2.com
> lean.enterprise.middleware
>
> E: ram...@wso2.com
> P: +94 777542851
>
>

 --
 Harsha Kumara
 Software Engineer, WSO2 Inc.
 Mobile: +94775505618
 Blog:harshcreationz.blogspot.com

>>>
>>>
>>>
>>> --
>>> Ramith Jayasinghe
>>> Technical Lead
>>> WSO2 Inc., http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> E: 

Re: [Dev] Gsoc Intro and contibuting to WSO2

2014-12-22 Thread Kartik Khare
Hi Inosh,
I am talking about [1] project. Also, are there any functionalities which
need to be incorporated in the [2] android agent.

[1]. Project -
https://docs.wso2.com/display/GSoC/Project+Proposals+for+2014#ProjectProposalsfor2014-Proposal22:AndroidDisplayviewerforPDF,Doc,ExcelfilesforWSO2EMM

[2]. https://github.com/KKcorps/emm-agent-android

Regards,
Kartik Khare


On Tue Dec 23 2014 at 10:26:35 AM Inosh Perera  wrote:

> Hi Kartik,
> Which PDF viewer project are you talking about? I assume it not related
> to WSO2 EMM agent project. If you are thinking about an open source PDF
> viewer project, I really encourage you to do so. Because in my experience,
> Android certainly lacks any open source implementations of PDF related
> libraries. There are couple of PDF viewing native libraries[1] but not much
> that supports PDF manipulation[2] properly.
>
> [1].PDF viewer- https://github.com/JoanZapata/android-pdfview
> [2]. http://www.mupdf.com/
>
> Regards,
> Inosh
>
>
>
> On Mon, Dec 22, 2014 at 11:02 PM, Kartik Khare 
> wrote:
>
>> Thanks Ramindu!
>>
>> I would like to know if there is any work going on Android EMM & MDM
>> agent.The PDF viewer project quite intrested me and fits my skillset.
>>
>>
>> On Mon Dec 22 2014 at 8:13:26 PM Shashvat Tripathi <
>> shashvatt...@gmail.com> wrote:
>>
>>> Thanks Ramindu!
>>>
>>> I did check out a few projects which interested me such as
>>> Proposal 10: WSO2 Complex Event Processor, Event Flow Debugger GUI Tool.
>>> and
>>> Proposal 3: Apache Tomcat based runtime implementation for Jaggery.js
>>>
>>> Will look further into these.
>>>
>>> On Mon, Dec 22, 2014 at 4:24 PM, Ramindu Deshapriya 
>>> wrote:
>>>
 Hi Kartik,

 I think I can give you a few pointers on how to approach WSO2 as a
 potential GSoC candidate.

 WSO2 develops a range of products. GSoC projects could be offered under
 a few of these products. The best option would be to monitor the dev lists
 and figure out which products are undergoing a large amount of active
 development. These products could potentially end up offering GSoC project
 ideas for 2015.

 The list of project ideas for GSoC 2014 can be found at [1]. Looking at
 these will help you to figure out products which might offer GSoC project
 ideas. But this is not guaranteed.

 Your best option right now would be to fork/clone code for different
 products from their source repos at [2] (please correct me if this is
 wrong) and take a look at how they work. Primarily, it is important to
 figure out how the WSO2 software stack works, as they for the most part are
 based on web service/Service Oriented Architecture paradigms.

 The most important thing to do is to stay engaged with the community,
 as it is the best way to understand how WSO2 works as an organization and
 how you can contribute towards it. If you are recognized as a valuable
 contributor, it will enhance your chances of being selected as a GSoC
 student.

 Good luck!

 Thanks.



 [1] https://docs.wso2.com/display/GSoC/Project+Proposals+for+2014
 [2] https://github.com/wso2

 On Mon, Dec 22, 2014 at 2:09 PM, Kartik Khare [via WSO2 Oxygen Tank] 
 <[hidden
 email] > wrote:

>  Hi guys,
> I am a pre-final year student doing my major in Electronics &
> Communications from Indian Institute of Technology, Roorkee.I have
> quite
> an experience in *Python, JavaScripting and C++*. I have been doing
> web development since my freshman year and *4 months back I switched
> to Android app development.*
> Although, I am new to open source, I love it.I am potential GSoC
> candidate and would love your help on guiding me on how should I
> proceed
> on that?
>
> Here's my Github repo: https://github.com/KKcorps
>
> Thanks & Regards,
> Kartik Khare
>
> ___
> Dev mailing list
> [hidden email] 
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>
> --
>  If you reply to this email, your message will be added to the
> discussion below:
>
> http://wso2-oxygen-tank.10903.n7.nabble.com/Gsoc-Intro-and-contibuting-to-WSO2-tp109215.html
>  To start a new topic under WSO2 Development, email [hidden email]
> 
> To unsubscribe from WSO2 Development, click here.
> NAML
> 

[Dev] java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty

2014-12-22 Thread Prabath Ariyarathna
$subject error occurred while trying to access UsernameToken enable secure
proxy service which is exposed via ESB through the java client in MacOSx.
I'm using JDK 1.7.0_71.
Can anyone help me to solve this issue?

-- 

*Prabath Ariyarathna*

*Associate Technical Lead*

*WSO2, Inc. *

*lean . enterprise . middleware *


*Email: prabat...@wso2.com *

*Blog: http://prabu-lk.blogspot.com *

*Flicker : https://www.flickr.com/photos/47759189@N08
*

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


Re: [Dev] Upgrading CQL to the latest release version 2.1.3

2014-12-22 Thread Maheshika Goonetilleke
Hi Sameera

Successfully deployed.



On Mon, Dec 22, 2014 at 5:15 PM, Sameera Jayasoma  wrote:

> Maheshika, Can you release this?
>
> Thanks,
> Sameera.
>
> On Mon, Dec 22, 2014 at 4:27 PM, Asitha Nanayakkara 
> wrote:
>>
>> Hi Sameera,
>>
>> I tested this with MB. And this resolved the issues in Hector and CQL
>> driver.
>>
>> Thanks,
>> Asitha
>>
>> On Mon, Dec 22, 2014 at 3:05 PM, Sameera Jayasoma 
>> wrote:
>>
>>> Merged the PR.
>>>
>>> Did you guys test your scenarios with this orbit bundle? Once released
>>> if we find a bug, we have to release a new version.
>>>
>>> Thanks,
>>> Sameera.
>>>
>>> On Sun, Dec 21, 2014 at 11:25 PM, Harsha Kumara 
>>> wrote:

 Hi Sameera,

 I have updated the pull request and replied to the comments. Please
 review and merge.

 Thanks,
 Harsha

 On Fri, Dec 19, 2014 at 7:39 PM, Sameera Jayasoma 
 wrote:

> I put some comments to the PR. Please check and reply.
>
> Thanks,
> Sameera.
>
> On Fri, Dec 19, 2014 at 5:25 PM, Ramith Jayasinghe 
> wrote:
>>
>> Hi Sameera,
>>  Could we have this reviewed and merged?
>> regards
>> Ramith
>>
>> On Thu, Dec 18, 2014 at 4:02 PM, Harsha Kumara 
>> wrote:
>>
>>> Hi Ramith/Prabath,
>>>
>>> Asitha and myself tested the CQL upgrade and found that there a is a
>>> dependency issue with hector as it required cassandra thrift dependency.
>>> Previously, older version of CQL needed Cassandra as a dependency which
>>> includes thrift. With the latest upgrade, we CQL does not depend on
>>> Cassandra and can be used as it is because of it's already a OSGi 
>>> bundle.
>>> Since cassandra thrift needed for hector, I have created orbit bundle 
>>> for
>>> cassandra-thrift version 1.2.13.wso2v4. Previous versions of cassandra
>>> thrift has some issues with their dependencies.
>>>
>>> Pull request in [1] needs to merge and deploy before upgrading the
>>> CQL version in data reader component.
>>>
>>> [1] - https://github.com/wso2/orbit/pull/46/files
>>>
>>> Thanks,
>>> Harsha
>>>
>>> On Wed, Dec 10, 2014 at 4:08 PM, Ramith Jayasinghe 
>>> wrote:

 we need to test a new driver on cassandra ring (with a MB load
 test).

 On Wed, Dec 10, 2014 at 3:55 PM, Harsha Kumara 
 wrote:

> Hi All,
>
> Since there are number of improvements made for the latest CQL
> driver, we are going to upgrade CQL driver to the latest version 
> which also
> need for MB as well. Current version is 1.0.8.wso2v1 which we added  
> as
> orbit bundle due to dependency conflicts in OSGi environment. With the
> latest release, they have removed cassandra and jackson dependencies 
> from
> CQL driver. We most probably can update the CQL driver to the 2.1.3 
> without
> a orbit bundle.
>
> Since there are some API changes, we will needs to fix them.
> Please find [1] and [2] as upgrade instructions from datastax.
>
> We are now testing the cql upgrade with latest version from
> https://github.com/wso2-dev/carbon-storage-management/tree/cql_upgrade
> branch,
>
> @Asitha,Madhawa can you update the thread whether data reader
> feature with the latest CQL driver works as expected in MB?
>
> [1] -hhttps://
> github.com/datastax/java-driver/blob/2.0/driver-core/Upgrade_guide_to_2.0.rst
> [2] -
> https://github.com/datastax/java-driver/blob/2.1/driver-core/Upgrade_guide_to_2.1.rst
> [3] -https://github.com/datastax/java-driver
>
> Thanks,
> Harsha
>
> --
> Harsha Kumara
> Software Engineer, WSO2 Inc.
> Mobile: +94775505618
> Blog:harshcreationz.blogspot.com
>



 --
 Ramith Jayasinghe
 Technical Lead
 WSO2 Inc., http://wso2.com
 lean.enterprise.middleware

 E: ram...@wso2.com
 P: +94 777542851


>>>
>>> --
>>> Harsha Kumara
>>> Software Engineer, WSO2 Inc.
>>> Mobile: +94775505618
>>> Blog:harshcreationz.blogspot.com
>>>
>>
>>
>>
>> --
>> Ramith Jayasinghe
>> Technical Lead
>> WSO2 Inc., http://wso2.com
>> lean.enterprise.middleware
>>
>> E: ram...@wso2.com
>> P: +94 777542851
>>
>>
>
> --
> Sameera Jayasoma,
> Software Architect,
>
> WSO2, Inc. (http://wso2.com)
> email: same...@wso2.com
> blog: http://sameera.adahas.org
> twitter: https://twitter.com/sameerajayasoma
> flickr: http://www.flickr.com/photos/sameera-jayasoma/collections
> Mobile: 0094776364456
>
> Lean . Enterprise . Middleware
>>>

Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Manula Chathurika Thantriwatte
Congratulations Gayan !!!

On Tue, Dec 23, 2014 at 10:33 AM, Inosh Perera  wrote:

> Congrats Gayan!!
>
> On Tue, Dec 23, 2014 at 10:29 AM, Buddhima Wijeweera 
> wrote:
>
>> Congratulations Gayan !!!
>>
>> On Tue, Dec 23, 2014 at 10:28 AM, Samith Dassanayake 
>> wrote:
>>
>>> Congratz Gayan!
>>>
>>> On Tue, Dec 23, 2014 at 10:22 AM, Dakshika Jayathilaka <
>>> daksh...@wso2.com> wrote:
>>>
 Congratulations Gayan !

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

 On Tue, Dec 23, 2014 at 10:18 AM, Supun Sethunga 
 wrote:

> Congratz Gayan!
>
> On Tue, Dec 23, 2014 at 10:15 AM, Abimaran Kugathasan <
> abima...@wso2.com> wrote:
>
>> Congrats Gayan! :)
>>
>> On Tue, Dec 23, 2014 at 10:07 AM, Harsha Kumara 
>> wrote:
>>
>>> Congratulations Gayan!
>>>
>>> On Tue, Dec 23, 2014 at 9:54 AM, Danesh Kuruppu 
>>> wrote:
>>>
 Congrats Gayan !!


 On Tue, Dec 23, 2014 at 9:28 AM, Kasun De Silva 
 wrote:

> Congratz Gayan !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda <
> kal...@wso2.com> wrote:
>
>> Congratulations Gayan !
>>
>> On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi,
>>>
>>> It is with great pleasure that I welcome Gayan as a WSO2
>>> committer, Congratulations and keep up with the good work! ..
>>>
>>> --
>>> Lakmal Warusawithana
>>> Vice President, Apache Stratos
>>> Director - Cloud Architecture; WSO2 Inc.
>>> Mobile : +94714289692
>>> Blog : http://lakmalsview.blogspot.com/
>>>
>>>
>>> ___
>>> 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
>>
>>
>
> ___
> 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


>>>
>>>
>>> --
>>> Harsha Kumara
>>> Software Engineer, WSO2 Inc.
>>> Mobile: +94775505618
>>> Blog:harshcreationz.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
>>
>>
>
>
> --
> *Supun Sethunga*
> Software Engineer
> WSO2, Inc.
> lean | enterprise | middleware
> Mobile : +94 716546324
>
> ___
> 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
>>>
>>> Samith Dassanayake
>>> Software Engineer, WSO2 Inc.
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Buddhima Wijeweera
>> Software Engineer; WSO2 Inc.; http://wso2.com ,
>>
>> Mobile: +94 71 427 9966
>> Email: buddh...@wso2.com
>> Blog:   https://budd

[Dev] Please review and merge the pull request : TOOLS-2528

2014-12-22 Thread Rajeevan Vimalanathan
Hi,

Please merge pull request[1] that includes fix for JIRA[2].

[1] https://github.com/wso2-dev/developer-studio/pull/123

[2] https://wso2.org/jira/browse/TOOLS-2528

Thanks,
Rajeevan

-- 
Best Regards,
V.Rajeevan
Software Engineer,
WSO2 Inc. :http://wso2.com

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


Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Dunith Dhanushka
Congrats Gimantha!

On Tue, Dec 23, 2014 at 10:34 AM, Inosh Perera  wrote:

> Congrats Gimantha!
>
> On Tue, Dec 23, 2014 at 10:32 AM, Danesh Kuruppu  wrote:
>
>> Congrats Gimantha !!
>>
>> On Tue, Dec 23, 2014 at 10:28 AM, Abimaran Kugathasan 
>> wrote:
>>
>>> Congrats!
>>>
>>> On Tue, Dec 23, 2014 at 10:23 AM, Buddhima Wijeweera 
>>> wrote:
>>>
 Congratulations Gimantha !!!

 On Tue, Dec 23, 2014 at 10:21 AM, Milinda Perera 
 wrote:

> Congratulations gimantha  :)
>
> On Tue, Dec 23, 2014 at 9:58 AM, Lasitha Wattaladeniya <
> lasit...@wso2.com> wrote:
>
>> Congratulations gima !
>>
>> On Tue, Dec 23, 2014 at 9:50 AM, Sajini De Silva 
>> wrote:
>>
>>> Congratulations Gimantha!!!
>>>
>>> On Tue, Dec 23, 2014 at 9:48 AM, Dakshika Jayathilaka <
>>> daksh...@wso2.com> wrote:
>>>
 Congratulations Gimantha!

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

 On Tue, Dec 23, 2014 at 9:25 AM, Denuwanthi De Silva <
 denuwan...@wso2.com> wrote:

> Congrats Gimantha!!
>
> On Tue, Dec 23, 2014 at 9:16 AM, Pirinthapan Mahendran <
> pirintha...@wso2.com> wrote:
>
>> Congrats Gimantha..!!
>>
>>
>>
>> Mahendran Pirinthapan
>> Software Engineer | WSO2 Inc.
>> Mobile +94772378732.
>>
>> On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara 
>> wrote:
>>
>>> Congratulations Gimantha!
>>>
>>> On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva >> > wrote:
>>>
 Congratz Gimantha !!!

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

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


 On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera <
 nira...@wso2.com> wrote:

> Congrats Gimantha! :-)
>
> On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando <
> anj...@wso2.com> wrote:
>
>> Hi,
>>
>> It is with great pleasure that I welcome Gimantha as a WSO2
>> committer, Congratulations and keep up with the good work! ..
>>
>> Cheers,
>> Anjana.
>> --
>> *Anjana Fernando*
>> Senior Technical Lead
>> WSO2 Inc. | http://wso2.com
>> lean . enterprise . middleware
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Niranda Perera*
> Software Engineer, WSO2 Inc.
> Mobile: +94-71-554-8430
> Twitter: @n1r44 
>
> ___
> 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


>>>
>>>
>>> --
>>> Harsha Kumara
>>> Software Engineer, WSO2 Inc.
>>> Mobile: +94775505618
>>> Blog:harshcreationz.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
>>
>>
>
>
> --
> Denuwanthi De Silva
> Software Engineer;
> WSO2 Inc.; http://wso2.com,
> Email: denuwan...@wso2.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


>>>
>>>
>>> --
>>> Sajini De SIlva
>>> Software Engineer; WSO2 Inc.; http://wso2.com ,
>>> Email: saj...@wso2.com
>>> Blog: http://sajinid.blogspot.com/
>>> Git hub profile: https://github

Re: [Dev] Script Mediator for JSON

2014-12-22 Thread Vanjikumaran Sivajothy
Hi Maz,

There is a known issue in script mediator while you use the JSON
functionalists such like "JSON.stringify()" due to the issue mentioned in
[1]
However, it is under our radar and we will fix it in near future.

Having said that, as malaka and Sajith told; you can make use of in-build
methods given by script mediator such as getPayloadJSON() and
setPayloadJSON().[2]




[1] https://wso2.org/jira/browse/ESBJAVA-3019
[2]
https://docs.wso2.com/display/ESB481/JSON+Support#JSONSupport-ConstructingandtransformingJSONpayloads

On Tue, Dec 23, 2014 at 6:58 AM, Malaka Silva  wrote:

> Further to the above [1] will provide more details on this.
>
> [1] https://docs.wso2.com/display/ESB481/JSON+Support
>
> On Tue, Dec 23, 2014 at 2:32 AM, Sajith Ravindra  wrote:
>
>> Hi Maz,
>>
>> There is a equivalent for JSON in script mediator, it's getPayloadJSON().
>> You can refer [1] for an example on converting JSON to XML.
>>
>> [1] -
>> https://docs.wso2.com/display/ESB481/Sample+440%3A+Converting+JSON+to+XML+Using+XSLT
>>
>> Thanks
>> *,Sajith Ravindra*
>> Senior Software Engineer
>> WSO2 Inc.; http://wso2.com
>> lean.enterprise.middleware
>>
>> mobile: +94 77 2273550
>> blog: http://sajithr.blogspot.com/
>> 
>>
>> On Mon, Dec 22, 2014 at 3:51 PM, Maz Lakadia 
>> wrote:
>>
>>> I am trying to use Script Mediator to convert a message Payload.
>>> However, Samples are all using a method called getPayloadXML. My Payload
>>> will be in JSON form; is there a JSON equivalent of this? I could transform
>>> the Payload to XML for my mediations, but that's a last resort.
>>>
>>> Thank you,
>>>
>>> Maz
>>>
>>> ___
>>> 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,
>
> Malaka Silva
> Senior Tech Lead
> M: +94 777 219 791
> Tel : 94 11 214 5345
> Fax :94 11 2145300
> Skype : malaka.sampath.silva
> LinkedIn : http://www.linkedin.com/pub/malaka-silva/6/33/77
> Blog : http://mrmalakasilva.blogspot.com/
>
> WSO2, Inc.
> lean . enterprise . middleware
> http://www.wso2.com/
> http://www.wso2.com/about/team/malaka-silva/
> 
>
> Save a tree -Conserve nature & Save the world for your future. Print this
> email only if it is absolutely necessary.
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Sivajothy Vanjikumaran
*Senior Software Engineer*
*Integration Technologies Team*
*WSO2 Inc. http://wso2.com *
*Mobile:(+94)777219209*
[image: Facebook]  [image: Twitter]
 [image: LinkedIn]
 [image:
Blogger]  [image: SlideShare]


This communication may contain privileged or other confidential information
and is intended exclusively for the addressee/s. If you are not the
intended recipient/s, or believe that you may have received this
communication in error, please reply to the sender indicating that fact and
delete the copy you received and in addition, you should not print,
copy, re-transmit, disseminate, or otherwise use the information contained
in this communication. Internet communications cannot be guaranteed to be
timely, secure, error or virus-free. The sender does not accept liability
for any errors or omissions
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Roshan Deniyage

2014-12-22 Thread Inosh Perera
Congrats Roshan!

On Mon, Dec 22, 2014 at 6:39 PM, Damith Wickramasinghe 
wrote:

> Congratzz
>
> On Mon, Dec 22, 2014 at 5:51 PM, Harshan Liyanage 
> wrote:
>
>> Congradz Roshan ..
>>
>> Lakshitha Harshan
>> Software Engineer
>> Mobile: *+94724423048*
>> Email: hars...@wso2.com
>> Blog : http://harshanliyanage.blogspot.com/
>> *WSO2, Inc. :** wso2.com *
>> lean.enterprise.middleware.
>>
>> On Mon, Dec 22, 2014 at 4:59 PM, Manula Chathurika Thantriwatte <
>> manu...@wso2.com> wrote:
>>
>>> Congratulations Roshan !!!
>>>
>>> On Mon, Dec 22, 2014 at 4:57 PM, Waruna De Silva 
>>> wrote:
>>>
 Congratulation Roshan!!

 On Mon, Dec 22, 2014 at 4:48 PM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Roshan!
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Mon, Dec 22, 2014 at 4:42 PM, Jerad Rutnam  wrote:
>
>> Congratulations Roshan :)
>>
>> On Fri, Dec 19, 2014 at 12:27 PM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats Roshan!
>>>
>>> On Fri, Dec 19, 2014 at 10:54 AM, Roshan Deniyage 
>>> wrote:

 Thanks all for the wishes!

 Roshan Deniyage
 Associate Technical Lead
 WSO2, Inc: http://wso2.com

 Mobile:  +94 777636406
 Twitter:  *https://twitter.com/roshku
 *
 LinkedIn :  https://www.linkedin.com/in/roshandeniyage


 On Fri, Dec 19, 2014 at 10:45 AM, Harsha Thirimanna <
 hars...@wso2.com> wrote:
>
> Congratulations Roshan 
>
>
> *Harsha Thirimanna*
> Senior Software Engineer; WSO2, Inc.; http://wso2.com
> * *
> *email: **hars...@wso2.com* * cell: +94 71
> 5186770  , +94 *
> *774617784twitter: **http://twitter.com/
> *
> *harshathirimannlinked-in: **http:
> **//www.linkedin.com/pub/harsha-thirimanna/10/ab8/122
> *
>
> *Lean . Enterprise . Middleware*
>
>
> On Fri, Dec 19, 2014 at 10:42 AM, Kalpa Welivitigoda <
> kal...@wso2.com> wrote:
>>
>> Congratulations Roshan !
>>
>> On Fri, Dec 19, 2014 at 10:17 AM, Shashika Karunatilaka <
>> shashi...@wso2.com> wrote:
>>>
>>> Congrats Roshan...:)
>>>
>>>
>>> On Fri, Dec 19, 2014 at 10:03 AM, Aiyadurai Rajeevan <
>>> rajeev...@wso2.com> wrote:

 Congrats Roshan..:)

 Thanks & Regards,
 S.A.Rajeevan
 Software Engineer WSO2 Inc
 E-Mail: rajeev...@wso2.com | Mobile : +94776411636

 On Fri, Dec 19, 2014 at 9:20 AM, Prasanna Dangalla <
 prasa...@wso2.com> wrote:
>
> Congratulations Roshan...
>
> On Fri, Dec 19, 2014 at 8:57 AM, Danesh Kuruppu <
> dan...@wso2.com> wrote:
>>
>> Congratulation Roshan!!
>>
>> On Fri, Dec 19, 2014 at 8:16 AM, Rajkumar Rajaratnam <
>> rajkum...@wso2.com> wrote:
>>>
>>> Congratulation Roshan!!
>>>
>>> On Fri, Dec 19, 2014 at 8:07 AM, Ravindra Ranwala <
>>> ravin...@wso2.com> wrote:

 Congrats Roshan !



 On Fri, Dec 19, 2014 at 8:02 AM, Shiroshica Kulatilake <
 sh...@wso2.com> wrote:
>
> Congrats !!!
>
> On Fri, Dec 19, 2014 at 8:01 AM, Anuruddha Premalal <
> anurud...@wso2.com> wrote:
>>
>> Congratulation Roshan!!
>>
>> On Fri, Dec 19, 2014 at 6:44 AM, Kasun De Silva <
>> kas...@wso2.com> wrote:
>>>
>>> Congratz Roshan!!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Fri, Dec 19, 2014 at 1:29 AM, Thanuja Jayasinghe <
>>> than...@wso2.com> wrote:

 Congratz Roshan!!!

 On Thu, Dec 18, 2014 at 12:59 PM, Prabath Ariyarathna <
 prabat...@wso2.com> wrote:
>

Re: [Dev] WSO2 Committers += Hasitha Amal De Silva

2014-12-22 Thread Inosh Perera
Congrats Hasitha!

On Tue, Dec 23, 2014 at 10:29 AM, Samith Dassanayake 
wrote:

> Congratz Hasitha!
>
> On Mon, Dec 22, 2014 at 5:12 PM, Kalpa Welivitigoda 
> wrote:
>
>> Congratulations Hasitha !
>>
>> On Mon, Dec 22, 2014 at 5:11 PM, Ramith Jayasinghe 
>> wrote:
>>
>>> Hi Hasitha,
>>> Congratulations!
>>> It is with great pleasure that we welcome you as a WSO2 committer. Keep
>>> up the good work!
>>>
>>>
>>> --
>>> Ramith Jayasinghe
>>> Technical Lead
>>> WSO2 Inc., http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> E: ram...@wso2.com
>>>
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Best Regards
>
> Samith Dassanayake
> Software Engineer, WSO2 Inc.
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Inosh Perera
Software Engineer, WSO2 Inc.
Tel: 0785293686
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Inosh Perera
Congrats Gimantha!

On Tue, Dec 23, 2014 at 10:32 AM, Danesh Kuruppu  wrote:

> Congrats Gimantha !!
>
> On Tue, Dec 23, 2014 at 10:28 AM, Abimaran Kugathasan 
> wrote:
>
>> Congrats!
>>
>> On Tue, Dec 23, 2014 at 10:23 AM, Buddhima Wijeweera 
>> wrote:
>>
>>> Congratulations Gimantha !!!
>>>
>>> On Tue, Dec 23, 2014 at 10:21 AM, Milinda Perera 
>>> wrote:
>>>
 Congratulations gimantha  :)

 On Tue, Dec 23, 2014 at 9:58 AM, Lasitha Wattaladeniya <
 lasit...@wso2.com> wrote:

> Congratulations gima !
>
> On Tue, Dec 23, 2014 at 9:50 AM, Sajini De Silva 
> wrote:
>
>> Congratulations Gimantha!!!
>>
>> On Tue, Dec 23, 2014 at 9:48 AM, Dakshika Jayathilaka <
>> daksh...@wso2.com> wrote:
>>
>>> Congratulations Gimantha!
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Dec 23, 2014 at 9:25 AM, Denuwanthi De Silva <
>>> denuwan...@wso2.com> wrote:
>>>
 Congrats Gimantha!!

 On Tue, Dec 23, 2014 at 9:16 AM, Pirinthapan Mahendran <
 pirintha...@wso2.com> wrote:

> Congrats Gimantha..!!
>
>
>
> Mahendran Pirinthapan
> Software Engineer | WSO2 Inc.
> Mobile +94772378732.
>
> On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara 
> wrote:
>
>> Congratulations Gimantha!
>>
>> On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva 
>> wrote:
>>
>>> Congratz Gimantha !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera <
>>> nira...@wso2.com> wrote:
>>>
 Congrats Gimantha! :-)

 On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando <
 anj...@wso2.com> wrote:

> Hi,
>
> It is with great pleasure that I welcome Gimantha as a WSO2
> committer, Congratulations and keep up with the good work! ..
>
> Cheers,
> Anjana.
> --
> *Anjana Fernando*
> Senior Technical Lead
> WSO2 Inc. | http://wso2.com
> lean . enterprise . middleware
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Niranda Perera*
 Software Engineer, WSO2 Inc.
 Mobile: +94-71-554-8430
 Twitter: @n1r44 

 ___
 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
>>>
>>>
>>
>>
>> --
>> Harsha Kumara
>> Software Engineer, WSO2 Inc.
>> Mobile: +94775505618
>> Blog:harshcreationz.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
>
>


 --
 Denuwanthi De Silva
 Software Engineer;
 WSO2 Inc.; http://wso2.com,
 Email: denuwan...@wso2.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
>>>
>>>
>>
>>
>> --
>> Sajini De SIlva
>> Software Engineer; WSO2 Inc.; http://wso2.com ,
>> Email: saj...@wso2.com
>> Blog: http://sajinid.blogspot.com/
>> Git hub profile: https://github.com/sajinidesilva
>>
>> Phone: +94 712797729
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --

Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Inosh Perera
Congrats Gayan!!

On Tue, Dec 23, 2014 at 10:29 AM, Buddhima Wijeweera 
wrote:

> Congratulations Gayan !!!
>
> On Tue, Dec 23, 2014 at 10:28 AM, Samith Dassanayake 
> wrote:
>
>> Congratz Gayan!
>>
>> On Tue, Dec 23, 2014 at 10:22 AM, Dakshika Jayathilaka > > wrote:
>>
>>> Congratulations Gayan !
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Dec 23, 2014 at 10:18 AM, Supun Sethunga 
>>> wrote:
>>>
 Congratz Gayan!

 On Tue, Dec 23, 2014 at 10:15 AM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats Gayan! :)
>
> On Tue, Dec 23, 2014 at 10:07 AM, Harsha Kumara 
> wrote:
>
>> Congratulations Gayan!
>>
>> On Tue, Dec 23, 2014 at 9:54 AM, Danesh Kuruppu 
>> wrote:
>>
>>> Congrats Gayan !!
>>>
>>>
>>> On Tue, Dec 23, 2014 at 9:28 AM, Kasun De Silva 
>>> wrote:
>>>
 Congratz Gayan !!!

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

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


 On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda <
 kal...@wso2.com> wrote:

> Congratulations Gayan !
>
> On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana <
> lak...@wso2.com> wrote:
>
>> Hi,
>>
>> It is with great pleasure that I welcome Gayan as a WSO2
>> committer, Congratulations and keep up with the good work! ..
>>
>> --
>> Lakmal Warusawithana
>> Vice President, Apache Stratos
>> Director - Cloud Architecture; WSO2 Inc.
>> Mobile : +94714289692
>> Blog : http://lakmalsview.blogspot.com/
>>
>>
>> ___
>> 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
>
>

 ___
 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
>>>
>>>
>>
>>
>> --
>> Harsha Kumara
>> Software Engineer, WSO2 Inc.
>> Mobile: +94775505618
>> Blog:harshcreationz.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
>
>


 --
 *Supun Sethunga*
 Software Engineer
 WSO2, Inc.
 lean | enterprise | middleware
 Mobile : +94 716546324

 ___
 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
>>
>> Samith Dassanayake
>> Software Engineer, WSO2 Inc.
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Buddhima Wijeweera
> Software Engineer; WSO2 Inc.; http://wso2.com ,
>
> Mobile: +94 71 427 9966
> Email: buddh...@wso2.com
> Blog:   https://buddhimawijeweera.wordpress.com
> GitHub Profile: https://github.com/Buddhima
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Inosh Perera
Software Engineer, WSO2 Inc.
Tel: 0785293686
___

Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Danesh Kuruppu
Congrats Gimantha !!

On Tue, Dec 23, 2014 at 10:28 AM, Abimaran Kugathasan 
wrote:

> Congrats!
>
> On Tue, Dec 23, 2014 at 10:23 AM, Buddhima Wijeweera 
> wrote:
>
>> Congratulations Gimantha !!!
>>
>> On Tue, Dec 23, 2014 at 10:21 AM, Milinda Perera 
>> wrote:
>>
>>> Congratulations gimantha  :)
>>>
>>> On Tue, Dec 23, 2014 at 9:58 AM, Lasitha Wattaladeniya <
>>> lasit...@wso2.com> wrote:
>>>
 Congratulations gima !

 On Tue, Dec 23, 2014 at 9:50 AM, Sajini De Silva 
 wrote:

> Congratulations Gimantha!!!
>
> On Tue, Dec 23, 2014 at 9:48 AM, Dakshika Jayathilaka <
> daksh...@wso2.com> wrote:
>
>> Congratulations Gimantha!
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Dec 23, 2014 at 9:25 AM, Denuwanthi De Silva <
>> denuwan...@wso2.com> wrote:
>>
>>> Congrats Gimantha!!
>>>
>>> On Tue, Dec 23, 2014 at 9:16 AM, Pirinthapan Mahendran <
>>> pirintha...@wso2.com> wrote:
>>>
 Congrats Gimantha..!!



 Mahendran Pirinthapan
 Software Engineer | WSO2 Inc.
 Mobile +94772378732.

 On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara 
 wrote:

> Congratulations Gimantha!
>
> On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva 
> wrote:
>
>> Congratz Gimantha !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera > > wrote:
>>
>>> Congrats Gimantha! :-)
>>>
>>> On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando <
>>> anj...@wso2.com> wrote:
>>>
 Hi,

 It is with great pleasure that I welcome Gimantha as a WSO2
 committer, Congratulations and keep up with the good work! ..

 Cheers,
 Anjana.
 --
 *Anjana Fernando*
 Senior Technical Lead
 WSO2 Inc. | http://wso2.com
 lean . enterprise . middleware

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


>>>
>>>
>>> --
>>> *Niranda Perera*
>>> Software Engineer, WSO2 Inc.
>>> Mobile: +94-71-554-8430
>>> Twitter: @n1r44 
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Harsha Kumara
> Software Engineer, WSO2 Inc.
> Mobile: +94775505618
> Blog:harshcreationz.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


>>>
>>>
>>> --
>>> Denuwanthi De Silva
>>> Software Engineer;
>>> WSO2 Inc.; http://wso2.com,
>>> Email: denuwan...@wso2.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
>>
>>
>
>
> --
> Sajini De SIlva
> Software Engineer; WSO2 Inc.; http://wso2.com ,
> Email: saj...@wso2.com
> Blog: http://sajinid.blogspot.com/
> Git hub profile: https://github.com/sajinidesilva
>
> Phone: +94 712797729
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Lasitha Wattaladeniya
 Software Engineer
 WSO2, Inc. | http://wso2.com
 lean. enterprise. middleware

 Mobile : +94719397528
 Blog : techreadme.blogspot.com

 ___
 Dev mailing list
 Dev@wso2.org
>

Re: [Dev] WSO2 Committers += Hasitha Amal De Silva

2014-12-22 Thread Samith Dassanayake
Congratz Hasitha!

On Mon, Dec 22, 2014 at 5:12 PM, Kalpa Welivitigoda  wrote:

> Congratulations Hasitha !
>
> On Mon, Dec 22, 2014 at 5:11 PM, Ramith Jayasinghe 
> wrote:
>
>> Hi Hasitha,
>> Congratulations!
>> It is with great pleasure that we welcome you as a WSO2 committer. Keep
>> up the good work!
>>
>>
>> --
>> Ramith Jayasinghe
>> Technical Lead
>> WSO2 Inc., http://wso2.com
>> lean.enterprise.middleware
>>
>> E: ram...@wso2.com
>>
>>
>> ___
>> 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
>
>


-- 
Best Regards

Samith Dassanayake
Software Engineer, WSO2 Inc.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Buddhima Wijeweera
Congratulations Gayan !!!

On Tue, Dec 23, 2014 at 10:28 AM, Samith Dassanayake 
wrote:

> Congratz Gayan!
>
> On Tue, Dec 23, 2014 at 10:22 AM, Dakshika Jayathilaka 
> wrote:
>
>> Congratulations Gayan !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Dec 23, 2014 at 10:18 AM, Supun Sethunga  wrote:
>>
>>> Congratz Gayan!
>>>
>>> On Tue, Dec 23, 2014 at 10:15 AM, Abimaran Kugathasan >> > wrote:
>>>
 Congrats Gayan! :)

 On Tue, Dec 23, 2014 at 10:07 AM, Harsha Kumara 
 wrote:

> Congratulations Gayan!
>
> On Tue, Dec 23, 2014 at 9:54 AM, Danesh Kuruppu 
> wrote:
>
>> Congrats Gayan !!
>>
>>
>> On Tue, Dec 23, 2014 at 9:28 AM, Kasun De Silva 
>> wrote:
>>
>>> Congratz Gayan !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda >> > wrote:
>>>
 Congratulations Gayan !

 On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi,
>
> It is with great pleasure that I welcome Gayan as a WSO2
> committer, Congratulations and keep up with the good work! ..
>
> --
> Lakmal Warusawithana
> Vice President, Apache Stratos
> Director - Cloud Architecture; WSO2 Inc.
> Mobile : +94714289692
> Blog : http://lakmalsview.blogspot.com/
>
>
> ___
> 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


>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Harsha Kumara
> Software Engineer, WSO2 Inc.
> Mobile: +94775505618
> Blog:harshcreationz.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


>>>
>>>
>>> --
>>> *Supun Sethunga*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean | enterprise | middleware
>>> Mobile : +94 716546324
>>>
>>> ___
>>> 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
>
> Samith Dassanayake
> Software Engineer, WSO2 Inc.
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Buddhima Wijeweera
Software Engineer; WSO2 Inc.; http://wso2.com ,

Mobile: +94 71 427 9966
Email: buddh...@wso2.com
Blog:   https://buddhimawijeweera.wordpress.com
GitHub Profile: https://github.com/Buddhima
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Abimaran Kugathasan
Congrats!

On Tue, Dec 23, 2014 at 10:23 AM, Buddhima Wijeweera 
wrote:

> Congratulations Gimantha !!!
>
> On Tue, Dec 23, 2014 at 10:21 AM, Milinda Perera 
> wrote:
>
>> Congratulations gimantha  :)
>>
>> On Tue, Dec 23, 2014 at 9:58 AM, Lasitha Wattaladeniya > > wrote:
>>
>>> Congratulations gima !
>>>
>>> On Tue, Dec 23, 2014 at 9:50 AM, Sajini De Silva 
>>> wrote:
>>>
 Congratulations Gimantha!!!

 On Tue, Dec 23, 2014 at 9:48 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Gimantha!
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Dec 23, 2014 at 9:25 AM, Denuwanthi De Silva <
> denuwan...@wso2.com> wrote:
>
>> Congrats Gimantha!!
>>
>> On Tue, Dec 23, 2014 at 9:16 AM, Pirinthapan Mahendran <
>> pirintha...@wso2.com> wrote:
>>
>>> Congrats Gimantha..!!
>>>
>>>
>>>
>>> Mahendran Pirinthapan
>>> Software Engineer | WSO2 Inc.
>>> Mobile +94772378732.
>>>
>>> On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara 
>>> wrote:
>>>
 Congratulations Gimantha!

 On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva 
 wrote:

> Congratz Gimantha !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera 
> wrote:
>
>> Congrats Gimantha! :-)
>>
>> On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando > > wrote:
>>
>>> Hi,
>>>
>>> It is with great pleasure that I welcome Gimantha as a WSO2
>>> committer, Congratulations and keep up with the good work! ..
>>>
>>> Cheers,
>>> Anjana.
>>> --
>>> *Anjana Fernando*
>>> Senior Technical Lead
>>> WSO2 Inc. | http://wso2.com
>>> lean . enterprise . middleware
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Niranda Perera*
>> Software Engineer, WSO2 Inc.
>> Mobile: +94-71-554-8430
>> Twitter: @n1r44 
>>
>> ___
>> 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
>
>


 --
 Harsha Kumara
 Software Engineer, WSO2 Inc.
 Mobile: +94775505618
 Blog:harshcreationz.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
>>>
>>>
>>
>>
>> --
>> Denuwanthi De Silva
>> Software Engineer;
>> WSO2 Inc.; http://wso2.com,
>> Email: denuwan...@wso2.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
>
>


 --
 Sajini De SIlva
 Software Engineer; WSO2 Inc.; http://wso2.com ,
 Email: saj...@wso2.com
 Blog: http://sajinid.blogspot.com/
 Git hub profile: https://github.com/sajinidesilva

 Phone: +94 712797729


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


>>>
>>>
>>> --
>>> Lasitha Wattaladeniya
>>> Software Engineer
>>> WSO2, Inc. | http://wso2.com
>>> lean. enterprise. middleware
>>>
>>> Mobile : +94719397528
>>> Blog : techreadme.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 += Gayan Gunaratne

2014-12-22 Thread Gayashan Amarasinghe
Congratulations Gayan!!!

On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana 
wrote:

> Hi,
>
> It is with great pleasure that I welcome Gayan as a WSO2 committer,
> Congratulations and keep up with the good work! ..
>
> --
> Lakmal Warusawithana
> Vice President, Apache Stratos
> Director - Cloud Architecture; WSO2 Inc.
> Mobile : +94714289692
> Blog : http://lakmalsview.blogspot.com/
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Gayashan Amarasinghe*
Software Engineer | Platform TG
WSO2, Inc. | http://wso2.com
lean. enterprise. middleware

Mobile : +94718314517
Blog : gayashan-a.blogspot.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Samith Dassanayake
Congratz Gayan!

On Tue, Dec 23, 2014 at 10:22 AM, Dakshika Jayathilaka 
wrote:

> Congratulations Gayan !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Dec 23, 2014 at 10:18 AM, Supun Sethunga  wrote:
>
>> Congratz Gayan!
>>
>> On Tue, Dec 23, 2014 at 10:15 AM, Abimaran Kugathasan 
>> wrote:
>>
>>> Congrats Gayan! :)
>>>
>>> On Tue, Dec 23, 2014 at 10:07 AM, Harsha Kumara 
>>> wrote:
>>>
 Congratulations Gayan!

 On Tue, Dec 23, 2014 at 9:54 AM, Danesh Kuruppu 
 wrote:

> Congrats Gayan !!
>
>
> On Tue, Dec 23, 2014 at 9:28 AM, Kasun De Silva 
> wrote:
>
>> Congratz Gayan !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda 
>> wrote:
>>
>>> Congratulations Gayan !
>>>
>>> On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana <
>>> lak...@wso2.com> wrote:
>>>
 Hi,

 It is with great pleasure that I welcome Gayan as a WSO2 committer,
 Congratulations and keep up with the good work! ..

 --
 Lakmal Warusawithana
 Vice President, Apache Stratos
 Director - Cloud Architecture; WSO2 Inc.
 Mobile : +94714289692
 Blog : http://lakmalsview.blogspot.com/


 ___
 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
>>>
>>>
>>
>> ___
>> 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
>
>


 --
 Harsha Kumara
 Software Engineer, WSO2 Inc.
 Mobile: +94775505618
 Blog:harshcreationz.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
>>>
>>>
>>
>>
>> --
>> *Supun Sethunga*
>> Software Engineer
>> WSO2, Inc.
>> lean | enterprise | middleware
>> Mobile : +94 716546324
>>
>> ___
>> 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

Samith Dassanayake
Software Engineer, WSO2 Inc.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Hasitha Amal De Silva

2014-12-22 Thread Gayashan Amarasinghe
Congratulations Hasitha

On Tue, Dec 23, 2014 at 10:22 AM, Milinda Perera  wrote:

> Congratulations hasitha ... :)
>
> On Tue, Dec 23, 2014 at 9:51 AM, Sajini De Silva  wrote:
>
>> Congratulations Hasitha!!!
>>
>> On Mon, Dec 22, 2014 at 10:15 PM, Sewwandi Perera 
>> wrote:
>>
>>> Congratulations Hasitha...!!! :)
>>>
>>> On Mon, Dec 22, 2014 at 10:14 PM, Himasha Guruge 
>>> wrote:
>>>
 Congrats Hasitha!

 On Mon, Dec 22, 2014 at 10:02 PM, Asitha Nanayakkara 
 wrote:

> Congratulations Hasitha!
>
> On Mon, Dec 22, 2014 at 10:00 PM, Madhawa Gunasekara <
> madha...@wso2.com> wrote:
>
>> Congratulations Hasitha 
>>
>> On Mon, Dec 22, 2014 at 7:33 PM, Vijitha Ekanayake > > wrote:
>>
>>> Congratulations Hasitha ... !!!
>>>
>>> On Mon, Dec 22, 2014 at 6:46 PM, Damith Wickramasinghe <
>>> dami...@wso2.com> wrote:
>>>
 Congratz Hasitha..

 On Mon, Dec 22, 2014 at 6:43 PM, Waruna Jayaweera >>> > wrote:

> Congratulations Hasitha..
>
> On Mon, Dec 22, 2014 at 5:25 PM, Harsha Kumara 
> wrote:
>
>> Congratulations Hasitha!
>>
>> On Mon, Dec 22, 2014 at 5:17 PM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats Hasitha!
>>>
>>> On Mon, Dec 22, 2014 at 5:16 PM, Pamod Sylvester >> > wrote:
>>>
 Congratulations Hasitha !

 On Mon, Dec 22, 2014 at 5:12 PM, Kalpa Welivitigoda <
 kal...@wso2.com> wrote:
>
> Congratulations Hasitha !
>
> On Mon, Dec 22, 2014 at 5:11 PM, Ramith Jayasinghe <
> ram...@wso2.com> wrote:
>
>> Hi Hasitha,
>> Congratulations!
>> It is with great pleasure that we welcome you as a WSO2
>> committer. Keep up the good work!
>>
>>
>> --
>> Ramith Jayasinghe
>> Technical Lead
>> WSO2 Inc., http://wso2.com
>> lean.enterprise.middleware
>>
>> E: ram...@wso2.com
>>
>>
>> ___
>> 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
>
>

 --
 *Pamod Sylvester *
  *Senior Software Engineer *
 Integration Technologies Team, WSO2 Inc.; http://wso2.com
 email: pa...@wso2.com cell: +94 77 7779495

 ___
 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
>>>
>>>
>>
>>
>> --
>> Harsha Kumara
>> Software Engineer, WSO2 Inc.
>> Mobile: +94775505618
>> Blog:harshcreationz.blogspot.com
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Regards,
>
> Waruna Lakshitha Jayaweera
> Software Engineer
> WSO2 Inc; http://wso2.com
> phone: +94713255198
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Software Engineer
 WSO2 Inc.; http://wso2.com
 

Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Gayashan Amarasinghe
Congratulations Gimantha!!!

On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando  wrote:

> Hi,
>
> It is with great pleasure that I welcome Gimantha as a WSO2 committer,
> Congratulations and keep up with the good work! ..
>
> Cheers,
> Anjana.
> --
> *Anjana Fernando*
> Senior Technical Lead
> WSO2 Inc. | http://wso2.com
> lean . enterprise . middleware
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Gayashan Amarasinghe*
Software Engineer | Platform TG
WSO2, Inc. | http://wso2.com
lean. enterprise. middleware

Mobile : +94718314517
Blog : gayashan-a.blogspot.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Gsoc Intro and contibuting to WSO2

2014-12-22 Thread Inosh Perera
Hi Kartik,
Which PDF viewer project are you talking about? I assume it not related to
WSO2 EMM agent project. If you are thinking about an open source PDF viewer
project, I really encourage you to do so. Because in my experience, Android
certainly lacks any open source implementations of PDF related libraries.
There are couple of PDF viewing native libraries[1] but not much that
supports PDF manipulation[2] properly.

[1].PDF viewer- https://github.com/JoanZapata/android-pdfview
[2]. http://www.mupdf.com/

Regards,
Inosh



On Mon, Dec 22, 2014 at 11:02 PM, Kartik Khare 
wrote:

> Thanks Ramindu!
>
> I would like to know if there is any work going on Android EMM & MDM
> agent.The PDF viewer project quite intrested me and fits my skillset.
>
>
> On Mon Dec 22 2014 at 8:13:26 PM Shashvat Tripathi 
> wrote:
>
>> Thanks Ramindu!
>>
>> I did check out a few projects which interested me such as
>> Proposal 10: WSO2 Complex Event Processor, Event Flow Debugger GUI Tool.
>> and
>> Proposal 3: Apache Tomcat based runtime implementation for Jaggery.js
>>
>> Will look further into these.
>>
>> On Mon, Dec 22, 2014 at 4:24 PM, Ramindu Deshapriya 
>> wrote:
>>
>>> Hi Kartik,
>>>
>>> I think I can give you a few pointers on how to approach WSO2 as a
>>> potential GSoC candidate.
>>>
>>> WSO2 develops a range of products. GSoC projects could be offered under
>>> a few of these products. The best option would be to monitor the dev lists
>>> and figure out which products are undergoing a large amount of active
>>> development. These products could potentially end up offering GSoC project
>>> ideas for 2015.
>>>
>>> The list of project ideas for GSoC 2014 can be found at [1]. Looking at
>>> these will help you to figure out products which might offer GSoC project
>>> ideas. But this is not guaranteed.
>>>
>>> Your best option right now would be to fork/clone code for different
>>> products from their source repos at [2] (please correct me if this is
>>> wrong) and take a look at how they work. Primarily, it is important to
>>> figure out how the WSO2 software stack works, as they for the most part are
>>> based on web service/Service Oriented Architecture paradigms.
>>>
>>> The most important thing to do is to stay engaged with the community, as
>>> it is the best way to understand how WSO2 works as an organization and how
>>> you can contribute towards it. If you are recognized as a valuable
>>> contributor, it will enhance your chances of being selected as a GSoC
>>> student.
>>>
>>> Good luck!
>>>
>>> Thanks.
>>>
>>>
>>>
>>> [1] https://docs.wso2.com/display/GSoC/Project+Proposals+for+2014
>>> [2] https://github.com/wso2
>>>
>>> On Mon, Dec 22, 2014 at 2:09 PM, Kartik Khare [via WSO2 Oxygen Tank] 
>>> <[hidden
>>> email] > wrote:
>>>
  Hi guys,
 I am a pre-final year student doing my major in Electronics &
 Communications from Indian Institute of Technology, Roorkee.I have quite
 an experience in *Python, JavaScripting and C++*. I have been doing
 web development since my freshman year and *4 months back I switched
 to Android app development.*
 Although, I am new to open source, I love it.I am potential GSoC
 candidate and would love your help on guiding me on how should I proceed
 on that?

 Here's my Github repo: https://github.com/KKcorps

 Thanks & Regards,
 Kartik Khare

 ___
 Dev mailing list
 [hidden email] 
 http://wso2.org/cgi-bin/mailman/listinfo/dev


 --
  If you reply to this email, your message will be added to the
 discussion below:

 http://wso2-oxygen-tank.10903.n7.nabble.com/Gsoc-Intro-and-contibuting-to-WSO2-tp109215.html
  To start a new topic under WSO2 Development, email [hidden email]
 
 To unsubscribe from WSO2 Development, click here.
 NAML
 

>>>
>>>
>>>
>>> --
>>> Au revoir!
>>> Ramindu Deshapriya.
>>>
>>> Member - Sahana Software Foundation http://sahanafoundation.org
>>> http://rdeshapriya.com
>>>
>>> 
>>> 
>>> 
>>> 
>>>    
>>>
>>>
>>> --
>>> View this message in context: Re: Gsoc Intro and contibuting 

Re: [Dev] WSO2 Committers += Hasitha Amal De Silva

2014-12-22 Thread Maheeka Jayasuriya
Congrats Hasitha !!


Thanks,

Maheeka Jayasuriya
Software Engineer
Mobile : +9450661

On Tue, Dec 23, 2014 at 10:22 AM, Milinda Perera  wrote:

> Congratulations hasitha ... :)
>
> On Tue, Dec 23, 2014 at 9:51 AM, Sajini De Silva  wrote:
>
>> Congratulations Hasitha!!!
>>
>> On Mon, Dec 22, 2014 at 10:15 PM, Sewwandi Perera 
>> wrote:
>>
>>> Congratulations Hasitha...!!! :)
>>>
>>> On Mon, Dec 22, 2014 at 10:14 PM, Himasha Guruge 
>>> wrote:
>>>
 Congrats Hasitha!

 On Mon, Dec 22, 2014 at 10:02 PM, Asitha Nanayakkara 
 wrote:

> Congratulations Hasitha!
>
> On Mon, Dec 22, 2014 at 10:00 PM, Madhawa Gunasekara <
> madha...@wso2.com> wrote:
>
>> Congratulations Hasitha 
>>
>> On Mon, Dec 22, 2014 at 7:33 PM, Vijitha Ekanayake > > wrote:
>>
>>> Congratulations Hasitha ... !!!
>>>
>>> On Mon, Dec 22, 2014 at 6:46 PM, Damith Wickramasinghe <
>>> dami...@wso2.com> wrote:
>>>
 Congratz Hasitha..

 On Mon, Dec 22, 2014 at 6:43 PM, Waruna Jayaweera >>> > wrote:

> Congratulations Hasitha..
>
> On Mon, Dec 22, 2014 at 5:25 PM, Harsha Kumara 
> wrote:
>
>> Congratulations Hasitha!
>>
>> On Mon, Dec 22, 2014 at 5:17 PM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats Hasitha!
>>>
>>> On Mon, Dec 22, 2014 at 5:16 PM, Pamod Sylvester >> > wrote:
>>>
 Congratulations Hasitha !

 On Mon, Dec 22, 2014 at 5:12 PM, Kalpa Welivitigoda <
 kal...@wso2.com> wrote:
>
> Congratulations Hasitha !
>
> On Mon, Dec 22, 2014 at 5:11 PM, Ramith Jayasinghe <
> ram...@wso2.com> wrote:
>
>> Hi Hasitha,
>> Congratulations!
>> It is with great pleasure that we welcome you as a WSO2
>> committer. Keep up the good work!
>>
>>
>> --
>> Ramith Jayasinghe
>> Technical Lead
>> WSO2 Inc., http://wso2.com
>> lean.enterprise.middleware
>>
>> E: ram...@wso2.com
>>
>>
>> ___
>> 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
>
>

 --
 *Pamod Sylvester *
  *Senior Software Engineer *
 Integration Technologies Team, WSO2 Inc.; http://wso2.com
 email: pa...@wso2.com cell: +94 77 7779495

 ___
 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
>>>
>>>
>>
>>
>> --
>> Harsha Kumara
>> Software Engineer, WSO2 Inc.
>> Mobile: +94775505618
>> Blog:harshcreationz.blogspot.com
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Regards,
>
> Waruna Lakshitha Jayaweera
> Software Engineer
> WSO2 Inc; http://wso2.com
> phone: +94713255198
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Software Engineer
 WSO2 Inc.; http://wso2.com
 

Re: [Dev] WSO2 Committers += Niranjan Karunanandham

2014-12-22 Thread Dakshika Jayathilaka
Congratz Niranjan... !!

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

On Tue, Dec 23, 2014 at 9:58 AM, Chaminda Jayawardena 
wrote:

> Congratz Niranjan... !! :)
>
> On Fri, Nov 7, 2014 at 9:58 PM, Manula Chathurika Thantriwatte <
> manu...@wso2.com> wrote:
>
>> Congratulations !!!
>>
>> On Fri, Nov 7, 2014 at 11:21 AM, Akalanka Pagoda Arachchi <
>> darsha...@wso2.com> wrote:
>>
>>> Congratz bro..!!!
>>>
>>> On Fri, Nov 7, 2014 at 9:17 AM, Roshan Deniyage 
>>> wrote:
>>>
 Congrats Niranjan!

 Roshan Deniyage
 Associate Technical Lead
 WSO2, Inc: http://wso2.com

 Mobile:  +94 777636406
 Twitter:  *https://twitter.com/roshku *
 LinkedIn :  https://www.linkedin.com/in/roshandeniyage


 On Wed, Nov 5, 2014 at 7:43 PM, Danesh Kuruppu  wrote:

> Congrats Niranjan..!!!
>
> On Wed, Nov 5, 2014 at 1:23 PM, Priyadarssini Kishokumar <
> priyadarss...@wso2.com> wrote:
>
>> Congratulations Niranjan !
>>
>> On Wed, Nov 5, 2014 at 12:30 PM, Chan  wrote:
>>
>>> Congratz !
>>>
>>> On Wed, Nov 5, 2014 at 9:37 AM, Sam Sivayogam  wrote:
>>>
 Congrats Niranjan :)

 On Tue, Nov 4, 2014 at 6:02 PM, Vijitha Ekanayake <
 vijit...@wso2.com> wrote:

> Congratulations !!!
>
> On Tue, Nov 4, 2014 at 11:43 AM, Sameera Perera  > wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Niranjan as a WSO2 Committer.  He
>> has been an active contributor for WSO2 Enterprise Mobility Manager.
>>
>> Niranjan, welcome aboard and keep up the good work!.
>>
>> --
>>
>> --
>>
>> *Sameera Perera*
>> Director of Engineering
>> gtalk: samee...@wso2.com
>> Tel : 94 11 214 5345
>> Fax :94 11 2145300
>> *WSO2, Inc.* 
>> lean.enterprise.middleware
>>
>>
>>
>> ___
>> 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
>
>


 --
 *Sam Sivayogam*

 Software Engineer

 
 *Mobile*  : +94 772 906 439
 *Office*   : +94 112 145 345

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


>>>
>>>
>>> --
>>> Chan (Dulitha Wijewantha)
>>> Software Engineer - Mobile Development
>>> WSO2 Inc
>>> Lean.Enterprise.Mobileware
>>>  * ~Email   duli...@wso2.com *
>>> *  ~Mobile +94712112165 <%2B94712112165>*
>>> *  ~Website   dulitha.me *
>>> *  ~Twitter @dulitharw *
>>>   *~Github @dulichan *
>>>   *~SO @chan *
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Priya Kishok
>> Software Engineer
>> WSO2, Inc : http://wso2.com
>> Mob : +94774457404
>>
>> ___
>> 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
>
>

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


>>>
>>>
>>> --
>>> *Darshana Akalanka Pagoda Arachchi,*
>>> *Software Engineer*
>>> *078-4721791*
>>>
>>> ___
>>> 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 

Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Buddhima Wijeweera
Congratulations Gimantha !!!

On Tue, Dec 23, 2014 at 10:21 AM, Milinda Perera  wrote:

> Congratulations gimantha  :)
>
> On Tue, Dec 23, 2014 at 9:58 AM, Lasitha Wattaladeniya 
> wrote:
>
>> Congratulations gima !
>>
>> On Tue, Dec 23, 2014 at 9:50 AM, Sajini De Silva  wrote:
>>
>>> Congratulations Gimantha!!!
>>>
>>> On Tue, Dec 23, 2014 at 9:48 AM, Dakshika Jayathilaka >> > wrote:
>>>
 Congratulations Gimantha!

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

 On Tue, Dec 23, 2014 at 9:25 AM, Denuwanthi De Silva <
 denuwan...@wso2.com> wrote:

> Congrats Gimantha!!
>
> On Tue, Dec 23, 2014 at 9:16 AM, Pirinthapan Mahendran <
> pirintha...@wso2.com> wrote:
>
>> Congrats Gimantha..!!
>>
>>
>>
>> Mahendran Pirinthapan
>> Software Engineer | WSO2 Inc.
>> Mobile +94772378732.
>>
>> On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara 
>> wrote:
>>
>>> Congratulations Gimantha!
>>>
>>> On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva 
>>> wrote:
>>>
 Congratz Gimantha !!!

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

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


 On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera 
 wrote:

> Congrats Gimantha! :-)
>
> On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando 
> wrote:
>
>> Hi,
>>
>> It is with great pleasure that I welcome Gimantha as a WSO2
>> committer, Congratulations and keep up with the good work! ..
>>
>> Cheers,
>> Anjana.
>> --
>> *Anjana Fernando*
>> Senior Technical Lead
>> WSO2 Inc. | http://wso2.com
>> lean . enterprise . middleware
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Niranda Perera*
> Software Engineer, WSO2 Inc.
> Mobile: +94-71-554-8430
> Twitter: @n1r44 
>
> ___
> 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


>>>
>>>
>>> --
>>> Harsha Kumara
>>> Software Engineer, WSO2 Inc.
>>> Mobile: +94775505618
>>> Blog:harshcreationz.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
>>
>>
>
>
> --
> Denuwanthi De Silva
> Software Engineer;
> WSO2 Inc.; http://wso2.com,
> Email: denuwan...@wso2.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


>>>
>>>
>>> --
>>> Sajini De SIlva
>>> Software Engineer; WSO2 Inc.; http://wso2.com ,
>>> Email: saj...@wso2.com
>>> Blog: http://sajinid.blogspot.com/
>>> Git hub profile: https://github.com/sajinidesilva
>>>
>>> Phone: +94 712797729
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Lasitha Wattaladeniya
>> Software Engineer
>> WSO2, Inc. | http://wso2.com
>> lean. enterprise. middleware
>>
>> Mobile : +94719397528
>> Blog : techreadme.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
>
>


-- 
Buddhima Wijeweera
Software Engineer; WSO2 Inc.; http://wso2.com ,

Mobile: +94 71 427 9966
Email: buddh...@wso2.com
Blog:   https://buddhimawijeweera.wordpress.com
GitHub Profile: https://github.com/Buddhima
___
Dev mailing list
Dev@wso2.org
http://wso2.

Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Dakshika Jayathilaka
Congratulations Gayan !

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

On Tue, Dec 23, 2014 at 10:18 AM, Supun Sethunga  wrote:

> Congratz Gayan!
>
> On Tue, Dec 23, 2014 at 10:15 AM, Abimaran Kugathasan 
> wrote:
>
>> Congrats Gayan! :)
>>
>> On Tue, Dec 23, 2014 at 10:07 AM, Harsha Kumara  wrote:
>>
>>> Congratulations Gayan!
>>>
>>> On Tue, Dec 23, 2014 at 9:54 AM, Danesh Kuruppu  wrote:
>>>
 Congrats Gayan !!


 On Tue, Dec 23, 2014 at 9:28 AM, Kasun De Silva 
 wrote:

> Congratz Gayan !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda 
> wrote:
>
>> Congratulations Gayan !
>>
>> On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi,
>>>
>>> It is with great pleasure that I welcome Gayan as a WSO2 committer,
>>> Congratulations and keep up with the good work! ..
>>>
>>> --
>>> Lakmal Warusawithana
>>> Vice President, Apache Stratos
>>> Director - Cloud Architecture; WSO2 Inc.
>>> Mobile : +94714289692
>>> Blog : http://lakmalsview.blogspot.com/
>>>
>>>
>>> ___
>>> 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
>>
>>
>
> ___
> 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


>>>
>>>
>>> --
>>> Harsha Kumara
>>> Software Engineer, WSO2 Inc.
>>> Mobile: +94775505618
>>> Blog:harshcreationz.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
>>
>>
>
>
> --
> *Supun Sethunga*
> Software Engineer
> WSO2, Inc.
> lean | enterprise | middleware
> Mobile : +94 716546324
>
> ___
> 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 += Hasitha Amal De Silva

2014-12-22 Thread Milinda Perera
Congratulations hasitha ... :)

On Tue, Dec 23, 2014 at 9:51 AM, Sajini De Silva  wrote:

> Congratulations Hasitha!!!
>
> On Mon, Dec 22, 2014 at 10:15 PM, Sewwandi Perera 
> wrote:
>
>> Congratulations Hasitha...!!! :)
>>
>> On Mon, Dec 22, 2014 at 10:14 PM, Himasha Guruge 
>> wrote:
>>
>>> Congrats Hasitha!
>>>
>>> On Mon, Dec 22, 2014 at 10:02 PM, Asitha Nanayakkara 
>>> wrote:
>>>
 Congratulations Hasitha!

 On Mon, Dec 22, 2014 at 10:00 PM, Madhawa Gunasekara >>> > wrote:

> Congratulations Hasitha 
>
> On Mon, Dec 22, 2014 at 7:33 PM, Vijitha Ekanayake 
> wrote:
>
>> Congratulations Hasitha ... !!!
>>
>> On Mon, Dec 22, 2014 at 6:46 PM, Damith Wickramasinghe <
>> dami...@wso2.com> wrote:
>>
>>> Congratz Hasitha..
>>>
>>> On Mon, Dec 22, 2014 at 6:43 PM, Waruna Jayaweera 
>>> wrote:
>>>
 Congratulations Hasitha..

 On Mon, Dec 22, 2014 at 5:25 PM, Harsha Kumara 
 wrote:

> Congratulations Hasitha!
>
> On Mon, Dec 22, 2014 at 5:17 PM, Abimaran Kugathasan <
> abima...@wso2.com> wrote:
>
>> Congrats Hasitha!
>>
>> On Mon, Dec 22, 2014 at 5:16 PM, Pamod Sylvester 
>> wrote:
>>
>>> Congratulations Hasitha !
>>>
>>> On Mon, Dec 22, 2014 at 5:12 PM, Kalpa Welivitigoda <
>>> kal...@wso2.com> wrote:

 Congratulations Hasitha !

 On Mon, Dec 22, 2014 at 5:11 PM, Ramith Jayasinghe <
 ram...@wso2.com> wrote:

> Hi Hasitha,
> Congratulations!
> It is with great pleasure that we welcome you as a WSO2
> committer. Keep up the good work!
>
>
> --
> Ramith Jayasinghe
> Technical Lead
> WSO2 Inc., http://wso2.com
> lean.enterprise.middleware
>
> E: ram...@wso2.com
>
>
> ___
> 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


>>>
>>> --
>>> *Pamod Sylvester *
>>>  *Senior Software Engineer *
>>> Integration Technologies Team, WSO2 Inc.; http://wso2.com
>>> email: pa...@wso2.com cell: +94 77 7779495
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Harsha Kumara
> Software Engineer, WSO2 Inc.
> Mobile: +94775505618
> Blog:harshcreationz.blogspot.com
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Regards,

 Waruna Lakshitha Jayaweera
 Software Engineer
 WSO2 Inc; http://wso2.com
 phone: +94713255198

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


>>>
>>>
>>> --
>>> Software Engineer
>>> WSO2 Inc.; http://wso2.com
>>> 
>>> lean.enterprise.middleware
>>>
>>> mobile: *+94728671315 <%2B94728671315>*
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/lis

Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Milinda Perera
Congratulations gimantha  :)

On Tue, Dec 23, 2014 at 9:58 AM, Lasitha Wattaladeniya 
wrote:

> Congratulations gima !
>
> On Tue, Dec 23, 2014 at 9:50 AM, Sajini De Silva  wrote:
>
>> Congratulations Gimantha!!!
>>
>> On Tue, Dec 23, 2014 at 9:48 AM, Dakshika Jayathilaka 
>> wrote:
>>
>>> Congratulations Gimantha!
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Dec 23, 2014 at 9:25 AM, Denuwanthi De Silva <
>>> denuwan...@wso2.com> wrote:
>>>
 Congrats Gimantha!!

 On Tue, Dec 23, 2014 at 9:16 AM, Pirinthapan Mahendran <
 pirintha...@wso2.com> wrote:

> Congrats Gimantha..!!
>
>
>
> Mahendran Pirinthapan
> Software Engineer | WSO2 Inc.
> Mobile +94772378732.
>
> On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara 
> wrote:
>
>> Congratulations Gimantha!
>>
>> On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva 
>> wrote:
>>
>>> Congratz Gimantha !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera 
>>> wrote:
>>>
 Congrats Gimantha! :-)

 On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando 
 wrote:

> Hi,
>
> It is with great pleasure that I welcome Gimantha as a WSO2
> committer, Congratulations and keep up with the good work! ..
>
> Cheers,
> Anjana.
> --
> *Anjana Fernando*
> Senior Technical Lead
> WSO2 Inc. | http://wso2.com
> lean . enterprise . middleware
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Niranda Perera*
 Software Engineer, WSO2 Inc.
 Mobile: +94-71-554-8430
 Twitter: @n1r44 

 ___
 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
>>>
>>>
>>
>>
>> --
>> Harsha Kumara
>> Software Engineer, WSO2 Inc.
>> Mobile: +94775505618
>> Blog:harshcreationz.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
>
>


 --
 Denuwanthi De Silva
 Software Engineer;
 WSO2 Inc.; http://wso2.com,
 Email: denuwan...@wso2.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
>>>
>>>
>>
>>
>> --
>> Sajini De SIlva
>> Software Engineer; WSO2 Inc.; http://wso2.com ,
>> Email: saj...@wso2.com
>> Blog: http://sajinid.blogspot.com/
>> Git hub profile: https://github.com/sajinidesilva
>>
>> Phone: +94 712797729
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Lasitha Wattaladeniya
> Software Engineer
> WSO2, Inc. | http://wso2.com
> lean. enterprise. middleware
>
> Mobile : +94719397528
> Blog : techreadme.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] [EMM] [APIM] Access token accessed by Product-API-Store UI, different from the one retrieved by a Rest Client

2014-12-22 Thread Abimaran Kugathasan
Thanks Johann for confirming the issue. I have created a JIRA[1] to track
the issue.


[1] : https://wso2.org/jira/browse/APIMANAGER-3236

On Tue, Dec 23, 2014 at 8:31 AM, Sanjeewa Malalgoda 
wrote:

> The reason for the initial issue dilan mentioned was due to passing admin
> as auth_user when we generate tokens. And when we generate tokens through
> auth endpoint authz_user will be admin@carbon.super. These two entries
> are considered different and due to that we will get two tokens. This issue
> was not there in APIM 1.7.0 and assume this is due to something added in
> APIM 1.8.0. In addition to that we might need to fix the issue mentioned by
> johann. Please create public jiras for this.
>
> Thanks,
> sanjeewa.
>
> On Tue, Dec 23, 2014 at 2:21 AM, Johann Nallathamby 
> wrote:
>
>> This needs to be fixed. Even for tenant users there is a problem due to
>> scopes. When requesting tokens through the API gateway the scope is set to
>> default. But when directly getting an access token from IS, there is no
>> default scope (scope=null). Therefore again we get 2 different tokens. Both
>> these issues need to be fixed.
>>
>>
>> On Monday, December 22, 2014, Abimaran Kugathasan 
>> wrote:
>>
>>> Hi Lakshman,
>>>
>>> I couldn't find any JIRAs, and not sure about this behaviour is correct
>>> or wrong.
>>>
>>> On Mon, Dec 22, 2014 at 4:20 PM, Lakshman Udayakantha <
>>> lakshm...@wso2.com> wrote:
>>>
 Hi,

 @abimaran.
 have any jira on this?

 Thanks

 On Mon, Dec 22, 2014 at 1:28 PM, Abimaran Kugathasan >>> > wrote:

> Hi Dilan,
>
> It's a known issue.
>
> It occurs because, through UI, the admin user actually treated with
> username admin@carbon.Super and through the Token API, admin user was
> admin. So both are considered as different users. But, ideally same user.
> it happens only for super tenant admin.
>
> On Mon, Dec 22, 2014 at 1:06 PM, Dilan Udara Ariyaratne <
> dil...@wso2.com> wrote:
>
>> Hi Harshan,
>>
>> According to https://docs.wso2.com/display/AM170/Token+API, this
>> scope field is optional.
>>
>> Anyway I tried with production scope and still the result is the same.
>>
>> Thanks for the feedback.
>>
>>
>>
>> *Dilan U. Ariyaratne*
>> Software Engineer
>> WSO2 Inc. 
>> Mobile: +94775149066
>> lean . enterprise . middleware
>>
>> On Mon, Dec 22, 2014 at 1:02 PM, Harshan Liyanage 
>> wrote:
>>
>>> Hi Dilan,
>>>
>>> Did you tried sending the scope (Production / Sandbox) parameter
>>> along with the token request?
>>>
>>> Thanks,
>>>
>>> Lakshitha Harshan
>>> Software Engineer
>>> Mobile: *+94724423048*
>>> Email: hars...@wso2.com
>>> Blog : http://harshanliyanage.blogspot.com/
>>> *WSO2, Inc. :** wso2.com *
>>> lean.enterprise.middleware.
>>>
>>> On Mon, Dec 22, 2014 at 12:49 PM, Dilan Udara Ariyaratne <
>>> dil...@wso2.com> wrote:
>>>
 Hi All,

 I have been working on writing some test cases for a solution
 provided to emm product on the following issue.
 https://wso2.org/jira/browse/EMM-695

 During the process of writing a test case for the insert query of
 device registration functionality of EMM,
 I have noticed the following behavior at the API Management module
 of EMM.

 [1] I have tried to access both client key(id) and client secret of
 admin user for the default application
  through both
 http://localhost:9763/productapistore/site/pages/subscriptions.jag
 ui and the rest client.
  As expected, those values happened to be similar.

  Please refer to screenshot 1 and 2 for this.

 [2] Then, I tried to access the access token from the rest client
 as shown in screenshot 3 and
  was able to successfully retrieve an access token from the
 http://localhost:9763/oauth2/token endpoint.

  However the problem is that the access token value I am
 getting from the product-api-store web app ui (as in screenshot 1)
  and the access token I am getting from the rest client call
 (as in screenshot 3) are two different values.

  Is this a bug or the standard behaviour of the module?

 Highly appreciate any feedback on this.

 Thanks.


 *Dilan U. Ariyaratne*
 Software Engineer
 WSO2 Inc. 
 Mobile: +94775149066
 lean . enterprise . middleware

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

Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Supun Sethunga
Congratz Gayan!

On Tue, Dec 23, 2014 at 10:15 AM, Abimaran Kugathasan 
wrote:

> Congrats Gayan! :)
>
> On Tue, Dec 23, 2014 at 10:07 AM, Harsha Kumara  wrote:
>
>> Congratulations Gayan!
>>
>> On Tue, Dec 23, 2014 at 9:54 AM, Danesh Kuruppu  wrote:
>>
>>> Congrats Gayan !!
>>>
>>>
>>> On Tue, Dec 23, 2014 at 9:28 AM, Kasun De Silva  wrote:
>>>
 Congratz Gayan !!!

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

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


 On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda 
 wrote:

> Congratulations Gayan !
>
> On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana  > wrote:
>
>> Hi,
>>
>> It is with great pleasure that I welcome Gayan as a WSO2 committer,
>> Congratulations and keep up with the good work! ..
>>
>> --
>> Lakmal Warusawithana
>> Vice President, Apache Stratos
>> Director - Cloud Architecture; WSO2 Inc.
>> Mobile : +94714289692
>> Blog : http://lakmalsview.blogspot.com/
>>
>>
>> ___
>> 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
>
>

 ___
 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
>>>
>>>
>>
>>
>> --
>> Harsha Kumara
>> Software Engineer, WSO2 Inc.
>> Mobile: +94775505618
>> Blog:harshcreationz.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
>
>


-- 
*Supun Sethunga*
Software Engineer
WSO2, Inc.
lean | enterprise | middleware
Mobile : +94 716546324
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Abimaran Kugathasan
Congrats Gayan! :)

On Tue, Dec 23, 2014 at 10:07 AM, Harsha Kumara  wrote:

> Congratulations Gayan!
>
> On Tue, Dec 23, 2014 at 9:54 AM, Danesh Kuruppu  wrote:
>
>> Congrats Gayan !!
>>
>>
>> On Tue, Dec 23, 2014 at 9:28 AM, Kasun De Silva  wrote:
>>
>>> Congratz Gayan !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda 
>>> wrote:
>>>
 Congratulations Gayan !

 On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana 
 wrote:

> Hi,
>
> It is with great pleasure that I welcome Gayan as a WSO2 committer,
> Congratulations and keep up with the good work! ..
>
> --
> Lakmal Warusawithana
> Vice President, Apache Stratos
> Director - Cloud Architecture; WSO2 Inc.
> Mobile : +94714289692
> Blog : http://lakmalsview.blogspot.com/
>
>
> ___
> 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


>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Harsha Kumara
> Software Engineer, WSO2 Inc.
> Mobile: +94775505618
> Blog:harshcreationz.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


Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Harsha Kumara
Congratulations Gayan!

On Tue, Dec 23, 2014 at 9:54 AM, Danesh Kuruppu  wrote:

> Congrats Gayan !!
>
>
> On Tue, Dec 23, 2014 at 9:28 AM, Kasun De Silva  wrote:
>
>> Congratz Gayan !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda 
>> wrote:
>>
>>> Congratulations Gayan !
>>>
>>> On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana 
>>> wrote:
>>>
 Hi,

 It is with great pleasure that I welcome Gayan as a WSO2 committer,
 Congratulations and keep up with the good work! ..

 --
 Lakmal Warusawithana
 Vice President, Apache Stratos
 Director - Cloud Architecture; WSO2 Inc.
 Mobile : +94714289692
 Blog : http://lakmalsview.blogspot.com/


 ___
 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
>>>
>>>
>>
>> ___
>> 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
>
>


-- 
Harsha Kumara
Software Engineer, WSO2 Inc.
Mobile: +94775505618
Blog:harshcreationz.blogspot.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [MB] Remove or revamp 'Node List' page under 'Cluster Management' in MB 3.0.0

2014-12-22 Thread Ramith Jayasinghe
what are the stats that could be useful to display in coordinator node?
(that is if we are going to specifically display coordinator specific stats)
Information related to slot distribution etc... ( which will help us to see
how the deployment performs?)

On Tue, Dec 23, 2014 at 8:09 AM, Sajini De Silva  wrote:

> Hi,
>
> Coordinator node will be critical since slot coordination is happening via
> the coordinator node. Therefore +1 for Pamod's idea.
>
> Thank you,
> Sajini.
>
> On Tue, Dec 23, 2014 at 1:13 AM, Pamod Sylvester  wrote:
>
>> Hi Hemika,
>>
>> Also will it make sense to display the coordinator node ? IMO this will
>> be useful.
>>
>> Thanks,
>> Pamod
>>
>> On Mon, Dec 22, 2014 at 10:48 PM, Hemika Kodikara 
>> wrote:
>>
>>> Thanks for the correction and feedback Asitha.
>>>
>>> Looping in Ramith and HasithaH.
>>>
>>> Hemika Kodikara
>>> Software Engineer
>>> WSO2 Inc.
>>> lean . enterprise . middleware
>>> http://wso2.com
>>>
>>> Mobile : +9477762
>>>
>>> On Mon, Dec 22, 2014 at 10:28 PM, Asitha Nanayakkara 
>>> wrote:
>>>

 On Mon, Dec 22, 2014 at 5:51 PM, Hemika Kodikara 
 wrote:

> Hi All,
>
> The page mentioned in $subject provides several information related to
> nodes in a clustered deployment in MB 2.2.0 (See attachment).
>
> The page displays the cassandra details, zookeeper details and the
> node number.
>
> In MB 3.0.0, several change are done so that,
> 1. Zookeeper is not being used.
> 2. No such thing as Node number as node queues and global queues are
> not there anymore.
>
 In 3.0.0 there is a node id for each node. And clustered/standalone
 mode information need to be displayed

 3. Supports other databases including other than cassandra.
>
 +1

>
> Share your idea on $subject.
>
 Something like number of subscribers and publishers handled by each
 node. This will give an idea of load distribution in a cluster.
 MQTT and AMQP ports used by the nodes

>
> Regards,
> Hemika
>
> Hemika Kodikara
> Software Engineer
> WSO2 Inc.
> lean . enterprise . middleware
> http://wso2.com
>
> Mobile : +9477762
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Asitha Nanayakkara*
 Software Engineer
 WSO2, Inc. http://wso2.com/
 Mob: + 94 77 85 30 682


>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Pamod Sylvester *
>>  *Senior Software Engineer *
>> Integration Technologies Team, WSO2 Inc.; http://wso2.com
>> email: pa...@wso2.com cell: +94 77 7779495
>>
>
>
>
> --
> Sajini De SIlva
> Software Engineer; WSO2 Inc.; http://wso2.com ,
> Email: saj...@wso2.com
> Blog: http://sajinid.blogspot.com/
> Git hub profile: https://github.com/sajinidesilva
>
> Phone: +94 712797729
>
>


-- 
Ramith Jayasinghe
Technical Lead
WSO2 Inc., http://wso2.com
lean.enterprise.middleware

E: ram...@wso2.com
P: +94 777542851
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Lasitha Wattaladeniya
Congratulations gima !

On Tue, Dec 23, 2014 at 9:50 AM, Sajini De Silva  wrote:

> Congratulations Gimantha!!!
>
> On Tue, Dec 23, 2014 at 9:48 AM, Dakshika Jayathilaka 
> wrote:
>
>> Congratulations Gimantha!
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Dec 23, 2014 at 9:25 AM, Denuwanthi De Silva > > wrote:
>>
>>> Congrats Gimantha!!
>>>
>>> On Tue, Dec 23, 2014 at 9:16 AM, Pirinthapan Mahendran <
>>> pirintha...@wso2.com> wrote:
>>>
 Congrats Gimantha..!!



 Mahendran Pirinthapan
 Software Engineer | WSO2 Inc.
 Mobile +94772378732.

 On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara 
 wrote:

> Congratulations Gimantha!
>
> On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva 
> wrote:
>
>> Congratz Gimantha !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera 
>> wrote:
>>
>>> Congrats Gimantha! :-)
>>>
>>> On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando 
>>> wrote:
>>>
 Hi,

 It is with great pleasure that I welcome Gimantha as a WSO2
 committer, Congratulations and keep up with the good work! ..

 Cheers,
 Anjana.
 --
 *Anjana Fernando*
 Senior Technical Lead
 WSO2 Inc. | http://wso2.com
 lean . enterprise . middleware

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


>>>
>>>
>>> --
>>> *Niranda Perera*
>>> Software Engineer, WSO2 Inc.
>>> Mobile: +94-71-554-8430
>>> Twitter: @n1r44 
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Harsha Kumara
> Software Engineer, WSO2 Inc.
> Mobile: +94775505618
> Blog:harshcreationz.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


>>>
>>>
>>> --
>>> Denuwanthi De Silva
>>> Software Engineer;
>>> WSO2 Inc.; http://wso2.com,
>>> Email: denuwan...@wso2.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
>>
>>
>
>
> --
> Sajini De SIlva
> Software Engineer; WSO2 Inc.; http://wso2.com ,
> Email: saj...@wso2.com
> Blog: http://sajinid.blogspot.com/
> Git hub profile: https://github.com/sajinidesilva
>
> Phone: +94 712797729
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Lasitha Wattaladeniya
Software Engineer
WSO2, Inc. | http://wso2.com
lean. enterprise. middleware

Mobile : +94719397528
Blog : techreadme.blogspot.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Niranjan Karunanandham

2014-12-22 Thread Chaminda Jayawardena
Congratz Niranjan... !! :)

On Fri, Nov 7, 2014 at 9:58 PM, Manula Chathurika Thantriwatte <
manu...@wso2.com> wrote:

> Congratulations !!!
>
> On Fri, Nov 7, 2014 at 11:21 AM, Akalanka Pagoda Arachchi <
> darsha...@wso2.com> wrote:
>
>> Congratz bro..!!!
>>
>> On Fri, Nov 7, 2014 at 9:17 AM, Roshan Deniyage  wrote:
>>
>>> Congrats Niranjan!
>>>
>>> Roshan Deniyage
>>> Associate Technical Lead
>>> WSO2, Inc: http://wso2.com
>>>
>>> Mobile:  +94 777636406
>>> Twitter:  *https://twitter.com/roshku *
>>> LinkedIn :  https://www.linkedin.com/in/roshandeniyage
>>>
>>>
>>> On Wed, Nov 5, 2014 at 7:43 PM, Danesh Kuruppu  wrote:
>>>
 Congrats Niranjan..!!!

 On Wed, Nov 5, 2014 at 1:23 PM, Priyadarssini Kishokumar <
 priyadarss...@wso2.com> wrote:

> Congratulations Niranjan !
>
> On Wed, Nov 5, 2014 at 12:30 PM, Chan  wrote:
>
>> Congratz !
>>
>> On Wed, Nov 5, 2014 at 9:37 AM, Sam Sivayogam  wrote:
>>
>>> Congrats Niranjan :)
>>>
>>> On Tue, Nov 4, 2014 at 6:02 PM, Vijitha Ekanayake >> > wrote:
>>>
 Congratulations !!!

 On Tue, Nov 4, 2014 at 11:43 AM, Sameera Perera 
 wrote:

> Hi all,
>
> It's my pleasure to announce Niranjan as a WSO2 Committer.  He
> has been an active contributor for WSO2 Enterprise Mobility Manager.
>
> Niranjan, welcome aboard and keep up the good work!.
>
> --
>
> --
>
> *Sameera Perera*
> Director of Engineering
> gtalk: samee...@wso2.com
> Tel : 94 11 214 5345
> Fax :94 11 2145300
> *WSO2, Inc.* 
> lean.enterprise.middleware
>
>
>
> ___
> 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


>>>
>>>
>>> --
>>> *Sam Sivayogam*
>>>
>>> Software Engineer
>>>
>>> 
>>> *Mobile*  : +94 772 906 439
>>> *Office*   : +94 112 145 345
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Chan (Dulitha Wijewantha)
>> Software Engineer - Mobile Development
>> WSO2 Inc
>> Lean.Enterprise.Mobileware
>>  * ~Email   duli...@wso2.com *
>> *  ~Mobile +94712112165 <%2B94712112165>*
>> *  ~Website   dulitha.me *
>> *  ~Twitter @dulitharw *
>>   *~Github @dulichan *
>>   *~SO @chan *
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Priya Kishok
> Software Engineer
> WSO2, Inc : http://wso2.com
> Mob : +94774457404
>
> ___
> 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


>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Darshana Akalanka Pagoda Arachchi,*
>> *Software Engineer*
>> *078-4721791*
>>
>> ___
>> 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
>
>


-- 
Thanks & Regards

*Chaminda Jayawardena*
Senior Software Engineer - QA
WSO2 Inc. - http://wso2.com
+94-77-7725234
___
Dev mailing list
Dev

Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Danesh Kuruppu
Congrats Gayan !!


On Tue, Dec 23, 2014 at 9:28 AM, Kasun De Silva  wrote:

> Congratz Gayan !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda 
> wrote:
>
>> Congratulations Gayan !
>>
>> On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana 
>> wrote:
>>
>>> Hi,
>>>
>>> It is with great pleasure that I welcome Gayan as a WSO2 committer,
>>> Congratulations and keep up with the good work! ..
>>>
>>> --
>>> Lakmal Warusawithana
>>> Vice President, Apache Stratos
>>> Director - Cloud Architecture; WSO2 Inc.
>>> Mobile : +94714289692
>>> Blog : http://lakmalsview.blogspot.com/
>>>
>>>
>>> ___
>>> 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
>>
>>
>
> ___
> 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 += Hasitha Amal De Silva

2014-12-22 Thread Sajini De Silva
Congratulations Hasitha!!!

On Mon, Dec 22, 2014 at 10:15 PM, Sewwandi Perera  wrote:

> Congratulations Hasitha...!!! :)
>
> On Mon, Dec 22, 2014 at 10:14 PM, Himasha Guruge 
> wrote:
>
>> Congrats Hasitha!
>>
>> On Mon, Dec 22, 2014 at 10:02 PM, Asitha Nanayakkara 
>> wrote:
>>
>>> Congratulations Hasitha!
>>>
>>> On Mon, Dec 22, 2014 at 10:00 PM, Madhawa Gunasekara 
>>> wrote:
>>>
 Congratulations Hasitha 

 On Mon, Dec 22, 2014 at 7:33 PM, Vijitha Ekanayake 
 wrote:

> Congratulations Hasitha ... !!!
>
> On Mon, Dec 22, 2014 at 6:46 PM, Damith Wickramasinghe <
> dami...@wso2.com> wrote:
>
>> Congratz Hasitha..
>>
>> On Mon, Dec 22, 2014 at 6:43 PM, Waruna Jayaweera 
>> wrote:
>>
>>> Congratulations Hasitha..
>>>
>>> On Mon, Dec 22, 2014 at 5:25 PM, Harsha Kumara 
>>> wrote:
>>>
 Congratulations Hasitha!

 On Mon, Dec 22, 2014 at 5:17 PM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats Hasitha!
>
> On Mon, Dec 22, 2014 at 5:16 PM, Pamod Sylvester 
> wrote:
>
>> Congratulations Hasitha !
>>
>> On Mon, Dec 22, 2014 at 5:12 PM, Kalpa Welivitigoda <
>> kal...@wso2.com> wrote:
>>>
>>> Congratulations Hasitha !
>>>
>>> On Mon, Dec 22, 2014 at 5:11 PM, Ramith Jayasinghe <
>>> ram...@wso2.com> wrote:
>>>
 Hi Hasitha,
 Congratulations!
 It is with great pleasure that we welcome you as a WSO2
 committer. Keep up the good work!


 --
 Ramith Jayasinghe
 Technical Lead
 WSO2 Inc., http://wso2.com
 lean.enterprise.middleware

 E: ram...@wso2.com


 ___
 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
>>>
>>>
>>
>> --
>> *Pamod Sylvester *
>>  *Senior Software Engineer *
>> Integration Technologies Team, WSO2 Inc.; http://wso2.com
>> email: pa...@wso2.com cell: +94 77 7779495
>>
>> ___
>> 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
>
>


 --
 Harsha Kumara
 Software Engineer, WSO2 Inc.
 Mobile: +94775505618
 Blog:harshcreationz.blogspot.com

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


>>>
>>>
>>> --
>>> Regards,
>>>
>>> Waruna Lakshitha Jayaweera
>>> Software Engineer
>>> WSO2 Inc; http://wso2.com
>>> phone: +94713255198
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Software Engineer
>> WSO2 Inc.; http://wso2.com
>> 
>> lean.enterprise.middleware
>>
>> mobile: *+94728671315 <%2B94728671315>*
>>
>>
>> ___
>> 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
>
> ___
>

Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Sajini De Silva
Congratulations Gimantha!!!

On Tue, Dec 23, 2014 at 9:48 AM, Dakshika Jayathilaka 
wrote:

> Congratulations Gimantha!
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Dec 23, 2014 at 9:25 AM, Denuwanthi De Silva 
> wrote:
>
>> Congrats Gimantha!!
>>
>> On Tue, Dec 23, 2014 at 9:16 AM, Pirinthapan Mahendran <
>> pirintha...@wso2.com> wrote:
>>
>>> Congrats Gimantha..!!
>>>
>>>
>>>
>>> Mahendran Pirinthapan
>>> Software Engineer | WSO2 Inc.
>>> Mobile +94772378732.
>>>
>>> On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara  wrote:
>>>
 Congratulations Gimantha!

 On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva 
 wrote:

> Congratz Gimantha !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera 
> wrote:
>
>> Congrats Gimantha! :-)
>>
>> On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando 
>> wrote:
>>
>>> Hi,
>>>
>>> It is with great pleasure that I welcome Gimantha as a WSO2
>>> committer, Congratulations and keep up with the good work! ..
>>>
>>> Cheers,
>>> Anjana.
>>> --
>>> *Anjana Fernando*
>>> Senior Technical Lead
>>> WSO2 Inc. | http://wso2.com
>>> lean . enterprise . middleware
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Niranda Perera*
>> Software Engineer, WSO2 Inc.
>> Mobile: +94-71-554-8430
>> Twitter: @n1r44 
>>
>> ___
>> 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
>
>


 --
 Harsha Kumara
 Software Engineer, WSO2 Inc.
 Mobile: +94775505618
 Blog:harshcreationz.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
>>>
>>>
>>
>>
>> --
>> Denuwanthi De Silva
>> Software Engineer;
>> WSO2 Inc.; http://wso2.com,
>> Email: denuwan...@wso2.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
>
>


-- 
Sajini De SIlva
Software Engineer; WSO2 Inc.; http://wso2.com ,
Email: saj...@wso2.com
Blog: http://sajinid.blogspot.com/
Git hub profile: https://github.com/sajinidesilva

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


Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Dakshika Jayathilaka
Congratulations Gimantha!

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

On Tue, Dec 23, 2014 at 9:25 AM, Denuwanthi De Silva 
wrote:

> Congrats Gimantha!!
>
> On Tue, Dec 23, 2014 at 9:16 AM, Pirinthapan Mahendran <
> pirintha...@wso2.com> wrote:
>
>> Congrats Gimantha..!!
>>
>>
>>
>> Mahendran Pirinthapan
>> Software Engineer | WSO2 Inc.
>> Mobile +94772378732.
>>
>> On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara  wrote:
>>
>>> Congratulations Gimantha!
>>>
>>> On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva  wrote:
>>>
 Congratz Gimantha !!!

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

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


 On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera 
 wrote:

> Congrats Gimantha! :-)
>
> On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando 
> wrote:
>
>> Hi,
>>
>> It is with great pleasure that I welcome Gimantha as a WSO2
>> committer, Congratulations and keep up with the good work! ..
>>
>> Cheers,
>> Anjana.
>> --
>> *Anjana Fernando*
>> Senior Technical Lead
>> WSO2 Inc. | http://wso2.com
>> lean . enterprise . middleware
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Niranda Perera*
> Software Engineer, WSO2 Inc.
> Mobile: +94-71-554-8430
> Twitter: @n1r44 
>
> ___
> 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


>>>
>>>
>>> --
>>> Harsha Kumara
>>> Software Engineer, WSO2 Inc.
>>> Mobile: +94775505618
>>> Blog:harshcreationz.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
>>
>>
>
>
> --
> Denuwanthi De Silva
> Software Engineer;
> WSO2 Inc.; http://wso2.com,
> Email: denuwan...@wso2.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


Re: [Dev] Ciphertool pull request: https://github.com/wso2/cipher-tool/pull/4

2014-12-22 Thread Nirmal Fernando
Please let me know if there's any other suggestions. Thanks Niranjan for
reviewing ..

On Tue, Dec 23, 2014 at 9:36 AM, Niranjan Karunanandham 
wrote:

> Thanks Nirmal... :)
>
> Regards,
> Nira
>
> On Mon, Dec 22, 2014 at 10:34 PM, Nirmal Fernando  wrote:
>
>> Hi,
>>
>> I've update the PR. Now, in a non-carbon environment, you need to set
>> config.properties.dir system property to the directory (relative to
>> carbon.home system property) where you have the
>> cipher-tool-config.properties config file. If this system property is
>> not set, cipher-tool will use the repository/conf/security folder as the
>> directory of cipher-tool-config.properties file.
>>
>> On Mon, Dec 22, 2014 at 9:57 PM, Nirmal Fernando  wrote:
>>
>>> Thanks Niranjan. It's a mistake, I'll reissue the PR.
>>>
>>> On Mon, Dec 22, 2014 at 5:44 PM, Niranjan Karunanandham <
>>> niran...@wso2.com> wrote:
>>>
 Hi Nirmal,

 As per the offline discussion we had, in the pull request[1], the
 "filepath" in Ciphertool.java points to /conf. This needs to
 be changed to /repository/conf/security/" if it run for wso2
 products. This is the location that the SecureVault looks for the
 cipher-text.properties and secret-conf.properties.

 [1] -
 https://github.com/wso2/cipher-tool/pull/4/files#diff-7e60288ee26d08f855d2588cb5274a7fR147

 Regards,
 Nira

 --

 *Niranjan Karunanandham*
 WSO2 Inc.: http://www.wso2.com

>>>
>>>
>>>
>>> --
>>>
>>> Thanks & regards,
>>> Nirmal
>>>
>>> Senior Software Engineer- Platform Technologies Team, WSO2 Inc.
>>> Mobile: +94715779733
>>> Blog: http://nirmalfdo.blogspot.com/
>>>
>>>
>>>
>>
>>
>> --
>>
>> Thanks & regards,
>> Nirmal
>>
>> Senior Software Engineer- Platform Technologies Team, WSO2 Inc.
>> Mobile: +94715779733
>> Blog: http://nirmalfdo.blogspot.com/
>>
>>
>>
>
>
> --
>
> *Niranjan Karunanandham*
> Senior Software Engineer - WSO2 Inc.
> WSO2 Inc.: http://www.wso2.com
>



-- 

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


Re: [Dev] Ciphertool pull request: https://github.com/wso2/cipher-tool/pull/4

2014-12-22 Thread Niranjan Karunanandham
Thanks Nirmal... :)

Regards,
Nira

On Mon, Dec 22, 2014 at 10:34 PM, Nirmal Fernando  wrote:

> Hi,
>
> I've update the PR. Now, in a non-carbon environment, you need to set
> config.properties.dir system property to the directory (relative to
> carbon.home system property) where you have the
> cipher-tool-config.properties config file. If this system property is not
> set, cipher-tool will use the repository/conf/security folder as the
> directory of cipher-tool-config.properties file.
>
> On Mon, Dec 22, 2014 at 9:57 PM, Nirmal Fernando  wrote:
>
>> Thanks Niranjan. It's a mistake, I'll reissue the PR.
>>
>> On Mon, Dec 22, 2014 at 5:44 PM, Niranjan Karunanandham <
>> niran...@wso2.com> wrote:
>>
>>> Hi Nirmal,
>>>
>>> As per the offline discussion we had, in the pull request[1], the
>>> "filepath" in Ciphertool.java points to /conf. This needs to
>>> be changed to /repository/conf/security/" if it run for wso2
>>> products. This is the location that the SecureVault looks for the
>>> cipher-text.properties and secret-conf.properties.
>>>
>>> [1] -
>>> https://github.com/wso2/cipher-tool/pull/4/files#diff-7e60288ee26d08f855d2588cb5274a7fR147
>>>
>>> Regards,
>>> Nira
>>>
>>> --
>>>
>>> *Niranjan Karunanandham*
>>> WSO2 Inc.: http://www.wso2.com
>>>
>>
>>
>>
>> --
>>
>> Thanks & regards,
>> Nirmal
>>
>> Senior Software Engineer- Platform Technologies Team, WSO2 Inc.
>> Mobile: +94715779733
>> Blog: http://nirmalfdo.blogspot.com/
>>
>>
>>
>
>
> --
>
> Thanks & regards,
> Nirmal
>
> Senior Software Engineer- Platform Technologies Team, WSO2 Inc.
> Mobile: +94715779733
> Blog: http://nirmalfdo.blogspot.com/
>
>
>


-- 

*Niranjan Karunanandham*
Senior Software Engineer - WSO2 Inc.
WSO2 Inc.: http://www.wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Kasun De Silva
Congratz Gayan !!!

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

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


On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda  wrote:

> Congratulations Gayan !
>
> On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana 
> wrote:
>
>> Hi,
>>
>> It is with great pleasure that I welcome Gayan as a WSO2 committer,
>> Congratulations and keep up with the good work! ..
>>
>> --
>> Lakmal Warusawithana
>> Vice President, Apache Stratos
>> Director - Cloud Architecture; WSO2 Inc.
>> Mobile : +94714289692
>> Blog : http://lakmalsview.blogspot.com/
>>
>>
>> ___
>> 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
>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Shiroshica Kulatilake
Congrats Gayan !!

On Tue, Dec 23, 2014 at 9:24 AM, Kalpa Welivitigoda  wrote:

> Congratulations Gayan !
>
> On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana 
> wrote:
>
>> Hi,
>>
>> It is with great pleasure that I welcome Gayan as a WSO2 committer,
>> Congratulations and keep up with the good work! ..
>>
>> --
>> Lakmal Warusawithana
>> Vice President, Apache Stratos
>> Director - Cloud Architecture; WSO2 Inc.
>> Mobile : +94714289692
>> Blog : http://lakmalsview.blogspot.com/
>>
>>
>> ___
>> 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
>
>


-- 
Shiroshica Kulatilake

Architect,
WSO2, Inc. http://wso2.com/
Phone: +94 776523867
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Denuwanthi De Silva
Congrats Gimantha!!

On Tue, Dec 23, 2014 at 9:16 AM, Pirinthapan Mahendran  wrote:

> Congrats Gimantha..!!
>
>
>
> Mahendran Pirinthapan
> Software Engineer | WSO2 Inc.
> Mobile +94772378732.
>
> On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara  wrote:
>
>> Congratulations Gimantha!
>>
>> On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva  wrote:
>>
>>> Congratz Gimantha !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera 
>>> wrote:
>>>
 Congrats Gimantha! :-)

 On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando 
 wrote:

> Hi,
>
> It is with great pleasure that I welcome Gimantha as a WSO2 committer,
> Congratulations and keep up with the good work! ..
>
> Cheers,
> Anjana.
> --
> *Anjana Fernando*
> Senior Technical Lead
> WSO2 Inc. | http://wso2.com
> lean . enterprise . middleware
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Niranda Perera*
 Software Engineer, WSO2 Inc.
 Mobile: +94-71-554-8430
 Twitter: @n1r44 

 ___
 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
>>>
>>>
>>
>>
>> --
>> Harsha Kumara
>> Software Engineer, WSO2 Inc.
>> Mobile: +94775505618
>> Blog:harshcreationz.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
>
>


-- 
Denuwanthi De Silva
Software Engineer;
WSO2 Inc.; http://wso2.com,
Email: denuwan...@wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Kalpa Welivitigoda
Congratulations Gimatha !

On Tue, Dec 23, 2014 at 9:16 AM, Pirinthapan Mahendran  wrote:

> Congrats Gimantha..!!
>
>
>
> Mahendran Pirinthapan
> Software Engineer | WSO2 Inc.
> Mobile +94772378732.
>
> On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara  wrote:
>
>> Congratulations Gimantha!
>>
>> On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva  wrote:
>>
>>> Congratz Gimantha !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera 
>>> wrote:
>>>
 Congrats Gimantha! :-)

 On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando 
 wrote:

> Hi,
>
> It is with great pleasure that I welcome Gimantha as a WSO2 committer,
> Congratulations and keep up with the good work! ..
>
> Cheers,
> Anjana.
> --
> *Anjana Fernando*
> Senior Technical Lead
> WSO2 Inc. | http://wso2.com
> lean . enterprise . middleware
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Niranda Perera*
 Software Engineer, WSO2 Inc.
 Mobile: +94-71-554-8430
 Twitter: @n1r44 

 ___
 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
>>>
>>>
>>
>>
>> --
>> Harsha Kumara
>> Software Engineer, WSO2 Inc.
>> Mobile: +94775505618
>> Blog:harshcreationz.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
>
>


-- 
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


Re: [Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Kalpa Welivitigoda
Congratulations Gayan !

On Tue, Dec 23, 2014 at 9:16 AM, Lakmal Warusawithana 
wrote:

> Hi,
>
> It is with great pleasure that I welcome Gayan as a WSO2 committer,
> Congratulations and keep up with the good work! ..
>
> --
> Lakmal Warusawithana
> Vice President, Apache Stratos
> Director - Cloud Architecture; WSO2 Inc.
> Mobile : +94714289692
> Blog : http://lakmalsview.blogspot.com/
>
>
> ___
> 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


Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Pirinthapan Mahendran
Congrats Gimantha..!!



Mahendran Pirinthapan
Software Engineer | WSO2 Inc.
Mobile +94772378732.

On Tue, Dec 23, 2014 at 8:21 AM, Harsha Kumara  wrote:

> Congratulations Gimantha!
>
> On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva  wrote:
>
>> Congratz Gimantha !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera  wrote:
>>
>>> Congrats Gimantha! :-)
>>>
>>> On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando 
>>> wrote:
>>>
 Hi,

 It is with great pleasure that I welcome Gimantha as a WSO2 committer,
 Congratulations and keep up with the good work! ..

 Cheers,
 Anjana.
 --
 *Anjana Fernando*
 Senior Technical Lead
 WSO2 Inc. | http://wso2.com
 lean . enterprise . middleware

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


>>>
>>>
>>> --
>>> *Niranda Perera*
>>> Software Engineer, WSO2 Inc.
>>> Mobile: +94-71-554-8430
>>> Twitter: @n1r44 
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Harsha Kumara
> Software Engineer, WSO2 Inc.
> Mobile: +94775505618
> Blog:harshcreationz.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


[Dev] WSO2 Committers += Gayan Gunaratne

2014-12-22 Thread Lakmal Warusawithana
Hi,

It is with great pleasure that I welcome Gayan as a WSO2 committer,
Congratulations and keep up with the good work! ..

-- 
Lakmal Warusawithana
Vice President, Apache Stratos
Director - Cloud Architecture; WSO2 Inc.
Mobile : +94714289692
Blog : http://lakmalsview.blogspot.com/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [EMM] [APIM] Access token accessed by Product-API-Store UI, different from the one retrieved by a Rest Client

2014-12-22 Thread Sanjeewa Malalgoda
The reason for the initial issue dilan mentioned was due to passing admin
as auth_user when we generate tokens. And when we generate tokens through
auth endpoint authz_user will be admin@carbon.super. These two entries are
considered different and due to that we will get two tokens. This issue was
not there in APIM 1.7.0 and assume this is due to something added in APIM
1.8.0. In addition to that we might need to fix the issue mentioned by
johann. Please create public jiras for this.

Thanks,
sanjeewa.

On Tue, Dec 23, 2014 at 2:21 AM, Johann Nallathamby  wrote:

> This needs to be fixed. Even for tenant users there is a problem due to
> scopes. When requesting tokens through the API gateway the scope is set to
> default. But when directly getting an access token from IS, there is no
> default scope (scope=null). Therefore again we get 2 different tokens. Both
> these issues need to be fixed.
>
>
> On Monday, December 22, 2014, Abimaran Kugathasan 
> wrote:
>
>> Hi Lakshman,
>>
>> I couldn't find any JIRAs, and not sure about this behaviour is correct
>> or wrong.
>>
>> On Mon, Dec 22, 2014 at 4:20 PM, Lakshman Udayakantha > > wrote:
>>
>>> Hi,
>>>
>>> @abimaran.
>>> have any jira on this?
>>>
>>> Thanks
>>>
>>> On Mon, Dec 22, 2014 at 1:28 PM, Abimaran Kugathasan 
>>> wrote:
>>>
 Hi Dilan,

 It's a known issue.

 It occurs because, through UI, the admin user actually treated with
 username admin@carbon.Super and through the Token API, admin user was
 admin. So both are considered as different users. But, ideally same user.
 it happens only for super tenant admin.

 On Mon, Dec 22, 2014 at 1:06 PM, Dilan Udara Ariyaratne <
 dil...@wso2.com> wrote:

> Hi Harshan,
>
> According to https://docs.wso2.com/display/AM170/Token+API, this
> scope field is optional.
>
> Anyway I tried with production scope and still the result is the same.
>
> Thanks for the feedback.
>
>
>
> *Dilan U. Ariyaratne*
> Software Engineer
> WSO2 Inc. 
> Mobile: +94775149066
> lean . enterprise . middleware
>
> On Mon, Dec 22, 2014 at 1:02 PM, Harshan Liyanage 
> wrote:
>
>> Hi Dilan,
>>
>> Did you tried sending the scope (Production / Sandbox) parameter
>> along with the token request?
>>
>> Thanks,
>>
>> Lakshitha Harshan
>> Software Engineer
>> Mobile: *+94724423048*
>> Email: hars...@wso2.com
>> Blog : http://harshanliyanage.blogspot.com/
>> *WSO2, Inc. :** wso2.com *
>> lean.enterprise.middleware.
>>
>> On Mon, Dec 22, 2014 at 12:49 PM, Dilan Udara Ariyaratne <
>> dil...@wso2.com> wrote:
>>
>>> Hi All,
>>>
>>> I have been working on writing some test cases for a solution
>>> provided to emm product on the following issue.
>>> https://wso2.org/jira/browse/EMM-695
>>>
>>> During the process of writing a test case for the insert query of
>>> device registration functionality of EMM,
>>> I have noticed the following behavior at the API Management module
>>> of EMM.
>>>
>>> [1] I have tried to access both client key(id) and client secret of
>>> admin user for the default application
>>>  through both
>>> http://localhost:9763/productapistore/site/pages/subscriptions.jag
>>> ui and the rest client.
>>>  As expected, those values happened to be similar.
>>>
>>>  Please refer to screenshot 1 and 2 for this.
>>>
>>> [2] Then, I tried to access the access token from the rest client as
>>> shown in screenshot 3 and
>>>  was able to successfully retrieve an access token from the
>>> http://localhost:9763/oauth2/token endpoint.
>>>
>>>  However the problem is that the access token value I am getting
>>> from the product-api-store web app ui (as in screenshot 1)
>>>  and the access token I am getting from the rest client call (as
>>> in screenshot 3) are two different values.
>>>
>>>  Is this a bug or the standard behaviour of the module?
>>>
>>> Highly appreciate any feedback on this.
>>>
>>> Thanks.
>>>
>>>
>>> *Dilan U. Ariyaratne*
>>> Software Engineer
>>> WSO2 Inc. 
>>> Mobile: +94775149066
>>> lean . enterprise . middleware
>>>
>>
>>
>
> ___
> 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

 
 
   
 


 __

Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Harsha Kumara
Congratulations Gimantha!

On Tue, Dec 23, 2014 at 7:31 AM, Kasun De Silva  wrote:

> Congratz Gimantha !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera  wrote:
>
>> Congrats Gimantha! :-)
>>
>> On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando  wrote:
>>
>>> Hi,
>>>
>>> It is with great pleasure that I welcome Gimantha as a WSO2 committer,
>>> Congratulations and keep up with the good work! ..
>>>
>>> Cheers,
>>> Anjana.
>>> --
>>> *Anjana Fernando*
>>> Senior Technical Lead
>>> WSO2 Inc. | http://wso2.com
>>> lean . enterprise . middleware
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Niranda Perera*
>> Software Engineer, WSO2 Inc.
>> Mobile: +94-71-554-8430
>> Twitter: @n1r44 
>>
>> ___
>> 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
>
>


-- 
Harsha Kumara
Software Engineer, WSO2 Inc.
Mobile: +94775505618
Blog:harshcreationz.blogspot.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [MB] Remove or revamp 'Node List' page under 'Cluster Management' in MB 3.0.0

2014-12-22 Thread Sajini De Silva
Hi,

Coordinator node will be critical since slot coordination is happening via
the coordinator node. Therefore +1 for Pamod's idea.

Thank you,
Sajini.

On Tue, Dec 23, 2014 at 1:13 AM, Pamod Sylvester  wrote:

> Hi Hemika,
>
> Also will it make sense to display the coordinator node ? IMO this will be
> useful.
>
> Thanks,
> Pamod
>
> On Mon, Dec 22, 2014 at 10:48 PM, Hemika Kodikara  wrote:
>
>> Thanks for the correction and feedback Asitha.
>>
>> Looping in Ramith and HasithaH.
>>
>> Hemika Kodikara
>> Software Engineer
>> WSO2 Inc.
>> lean . enterprise . middleware
>> http://wso2.com
>>
>> Mobile : +9477762
>>
>> On Mon, Dec 22, 2014 at 10:28 PM, Asitha Nanayakkara 
>> wrote:
>>
>>>
>>> On Mon, Dec 22, 2014 at 5:51 PM, Hemika Kodikara 
>>> wrote:
>>>
 Hi All,

 The page mentioned in $subject provides several information related to
 nodes in a clustered deployment in MB 2.2.0 (See attachment).

 The page displays the cassandra details, zookeeper details and the node
 number.

 In MB 3.0.0, several change are done so that,
 1. Zookeeper is not being used.
 2. No such thing as Node number as node queues and global queues are
 not there anymore.

>>> In 3.0.0 there is a node id for each node. And clustered/standalone mode
>>> information need to be displayed
>>>
>>> 3. Supports other databases including other than cassandra.

>>> +1
>>>

 Share your idea on $subject.

>>> Something like number of subscribers and publishers handled by each
>>> node. This will give an idea of load distribution in a cluster.
>>> MQTT and AMQP ports used by the nodes
>>>

 Regards,
 Hemika

 Hemika Kodikara
 Software Engineer
 WSO2 Inc.
 lean . enterprise . middleware
 http://wso2.com

 Mobile : +9477762

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


>>>
>>>
>>> --
>>> *Asitha Nanayakkara*
>>> Software Engineer
>>> WSO2, Inc. http://wso2.com/
>>> Mob: + 94 77 85 30 682
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Pamod Sylvester *
>  *Senior Software Engineer *
> Integration Technologies Team, WSO2 Inc.; http://wso2.com
> email: pa...@wso2.com cell: +94 77 7779495
>



-- 
Sajini De SIlva
Software Engineer; WSO2 Inc.; http://wso2.com ,
Email: saj...@wso2.com
Blog: http://sajinid.blogspot.com/
Git hub profile: https://github.com/sajinidesilva

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


Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Kasun De Silva
Congratz Gimantha !!!

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

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


On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera  wrote:

> Congrats Gimantha! :-)
>
> On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando  wrote:
>
>> Hi,
>>
>> It is with great pleasure that I welcome Gimantha as a WSO2 committer,
>> Congratulations and keep up with the good work! ..
>>
>> Cheers,
>> Anjana.
>> --
>> *Anjana Fernando*
>> Senior Technical Lead
>> WSO2 Inc. | http://wso2.com
>> lean . enterprise . middleware
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Niranda Perera*
> Software Engineer, WSO2 Inc.
> Mobile: +94-71-554-8430
> Twitter: @n1r44 
>
> ___
> 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 += Gimantha Bandara

2014-12-22 Thread Sameera Jayaratna
Congratulations Gimantha!!!

On Tue, Dec 23, 2014 at 7:24 AM, Niranda Perera  wrote:

> Congrats Gimantha! :-)
>
> On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando  wrote:
>
>> Hi,
>>
>> It is with great pleasure that I welcome Gimantha as a WSO2 committer,
>> Congratulations and keep up with the good work! ..
>>
>> Cheers,
>> Anjana.
>> --
>> *Anjana Fernando*
>> Senior Technical Lead
>> WSO2 Inc. | http://wso2.com
>> lean . enterprise . middleware
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Niranda Perera*
> Software Engineer, WSO2 Inc.
> Mobile: +94-71-554-8430
> Twitter: @n1r44 
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 



*Thanks & Regards,Sameera Jayaratna Software Engineer; **WSO2 Inc. *

*lean . enterprise . middleware |  http://wso2.com  *
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Niranda Perera
Congrats Gimantha! :-)

On Tue, Dec 23, 2014 at 2:56 AM, Anjana Fernando  wrote:

> Hi,
>
> It is with great pleasure that I welcome Gimantha as a WSO2 committer,
> Congratulations and keep up with the good work! ..
>
> Cheers,
> Anjana.
> --
> *Anjana Fernando*
> Senior Technical Lead
> WSO2 Inc. | http://wso2.com
> lean . enterprise . middleware
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Niranda Perera*
Software Engineer, WSO2 Inc.
Mobile: +94-71-554-8430
Twitter: @n1r44 
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Script Mediator for JSON

2014-12-22 Thread Malaka Silva
Further to the above [1] will provide more details on this.

[1] https://docs.wso2.com/display/ESB481/JSON+Support

On Tue, Dec 23, 2014 at 2:32 AM, Sajith Ravindra  wrote:

> Hi Maz,
>
> There is a equivalent for JSON in script mediator, it's getPayloadJSON().
> You can refer [1] for an example on converting JSON to XML.
>
> [1] -
> https://docs.wso2.com/display/ESB481/Sample+440%3A+Converting+JSON+to+XML+Using+XSLT
>
> Thanks
> *,Sajith Ravindra*
> Senior Software Engineer
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: +94 77 2273550
> blog: http://sajithr.blogspot.com/
> 
>
> On Mon, Dec 22, 2014 at 3:51 PM, Maz Lakadia  wrote:
>
>> I am trying to use Script Mediator to convert a message Payload. However,
>> Samples are all using a method called getPayloadXML. My Payload will be in
>> JSON form; is there a JSON equivalent of this? I could transform the
>> Payload to XML for my mediations, but that's a last resort.
>>
>> Thank you,
>>
>> Maz
>>
>> ___
>> 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,

Malaka Silva
Senior Tech Lead
M: +94 777 219 791
Tel : 94 11 214 5345
Fax :94 11 2145300
Skype : malaka.sampath.silva
LinkedIn : http://www.linkedin.com/pub/malaka-silva/6/33/77
Blog : http://mrmalakasilva.blogspot.com/

WSO2, Inc.
lean . enterprise . middleware
http://www.wso2.com/
http://www.wso2.com/about/team/malaka-silva/


Save a tree -Conserve nature & Save the world for your future. Print this
email only if it is absolutely necessary.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] WSO2 Committers += Gimantha Bandara

2014-12-22 Thread Anjana Fernando
Hi,

It is with great pleasure that I welcome Gimantha as a WSO2 committer,
Congratulations and keep up with the good work! ..

Cheers,
Anjana.
-- 
*Anjana Fernando*
Senior Technical Lead
WSO2 Inc. | http://wso2.com
lean . enterprise . middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Script Mediator for JSON

2014-12-22 Thread Sajith Ravindra
Hi Maz,

There is a equivalent for JSON in script mediator, it's getPayloadJSON().
You can refer [1] for an example on converting JSON to XML.

[1] -
https://docs.wso2.com/display/ESB481/Sample+440%3A+Converting+JSON+to+XML+Using+XSLT

Thanks
*,Sajith Ravindra*
Senior Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

mobile: +94 77 2273550
blog: http://sajithr.blogspot.com/


On Mon, Dec 22, 2014 at 3:51 PM, Maz Lakadia  wrote:

> I am trying to use Script Mediator to convert a message Payload. However,
> Samples are all using a method called getPayloadXML. My Payload will be in
> JSON form; is there a JSON equivalent of this? I could transform the
> Payload to XML for my mediations, but that's a last resort.
>
> Thank you,
>
> Maz
>
> ___
> 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


[Dev] Script Mediator for JSON

2014-12-22 Thread Maz Lakadia
I am trying to use Script Mediator to convert a message Payload. However, 
Samples are all using a method called getPayloadXML. My Payload will be in JSON 
form; is there a JSON equivalent of this? I could transform the Payload to XML 
for my mediations, but that's a last resort. 

Thank you,

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


  1   2   >