Re: [Dev] Create HttpServletRequest programatically.

2014-10-20 Thread Godwin Amila Shrimal
Hi Manoj/Rajeevan,

Thanks for the response, I'll check both EasyMock and Spring approach.

On Tue, Oct 21, 2014 at 12:16 PM, Rajeevan Vimalanathan 
wrote:

> Hi Godwin,
>
> You can simply use spring-test module if your project already has
> dependency for spring.
>
> *org.springframework.mock.web.MockHttpServletRequest [1] *class will do the 
> required things.
>
> [1] 
> http://docs.spring.io/spring/docs/3.0.x/api/org/springframework/mock/web/MockHttpServletRequest.html
>
>
> Thanks,
>
> Rajeevan
>
>
> On Tue, Oct 21, 2014 at 11:38 AM, Manoj Gunawardena 
> wrote:
>
>> Hi Amila,
>>
>> You have to create mock object of HttpservletRequest. Can we use EasyMock
>> in our products.  Or currently we are using any other mock object creation
>> frameworks?
>>
>>  http://easymock.org
>>
>> Thanks
>>
>>
>>
>> On Tue, Oct 21, 2014 at 11:27 AM, Godwin Amila Shrimal 
>> wrote:
>>
>>> Hi,
>>>
>>> I am working on test automation of OAuth, In that I need to pass a
>>> HttpServletRequest object to apache amber oauth2 API and get the
>>> authorization code. Can any one suggest me a better way to programmatically
>>> create a HttpServletRequest. Please see below the code snippet used to get
>>> the authorization code.
>>>
>>> OAuthAuthzResponse authzResponse = OAuthAuthzResponse
>>> .oauthCodeAuthzResponse(request)
>>>
>>> String code = authzResponse.getCode();
>>>
>>> Thanks
>>> Godwin
>>>
>>> --
>>> *Godwin Amila Shrimal*
>>> Senior Software Engineer
>>> WSO2 Inc.; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> mobile: *+94772264165*
>>> linkedin: *http://lnkd.in/KUum6D *
>>> twitter: https://twitter.com/godwinamila
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Manoj Gunawardena
>> Tech Lead
>> WSO2, Inc.: http://wso2.com
>> lean.enterprise.middleware
>> Mobile : +94 77 2291643
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Best Regards,
> V.Rajeevan
> Software Engineer,
> WSO2 Inc. :http://wso2.com
>
> Mobile : +94 773090875
> Email : rajeev...@wso2.com
>



-- 
*Godwin Amila Shrimal*
Senior Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

mobile: *+94772264165*
linkedin: *http://lnkd.in/KUum6D *
twitter: https://twitter.com/godwinamila
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Create HttpServletRequest programatically.

2014-10-20 Thread Rajeevan Vimalanathan
Hi Godwin,

You can simply use spring-test module if your project already has
dependency for spring.

*org.springframework.mock.web.MockHttpServletRequest [1] *class will
do the required things.

[1] 
http://docs.spring.io/spring/docs/3.0.x/api/org/springframework/mock/web/MockHttpServletRequest.html


Thanks,

Rajeevan


On Tue, Oct 21, 2014 at 11:38 AM, Manoj Gunawardena  wrote:

> Hi Amila,
>
> You have to create mock object of HttpservletRequest. Can we use EasyMock
> in our products.  Or currently we are using any other mock object creation
> frameworks?
>
>  http://easymock.org
>
> Thanks
>
>
>
> On Tue, Oct 21, 2014 at 11:27 AM, Godwin Amila Shrimal 
> wrote:
>
>> Hi,
>>
>> I am working on test automation of OAuth, In that I need to pass a
>> HttpServletRequest object to apache amber oauth2 API and get the
>> authorization code. Can any one suggest me a better way to programmatically
>> create a HttpServletRequest. Please see below the code snippet used to get
>> the authorization code.
>>
>> OAuthAuthzResponse authzResponse = OAuthAuthzResponse
>> .oauthCodeAuthzResponse(request)
>>
>> String code = authzResponse.getCode();
>>
>> Thanks
>> Godwin
>>
>> --
>> *Godwin Amila Shrimal*
>> Senior Software Engineer
>> WSO2 Inc.; http://wso2.com
>> lean.enterprise.middleware
>>
>> mobile: *+94772264165*
>> linkedin: *http://lnkd.in/KUum6D *
>> twitter: https://twitter.com/godwinamila
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Manoj Gunawardena
> Tech Lead
> WSO2, Inc.: http://wso2.com
> lean.enterprise.middleware
> Mobile : +94 77 2291643
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
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] [CEP] Acceptable event processing time and Event queue size

2014-10-20 Thread Asok Perera
Hi Tishan,

Thank you so much for these information.
I will go through your link and contact you if I need to clarify anything.

BR

*Asok Aravinda Perera*
Software Engineer
WSO2, Inc.;http://wso2.com/

lean.enterprise.middleware

Mobile: +94722241032

On Mon, Oct 20, 2014 at 12:36 PM, Tishan Dahanayakage 
wrote:

> Hi Asok,
>
> Siddhi 2.x.x implementations use [1] to achieve synchronization. In
> current implementation, process method will be accessed by multiple
> threads. So in custom implementations you need to handle that accordingly.
> So the maximum memory for event queue will be actually decided by jvm.
> Also defining an acceptable processing time per single event is not
> feasible. There are many more decisive factors like message size.
> So when writing custom functions/extension/etc you should make sure
> process() is fully optimized since it will be a part of main execution
> flow. Avoid new object creation as far as possible. Utilize init()
> effectively to perform required configurations.
>
> [1]
> http://docs.oracle.com/javase/6/docs/api/java/util/concurrent/locks/Lock.html
>
> On Fri, Oct 17, 2014 at 7:14 PM, Asok Perera  wrote:
>
>> Hi,
>>
>> Could I know how the Event queuing (Not referring to the window
>> extension) happens in Siddhi whenever there is synchronised method in a
>> class which is called through siddhi extension (Say transformer extension) ?
>>
>> The exact case I'm referring here is, there is a function which consumes
>> some time and this same function needs to be synchronised as it refers to
>> the previous results when performing the calculation. So because of this,
>> the events will be queued until the previous event is processed.
>>
>> The specifics I need to know are, what will be the maximum Memory for
>> Event queue in siddhi (in case if it is limited by siddhi, below Java max
>> heap size), and what will be the accepted processing time per single event ?
>>
>> BR
>>
>> *Asok Aravinda Perera*
>> Software Engineer
>> WSO2, Inc.;http://wso2.com/
>> 
>> lean.enterprise.middleware
>>
>> Mobile: +94722241032
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Tishan Dahanayakage
> Software Engineer
> WSO2, Inc.
> Mobile:+94 716481328
>
> Disclaimer: 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] Create HttpServletRequest programatically.

2014-10-20 Thread Manoj Gunawardena
Hi Amila,

You have to create mock object of HttpservletRequest. Can we use EasyMock
in our products.  Or currently we are using any other mock object creation
frameworks?

 http://easymock.org

Thanks



On Tue, Oct 21, 2014 at 11:27 AM, Godwin Amila Shrimal 
wrote:

> Hi,
>
> I am working on test automation of OAuth, In that I need to pass a
> HttpServletRequest object to apache amber oauth2 API and get the
> authorization code. Can any one suggest me a better way to programmatically
> create a HttpServletRequest. Please see below the code snippet used to get
> the authorization code.
>
> OAuthAuthzResponse authzResponse = OAuthAuthzResponse
> .oauthCodeAuthzResponse(request)
>
> String code = authzResponse.getCode();
>
> Thanks
> Godwin
>
> --
> *Godwin Amila Shrimal*
> Senior Software Engineer
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: *+94772264165*
> linkedin: *http://lnkd.in/KUum6D *
> twitter: https://twitter.com/godwinamila
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Manoj Gunawardena
Tech Lead
WSO2, Inc.: http://wso2.com
lean.enterprise.middleware
Mobile : +94 77 2291643
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Frequency extension for CEP - TopK Capacity and processing time relation

2014-10-20 Thread Asok Perera
Hi Manoj,

The Frequency implementation will not be continued further with the
stream-lib library. But thank you for your interest.

Anyway I have added the project to the below location, so that you can
check it.
https://svn.wso2.com/wso2/interns/2013/asokp/FrequencyExtension/

BR

*Asok Aravinda Perera*
Software Engineer
WSO2, Inc.;http://wso2.com/

lean.enterprise.middleware

Mobile: +94722241032

On Mon, Oct 20, 2014 at 1:01 PM, Manoj Gunawardena  wrote:

> Hi Asok,
>
> Can you send the svn link to the source. We also did lot of memory
> optimizations for disk backed window. would like to share our experience.
>
> Thanks
>
> On Sun, Oct 19, 2014 at 8:15 PM, Asok Perera  wrote:
>
>> Hi All,
>>
>> I ran several test runs for getting the correlation between 'event
>> processing time' and 'TopK capacity' for Frequency implementation
>> (transformer extension). I have put the stats for each test runs below
>> (Graphs are event vs processing time). According to the results, it seems
>> we need to decide the most optimal TopK capacity for this.
>>
>> Common tests specs,
>> Input event stream has 2 attributes (symbol and price). Symbol will be
>> the selected attribute for frequency calculation.
>> Client - 50 events within a for loop without a sleep time in between (to
>> get the behaviour for maximum in-event stream rate).
>> Calculating algorithm runs in a synchronised method.
>>
>>
>> *TOPK_CAPACITY = 1*
>> *Test Results,*
>> *Average event processing time = 700.02 ms*
>> *Processing time for all 50 events = 35001 ms*
>>
>> *[image: Inline image 2]*
>>
>> *TOPK_CAPACITY = 1000*
>> *Test Results,*
>> *Average event processing time =  296.68 ms*
>> *Processing time for all 50 events =  14834 ms*
>>
>> *[image: Inline image 3]*
>>
>> *TOPK_CAPACITY = 500*
>> *Test Results,*
>> *Average event processing time =  3.88 ms*
>> *Processing time for all 50 events =  194 ms*
>>
>> *[image: Inline image 4]*
>>
>> *TOPK_CAPACITY = 100*
>> *Test Results,*
>> *Average event processing time =  0.98 ms*
>> *Processing time for all 50 events =  49 ms*
>>
>> *[image: Inline image 5]*
>>
>> According to the results, there is significant correlation between event
>> processing time and TopK capacity. (TopK capacity represents the number of
>> *distinct* attribute values for frequency consideration).
>> Please suggest a suitable TopK Capacity value for a production
>> environment.
>> Then we can continue more testings changing some other parameters to find
>> out the relations and best possible values.
>>
>> BR
>>
>> *Asok Aravinda Perera*
>> Software Engineer
>> WSO2, Inc.;http://wso2.com/
>> 
>> lean.enterprise.middleware
>>
>> Mobile: +94722241032
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Manoj Gunawardena
> Tech Lead
> WSO2, Inc.: http://wso2.com
> lean.enterprise.middleware
> Mobile : +94 77 2291643
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Rajeevan Vimalanathan
Congratz Raj...!!!

On Tue, Oct 21, 2014 at 11:28 AM, Buddhima Wijeweera 
wrote:

> Congratz Rajkumar !!!
>
> On Tue, Oct 21, 2014 at 11:25 AM, Sajini De Silva  wrote:
>
>> Congratulations Rajkumar !!!
>>
>> On Tue, Oct 21, 2014 at 10:46 AM, Danesh Kuruppu  wrote:
>>
>>> Congrats Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 10:43 AM, Anuruddha Premalal >> > wrote:
>>>
 Congratulations !!

 On Tue, Oct 21, 2014 at 10:38 AM, Vinuri Perera 
 wrote:

> Congratulations  :)
>
> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara 
> wrote:
>
>> Congratulations Rajkumar!
>>
>> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka > > wrote:
>>
>>> Congratulations !
>>>
>>>
>>> On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
>>> parapa...@wso2.com> wrote:
>>>
 Congratulations Rajkumar .

 On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats!
>
> On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody <
> dine...@wso2.com> wrote:
>
>> Congratulations.. !
>>
>> On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne <
>> gay...@wso2.com> wrote:
>>
>>> Congratulations Rajkumar!!
>>>
>>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage <
>>> rosh...@wso2.com> wrote:
>>>
 Congratulation Rajkumar!


 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
 god...@wso2.com> wrote:

> Congratulation Rajkumar ...!
>
> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena <
> ros...@wso2.com> wrote:
>
>> Congratulation!!
>>
>> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
>> prasa...@wso2.com> wrote:
>>
>>> Congratulations Rajkumar...
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>>> thili...@wso2.com> wrote:
>>>
 Congratulations Rajkumar !!!

 On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Raj !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
> samee...@wso2.com> wrote:
>
>> Congratz Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>> suh...@wso2.com> wrote:
>>
>>> Congrats Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>>> sh...@wso2.com> wrote:
>>>
 Congrats !!

 On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
 kas...@wso2.com> wrote:

> Congrats Rajkumar !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana
>  wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Raj as a WSO2 Committer.
>> Raj has done great contributions to Apache Stratos and 
>> WSO2 Private PaaS
>> products. And in recognition of his contribution he has 
>> been voted as a
>> WSO2 commiter.
>>
>> Raj, welcome aboard and keep up the good work!.
>>
>> --
>> Lakmal Warusawithana
>> Vice President, Apache Stratos
>> Director - Cloud Architecture; WSO2 Inc.
>> Mobile : +94714289692
>

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Rajeevan Vimalanathan
Congratz Lasindu...!!!

On Tue, Oct 21, 2014 at 11:34 AM, Gimantha Bandara 
wrote:

> Congratz Lasidu!
>
> On Tue, Oct 21, 2014 at 11:30 AM, Anuruddha Premalal 
> wrote:
>
>> Congratulations Lasindu!!
>>
>> On Tue, Oct 21, 2014 at 11:27 AM, Buddhima Wijeweera 
>> wrote:
>>
>>> Congratz Lasindu !!!
>>>
>>> On Tue, Oct 21, 2014 at 11:25 AM, Waruna De Silva 
>>> wrote:
>>>
 Congrats Lasindu!!

 On Tue, Oct 21, 2014 at 10:44 AM, Danesh Kuruppu 
 wrote:

> Congrats Lasindu !!!
>
> On Tue, Oct 21, 2014 at 10:27 AM, Niranda Perera 
> wrote:
>
>> congrats!
>>
>> On Tue, Oct 21, 2014 at 10:24 AM, Tharindu Dharmarathna <
>> tharin...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> On Tue, Oct 21, 2014 at 10:20 AM, Vijitha Ekanayake <
>>> vijit...@wso2.com> wrote:
>>>
 Congratulations Lasindu !!!

 On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara 
 wrote:

> Congratulations Lasindu!
>
> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka <
> aye...@wso2.com> wrote:
>
>> Congratulations Lasindu !
>>
>>
>> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats!
>>>
>>> On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody <
>>> dine...@wso2.com> wrote:
>>>
 Congratulations Lasindu... ! :)

 On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne <
 gay...@wso2.com> wrote:

> Congratulations Lasindu!!
>
> On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika
> Thantriwatte  wrote:
>
>> Congratulations !!!
>>
>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage <
>> rosh...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>>> god...@wso2.com> wrote:
>>>
 Congratulations Lasindu !

 On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena <
 ros...@wso2.com> wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera <
> milin...@wso2.com> wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
>> shashi...@wso2.com> wrote:
>>
>>> Congrats Lasindu
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>>> thili...@wso2.com> wrote:
>>>
 Congratulations Lasindu !!!

 On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Lasindu !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe
>  wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>> suh...@wso2.com> wrote:
>>
>>> Congrats Lasindu!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
>>> kas...@wso2.com> wrote:
>>>
 Congrats Lasindu !!!

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

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


 On Tue, Oct 21, 2014 at 9:09 AM, Lakmal
 Warusawithana  wrote:

> Hi all,
>
>>

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Gimantha Bandara
Congratz Lasidu!

On Tue, Oct 21, 2014 at 11:30 AM, Anuruddha Premalal 
wrote:

> Congratulations Lasindu!!
>
> On Tue, Oct 21, 2014 at 11:27 AM, Buddhima Wijeweera 
> wrote:
>
>> Congratz Lasindu !!!
>>
>> On Tue, Oct 21, 2014 at 11:25 AM, Waruna De Silva 
>> wrote:
>>
>>> Congrats Lasindu!!
>>>
>>> On Tue, Oct 21, 2014 at 10:44 AM, Danesh Kuruppu 
>>> wrote:
>>>
 Congrats Lasindu !!!

 On Tue, Oct 21, 2014 at 10:27 AM, Niranda Perera 
 wrote:

> congrats!
>
> On Tue, Oct 21, 2014 at 10:24 AM, Tharindu Dharmarathna <
> tharin...@wso2.com> wrote:
>
>> Congratulations Lasindu !
>>
>> On Tue, Oct 21, 2014 at 10:20 AM, Vijitha Ekanayake <
>> vijit...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !!!
>>>
>>> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara 
>>> wrote:
>>>
 Congratulations Lasindu!

 On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka <
 aye...@wso2.com> wrote:

> Congratulations Lasindu !
>
>
> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
> abima...@wso2.com> wrote:
>
>> Congrats!
>>
>> On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody <
>> dine...@wso2.com> wrote:
>>
>>> Congratulations Lasindu... ! :)
>>>
>>> On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne <
>>> gay...@wso2.com> wrote:
>>>
 Congratulations Lasindu!!

 On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte
  wrote:

> Congratulations !!!
>
> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage <
> rosh...@wso2.com> wrote:
>
>> Congratulations Lasindu !
>>
>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>> god...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena <
>>> ros...@wso2.com> wrote:
>>>
 Congratulation!!

 On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera <
 milin...@wso2.com> wrote:

> Congratulations Lasindu !!
>
> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
> shashi...@wso2.com> wrote:
>
>> Congrats Lasindu
>>
>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>> thili...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
>>> daksh...@wso2.com> wrote:
>>>
 Congratulations Lasindu !

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

 On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
 tharin...@wso2.com> wrote:

> Congratulations Lasindu !!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
> suh...@wso2.com> wrote:
>
>> Congrats Lasindu!!!
>>
>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
>> kas...@wso2.com> wrote:
>>
>>> Congrats Lasindu !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal
>>> Warusawithana  wrote:
>>>
 Hi all,

 It's my pleasure to announce Lasindu as a WSO2
 Committer. Lasindu has done great contributions to 
 Apache Stratos and WSO2
>

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Gimantha Bandara
Congratz Rajkumar!

On Tue, Oct 21, 2014 at 11:28 AM, Buddhima Wijeweera 
wrote:

> Congratz Rajkumar !!!
>
> On Tue, Oct 21, 2014 at 11:25 AM, Sajini De Silva  wrote:
>
>> Congratulations Rajkumar !!!
>>
>> On Tue, Oct 21, 2014 at 10:46 AM, Danesh Kuruppu  wrote:
>>
>>> Congrats Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 10:43 AM, Anuruddha Premalal >> > wrote:
>>>
 Congratulations !!

 On Tue, Oct 21, 2014 at 10:38 AM, Vinuri Perera 
 wrote:

> Congratulations  :)
>
> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara 
> wrote:
>
>> Congratulations Rajkumar!
>>
>> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka > > wrote:
>>
>>> Congratulations !
>>>
>>>
>>> On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
>>> parapa...@wso2.com> wrote:
>>>
 Congratulations Rajkumar .

 On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats!
>
> On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody <
> dine...@wso2.com> wrote:
>
>> Congratulations.. !
>>
>> On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne <
>> gay...@wso2.com> wrote:
>>
>>> Congratulations Rajkumar!!
>>>
>>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage <
>>> rosh...@wso2.com> wrote:
>>>
 Congratulation Rajkumar!


 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
 god...@wso2.com> wrote:

> Congratulation Rajkumar ...!
>
> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena <
> ros...@wso2.com> wrote:
>
>> Congratulation!!
>>
>> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
>> prasa...@wso2.com> wrote:
>>
>>> Congratulations Rajkumar...
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>>> thili...@wso2.com> wrote:
>>>
 Congratulations Rajkumar !!!

 On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Raj !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
> samee...@wso2.com> wrote:
>
>> Congratz Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>> suh...@wso2.com> wrote:
>>
>>> Congrats Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>>> sh...@wso2.com> wrote:
>>>
 Congrats !!

 On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
 kas...@wso2.com> wrote:

> Congrats Rajkumar !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana
>  wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Raj as a WSO2 Committer.
>> Raj has done great contributions to Apache Stratos and 
>> WSO2 Private PaaS
>> products. And in recognition of his contribution he has 
>> been voted as a
>> WSO2 commiter.
>>
>> Raj, welcome aboard and keep up the good work!.
>>
>> --
>> Lakmal Warusawithana
>> Vice President, Apache Stratos
>> Director - Cloud Architecture; WSO2 Inc.
>> Mobile : +94714289692
>

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Anuruddha Premalal
Congratulations Lasindu!!

On Tue, Oct 21, 2014 at 11:27 AM, Buddhima Wijeweera 
wrote:

> Congratz Lasindu !!!
>
> On Tue, Oct 21, 2014 at 11:25 AM, Waruna De Silva 
> wrote:
>
>> Congrats Lasindu!!
>>
>> On Tue, Oct 21, 2014 at 10:44 AM, Danesh Kuruppu  wrote:
>>
>>> Congrats Lasindu !!!
>>>
>>> On Tue, Oct 21, 2014 at 10:27 AM, Niranda Perera 
>>> wrote:
>>>
 congrats!

 On Tue, Oct 21, 2014 at 10:24 AM, Tharindu Dharmarathna <
 tharin...@wso2.com> wrote:

> Congratulations Lasindu !
>
> On Tue, Oct 21, 2014 at 10:20 AM, Vijitha Ekanayake  > wrote:
>
>> Congratulations Lasindu !!!
>>
>> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara 
>> wrote:
>>
>>> Congratulations Lasindu!
>>>
>>> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka <
>>> aye...@wso2.com> wrote:
>>>
 Congratulations Lasindu !


 On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats!
>
> On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody <
> dine...@wso2.com> wrote:
>
>> Congratulations Lasindu... ! :)
>>
>> On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne <
>> gay...@wso2.com> wrote:
>>
>>> Congratulations Lasindu!!
>>>
>>> On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte
>>>  wrote:
>>>
 Congratulations !!!

 On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage <
 rosh...@wso2.com> wrote:

> Congratulations Lasindu !
>
> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
> god...@wso2.com> wrote:
>
>> Congratulations Lasindu !
>>
>> On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena <
>> ros...@wso2.com> wrote:
>>
>>> Congratulation!!
>>>
>>> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera <
>>> milin...@wso2.com> wrote:
>>>
 Congratulations Lasindu !!

 On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
 shashi...@wso2.com> wrote:

> Congrats Lasindu
>
> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
> thili...@wso2.com> wrote:
>
>> Congratulations Lasindu !!!
>>
>> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
>> daksh...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
>>> tharin...@wso2.com> wrote:
>>>
 Congratulations Lasindu !!

 On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
 suh...@wso2.com> wrote:

> Congrats Lasindu!!!
>
> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
> kas...@wso2.com> wrote:
>
>> Congrats Lasindu !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana
>>  wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Lasindu as a WSO2
>>> Committer. Lasindu has done great contributions to 
>>> Apache Stratos and WSO2
>>> Private PaaS products. And in recognition of his 
>>> contribution he has been
>>> voted as a WSO2 commiter.
>>>
>>> Lasindu, welcome aboard and keep up the good wo

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Buddhima Wijeweera
Congratz Rajkumar !!!

On Tue, Oct 21, 2014 at 11:25 AM, Sajini De Silva  wrote:

> Congratulations Rajkumar !!!
>
> On Tue, Oct 21, 2014 at 10:46 AM, Danesh Kuruppu  wrote:
>
>> Congrats Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 10:43 AM, Anuruddha Premalal 
>> wrote:
>>
>>> Congratulations !!
>>>
>>> On Tue, Oct 21, 2014 at 10:38 AM, Vinuri Perera 
>>> wrote:
>>>
 Congratulations  :)

 On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara 
 wrote:

> Congratulations Rajkumar!
>
> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
> wrote:
>
>> Congratulations !
>>
>>
>> On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
>> parapa...@wso2.com> wrote:
>>
>>> Congratulations Rajkumar .
>>>
>>> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
>>> abima...@wso2.com> wrote:
>>>
 Congrats!

 On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody <
 dine...@wso2.com> wrote:

> Congratulations.. !
>
> On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne <
> gay...@wso2.com> wrote:
>
>> Congratulations Rajkumar!!
>>
>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage <
>> rosh...@wso2.com> wrote:
>>
>>> Congratulation Rajkumar!
>>>
>>>
>>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>>> god...@wso2.com> wrote:
>>>
 Congratulation Rajkumar ...!

 On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena <
 ros...@wso2.com> wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
> prasa...@wso2.com> wrote:
>
>> Congratulations Rajkumar...
>>
>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>> thili...@wso2.com> wrote:
>>
>>> Congratulations Rajkumar !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
>>> daksh...@wso2.com> wrote:
>>>
 Congratulations Raj !

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

 On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
 samee...@wso2.com> wrote:

> Congratz Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
> suh...@wso2.com> wrote:
>
>> Congrats Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>> sh...@wso2.com> wrote:
>>
>>> Congrats !!
>>>
>>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
>>> kas...@wso2.com> wrote:
>>>
 Congrats Rajkumar !!!

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

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


 On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi all,
>
> It's my pleasure to announce Raj as a WSO2 Committer.
> Raj has done great contributions to Apache Stratos and 
> WSO2 Private PaaS
> products. And in recognition of his contribution he has 
> been voted as a
> WSO2 commiter.
>
> Raj, welcome aboard and keep up the good work!.
>
> --
> Lakmal Warusawithana
> Vice President, Apache Stratos
> Director - Cloud Architecture; WSO2 Inc.
> Mobile : +94714289692
> Blog : http://lakmalsview.blogspot.com/
>
>
> ___
> Dev mailing list
>

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Buddhima Wijeweera
Congratz Lasindu !!!

On Tue, Oct 21, 2014 at 11:25 AM, Waruna De Silva  wrote:

> Congrats Lasindu!!
>
> On Tue, Oct 21, 2014 at 10:44 AM, Danesh Kuruppu  wrote:
>
>> Congrats Lasindu !!!
>>
>> On Tue, Oct 21, 2014 at 10:27 AM, Niranda Perera 
>> wrote:
>>
>>> congrats!
>>>
>>> On Tue, Oct 21, 2014 at 10:24 AM, Tharindu Dharmarathna <
>>> tharin...@wso2.com> wrote:
>>>
 Congratulations Lasindu !

 On Tue, Oct 21, 2014 at 10:20 AM, Vijitha Ekanayake 
 wrote:

> Congratulations Lasindu !!!
>
> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara 
> wrote:
>
>> Congratulations Lasindu!
>>
>> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka > > wrote:
>>
>>> Congratulations Lasindu !
>>>
>>>
>>> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
>>> abima...@wso2.com> wrote:
>>>
 Congrats!

 On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody <
 dine...@wso2.com> wrote:

> Congratulations Lasindu... ! :)
>
> On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne <
> gay...@wso2.com> wrote:
>
>> Congratulations Lasindu!!
>>
>> On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte <
>> manu...@wso2.com> wrote:
>>
>>> Congratulations !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage <
>>> rosh...@wso2.com> wrote:
>>>
 Congratulations Lasindu !

 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
 god...@wso2.com> wrote:

> Congratulations Lasindu !
>
> On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena <
> ros...@wso2.com> wrote:
>
>> Congratulation!!
>>
>> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera <
>> milin...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !!
>>>
>>> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
>>> shashi...@wso2.com> wrote:
>>>
 Congrats Lasindu

 On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
 thili...@wso2.com> wrote:

> Congratulations Lasindu !!!
>
> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
> daksh...@wso2.com> wrote:
>
>> Congratulations Lasindu !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
>> tharin...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>>> suh...@wso2.com> wrote:
>>>
 Congrats Lasindu!!!

 On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
 kas...@wso2.com> wrote:

> Congrats Lasindu !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana
>  wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Lasindu as a WSO2
>> Committer. Lasindu has done great contributions to 
>> Apache Stratos and WSO2
>> Private PaaS products. And in recognition of his 
>> contribution he has been
>> voted as a WSO2 commiter.
>>
>> Lasindu, welcome aboard and keep up the good work!.
>>
>> --
>> Lakmal Warusawithana
>> Vice President, Apache Stratos
>> Director - Cloud Architecture; WSO2 Inc.
>>>

[Dev] Create HttpServletRequest programatically.

2014-10-20 Thread Godwin Amila Shrimal
Hi,

I am working on test automation of OAuth, In that I need to pass a
HttpServletRequest object to apache amber oauth2 API and get the
authorization code. Can any one suggest me a better way to programmatically
create a HttpServletRequest. Please see below the code snippet used to get
the authorization code.

OAuthAuthzResponse authzResponse = OAuthAuthzResponse
.oauthCodeAuthzResponse(request)

String code = authzResponse.getCode();

Thanks
Godwin

-- 
*Godwin Amila Shrimal*
Senior Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

mobile: *+94772264165*
linkedin: *http://lnkd.in/KUum6D *
twitter: https://twitter.com/godwinamila
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Waruna De Silva
Congrats Lasindu!!

On Tue, Oct 21, 2014 at 10:44 AM, Danesh Kuruppu  wrote:

> Congrats Lasindu !!!
>
> On Tue, Oct 21, 2014 at 10:27 AM, Niranda Perera  wrote:
>
>> congrats!
>>
>> On Tue, Oct 21, 2014 at 10:24 AM, Tharindu Dharmarathna <
>> tharin...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> On Tue, Oct 21, 2014 at 10:20 AM, Vijitha Ekanayake 
>>> wrote:
>>>
 Congratulations Lasindu !!!

 On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara 
 wrote:

> Congratulations Lasindu!
>
> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
> wrote:
>
>> Congratulations Lasindu !
>>
>>
>> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats!
>>>
>>> On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody <
>>> dine...@wso2.com> wrote:
>>>
 Congratulations Lasindu... ! :)

 On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne >>> > wrote:

> Congratulations Lasindu!!
>
> On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte <
> manu...@wso2.com> wrote:
>
>> Congratulations !!!
>>
>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage <
>> rosh...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>>> god...@wso2.com> wrote:
>>>
 Congratulations Lasindu !

 On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena <
 ros...@wso2.com> wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera <
> milin...@wso2.com> wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
>> shashi...@wso2.com> wrote:
>>
>>> Congrats Lasindu
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>>> thili...@wso2.com> wrote:
>>>
 Congratulations Lasindu !!!

 On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Lasindu !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
> tharin...@wso2.com> wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>> suh...@wso2.com> wrote:
>>
>>> Congrats Lasindu!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
>>> kas...@wso2.com> wrote:
>>>
 Congrats Lasindu !!!

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

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


 On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi all,
>
> It's my pleasure to announce Lasindu as a WSO2
> Committer. Lasindu has done great contributions to Apache 
> Stratos and WSO2
> Private PaaS products. And in recognition of his 
> contribution he has been
> voted as a WSO2 commiter.
>
> Lasindu, welcome aboard and keep up the good work!.
>
> --
> Lakmal Warusawithana
> Vice President, Apache Stratos
> Director - Cloud Architecture; WSO2 Inc.
> Mobile : +94714289692
> Blog : http://lakmalsview.blogspot.com/
>
>
> ___
> Dev ma

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Sajini De Silva
Congratulations Rajkumar !!!

On Tue, Oct 21, 2014 at 10:46 AM, Danesh Kuruppu  wrote:

> Congrats Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 10:43 AM, Anuruddha Premalal 
> wrote:
>
>> Congratulations !!
>>
>> On Tue, Oct 21, 2014 at 10:38 AM, Vinuri Perera  wrote:
>>
>>> Congratulations  :)
>>>
>>> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara 
>>> wrote:
>>>
 Congratulations Rajkumar!

 On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
 wrote:

> Congratulations !
>
>
> On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
> parapa...@wso2.com> wrote:
>
>> Congratulations Rajkumar .
>>
>> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats!
>>>
>>> On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody <
>>> dine...@wso2.com> wrote:
>>>
 Congratulations.. !

 On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne >>> > wrote:

> Congratulations Rajkumar!!
>
> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage  > wrote:
>
>> Congratulation Rajkumar!
>>
>>
>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>> god...@wso2.com> wrote:
>>
>>> Congratulation Rajkumar ...!
>>>
>>> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena <
>>> ros...@wso2.com> wrote:
>>>
 Congratulation!!

 On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
 prasa...@wso2.com> wrote:

> Congratulations Rajkumar...
>
> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
> thili...@wso2.com> wrote:
>
>> Congratulations Rajkumar !!!
>>
>> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
>> daksh...@wso2.com> wrote:
>>
>>> Congratulations Raj !
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
>>> samee...@wso2.com> wrote:
>>>
 Congratz Rajkumar!!!

 On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
 suh...@wso2.com> wrote:

> Congrats Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
> sh...@wso2.com> wrote:
>
>> Congrats !!
>>
>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
>> kas...@wso2.com> wrote:
>>
>>> Congrats Rajkumar !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
>>> lak...@wso2.com> wrote:
>>>
 Hi all,

 It's my pleasure to announce Raj as a WSO2 Committer.
 Raj has done great contributions to Apache Stratos and 
 WSO2 Private PaaS
 products. And in recognition of his contribution he has 
 been voted as a
 WSO2 commiter.

 Raj, welcome aboard and keep up 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


>>>
>>> ___
>>> Dev mailing list
>>> 

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Sajini De Silva
Congratulations Lasindu !!!

On Tue, Oct 21, 2014 at 10:44 AM, Danesh Kuruppu  wrote:

> Congrats Lasindu !!!
>
> On Tue, Oct 21, 2014 at 10:27 AM, Niranda Perera  wrote:
>
>> congrats!
>>
>> On Tue, Oct 21, 2014 at 10:24 AM, Tharindu Dharmarathna <
>> tharin...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> On Tue, Oct 21, 2014 at 10:20 AM, Vijitha Ekanayake 
>>> wrote:
>>>
 Congratulations Lasindu !!!

 On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara 
 wrote:

> Congratulations Lasindu!
>
> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
> wrote:
>
>> Congratulations Lasindu !
>>
>>
>> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats!
>>>
>>> On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody <
>>> dine...@wso2.com> wrote:
>>>
 Congratulations Lasindu... ! :)

 On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne >>> > wrote:

> Congratulations Lasindu!!
>
> On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte <
> manu...@wso2.com> wrote:
>
>> Congratulations !!!
>>
>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage <
>> rosh...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>>> god...@wso2.com> wrote:
>>>
 Congratulations Lasindu !

 On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena <
 ros...@wso2.com> wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera <
> milin...@wso2.com> wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
>> shashi...@wso2.com> wrote:
>>
>>> Congrats Lasindu
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>>> thili...@wso2.com> wrote:
>>>
 Congratulations Lasindu !!!

 On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Lasindu !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
> tharin...@wso2.com> wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>> suh...@wso2.com> wrote:
>>
>>> Congrats Lasindu!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
>>> kas...@wso2.com> wrote:
>>>
 Congrats Lasindu !!!

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

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


 On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi all,
>
> It's my pleasure to announce Lasindu as a WSO2
> Committer. Lasindu has done great contributions to Apache 
> Stratos and WSO2
> Private PaaS products. And in recognition of his 
> contribution he has been
> voted as a WSO2 commiter.
>
> Lasindu, welcome aboard and keep up the good work!.
>
> --
> Lakmal Warusawithana
> Vice President, Apache Stratos
> Director - Cloud Architecture; WSO2 Inc.
> Mobile : +94714289692
> Blog : http://lakmalsview.blogspot.com/
>
>
> ___
>>>

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Waruna De Silva
Congrats Raj!!

On Tue, Oct 21, 2014 at 10:46 AM, Danesh Kuruppu  wrote:

> Congrats Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 10:43 AM, Anuruddha Premalal 
> wrote:
>
>> Congratulations !!
>>
>> On Tue, Oct 21, 2014 at 10:38 AM, Vinuri Perera  wrote:
>>
>>> Congratulations  :)
>>>
>>> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara 
>>> wrote:
>>>
 Congratulations Rajkumar!

 On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
 wrote:

> Congratulations !
>
>
> On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
> parapa...@wso2.com> wrote:
>
>> Congratulations Rajkumar .
>>
>> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
>> abima...@wso2.com> wrote:
>>
>>> Congrats!
>>>
>>> On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody <
>>> dine...@wso2.com> wrote:
>>>
 Congratulations.. !

 On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne >>> > wrote:

> Congratulations Rajkumar!!
>
> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage  > wrote:
>
>> Congratulation Rajkumar!
>>
>>
>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>> god...@wso2.com> wrote:
>>
>>> Congratulation Rajkumar ...!
>>>
>>> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena <
>>> ros...@wso2.com> wrote:
>>>
 Congratulation!!

 On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
 prasa...@wso2.com> wrote:

> Congratulations Rajkumar...
>
> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
> thili...@wso2.com> wrote:
>
>> Congratulations Rajkumar !!!
>>
>> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
>> daksh...@wso2.com> wrote:
>>
>>> Congratulations Raj !
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
>>> samee...@wso2.com> wrote:
>>>
 Congratz Rajkumar!!!

 On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
 suh...@wso2.com> wrote:

> Congrats Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
> sh...@wso2.com> wrote:
>
>> Congrats !!
>>
>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
>> kas...@wso2.com> wrote:
>>
>>> Congrats Rajkumar !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
>>> lak...@wso2.com> wrote:
>>>
 Hi all,

 It's my pleasure to announce Raj as a WSO2 Committer.
 Raj has done great contributions to Apache Stratos and 
 WSO2 Private PaaS
 products. And in recognition of his contribution he has 
 been voted as a
 WSO2 commiter.

 Raj, welcome aboard and keep up 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


>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>

Re: [Dev] Support needed | Siddhi query to get the data different in event table and a stream using join.

2014-10-20 Thread Seshika Fernando
Hi Saneth,

Were you able to do this? If so what is the query you used.

seshika



On Thu, Oct 16, 2014 at 5:30 PM, Aiyadurai Rajeevan 
wrote:

> Hi Saneth,
>
> If i'm not mistaken we can achieve this using a custom transform. Since
> you have a separate table which holds all the books, You simply check using
> some java code and send the result as an output stream.
>
> Then your query would something like below,
>
> from userboughtbooks#window.time(10 min)
>
> select userboughtbooks.book_id as boughtBooks
>
> insert into IntermediateOutputStream
>
>
> from IntermediateOutputStream#transform.custom:AvailableBook(boughtBooks)
>
> select availableBook
>
> insert into RecommendationsOutputDataStream
>
>
> where AvailableBook would be your custom transform written in Java.
>
>
>
> Thanks & Regards,
> S.A.Rajeevan
> Software Engineer WSO2 Inc
> E-Mail: rajeev...@wso2.com | Mobile : +94776411636
>
> On Thu, Oct 16, 2014 at 12:52 PM, Seshika Fernando 
> wrote:
>
>> Hi Saneth,
>>
>> The reason for this is because, when you put a != , the join happens as
>> follows.
>> [image: Inline image 2]
>>
>>
>> This is why you get book1 and book2 once and book3, and book4 twice, in
>> your RecommendationsOutputStream. You may have to use a count operator from
>> the RecommendationsOutputStream to determine which books have not been
>> bought.
>>
>> Seshika
>>
>>
>>
>> On Thu, Oct 16, 2014 at 12:29 PM, Rajeev Sampath 
>> wrote:
>>
>>> Hi,
>>>
>>> On Thu, Oct 16, 2014 at 12:07 PM, Saneth Dharmakeerthi >> > wrote:
>>>
 Hi,

 I am writing a Siddhi query to get the un-purchased books from an
  event table that has all  the books and a stream that contains  the
 already bought books.

 my quarry is like  this;

 *userboughtbooks: *Stream that contains  the already bought books
 *bookGroupTable: *Table that has all  the books
 *RecommendationsOutputDataStream: *Out  put stream that contains  all
 un-purchased books.

 from userboughtbooks#window.time(10 min) join bookGroupTable
 on  bookGroupTable.book_id  != userboughtbooks.book_id
 select bookGroupTable.book_id
 insert into RecommendationsOutputDataStream

 1. when  userboughtbooks has one element it gives the correct result.

 userboughtbooks: book1
 bookGroupTable: book1, book2, book3, book4
 RecommendationsOutputDataStream: book2, book3, book4

 2. but  userboughtbooks has more than one element  gives the out put
 like follows

 userboughtbooks: book1, book2
 bookGroupTable: book1, book2, book3, book4
 RecommendationsOutputDataStream: book1,book2,book3,book3,book4,book4

 I think behaviour of [2] , because of joining with  more than one
 element.

 Is there a recommended way to accomplish this task?



>>> As a workaround to solve this, you can add another query to check
>>> whether each output of recommendations stream exists in the table and then
>>> output only the non existing ones.
>>>
>>> eg:
>>>
>>> from RecommendationsOutputDataStream [not ((book_id ==
>>> bookGroupTable.book_id ) in bookGroupTable)]
>>> select *
>>> insert into filteredRecommendationsStream;
>>>
>>>
>>> Thanks
>>> Rajeev
>>>
>>>
>>>

 Thanks and Best Regards,

 Saneth Dharmakeerthi
 Senior Software Engineer
 WSO2, Inc.
 Mobile: +94772325511

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


>>>
>>>
>>> --
>>> Rajeev Sampath
>>> Senior Software Engineer
>>> WSO2, Inc.; http://www.wso2.com.
>>>
>>> Mobile:
>>> * +94716265766 <%2B94716265766>*
>>>
>>> ___
>>> 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 mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Front-end framework to use

2014-10-20 Thread Shiva Balachandran
Hi CD,

I believe before any implementation is commenced, it would be great if you
could sketch up what and how your are going to present the web based GUI
and the functionality, having mock-ups will guide you and make it easier
for you to develop front end GUIs. Also, best get the mock up reviewed by a
non technical user to understand if the UI is understandable and easy to
use. This will reduce redundant work.

Thank you.

On Tue, Oct 21, 2014 at 11:06 AM, CD Athuraliya  wrote:

> Hi all,
>
> Thanks a lot for the feedback. The GUI will be used to display real time
> road traffic information extracted from a Twitter feed to the user.
> Information includes geolocations and textual information on traffic level
> which are more convenient to display in a single page. I will continue my
> work with Bootstrap with jQuery for the GUI following your feedback.
>
> Thanks and best regards.
>
> On Tue, Oct 21, 2014 at 10:43 AM, Shiva Balachandran 
> wrote:
>
>> Hi CD,
>>
>> If functionality of the UI can be achieved using Bootstrap with jQuery it
>> would be a good way to proceed, as it would be light and fast. Look into
>> the links below to see if you can find a better suited framework from your
>> development.
>>
>> 1 - http://www.sitepoint.com/top-10-front-end-development-frameworks/
>> 2 - http://handlebarsjs.com/
>>
>>
>> Thank you.
>>
>> On Tue, Oct 21, 2014 at 12:46 AM, CD Athuraliya 
>> wrote:
>>
>>> Hi Shiva,
>>>
>>> The GUI will be mainly used for user interaction and geo map
>>> integration. I am currently using Bootstrap with jQuery for this
>>> purpose. Kindly point out if there is a better choice.
>>>
>>> Thanks.
>>>
>>> On Mon, Oct 20, 2014 at 5:42 PM, Shiva Balachandran 
>>> wrote:
>>>
 Hi CD,

 Can you please be more specific about what goes in the web based GUI.
 There are many frameworks/modules, used for such purposes but
 depending on your necessities, you can narrow down a suitable one.
 Any mock-ups or designs?

 Thank you,

 Shiva Balachandran

 On Fri, Oct 17, 2014 at 11:09 AM, CD Athuraliya 
 wrote:

> Hi Chamila,
>
> Thanks for the tip on license compatibility. I will look into this.
>
> Best regards.
>
> On Fri, Oct 17, 2014 at 11:05 AM, Chamila De Alwis 
> wrote:
>
>> Hi,
>>
>> I haven't done any serious front end work, but as an additional
>> concern when selecting frameworks and modules, have a look at the license
>> they are using. They should be licensed under Apache License v2.0 or 
>> under
>> a compatible license. It might help going briefly through the
>> articles[1][2][3] on Apache about license compatibility before selecting 
>> a
>> particular module.
>>
>> Perhaps Dakshika can add ideas on the specific frameworks to use
>>
>> [1] - http://www.apache.org/licenses/GPL-compatibility.html
>> [2] - http://www.apache.org/legal/3party.html
>> [3] - http://www.apache.org/legal/resolved.html
>>
>>
>> Regards,
>> Chamila de Alwis
>> Software Engineer | WSO2 | +94772207163
>> Blog: code.chamiladealwis.com
>>
>>
>>
>> On Fri, Oct 17, 2014 at 10:40 AM, CD Athuraliya 
>> wrote:
>>
>>> Hi all,
>>>
>>> I am developing a web based GUI as a part of this project [1]. Are
>>> there any de facto frameworks/modules, used for such purposes? Any help
>>> would be much appreciated.
>>>
>>> [1] https://redmine.wso2.com/issues/3327
>>>
>>> Thanks.
>>>
>>> --
>>> *CD Athuraliya*
>>> Software Engineering Intern
>>> WSO2, Inc.
>>> lean . enterprise . middleware
>>> Mobile: +94 716288847
>>> LinkedIn  | Twitter
>>>  | Blog
>>> 
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>
>
> --
> *CD Athuraliya*
> Software Engineering Intern
> WSO2, Inc.
> lean . enterprise . middleware
> Mobile: +94 716288847
> LinkedIn  | Twitter
>  | Blog
> 
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Shiva Balachandran
 Software Engineer
 WSO2 Inc.

 Mobile - +94 774445788

>>>
>>>
>>>
>>> --
>>> *CD Athuraliya*
>>> Software Engineering Intern
>>> WSO2, Inc.
>>> lean . enterprise . middleware
>>> Mobile: +94 716288847
>>> LinkedIn  | Twitter
>>>  | Blog
>>> 
>>>
>>
>>
>>
>> --
>> Shiva Balachandran

Re: [Dev] [APIM] Please commit the patches

2014-10-20 Thread Nuwan Dias
Done. Revisions mentioned in JiRAs

On Mon, Oct 20, 2014 at 7:40 PM, Abimaran Kugathasan 
wrote:

> Hi Nuwan,
>
>
> Please commit the follwoing two JIRA's patches.
>
> 1. https://wso2.org/jira/browse/APIMANAGER-2977
> 2. https://wso2.org/jira/browse/APIMANAGER-2978
>
> --
> Thanks
> Abimaran Kugathasan
>
> Software Engineer | WSO2 Inc
> Data & APIs Technologies Team
> Mobile : +94 773922820
>
> 
> 
>   
> 
>
>


-- 
Nuwan Dias

Associate Tech Lead - WSO2, Inc. http://wso2.com
email : nuw...@wso2.com
Phone : +94 777 775 729
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Front-end framework to use

2014-10-20 Thread CD Athuraliya
Hi all,

Thanks a lot for the feedback. The GUI will be used to display real time
road traffic information extracted from a Twitter feed to the user.
Information includes geolocations and textual information on traffic level
which are more convenient to display in a single page. I will continue my
work with Bootstrap with jQuery for the GUI following your feedback.

Thanks and best regards.

On Tue, Oct 21, 2014 at 10:43 AM, Shiva Balachandran  wrote:

> Hi CD,
>
> If functionality of the UI can be achieved using Bootstrap with jQuery it
> would be a good way to proceed, as it would be light and fast. Look into
> the links below to see if you can find a better suited framework from your
> development.
>
> 1 - http://www.sitepoint.com/top-10-front-end-development-frameworks/
> 2 - http://handlebarsjs.com/
>
>
> Thank you.
>
> On Tue, Oct 21, 2014 at 12:46 AM, CD Athuraliya 
> wrote:
>
>> Hi Shiva,
>>
>> The GUI will be mainly used for user interaction and geo map integration.
>> I am currently using Bootstrap with jQuery for this purpose. Kindly
>> point out if there is a better choice.
>>
>> Thanks.
>>
>> On Mon, Oct 20, 2014 at 5:42 PM, Shiva Balachandran 
>> wrote:
>>
>>> Hi CD,
>>>
>>> Can you please be more specific about what goes in the web based GUI.
>>> There are many frameworks/modules, used for such purposes but depending
>>> on your necessities, you can narrow down a suitable one.
>>> Any mock-ups or designs?
>>>
>>> Thank you,
>>>
>>> Shiva Balachandran
>>>
>>> On Fri, Oct 17, 2014 at 11:09 AM, CD Athuraliya 
>>> wrote:
>>>
 Hi Chamila,

 Thanks for the tip on license compatibility. I will look into this.

 Best regards.

 On Fri, Oct 17, 2014 at 11:05 AM, Chamila De Alwis 
 wrote:

> Hi,
>
> I haven't done any serious front end work, but as an additional
> concern when selecting frameworks and modules, have a look at the license
> they are using. They should be licensed under Apache License v2.0 or under
> a compatible license. It might help going briefly through the
> articles[1][2][3] on Apache about license compatibility before selecting a
> particular module.
>
> Perhaps Dakshika can add ideas on the specific frameworks to use
>
> [1] - http://www.apache.org/licenses/GPL-compatibility.html
> [2] - http://www.apache.org/legal/3party.html
> [3] - http://www.apache.org/legal/resolved.html
>
>
> Regards,
> Chamila de Alwis
> Software Engineer | WSO2 | +94772207163
> Blog: code.chamiladealwis.com
>
>
>
> On Fri, Oct 17, 2014 at 10:40 AM, CD Athuraliya 
> wrote:
>
>> Hi all,
>>
>> I am developing a web based GUI as a part of this project [1]. Are
>> there any de facto frameworks/modules, used for such purposes? Any help
>> would be much appreciated.
>>
>> [1] https://redmine.wso2.com/issues/3327
>>
>> Thanks.
>>
>> --
>> *CD Athuraliya*
>> Software Engineering Intern
>> WSO2, Inc.
>> lean . enterprise . middleware
>> Mobile: +94 716288847
>> LinkedIn  | Twitter
>>  | Blog
>> 
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>


 --
 *CD Athuraliya*
 Software Engineering Intern
 WSO2, Inc.
 lean . enterprise . middleware
 Mobile: +94 716288847
 LinkedIn  | Twitter
  | Blog
 

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


>>>
>>>
>>> --
>>> Shiva Balachandran
>>> Software Engineer
>>> WSO2 Inc.
>>>
>>> Mobile - +94 774445788
>>>
>>
>>
>>
>> --
>> *CD Athuraliya*
>> Software Engineering Intern
>> WSO2, Inc.
>> lean . enterprise . middleware
>> Mobile: +94 716288847
>> LinkedIn  | Twitter
>>  | Blog
>> 
>>
>
>
>
> --
> Shiva Balachandran
> Software Engineer
> WSO2 Inc.
>
> Mobile - +94 774445788
>



-- 
*CD Athuraliya*
Software Engineering Intern
WSO2, Inc.
lean . enterprise . middleware
Mobile: +94 716288847
LinkedIn  | Twitter
 | Blog 
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Danesh Kuruppu
Congrats Rajkumar!!!

On Tue, Oct 21, 2014 at 10:43 AM, Anuruddha Premalal 
wrote:

> Congratulations !!
>
> On Tue, Oct 21, 2014 at 10:38 AM, Vinuri Perera  wrote:
>
>> Congratulations  :)
>>
>> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara  wrote:
>>
>>> Congratulations Rajkumar!
>>>
>>> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
>>> wrote:
>>>
 Congratulations !


 On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
 parapa...@wso2.com> wrote:

> Congratulations Rajkumar .
>
> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
> abima...@wso2.com> wrote:
>
>> Congrats!
>>
>> On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody <
>> dine...@wso2.com> wrote:
>>
>>> Congratulations.. !
>>>
>>> On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne 
>>> wrote:
>>>
 Congratulations Rajkumar!!

 On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
 wrote:

> Congratulation Rajkumar!
>
>
> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
> god...@wso2.com> wrote:
>
>> Congratulation Rajkumar ...!
>>
>> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena > > wrote:
>>
>>> Congratulation!!
>>>
>>> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
>>> prasa...@wso2.com> wrote:
>>>
 Congratulations Rajkumar...

 On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
 thili...@wso2.com> wrote:

> Congratulations Rajkumar !!!
>
> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
> daksh...@wso2.com> wrote:
>
>> Congratulations Raj !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
>> samee...@wso2.com> wrote:
>>
>>> Congratz Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>>> suh...@wso2.com> wrote:
>>>
 Congrats Rajkumar!!!

 On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
 sh...@wso2.com> wrote:

> Congrats !!
>
> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
> kas...@wso2.com> wrote:
>
>> Congrats Rajkumar !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Raj as a WSO2 Committer.
>>> Raj has done great contributions to Apache Stratos and WSO2 
>>> Private PaaS
>>> products. And in recognition of his contribution he has 
>>> been voted as a
>>> WSO2 commiter.
>>>
>>> Raj, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Shiroshica Kulatilake
>
> Architect,
>>

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Danesh Kuruppu
Congrats Lasindu !!!

On Tue, Oct 21, 2014 at 10:27 AM, Niranda Perera  wrote:

> congrats!
>
> On Tue, Oct 21, 2014 at 10:24 AM, Tharindu Dharmarathna <
> tharin...@wso2.com> wrote:
>
>> Congratulations Lasindu !
>>
>> On Tue, Oct 21, 2014 at 10:20 AM, Vijitha Ekanayake 
>> wrote:
>>
>>> Congratulations Lasindu !!!
>>>
>>> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara 
>>> wrote:
>>>
 Congratulations Lasindu!

 On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
 wrote:

> Congratulations Lasindu !
>
>
> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
> abima...@wso2.com> wrote:
>
>> Congrats!
>>
>> On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody <
>> dine...@wso2.com> wrote:
>>
>>> Congratulations Lasindu... ! :)
>>>
>>> On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne 
>>> wrote:
>>>
 Congratulations Lasindu!!

 On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte <
 manu...@wso2.com> wrote:

> Congratulations !!!
>
> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage  > wrote:
>
>> Congratulations Lasindu !
>>
>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>> god...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena <
>>> ros...@wso2.com> wrote:
>>>
 Congratulation!!

 On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera <
 milin...@wso2.com> wrote:

> Congratulations Lasindu !!
>
> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
> shashi...@wso2.com> wrote:
>
>> Congrats Lasindu
>>
>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>> thili...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
>>> daksh...@wso2.com> wrote:
>>>
 Congratulations Lasindu !

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

 On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
 tharin...@wso2.com> wrote:

> Congratulations Lasindu !!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
> suh...@wso2.com> wrote:
>
>> Congrats Lasindu!!!
>>
>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
>> kas...@wso2.com> wrote:
>>
>>> Congrats Lasindu !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
>>> lak...@wso2.com> wrote:
>>>
 Hi all,

 It's my pleasure to announce Lasindu as a WSO2
 Committer. Lasindu has done great contributions to Apache 
 Stratos and WSO2
 Private PaaS products. And in recognition of his 
 contribution he has been
 voted as a WSO2 commiter.

 Lasindu, welcome aboard and keep up 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] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Anuruddha Premalal
Congratulations !!

On Tue, Oct 21, 2014 at 10:38 AM, Vinuri Perera  wrote:

> Congratulations  :)
>
> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara  wrote:
>
>> Congratulations Rajkumar!
>>
>> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
>> wrote:
>>
>>> Congratulations !
>>>
>>>
>>> On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
>>> parapa...@wso2.com> wrote:
>>>
 Congratulations Rajkumar .

 On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats!
>
> On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody <
> dine...@wso2.com> wrote:
>
>> Congratulations.. !
>>
>> On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne 
>> wrote:
>>
>>> Congratulations Rajkumar!!
>>>
>>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
>>> wrote:
>>>
 Congratulation Rajkumar!


 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
 god...@wso2.com> wrote:

> Congratulation Rajkumar ...!
>
> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena 
> wrote:
>
>> Congratulation!!
>>
>> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
>> prasa...@wso2.com> wrote:
>>
>>> Congratulations Rajkumar...
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>>> thili...@wso2.com> wrote:
>>>
 Congratulations Rajkumar !!!

 On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Raj !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
> samee...@wso2.com> wrote:
>
>> Congratz Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>> suh...@wso2.com> wrote:
>>
>>> Congrats Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>>> sh...@wso2.com> wrote:
>>>
 Congrats !!

 On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
 kas...@wso2.com> wrote:

> Congrats Rajkumar !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
> lak...@wso2.com> wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Raj as a WSO2 Committer. Raj
>> has done great contributions to Apache Stratos and WSO2 
>> Private PaaS
>> products. And in recognition of his contribution he has been 
>> voted as a
>> WSO2 commiter.
>>
>> Raj, welcome aboard and keep up 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
>>
>>
>
> ___
> 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
>>>

Re: [Dev] Front-end framework to use

2014-10-20 Thread Shiva Balachandran
Hi CD,

If functionality of the UI can be achieved using Bootstrap with jQuery it
would be a good way to proceed, as it would be light and fast. Look into
the links below to see if you can find a better suited framework from your
development.

1 - http://www.sitepoint.com/top-10-front-end-development-frameworks/
2 - http://handlebarsjs.com/


Thank you.

On Tue, Oct 21, 2014 at 12:46 AM, CD Athuraliya  wrote:

> Hi Shiva,
>
> The GUI will be mainly used for user interaction and geo map integration.
> I am currently using Bootstrap with jQuery for this purpose. Kindly point
> out if there is a better choice.
>
> Thanks.
>
> On Mon, Oct 20, 2014 at 5:42 PM, Shiva Balachandran 
> wrote:
>
>> Hi CD,
>>
>> Can you please be more specific about what goes in the web based GUI.
>> There are many frameworks/modules, used for such purposes but depending
>> on your necessities, you can narrow down a suitable one.
>> Any mock-ups or designs?
>>
>> Thank you,
>>
>> Shiva Balachandran
>>
>> On Fri, Oct 17, 2014 at 11:09 AM, CD Athuraliya 
>> wrote:
>>
>>> Hi Chamila,
>>>
>>> Thanks for the tip on license compatibility. I will look into this.
>>>
>>> Best regards.
>>>
>>> On Fri, Oct 17, 2014 at 11:05 AM, Chamila De Alwis 
>>> wrote:
>>>
 Hi,

 I haven't done any serious front end work, but as an additional concern
 when selecting frameworks and modules, have a look at the license they are
 using. They should be licensed under Apache License v2.0 or under a
 compatible license. It might help going briefly through the
 articles[1][2][3] on Apache about license compatibility before selecting a
 particular module.

 Perhaps Dakshika can add ideas on the specific frameworks to use

 [1] - http://www.apache.org/licenses/GPL-compatibility.html
 [2] - http://www.apache.org/legal/3party.html
 [3] - http://www.apache.org/legal/resolved.html


 Regards,
 Chamila de Alwis
 Software Engineer | WSO2 | +94772207163
 Blog: code.chamiladealwis.com



 On Fri, Oct 17, 2014 at 10:40 AM, CD Athuraliya 
 wrote:

> Hi all,
>
> I am developing a web based GUI as a part of this project [1]. Are
> there any de facto frameworks/modules, used for such purposes? Any help
> would be much appreciated.
>
> [1] https://redmine.wso2.com/issues/3327
>
> Thanks.
>
> --
> *CD Athuraliya*
> Software Engineering Intern
> WSO2, Inc.
> lean . enterprise . middleware
> Mobile: +94 716288847
> LinkedIn  | Twitter
>  | Blog
> 
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>

>>>
>>>
>>> --
>>> *CD Athuraliya*
>>> Software Engineering Intern
>>> WSO2, Inc.
>>> lean . enterprise . middleware
>>> Mobile: +94 716288847
>>> LinkedIn  | Twitter
>>>  | Blog
>>> 
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Shiva Balachandran
>> Software Engineer
>> WSO2 Inc.
>>
>> Mobile - +94 774445788
>>
>
>
>
> --
> *CD Athuraliya*
> Software Engineering Intern
> WSO2, Inc.
> lean . enterprise . middleware
> Mobile: +94 716288847
> LinkedIn  | Twitter
>  | Blog
> 
>



-- 
Shiva Balachandran
Software Engineer
WSO2 Inc.

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


Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Vinuri Perera
Congratulations  :)

On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara  wrote:

> Congratulations Rajkumar!
>
> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
> wrote:
>
>> Congratulations !
>>
>>
>> On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
>> parapa...@wso2.com> wrote:
>>
>>> Congratulations Rajkumar .
>>>
>>> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan >> > wrote:
>>>
 Congrats!

 On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody >>> > wrote:

> Congratulations.. !
>
> On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne 
> wrote:
>
>> Congratulations Rajkumar!!
>>
>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
>> wrote:
>>
>>> Congratulation Rajkumar!
>>>
>>>
>>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>>> god...@wso2.com> wrote:
>>>
 Congratulation Rajkumar ...!

 On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena 
 wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
> prasa...@wso2.com> wrote:
>
>> Congratulations Rajkumar...
>>
>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>> thili...@wso2.com> wrote:
>>
>>> Congratulations Rajkumar !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
>>> daksh...@wso2.com> wrote:
>>>
 Congratulations Raj !

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

 On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
 samee...@wso2.com> wrote:

> Congratz Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
> suh...@wso2.com> wrote:
>
>> Congrats Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>> sh...@wso2.com> wrote:
>>
>>> Congrats !!
>>>
>>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
>>> kas...@wso2.com> wrote:
>>>
 Congrats Rajkumar !!!

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

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


 On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi all,
>
> It's my pleasure to announce Raj as a WSO2 Committer. Raj
> has done great contributions to Apache Stratos and WSO2 
> Private PaaS
> products. And in recognition of his contribution he has been 
> voted as a
> WSO2 commiter.
>
> Raj, welcome aboard and keep up 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
>
>

 ___
 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
>>>
>>>
>>
>>
>> --
>> Suhan Dharmasuriya
>> Software Engineer - Test Automation
>>
>> *WSO2, Inc. *
>

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Gayashan Amarasinghe
Congratulations Rajkumar!!!

On Tue, Oct 21, 2014 at 10:31 AM, Niranda Perera  wrote:

> congrats!
>
> On Tue, Oct 21, 2014 at 10:22 AM, Vijitha Ekanayake 
> wrote:
>
>> Congratulations Raj !!!
>>
>> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara  wrote:
>>
>>> Congratulations Rajkumar!
>>>
>>> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
>>> wrote:
>>>
 Congratulations !


 On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
 parapa...@wso2.com> wrote:

> Congratulations Rajkumar .
>
> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
> abima...@wso2.com> wrote:
>
>> Congrats!
>>
>> On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody <
>> dine...@wso2.com> wrote:
>>
>>> Congratulations.. !
>>>
>>> On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne 
>>> wrote:
>>>
 Congratulations Rajkumar!!

 On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
 wrote:

> Congratulation Rajkumar!
>
>
> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
> god...@wso2.com> wrote:
>
>> Congratulation Rajkumar ...!
>>
>> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena > > wrote:
>>
>>> Congratulation!!
>>>
>>> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
>>> prasa...@wso2.com> wrote:
>>>
 Congratulations Rajkumar...

 On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
 thili...@wso2.com> wrote:

> Congratulations Rajkumar !!!
>
> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
> daksh...@wso2.com> wrote:
>
>> Congratulations Raj !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
>> samee...@wso2.com> wrote:
>>
>>> Congratz Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>>> suh...@wso2.com> wrote:
>>>
 Congrats Rajkumar!!!

 On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
 sh...@wso2.com> wrote:

> Congrats !!
>
> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
> kas...@wso2.com> wrote:
>
>> Congrats Rajkumar !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Raj as a WSO2 Committer.
>>> Raj has done great contributions to Apache Stratos and WSO2 
>>> Private PaaS
>>> products. And in recognition of his contribution he has 
>>> been voted as a
>>> WSO2 commiter.
>>>
>>> Raj, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Shiroshica Kulatilake
>
> Architect,
>>

Re: [Dev] Front-end framework to use

2014-10-20 Thread Dhanuka De Silva
Hi

Can you share more information on what you are trying to achieve here? any
user stories ?

Redmine does not have any detailed information of this ticket.

Cheers

On Tue, Oct 21, 2014 at 10:29 AM, Sameera Medagammaddegedara <
samee...@wso2.com> wrote:

> Hi CD,
>
> Are you making a single page application?
>
>
> Thank You,
> Sameera
>
> On Tue, Oct 21, 2014 at 12:46 AM, CD Athuraliya 
> wrote:
>
>> Hi Shiva,
>>
>> The GUI will be mainly used for user interaction and geo map integration.
>> I am currently using Bootstrap with jQuery for this purpose. Kindly
>> point out if there is a better choice.
>>
>> Thanks.
>>
>> On Mon, Oct 20, 2014 at 5:42 PM, Shiva Balachandran 
>> wrote:
>>
>>> Hi CD,
>>>
>>> Can you please be more specific about what goes in the web based GUI.
>>> There are many frameworks/modules, used for such purposes but depending
>>> on your necessities, you can narrow down a suitable one.
>>> Any mock-ups or designs?
>>>
>>> Thank you,
>>>
>>> Shiva Balachandran
>>>
>>> On Fri, Oct 17, 2014 at 11:09 AM, CD Athuraliya 
>>> wrote:
>>>
 Hi Chamila,

 Thanks for the tip on license compatibility. I will look into this.

 Best regards.

 On Fri, Oct 17, 2014 at 11:05 AM, Chamila De Alwis 
 wrote:

> Hi,
>
> I haven't done any serious front end work, but as an additional
> concern when selecting frameworks and modules, have a look at the license
> they are using. They should be licensed under Apache License v2.0 or under
> a compatible license. It might help going briefly through the
> articles[1][2][3] on Apache about license compatibility before selecting a
> particular module.
>
> Perhaps Dakshika can add ideas on the specific frameworks to use
>
> [1] - http://www.apache.org/licenses/GPL-compatibility.html
> [2] - http://www.apache.org/legal/3party.html
> [3] - http://www.apache.org/legal/resolved.html
>
>
> Regards,
> Chamila de Alwis
> Software Engineer | WSO2 | +94772207163
> Blog: code.chamiladealwis.com
>
>
>
> On Fri, Oct 17, 2014 at 10:40 AM, CD Athuraliya 
> wrote:
>
>> Hi all,
>>
>> I am developing a web based GUI as a part of this project [1]. Are
>> there any de facto frameworks/modules, used for such purposes? Any help
>> would be much appreciated.
>>
>> [1] https://redmine.wso2.com/issues/3327
>>
>> Thanks.
>>
>> --
>> *CD Athuraliya*
>> Software Engineering Intern
>> WSO2, Inc.
>> lean . enterprise . middleware
>> Mobile: +94 716288847
>> LinkedIn  | Twitter
>>  | Blog
>> 
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>


 --
 *CD Athuraliya*
 Software Engineering Intern
 WSO2, Inc.
 lean . enterprise . middleware
 Mobile: +94 716288847
 LinkedIn  | Twitter
  | Blog
 

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


>>>
>>>
>>> --
>>> Shiva Balachandran
>>> Software Engineer
>>> WSO2 Inc.
>>>
>>> Mobile - +94 774445788
>>>
>>
>>
>>
>> --
>> *CD Athuraliya*
>> Software Engineering Intern
>> WSO2, Inc.
>> lean . enterprise . middleware
>> Mobile: +94 716288847
>> LinkedIn  | Twitter
>>  | Blog
>> 
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Sameera Medagammaddegedara
> Software Engineer
>
> Contact:
> Email: samee...@wso2.com
> Mobile: + 94 077 255 3005
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Dhanuka De Silva
m: +94 773 887816
e: dhanu...@wso2.com
w: http://www.wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Niranda Perera
congrats!

On Tue, Oct 21, 2014 at 10:22 AM, Vijitha Ekanayake 
wrote:

> Congratulations Raj !!!
>
> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara  wrote:
>
>> Congratulations Rajkumar!
>>
>> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
>> wrote:
>>
>>> Congratulations !
>>>
>>>
>>> On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
>>> parapa...@wso2.com> wrote:
>>>
 Congratulations Rajkumar .

 On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats!
>
> On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody <
> dine...@wso2.com> wrote:
>
>> Congratulations.. !
>>
>> On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne 
>> wrote:
>>
>>> Congratulations Rajkumar!!
>>>
>>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
>>> wrote:
>>>
 Congratulation Rajkumar!


 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
 god...@wso2.com> wrote:

> Congratulation Rajkumar ...!
>
> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena 
> wrote:
>
>> Congratulation!!
>>
>> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
>> prasa...@wso2.com> wrote:
>>
>>> Congratulations Rajkumar...
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>>> thili...@wso2.com> wrote:
>>>
 Congratulations Rajkumar !!!

 On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Raj !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
> samee...@wso2.com> wrote:
>
>> Congratz Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>> suh...@wso2.com> wrote:
>>
>>> Congrats Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>>> sh...@wso2.com> wrote:
>>>
 Congrats !!

 On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
 kas...@wso2.com> wrote:

> Congrats Rajkumar !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
> lak...@wso2.com> wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Raj as a WSO2 Committer. Raj
>> has done great contributions to Apache Stratos and WSO2 
>> Private PaaS
>> products. And in recognition of his contribution he has been 
>> voted as a
>> WSO2 commiter.
>>
>> Raj, welcome aboard and keep up 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
>>
>>
>
> ___
> 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

Re: [Dev] Front-end framework to use

2014-10-20 Thread Sameera Medagammaddegedara
Hi CD,

Are you making a single page application?


Thank You,
Sameera

On Tue, Oct 21, 2014 at 12:46 AM, CD Athuraliya  wrote:

> Hi Shiva,
>
> The GUI will be mainly used for user interaction and geo map integration.
> I am currently using Bootstrap with jQuery for this purpose. Kindly point
> out if there is a better choice.
>
> Thanks.
>
> On Mon, Oct 20, 2014 at 5:42 PM, Shiva Balachandran 
> wrote:
>
>> Hi CD,
>>
>> Can you please be more specific about what goes in the web based GUI.
>> There are many frameworks/modules, used for such purposes but depending
>> on your necessities, you can narrow down a suitable one.
>> Any mock-ups or designs?
>>
>> Thank you,
>>
>> Shiva Balachandran
>>
>> On Fri, Oct 17, 2014 at 11:09 AM, CD Athuraliya 
>> wrote:
>>
>>> Hi Chamila,
>>>
>>> Thanks for the tip on license compatibility. I will look into this.
>>>
>>> Best regards.
>>>
>>> On Fri, Oct 17, 2014 at 11:05 AM, Chamila De Alwis 
>>> wrote:
>>>
 Hi,

 I haven't done any serious front end work, but as an additional concern
 when selecting frameworks and modules, have a look at the license they are
 using. They should be licensed under Apache License v2.0 or under a
 compatible license. It might help going briefly through the
 articles[1][2][3] on Apache about license compatibility before selecting a
 particular module.

 Perhaps Dakshika can add ideas on the specific frameworks to use

 [1] - http://www.apache.org/licenses/GPL-compatibility.html
 [2] - http://www.apache.org/legal/3party.html
 [3] - http://www.apache.org/legal/resolved.html


 Regards,
 Chamila de Alwis
 Software Engineer | WSO2 | +94772207163
 Blog: code.chamiladealwis.com



 On Fri, Oct 17, 2014 at 10:40 AM, CD Athuraliya 
 wrote:

> Hi all,
>
> I am developing a web based GUI as a part of this project [1]. Are
> there any de facto frameworks/modules, used for such purposes? Any help
> would be much appreciated.
>
> [1] https://redmine.wso2.com/issues/3327
>
> Thanks.
>
> --
> *CD Athuraliya*
> Software Engineering Intern
> WSO2, Inc.
> lean . enterprise . middleware
> Mobile: +94 716288847
> LinkedIn  | Twitter
>  | Blog
> 
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>

>>>
>>>
>>> --
>>> *CD Athuraliya*
>>> Software Engineering Intern
>>> WSO2, Inc.
>>> lean . enterprise . middleware
>>> Mobile: +94 716288847
>>> LinkedIn  | Twitter
>>>  | Blog
>>> 
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Shiva Balachandran
>> Software Engineer
>> WSO2 Inc.
>>
>> Mobile - +94 774445788
>>
>
>
>
> --
> *CD Athuraliya*
> Software Engineering Intern
> WSO2, Inc.
> lean . enterprise . middleware
> Mobile: +94 716288847
> LinkedIn  | Twitter
>  | Blog
> 
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Sameera Medagammaddegedara
Software Engineer

Contact:
Email: samee...@wso2.com
Mobile: + 94 077 255 3005
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Niranda Perera
congrats!

On Tue, Oct 21, 2014 at 10:24 AM, Tharindu Dharmarathna 
wrote:

> Congratulations Lasindu !
>
> On Tue, Oct 21, 2014 at 10:20 AM, Vijitha Ekanayake 
> wrote:
>
>> Congratulations Lasindu !!!
>>
>> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara  wrote:
>>
>>> Congratulations Lasindu!
>>>
>>> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
>>> wrote:
>>>
 Congratulations Lasindu !


 On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan <
 abima...@wso2.com> wrote:

> Congrats!
>
> On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody <
> dine...@wso2.com> wrote:
>
>> Congratulations Lasindu... ! :)
>>
>> On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne 
>> wrote:
>>
>>> Congratulations Lasindu!!
>>>
>>> On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte <
>>> manu...@wso2.com> wrote:
>>>
 Congratulations !!!

 On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
 wrote:

> Congratulations Lasindu !
>
> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
> god...@wso2.com> wrote:
>
>> Congratulations Lasindu !
>>
>> On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena > > wrote:
>>
>>> Congratulation!!
>>>
>>> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera <
>>> milin...@wso2.com> wrote:
>>>
 Congratulations Lasindu !!

 On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
 shashi...@wso2.com> wrote:

> Congrats Lasindu
>
> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
> thili...@wso2.com> wrote:
>
>> Congratulations Lasindu !!!
>>
>> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
>> daksh...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
>>> tharin...@wso2.com> wrote:
>>>
 Congratulations Lasindu !!

 On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
 suh...@wso2.com> wrote:

> Congrats Lasindu!!!
>
> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
> kas...@wso2.com> wrote:
>
>> Congrats Lasindu !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Lasindu as a WSO2
>>> Committer. Lasindu has done great contributions to Apache 
>>> Stratos and WSO2
>>> Private PaaS products. And in recognition of his 
>>> contribution he has been
>>> voted as a WSO2 commiter.
>>>
>>> Lasindu, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Suhan Dharmasuriya
>>>

Re: [Dev] API Manager 1.8.0 pack 20-10-2014

2014-10-20 Thread Uvindra Dias Jayasinha
will do, still building it

On 21 October 2014 10:24, Abimaran Kugathasan  wrote:

> Hi Uvindra,
>
> Is it possible to commit p2 repo also here?
>
> On Mon, Oct 20, 2014 at 7:22 PM, Uvindra Dias Jayasinha 
> wrote:
>
>> Hi All,
>>
>> $subject can be found at,
>>
>> https://svn.wso2.org/repos/wso2/scratch/chunk13-release/20-10-2014/
>>
>> --
>> Regards,
>> Uvindra
>>
>> Mobile: 33962
>>
>
>
>
> --
> Thanks
> Abimaran Kugathasan
>
> Software Engineer | WSO2 Inc
> Data & APIs Technologies Team
> Mobile : +94 773922820
>
> 
> 
>   
> 
>
>


-- 
Regards,
Uvindra

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


Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Tharindu Dharmarathna
Congratulations Lasindu !

On Tue, Oct 21, 2014 at 10:20 AM, Vijitha Ekanayake 
wrote:

> Congratulations Lasindu !!!
>
> On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara  wrote:
>
>> Congratulations Lasindu!
>>
>> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
>> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>>
>>> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan >> > wrote:
>>>
 Congrats!

 On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody >>> > wrote:

> Congratulations Lasindu... ! :)
>
> On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne 
> wrote:
>
>> Congratulations Lasindu!!
>>
>> On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte <
>> manu...@wso2.com> wrote:
>>
>>> Congratulations !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
>>> wrote:
>>>
 Congratulations Lasindu !

 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
 god...@wso2.com> wrote:

> Congratulations Lasindu !
>
> On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena 
> wrote:
>
>> Congratulation!!
>>
>> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera <
>> milin...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !!
>>>
>>> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
>>> shashi...@wso2.com> wrote:
>>>
 Congrats Lasindu

 On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
 thili...@wso2.com> wrote:

> Congratulations Lasindu !!!
>
> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
> daksh...@wso2.com> wrote:
>
>> Congratulations Lasindu !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
>> tharin...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>>> suh...@wso2.com> wrote:
>>>
 Congrats Lasindu!!!

 On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
 kas...@wso2.com> wrote:

> Congrats Lasindu !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
> lak...@wso2.com> wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Lasindu as a WSO2 Committer.
>> Lasindu has done great contributions to Apache Stratos and 
>> WSO2 Private
>> PaaS products. And in recognition of his contribution he has 
>> been voted as
>> a WSO2 commiter.
>>
>> Lasindu, welcome aboard and keep up 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
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Suhan Dharmasuriya
 Software Engineer - Test Automation

 *WSO2, Inc. *

 lean . enterprise . middleware
 Tel: +94 112 145345
 Mob: +94 779 869138
 Blog: http://suhan-ope

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Vijitha Ekanayake
Congratulations Raj !!!

On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara  wrote:

> Congratulations Rajkumar!
>
> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
> wrote:
>
>> Congratulations !
>>
>>
>> On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
>> parapa...@wso2.com> wrote:
>>
>>> Congratulations Rajkumar .
>>>
>>> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan >> > wrote:
>>>
 Congrats!

 On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody >>> > wrote:

> Congratulations.. !
>
> On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne 
> wrote:
>
>> Congratulations Rajkumar!!
>>
>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
>> wrote:
>>
>>> Congratulation Rajkumar!
>>>
>>>
>>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>>> god...@wso2.com> wrote:
>>>
 Congratulation Rajkumar ...!

 On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena 
 wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
> prasa...@wso2.com> wrote:
>
>> Congratulations Rajkumar...
>>
>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>> thili...@wso2.com> wrote:
>>
>>> Congratulations Rajkumar !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
>>> daksh...@wso2.com> wrote:
>>>
 Congratulations Raj !

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

 On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
 samee...@wso2.com> wrote:

> Congratz Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
> suh...@wso2.com> wrote:
>
>> Congrats Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>> sh...@wso2.com> wrote:
>>
>>> Congrats !!
>>>
>>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
>>> kas...@wso2.com> wrote:
>>>
 Congrats Rajkumar !!!

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

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


 On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi all,
>
> It's my pleasure to announce Raj as a WSO2 Committer. Raj
> has done great contributions to Apache Stratos and WSO2 
> Private PaaS
> products. And in recognition of his contribution he has been 
> voted as a
> WSO2 commiter.
>
> Raj, welcome aboard and keep up 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
>
>

 ___
 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
>>>
>>>
>>
>>
>> --
>> Suhan Dharmasuriya
>> Software Engineer - Test Automation
>>
>> *WSO2, Inc. *
>

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Vijitha Ekanayake
Congratulations Lasindu !!!

On Tue, Oct 21, 2014 at 10:18 AM, Harsha Kumara  wrote:

> Congratulations Lasindu!
>
> On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
> wrote:
>
>> Congratulations Lasindu !
>>
>>
>> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan 
>> wrote:
>>
>>> Congrats!
>>>
>>> On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody 
>>> wrote:
>>>
 Congratulations Lasindu... ! :)

 On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne 
 wrote:

> Congratulations Lasindu!!
>
> On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte <
> manu...@wso2.com> wrote:
>
>> Congratulations !!!
>>
>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
>> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>>> god...@wso2.com> wrote:
>>>
 Congratulations Lasindu !

 On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena 
 wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera  > wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
>> shashi...@wso2.com> wrote:
>>
>>> Congrats Lasindu
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>>> thili...@wso2.com> wrote:
>>>
 Congratulations Lasindu !!!

 On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Lasindu !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
> tharin...@wso2.com> wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>> suh...@wso2.com> wrote:
>>
>>> Congrats Lasindu!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
>>> kas...@wso2.com> wrote:
>>>
 Congrats Lasindu !!!

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

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


 On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi all,
>
> It's my pleasure to announce Lasindu as a WSO2 Committer.
> Lasindu has done great contributions to Apache Stratos and 
> WSO2 Private
> PaaS products. And in recognition of his contribution he has 
> been voted as
> a WSO2 commiter.
>
> Lasindu, welcome aboard and keep up 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
>
>

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


>>>
>>>
>>> --
>>> Suhan Dharmasuriya
>>> Software Engineer - Test Automation
>>>
>>> *WSO2, Inc. *
>>>
>>> lean . enterprise . middleware
>>> Tel: +94 112 145345
>>> Mob: +94 779 869138
>>> Blog: http://suhan-opensource.blogspot.com/
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>

Re: [Dev] Locking table issue observed when invoking dss service

2014-10-20 Thread Eranda Sooriyabandara
Resource versioning is expensive where high concurrency may not be
achievable. Please turn off the resource versioning is the best option.

thanks
Eranda

On Tue, Oct 21, 2014 at 10:14 AM, Chanika Geeganage 
wrote:

> Hi,
>
> This error has been occurred in a worker-manager clustered setup when
> invoking a dataservice which uses a carbon datasource saved in the
> registry. The complete stack trace can be found in [1]. What is the root
> cause of this issue? Can someone shed some light on this.
>
> [1] https://wso2.org/jira/browse/DS-975
> --
> Best Regards..
>
> Chanika Geeganage
> Software Engineer
> WSO2, Inc.; http://wso2.com
>
>


-- 

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

E-mail: eranda AT wso2.com
Mobile: +94 716 472 816
Linked-In: http://www.linkedin.com/in/erandasooriyabandara
Blog: http://emsooriyabandara.blogspot.com/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Harsha Kumara
Congratulations Rajkumar!

On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
wrote:

> Congratulations !
>
>
> On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
> parapa...@wso2.com> wrote:
>
>> Congratulations Rajkumar .
>>
>> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan 
>> wrote:
>>
>>> Congrats!
>>>
>>> On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody 
>>> wrote:
>>>
 Congratulations.. !

 On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne 
 wrote:

> Congratulations Rajkumar!!
>
> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
> wrote:
>
>> Congratulation Rajkumar!
>>
>>
>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>> god...@wso2.com> wrote:
>>
>>> Congratulation Rajkumar ...!
>>>
>>> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena 
>>> wrote:
>>>
 Congratulation!!

 On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
 prasa...@wso2.com> wrote:

> Congratulations Rajkumar...
>
> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
> thili...@wso2.com> wrote:
>
>> Congratulations Rajkumar !!!
>>
>> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
>> daksh...@wso2.com> wrote:
>>
>>> Congratulations Raj !
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
>>> samee...@wso2.com> wrote:
>>>
 Congratz Rajkumar!!!

 On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
 suh...@wso2.com> wrote:

> Congrats Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
> sh...@wso2.com> wrote:
>
>> Congrats !!
>>
>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
>> kas...@wso2.com> wrote:
>>
>>> Congrats Rajkumar !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
>>> lak...@wso2.com> wrote:
>>>
 Hi all,

 It's my pleasure to announce Raj as a WSO2 Committer. Raj
 has done great contributions to Apache Stratos and WSO2 
 Private PaaS
 products. And in recognition of his contribution he has been 
 voted as a
 WSO2 commiter.

 Raj, welcome aboard and keep up 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


>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Suhan Dharmasuriya
> Software Engineer - Test Automation
>
> *WSO2, Inc. *
>
> lean . enterprise . middleware
> Tel: +94 112 145345
> Mob: +94 779 869138
> Blog: http://suhan-opensource.blogspot.com/
>
> _

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Harsha Kumara
Congratulations Lasindu!

On Tue, Oct 21, 2014 at 10:13 AM, Ayesha Dissanayaka 
wrote:

> Congratulations Lasindu !
>
>
> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan 
> wrote:
>
>> Congrats!
>>
>> On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody 
>> wrote:
>>
>>> Congratulations Lasindu... ! :)
>>>
>>> On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne 
>>> wrote:
>>>
 Congratulations Lasindu!!

 On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte <
 manu...@wso2.com> wrote:

> Congratulations !!!
>
> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
> wrote:
>
>> Congratulations Lasindu !
>>
>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal <
>> god...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena 
>>> wrote:
>>>
 Congratulation!!

 On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera 
 wrote:

> Congratulations Lasindu !!
>
> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
> shashi...@wso2.com> wrote:
>
>> Congrats Lasindu
>>
>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
>> thili...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
>>> daksh...@wso2.com> wrote:
>>>
 Congratulations Lasindu !

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

 On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
 tharin...@wso2.com> wrote:

> Congratulations Lasindu !!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
> suh...@wso2.com> wrote:
>
>> Congrats Lasindu!!!
>>
>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
>> kas...@wso2.com> wrote:
>>
>>> Congrats Lasindu !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
>>> lak...@wso2.com> wrote:
>>>
 Hi all,

 It's my pleasure to announce Lasindu as a WSO2 Committer.
 Lasindu has done great contributions to Apache Stratos and 
 WSO2 Private
 PaaS products. And in recognition of his contribution he has 
 been voted as
 a WSO2 commiter.

 Lasindu, welcome aboard and keep up 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


>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Suhan Dharmasuriya
>> Software Engineer - Test Automation
>>
>> *WSO2, Inc. *
>>
>> lean . enterprise . middleware
>> Tel: +94 112 145345
>> Mob: +94 779 869138
>> Blog: http://suhan-opensource.blogspot.com/
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
>
> Tharindu Edirisinghe
> Software Engineer | WSO2 Inc
> Identity Server Team
> mobile : +94 775 181586
>
> _

[Dev] Locking table issue observed when invoking dss service

2014-10-20 Thread Chanika Geeganage
Hi,

This error has been occurred in a worker-manager clustered setup when
invoking a dataservice which uses a carbon datasource saved in the
registry. The complete stack trace can be found in [1]. What is the root
cause of this issue? Can someone shed some light on this.

[1] https://wso2.org/jira/browse/DS-975
-- 
Best Regards..

Chanika Geeganage
Software Engineer
WSO2, Inc.; http://wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Ayesha Dissanayaka
Congratulations Lasindu !


On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan 
wrote:

> Congrats!
>
> On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody 
> wrote:
>
>> Congratulations Lasindu... ! :)
>>
>> On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne 
>> wrote:
>>
>>> Congratulations Lasindu!!
>>>
>>> On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte <
>>> manu...@wso2.com> wrote:
>>>
 Congratulations !!!

 On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
 wrote:

> Congratulations Lasindu !
>
> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal  > wrote:
>
>> Congratulations Lasindu !
>>
>> On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena 
>> wrote:
>>
>>> Congratulation!!
>>>
>>> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera 
>>> wrote:
>>>
 Congratulations Lasindu !!

 On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
 shashi...@wso2.com> wrote:

> Congrats Lasindu
>
> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika <
> thili...@wso2.com> wrote:
>
>> Congratulations Lasindu !!!
>>
>> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
>> daksh...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
>>> tharin...@wso2.com> wrote:
>>>
 Congratulations Lasindu !!

 On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
 suh...@wso2.com> wrote:

> Congrats Lasindu!!!
>
> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
> kas...@wso2.com> wrote:
>
>> Congrats Lasindu !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Lasindu as a WSO2 Committer.
>>> Lasindu has done great contributions to Apache Stratos and WSO2 
>>> Private
>>> PaaS products. And in recognition of his contribution he has 
>>> been voted as
>>> a WSO2 commiter.
>>>
>>> Lasindu, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Suhan Dharmasuriya
> Software Engineer - Test Automation
>
> *WSO2, Inc. *
>
> lean . enterprise . middleware
> Tel: +94 112 145345
> Mob: +94 779 869138
> Blog: http://suhan-opensource.blogspot.com/
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --

 Tharindu Edirisinghe
 Software Engineer | WSO2 Inc
 Identity Server Team
 mobile : +94 775 181586

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


>>>
>>> ___
>>> Dev mailing

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Ayesha Dissanayaka
Congratulations !


On Tue, Oct 21, 2014 at 10:12 AM, Srisunmugaraja Paraparan <
parapa...@wso2.com> wrote:

> Congratulations Rajkumar .
>
> On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan 
> wrote:
>
>> Congrats!
>>
>> On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody 
>> wrote:
>>
>>> Congratulations.. !
>>>
>>> On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne 
>>> wrote:
>>>
 Congratulations Rajkumar!!

 On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
 wrote:

> Congratulation Rajkumar!
>
>
> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal  > wrote:
>
>> Congratulation Rajkumar ...!
>>
>> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena 
>> wrote:
>>
>>> Congratulation!!
>>>
>>> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla <
>>> prasa...@wso2.com> wrote:
>>>
 Congratulations Rajkumar...

 On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika >>> > wrote:

> Congratulations Rajkumar !!!
>
> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
> daksh...@wso2.com> wrote:
>
>> Congratulations Raj !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
>> samee...@wso2.com> wrote:
>>
>>> Congratz Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>>> suh...@wso2.com> wrote:
>>>
 Congrats Rajkumar!!!

 On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
 sh...@wso2.com> wrote:

> Congrats !!
>
> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
> kas...@wso2.com> wrote:
>
>> Congrats Rajkumar !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Raj as a WSO2 Committer. Raj
>>> has done great contributions to Apache Stratos and WSO2 Private 
>>> PaaS
>>> products. And in recognition of his contribution he has been 
>>> voted as a
>>> WSO2 commiter.
>>>
>>> Raj, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> 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
>
>


 --
 Suhan Dharmasuriya
 Software Engineer - Test Automation

 *WSO2, Inc. *

 lean . enterprise . middleware
 Tel: +94 112 145345
 Mob: +94 779 869138
 Blog: http://suhan-opensource.blogspot.com/

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


>>>
>>>
>>> --
>>>
>>>
>>>
>>> *Thanks & Regards,Sameera Jayaratna Software Engineer; **WSO2

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Srisunmugaraja Paraparan
Congratulations Rajkumar .

On Tue, Oct 21, 2014 at 10:10 AM, Abimaran Kugathasan 
wrote:

> Congrats!
>
> On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody 
> wrote:
>
>> Congratulations.. !
>>
>> On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne 
>> wrote:
>>
>>> Congratulations Rajkumar!!
>>>
>>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
>>> wrote:
>>>
 Congratulation Rajkumar!


 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal 
 wrote:

> Congratulation Rajkumar ...!
>
> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena 
> wrote:
>
>> Congratulation!!
>>
>> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla > > wrote:
>>
>>> Congratulations Rajkumar...
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
>>> wrote:
>>>
 Congratulations Rajkumar !!!

 On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Raj !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
> samee...@wso2.com> wrote:
>
>> Congratz Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>> suh...@wso2.com> wrote:
>>
>>> Congrats Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>>> sh...@wso2.com> wrote:
>>>
 Congrats !!

 On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva <
 kas...@wso2.com> wrote:

> Congrats Rajkumar !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
> lak...@wso2.com> wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Raj as a WSO2 Committer. Raj has
>> done great contributions to Apache Stratos and WSO2 Private PaaS 
>> products.
>> And in recognition of his contribution he has been voted as a 
>> WSO2 commiter.
>>
>> Raj, welcome aboard and keep up 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
>>
>>
>
> ___
> 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


>>>
>>>
>>> --
>>> Suhan Dharmasuriya
>>> Software Engineer - Test Automation
>>>
>>> *WSO2, Inc. *
>>>
>>> lean . enterprise . middleware
>>> Tel: +94 112 145345
>>> Mob: +94 779 869138
>>> Blog: http://suhan-opensource.blogspot.com/
>>>
>>> ___
>>> 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 += Lasindu Charith

2014-10-20 Thread Abimaran Kugathasan
Congrats!

On Tue, Oct 21, 2014 at 10:05 AM, Dinesh J Weerakkody 
wrote:

> Congratulations Lasindu... ! :)
>
> On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne 
> wrote:
>
>> Congratulations Lasindu!!
>>
>> On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte <
>> manu...@wso2.com> wrote:
>>
>>> Congratulations !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
>>> wrote:
>>>
 Congratulations Lasindu !

 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal 
 wrote:

> Congratulations Lasindu !
>
> On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena 
> wrote:
>
>> Congratulation!!
>>
>> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera 
>> wrote:
>>
>>> Congratulations Lasindu !!
>>>
>>> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
>>> shashi...@wso2.com> wrote:
>>>
 Congrats Lasindu

 On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika >>> > wrote:

> Congratulations Lasindu !!!
>
> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
> daksh...@wso2.com> wrote:
>
>> Congratulations Lasindu !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
>> tharin...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>>> suh...@wso2.com> wrote:
>>>
 Congrats Lasindu!!!

 On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva <
 kas...@wso2.com> wrote:

> Congrats Lasindu !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
> lak...@wso2.com> wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Lasindu as a WSO2 Committer.
>> Lasindu has done great contributions to Apache Stratos and WSO2 
>> Private
>> PaaS products. And in recognition of his contribution he has 
>> been voted as
>> a WSO2 commiter.
>>
>> Lasindu, welcome aboard and keep up 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
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Suhan Dharmasuriya
 Software Engineer - Test Automation

 *WSO2, Inc. *

 lean . enterprise . middleware
 Tel: +94 112 145345
 Mob: +94 779 869138
 Blog: http://suhan-opensource.blogspot.com/

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


>>>
>>>
>>> --
>>>
>>> Tharindu Edirisinghe
>>> Software Engineer | WSO2 Inc
>>> Identity Server Team
>>> mobile : +94 775 181586
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Thilini Shanika
> Software Engineer
> WSO2, Inc.; http://wso2.com
> 20, Palmgrove Avenue, Colombo 3
>>>

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Abimaran Kugathasan
Congrats!

On Tue, Oct 21, 2014 at 10:06 AM, Dinesh J Weerakkody 
wrote:

> Congratulations.. !
>
> On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne 
> wrote:
>
>> Congratulations Rajkumar!!
>>
>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
>> wrote:
>>
>>> Congratulation Rajkumar!
>>>
>>>
>>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal 
>>> wrote:
>>>
 Congratulation Rajkumar ...!

 On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena 
 wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla 
> wrote:
>
>> Congratulations Rajkumar...
>>
>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
>> wrote:
>>
>>> Congratulations Rajkumar !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
>>> daksh...@wso2.com> wrote:
>>>
 Congratulations Raj !

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

 On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
 samee...@wso2.com> wrote:

> Congratz Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
> suh...@wso2.com> wrote:
>
>> Congrats Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>> sh...@wso2.com> wrote:
>>
>>> Congrats !!
>>>
>>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva >> > wrote:
>>>
 Congrats Rajkumar !!!

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

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


 On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi all,
>
> It's my pleasure to announce Raj as a WSO2 Committer. Raj has
> done great contributions to Apache Stratos and WSO2 Private PaaS 
> products.
> And in recognition of his contribution he has been voted as a 
> WSO2 commiter.
>
> Raj, welcome aboard and keep up 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
>
>

 ___
 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
>>>
>>>
>>
>>
>> --
>> Suhan Dharmasuriya
>> Software Engineer - Test Automation
>>
>> *WSO2, Inc. *
>>
>> lean . enterprise . middleware
>> Tel: +94 112 145345
>> Mob: +94 779 869138
>> Blog: http://suhan-opensource.blogspot.com/
>>
>> ___
>> 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
>
>

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


>>>
>>>
>>> --
>>> Thilini Shanika
>>> Software Engineer
>>> WSO2, Inc.; htt

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Dinesh J Weerakkody
Congratulations.. !

On Tue, Oct 21, 2014 at 10:01 AM, Gayan Gunarathne  wrote:

> Congratulations Rajkumar!!
>
> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage  wrote:
>
>> Congratulation Rajkumar!
>>
>>
>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal 
>> wrote:
>>
>>> Congratulation Rajkumar ...!
>>>
>>> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena 
>>> wrote:
>>>
 Congratulation!!

 On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla 
 wrote:

> Congratulations Rajkumar...
>
> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
> wrote:
>
>> Congratulations Rajkumar !!!
>>
>> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
>> daksh...@wso2.com> wrote:
>>
>>> Congratulations Raj !
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna <
>>> samee...@wso2.com> wrote:
>>>
 Congratz Rajkumar!!!

 On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
 suh...@wso2.com> wrote:

> Congrats Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
> sh...@wso2.com> wrote:
>
>> Congrats !!
>>
>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva 
>> wrote:
>>
>>> Congrats Rajkumar !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
>>> lak...@wso2.com> wrote:
>>>
 Hi all,

 It's my pleasure to announce Raj as a WSO2 Committer. Raj has
 done great contributions to Apache Stratos and WSO2 Private PaaS 
 products.
 And in recognition of his contribution he has been voted as a WSO2 
 commiter.

 Raj, welcome aboard and keep up 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


>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Suhan Dharmasuriya
> Software Engineer - Test Automation
>
> *WSO2, Inc. *
>
> lean . enterprise . middleware
> Tel: +94 112 145345
> Mob: +94 779 869138
> Blog: http://suhan-opensource.blogspot.com/
>
> ___
> 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


>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Thilini Shanika
>> Software Engineer
>> WSO2, Inc.; http://wso2.com
>> 20, Palmgrove Avenue, Colombo 3
>>
>> E-mail: tgtshan...@gmail.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Dinesh J Weerakkody
Congratulations Lasindu... ! :)

On Tue, Oct 21, 2014 at 10:00 AM, Gayan Gunarathne  wrote:

> Congratulations Lasindu!!
>
> On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte <
> manu...@wso2.com> wrote:
>
>> Congratulations !!!
>>
>> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage 
>> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal 
>>> wrote:
>>>
 Congratulations Lasindu !

 On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena 
 wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera 
> wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
>> shashi...@wso2.com> wrote:
>>
>>> Congrats Lasindu
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
>>> wrote:
>>>
 Congratulations Lasindu !!!

 On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Lasindu !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
> tharin...@wso2.com> wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
>> suh...@wso2.com> wrote:
>>
>>> Congrats Lasindu!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva >> > wrote:
>>>
 Congrats Lasindu !!!

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

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


 On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi all,
>
> It's my pleasure to announce Lasindu as a WSO2 Committer.
> Lasindu has done great contributions to Apache Stratos and WSO2 
> Private
> PaaS products. And in recognition of his contribution he has been 
> voted as
> a WSO2 commiter.
>
> Lasindu, welcome aboard and keep up 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
>
>

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


>>>
>>>
>>> --
>>> Suhan Dharmasuriya
>>> Software Engineer - Test Automation
>>>
>>> *WSO2, Inc. *
>>>
>>> lean . enterprise . middleware
>>> Tel: +94 112 145345
>>> Mob: +94 779 869138
>>> Blog: http://suhan-opensource.blogspot.com/
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>>
>> Tharindu Edirisinghe
>> Software Engineer | WSO2 Inc
>> Identity Server Team
>> mobile : +94 775 181586
>>
>> ___
>> 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
>
>


 --
 Thilini Shanika
 Software Engineer
 WSO2, Inc.; http://wso2.com
 20, Palmgrove Avenue, Colombo 3

 E-mail: tgtshan...@gmail.com


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


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

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Gayan Gunarathne
Congratulations Rajkumar!!

On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage  wrote:

> Congratulation Rajkumar!
>
>
> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal 
> wrote:
>
>> Congratulation Rajkumar ...!
>>
>> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena  wrote:
>>
>>> Congratulation!!
>>>
>>> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla 
>>> wrote:
>>>
 Congratulations Rajkumar...

 On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
 wrote:

> Congratulations Rajkumar !!!
>
> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
> daksh...@wso2.com> wrote:
>
>> Congratulations Raj !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna > > wrote:
>>
>>> Congratz Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya >> > wrote:
>>>
 Congrats Rajkumar!!!

 On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
 sh...@wso2.com> wrote:

> Congrats !!
>
> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva 
> wrote:
>
>> Congrats Rajkumar !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Raj as a WSO2 Committer. Raj has
>>> done great contributions to Apache Stratos and WSO2 Private PaaS 
>>> products.
>>> And in recognition of his contribution he has been voted as a WSO2 
>>> commiter.
>>>
>>> Raj, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> 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
>
>


 --
 Suhan Dharmasuriya
 Software Engineer - Test Automation

 *WSO2, Inc. *

 lean . enterprise . middleware
 Tel: +94 112 145345
 Mob: +94 779 869138
 Blog: http://suhan-opensource.blogspot.com/

 ___
 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
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Thilini Shanika
> Software Engineer
> WSO2, Inc.; http://wso2.com
> 20, Palmgrove Avenue, Colombo 3
>
> E-mail: tgtshan...@gmail.com
>
>
> ___
> 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
>>>

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Gayan Gunarathne
Congratulations Lasindu!!

On Tue, Oct 21, 2014 at 9:46 AM, Manula Chathurika Thantriwatte <
manu...@wso2.com> wrote:

> Congratulations !!!
>
> On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage  wrote:
>
>> Congratulations Lasindu !
>>
>> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal 
>> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena 
>>> wrote:
>>>
 Congratulation!!

 On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera 
 wrote:

> Congratulations Lasindu !!
>
> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
> shashi...@wso2.com> wrote:
>
>> Congrats Lasindu
>>
>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
>> wrote:
>>
>>> Congratulations Lasindu !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
>>> daksh...@wso2.com> wrote:
>>>
 Congratulations Lasindu !

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

 On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
 tharin...@wso2.com> wrote:

> Congratulations Lasindu !!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
> suh...@wso2.com> wrote:
>
>> Congrats Lasindu!!!
>>
>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva 
>> wrote:
>>
>>> Congrats Lasindu !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
>>> lak...@wso2.com> wrote:
>>>
 Hi all,

 It's my pleasure to announce Lasindu as a WSO2 Committer.
 Lasindu has done great contributions to Apache Stratos and WSO2 
 Private
 PaaS products. And in recognition of his contribution he has been 
 voted as
 a WSO2 commiter.

 Lasindu, welcome aboard and keep up 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


>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Suhan Dharmasuriya
>> Software Engineer - Test Automation
>>
>> *WSO2, Inc. *
>>
>> lean . enterprise . middleware
>> Tel: +94 112 145345
>> Mob: +94 779 869138
>> Blog: http://suhan-opensource.blogspot.com/
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
>
> Tharindu Edirisinghe
> Software Engineer | WSO2 Inc
> Identity Server Team
> mobile : +94 775 181586
>
> ___
> 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


>>>
>>>
>>> --
>>> Thilini Shanika
>>> Software Engineer
>>> WSO2, Inc.; http://wso2.com
>>> 20, Palmgrove Avenue, Colombo 3
>>>
>>> E-mail: tgtshan...@gmail.com
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Shashika Prabath Karunatilaka,
>> Software Engineer,
>> WSO2, Inc: http://wso2.com/
>> mobile : +94 77 7487792
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Manula Chathurika Thantriwatte
Congratulations !!!

On Tue, Oct 21, 2014 at 9:45 AM, Roshan Deniyage  wrote:

> Congratulations Lasindu !
>
> 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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal 
> wrote:
>
>> Congratulations Lasindu !
>>
>> On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena  wrote:
>>
>>> Congratulation!!
>>>
>>> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera 
>>> wrote:
>>>
 Congratulations Lasindu !!

 On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
 shashi...@wso2.com> wrote:

> Congrats Lasindu
>
> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
> wrote:
>
>> Congratulations Lasindu !!!
>>
>> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
>> daksh...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
>>> tharin...@wso2.com> wrote:
>>>
 Congratulations Lasindu !!

 On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya <
 suh...@wso2.com> wrote:

> Congrats Lasindu!!!
>
> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva 
> wrote:
>
>> Congrats Lasindu !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Lasindu as a WSO2 Committer.
>>> Lasindu has done great contributions to Apache Stratos and WSO2 
>>> Private
>>> PaaS products. And in recognition of his contribution he has been 
>>> voted as
>>> a WSO2 commiter.
>>>
>>> Lasindu, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Suhan Dharmasuriya
> Software Engineer - Test Automation
>
> *WSO2, Inc. *
>
> lean . enterprise . middleware
> Tel: +94 112 145345
> Mob: +94 779 869138
> Blog: http://suhan-opensource.blogspot.com/
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --

 Tharindu Edirisinghe
 Software Engineer | WSO2 Inc
 Identity Server Team
 mobile : +94 775 181586

 ___
 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
>>>
>>>
>>
>>
>> --
>> Thilini Shanika
>> Software Engineer
>> WSO2, Inc.; http://wso2.com
>> 20, Palmgrove Avenue, Colombo 3
>>
>> E-mail: tgtshan...@gmail.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Shashika Prabath Karunatilaka,
> Software Engineer,
> WSO2, Inc: http://wso2.com/
> mobile : +94 77 7487792
>
> ___
> 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 += Lasindu Charith

2014-10-20 Thread Roshan Deniyage
Congratulations Lasindu !

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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal 
wrote:

> Congratulations Lasindu !
>
> On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena  wrote:
>
>> Congratulation!!
>>
>> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera 
>> wrote:
>>
>>> Congratulations Lasindu !!
>>>
>>> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
>>> shashi...@wso2.com> wrote:
>>>
 Congrats Lasindu

 On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
 wrote:

> Congratulations Lasindu !!!
>
> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
> daksh...@wso2.com> wrote:
>
>> Congratulations Lasindu !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
>> tharin...@wso2.com> wrote:
>>
>>> Congratulations Lasindu !!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya >> > wrote:
>>>
 Congrats Lasindu!!!

 On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva 
 wrote:

> Congrats Lasindu !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
> lak...@wso2.com> wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu
>> has done great contributions to Apache Stratos and WSO2 Private PaaS
>> products. And in recognition of his contribution he has been voted 
>> as a
>> WSO2 commiter.
>>
>> Lasindu, welcome aboard and keep up 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
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Suhan Dharmasuriya
 Software Engineer - Test Automation

 *WSO2, Inc. *

 lean . enterprise . middleware
 Tel: +94 112 145345
 Mob: +94 779 869138
 Blog: http://suhan-opensource.blogspot.com/

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


>>>
>>>
>>> --
>>>
>>> Tharindu Edirisinghe
>>> Software Engineer | WSO2 Inc
>>> Identity Server Team
>>> mobile : +94 775 181586
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Thilini Shanika
> Software Engineer
> WSO2, Inc.; http://wso2.com
> 20, Palmgrove Avenue, Colombo 3
>
> E-mail: tgtshan...@gmail.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Shashika Prabath Karunatilaka,
 Software Engineer,
 WSO2, Inc: http://wso2.com/
 mobile : +94 77 7487792

 ___
 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
>>>
>>>
>>
>>
>> --
>> Roshan Wijesena.
>> Senior Software Engineer-WSO2 Inc.
>> Mobile: *+94752126789*
>> Email: ros...@wso2.com
>> *WSO2, Inc. :** wso2.com *
>> lean.enterprise.middleware.
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Manula Chathurika Thantriwatte
Congratulations !!!

On Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal 
wrote:

> Congratulation Rajkumar ...!
>
> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena  wrote:
>
>> Congratulation!!
>>
>> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla 
>> wrote:
>>
>>> Congratulations Rajkumar...
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
>>> wrote:
>>>
 Congratulations Rajkumar !!!

 On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Raj !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna 
> wrote:
>
>> Congratz Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
>> wrote:
>>
>>> Congrats Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>>> sh...@wso2.com> wrote:
>>>
 Congrats !!

 On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva 
 wrote:

> Congrats Rajkumar !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
> lak...@wso2.com> wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Raj as a WSO2 Committer. Raj has
>> done great contributions to Apache Stratos and WSO2 Private PaaS 
>> products.
>> And in recognition of his contribution he has been voted as a WSO2 
>> commiter.
>>
>> Raj, welcome aboard and keep up 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
>>
>>
>
> ___
> 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


>>>
>>>
>>> --
>>> Suhan Dharmasuriya
>>> Software Engineer - Test Automation
>>>
>>> *WSO2, Inc. *
>>>
>>> lean . enterprise . middleware
>>> Tel: +94 112 145345
>>> Mob: +94 779 869138
>>> Blog: http://suhan-opensource.blogspot.com/
>>>
>>> ___
>>> 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
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Thilini Shanika
 Software Engineer
 WSO2, Inc.; http://wso2.com
 20, Palmgrove Avenue, Colombo 3

 E-mail: tgtshan...@gmail.com


 ___
 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
>>>
>>>
>>
>>
>> --
>> Roshan Wijesena.
>> Senior Software Engineer-WSO2 Inc.
>> Mobile: *+94752126789*
>> Email: ros...@wso2.com
>> *WSO2, Inc. :** wso2.com *
>> lean.enterprise.middleware.
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Godwin Amila Shrimal*
> Senior Software Engineer
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mob

Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Roshan Deniyage
Congratulation Rajkumar!


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 Tue, Oct 21, 2014 at 9:41 AM, Godwin Amila Shrimal 
wrote:

> Congratulation Rajkumar ...!
>
> On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena  wrote:
>
>> Congratulation!!
>>
>> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla 
>> wrote:
>>
>>> Congratulations Rajkumar...
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
>>> wrote:
>>>
 Congratulations Rajkumar !!!

 On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Raj !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna 
> wrote:
>
>> Congratz Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
>> wrote:
>>
>>> Congrats Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>>> sh...@wso2.com> wrote:
>>>
 Congrats !!

 On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva 
 wrote:

> Congrats Rajkumar !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
> lak...@wso2.com> wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Raj as a WSO2 Committer. Raj has
>> done great contributions to Apache Stratos and WSO2 Private PaaS 
>> products.
>> And in recognition of his contribution he has been voted as a WSO2 
>> commiter.
>>
>> Raj, welcome aboard and keep up 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
>>
>>
>
> ___
> 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


>>>
>>>
>>> --
>>> Suhan Dharmasuriya
>>> Software Engineer - Test Automation
>>>
>>> *WSO2, Inc. *
>>>
>>> lean . enterprise . middleware
>>> Tel: +94 112 145345
>>> Mob: +94 779 869138
>>> Blog: http://suhan-opensource.blogspot.com/
>>>
>>> ___
>>> 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
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Thilini Shanika
 Software Engineer
 WSO2, Inc.; http://wso2.com
 20, Palmgrove Avenue, Colombo 3

 E-mail: tgtshan...@gmail.com


 ___
 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
>>>
>>>
>>
>>
>> --
>> Roshan Wijesena.
>> Senior Software Engineer-WSO2 Inc.
>> Mobile: *+94752126789*
>> Email: ros...@wso2.com
>> *WSO2, Inc. :** wso2.com *
>> lean.enterprise.middleware.
>>
>> _

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Godwin Amila Shrimal
Congratulations Lasindu !

On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena  wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera  wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
>> shashi...@wso2.com> wrote:
>>
>>> Congrats Lasindu
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
>>> wrote:
>>>
 Congratulations Lasindu !!!

 On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Lasindu !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
> tharin...@wso2.com> wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
>> wrote:
>>
>>> Congrats Lasindu!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva 
>>> wrote:
>>>
 Congrats Lasindu !!!

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

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


 On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi all,
>
> It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu
> has done great contributions to Apache Stratos and WSO2 Private PaaS
> products. And in recognition of his contribution he has been voted as 
> a
> WSO2 commiter.
>
> Lasindu, welcome aboard and keep up 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
>
>

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


>>>
>>>
>>> --
>>> Suhan Dharmasuriya
>>> Software Engineer - Test Automation
>>>
>>> *WSO2, Inc. *
>>>
>>> lean . enterprise . middleware
>>> Tel: +94 112 145345
>>> Mob: +94 779 869138
>>> Blog: http://suhan-opensource.blogspot.com/
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>>
>> Tharindu Edirisinghe
>> Software Engineer | WSO2 Inc
>> Identity Server Team
>> mobile : +94 775 181586
>>
>> ___
>> 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
>
>


 --
 Thilini Shanika
 Software Engineer
 WSO2, Inc.; http://wso2.com
 20, Palmgrove Avenue, Colombo 3

 E-mail: tgtshan...@gmail.com


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


>>>
>>>
>>> --
>>> Shashika Prabath Karunatilaka,
>>> Software Engineer,
>>> WSO2, Inc: http://wso2.com/
>>> mobile : +94 77 7487792
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Roshan Wijesena.
> Senior Software Engineer-WSO2 Inc.
> Mobile: *+94752126789*
> Email: ros...@wso2.com
> *WSO2, Inc. :** wso2.com *
> lean.enterprise.middleware.
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Godwin Amila Shrimal*
Senior Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

mobile: *+94772264165*
linkedin: *http://lnkd.in/KUum6D *
twitter: https://twitter.com/godwinamila
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Denuwanthi De Silva
Congratulations Lasindu!!

On Tue, Oct 21, 2014 at 9:37 AM, Roshan Wijesena  wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera  wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka <
>> shashi...@wso2.com> wrote:
>>
>>> Congrats Lasindu
>>>
>>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
>>> wrote:
>>>
 Congratulations Lasindu !!!

 On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka <
 daksh...@wso2.com> wrote:

> Congratulations Lasindu !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
> tharin...@wso2.com> wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
>> wrote:
>>
>>> Congrats Lasindu!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva 
>>> wrote:
>>>
 Congrats Lasindu !!!

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

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


 On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi all,
>
> It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu
> has done great contributions to Apache Stratos and WSO2 Private PaaS
> products. And in recognition of his contribution he has been voted as 
> a
> WSO2 commiter.
>
> Lasindu, welcome aboard and keep up 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
>
>

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


>>>
>>>
>>> --
>>> Suhan Dharmasuriya
>>> Software Engineer - Test Automation
>>>
>>> *WSO2, Inc. *
>>>
>>> lean . enterprise . middleware
>>> Tel: +94 112 145345
>>> Mob: +94 779 869138
>>> Blog: http://suhan-opensource.blogspot.com/
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>>
>> Tharindu Edirisinghe
>> Software Engineer | WSO2 Inc
>> Identity Server Team
>> mobile : +94 775 181586
>>
>> ___
>> 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
>
>


 --
 Thilini Shanika
 Software Engineer
 WSO2, Inc.; http://wso2.com
 20, Palmgrove Avenue, Colombo 3

 E-mail: tgtshan...@gmail.com


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


>>>
>>>
>>> --
>>> Shashika Prabath Karunatilaka,
>>> Software Engineer,
>>> WSO2, Inc: http://wso2.com/
>>> mobile : +94 77 7487792
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Roshan Wijesena.
> Senior Software Engineer-WSO2 Inc.
> Mobile: *+94752126789*
> Email: ros...@wso2.com
> *WSO2, Inc. :** wso2.com *
> lean.enterprise.middleware.
>
> ___
> 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 += Rajkumar Rajaratnam

2014-10-20 Thread Godwin Amila Shrimal
Congratulation Rajkumar ...!

On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena  wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla 
> wrote:
>
>> Congratulations Rajkumar...
>>
>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
>> wrote:
>>
>>> Congratulations Rajkumar !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka >> > wrote:
>>>
 Congratulations Raj !

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

 On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna 
 wrote:

> Congratz Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
> wrote:
>
>> Congrats Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>> sh...@wso2.com> wrote:
>>
>>> Congrats !!
>>>
>>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva 
>>> wrote:
>>>
 Congrats Rajkumar !!!

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

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


 On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi all,
>
> It's my pleasure to announce Raj as a WSO2 Committer. Raj has done
> great contributions to Apache Stratos and WSO2 Private PaaS products. 
> And
> in recognition of his contribution he has been voted as a WSO2 
> commiter.
>
> Raj, welcome aboard and keep up 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
>
>

 ___
 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
>>>
>>>
>>
>>
>> --
>> Suhan Dharmasuriya
>> Software Engineer - Test Automation
>>
>> *WSO2, Inc. *
>>
>> lean . enterprise . middleware
>> Tel: +94 112 145345
>> Mob: +94 779 869138
>> Blog: http://suhan-opensource.blogspot.com/
>>
>> ___
>> 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
>
>

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


>>>
>>>
>>> --
>>> Thilini Shanika
>>> Software Engineer
>>> WSO2, Inc.; http://wso2.com
>>> 20, Palmgrove Avenue, Colombo 3
>>>
>>> E-mail: tgtshan...@gmail.com
>>>
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Roshan Wijesena.
> Senior Software Engineer-WSO2 Inc.
> Mobile: *+94752126789*
> Email: ros...@wso2.com
> *WSO2, Inc. :** wso2.com *
> lean.enterprise.middleware.
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Godwin Amila Shrimal*
Senior Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

mobile: *+94772264165*
linkedin: *http://lnkd.in/KUum6D *
twitter: https://twitter.com/godwinamila
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Denuwanthi De Silva
Congratulations Rajkumar!!

On Tue, Oct 21, 2014 at 9:38 AM, Roshan Wijesena  wrote:

> Congratulation!!
>
> On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla 
> wrote:
>
>> Congratulations Rajkumar...
>>
>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
>> wrote:
>>
>>> Congratulations Rajkumar !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka >> > wrote:
>>>
 Congratulations Raj !

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

 On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna 
 wrote:

> Congratz Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
> wrote:
>
>> Congrats Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake <
>> sh...@wso2.com> wrote:
>>
>>> Congrats !!
>>>
>>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva 
>>> wrote:
>>>
 Congrats Rajkumar !!!

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

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


 On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
 lak...@wso2.com> wrote:

> Hi all,
>
> It's my pleasure to announce Raj as a WSO2 Committer. Raj has done
> great contributions to Apache Stratos and WSO2 Private PaaS products. 
> And
> in recognition of his contribution he has been voted as a WSO2 
> commiter.
>
> Raj, welcome aboard and keep up 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
>
>

 ___
 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
>>>
>>>
>>
>>
>> --
>> Suhan Dharmasuriya
>> Software Engineer - Test Automation
>>
>> *WSO2, Inc. *
>>
>> lean . enterprise . middleware
>> Tel: +94 112 145345
>> Mob: +94 779 869138
>> Blog: http://suhan-opensource.blogspot.com/
>>
>> ___
>> 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
>
>

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


>>>
>>>
>>> --
>>> Thilini Shanika
>>> Software Engineer
>>> WSO2, Inc.; http://wso2.com
>>> 20, Palmgrove Avenue, Colombo 3
>>>
>>> E-mail: tgtshan...@gmail.com
>>>
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Roshan Wijesena.
> Senior Software Engineer-WSO2 Inc.
> Mobile: *+94752126789*
> Email: ros...@wso2.com
> *WSO2, Inc. :** wso2.com *
> lean.enterprise.middleware.
>
> ___
> 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 += Rajkumar Rajaratnam

2014-10-20 Thread Roshan Wijesena
Congratulation!!

On Tue, Oct 21, 2014 at 9:33 AM, Prasanna Dangalla 
wrote:

> Congratulations Rajkumar...
>
> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
> wrote:
>
>> Congratulations Rajkumar !!!
>>
>> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka 
>> wrote:
>>
>>> Congratulations Raj !
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna 
>>> wrote:
>>>
 Congratz Rajkumar!!!

 On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
 wrote:

> Congrats Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake  > wrote:
>
>> Congrats !!
>>
>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva 
>> wrote:
>>
>>> Congrats Rajkumar !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
>>> lak...@wso2.com> wrote:
>>>
 Hi all,

 It's my pleasure to announce Raj as a WSO2 Committer. Raj has done
 great contributions to Apache Stratos and WSO2 Private PaaS products. 
 And
 in recognition of his contribution he has been voted as a WSO2 
 commiter.

 Raj, welcome aboard and keep up 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


>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Suhan Dharmasuriya
> Software Engineer - Test Automation
>
> *WSO2, Inc. *
>
> lean . enterprise . middleware
> Tel: +94 112 145345
> Mob: +94 779 869138
> Blog: http://suhan-opensource.blogspot.com/
>
> ___
> 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


>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Thilini Shanika
>> Software Engineer
>> WSO2, Inc.; http://wso2.com
>> 20, Palmgrove Avenue, Colombo 3
>>
>> E-mail: tgtshan...@gmail.com
>>
>>
>> ___
>> 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
>
>


-- 
Roshan Wijesena.
Senior Software Engineer-WSO2 Inc.
Mobile: *+94752126789*
Email: ros...@wso2.com
*WSO2, Inc. :** wso2.com *
lean.enterprise.middleware.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Roshan Wijesena
Congratulation!!

On Tue, Oct 21, 2014 at 9:33 AM, Milinda Perera  wrote:

> Congratulations Lasindu !!
>
> On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka  > wrote:
>
>> Congrats Lasindu
>>
>> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
>> wrote:
>>
>>> Congratulations Lasindu !!!
>>>
>>> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka >> > wrote:
>>>
 Congratulations Lasindu !

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

 On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
 tharin...@wso2.com> wrote:

> Congratulations Lasindu !!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
> wrote:
>
>> Congrats Lasindu!!!
>>
>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva 
>> wrote:
>>
>>> Congrats Lasindu !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
>>> lak...@wso2.com> wrote:
>>>
 Hi all,

 It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu
 has done great contributions to Apache Stratos and WSO2 Private PaaS
 products. And in recognition of his contribution he has been voted as a
 WSO2 commiter.

 Lasindu, welcome aboard and keep up 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


>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Suhan Dharmasuriya
>> Software Engineer - Test Automation
>>
>> *WSO2, Inc. *
>>
>> lean . enterprise . middleware
>> Tel: +94 112 145345
>> Mob: +94 779 869138
>> Blog: http://suhan-opensource.blogspot.com/
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
>
> Tharindu Edirisinghe
> Software Engineer | WSO2 Inc
> Identity Server Team
> mobile : +94 775 181586
>
> ___
> 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


>>>
>>>
>>> --
>>> Thilini Shanika
>>> Software Engineer
>>> WSO2, Inc.; http://wso2.com
>>> 20, Palmgrove Avenue, Colombo 3
>>>
>>> E-mail: tgtshan...@gmail.com
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Shashika Prabath Karunatilaka,
>> Software Engineer,
>> WSO2, Inc: http://wso2.com/
>> mobile : +94 77 7487792
>>
>> ___
>> 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
>
>


-- 
Roshan Wijesena.
Senior Software Engineer-WSO2 Inc.
Mobile: *+94752126789*
Email: ros...@wso2.com
*WSO2, Inc. :** wso2.com *
lean.enterprise.middleware.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Milinda Perera
Congratulations Lasindu !!

On Tue, Oct 21, 2014 at 9:31 AM, Shashika Karunatilaka 
wrote:

> Congrats Lasindu
>
> On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika 
> wrote:
>
>> Congratulations Lasindu !!!
>>
>> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka 
>> wrote:
>>
>>> Congratulations Lasindu !
>>>
>>> *Dakshika Jayathilaka*
>>> Software Engineer
>>> WSO2, Inc.
>>> lean.enterprise.middleware
>>> 0771100911
>>>
>>> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe <
>>> tharin...@wso2.com> wrote:
>>>
 Congratulations Lasindu !!

 On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
 wrote:

> Congrats Lasindu!!!
>
> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva 
> wrote:
>
>> Congrats Lasindu !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu
>>> has done great contributions to Apache Stratos and WSO2 Private PaaS
>>> products. And in recognition of his contribution he has been voted as a
>>> WSO2 commiter.
>>>
>>> Lasindu, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Suhan Dharmasuriya
> Software Engineer - Test Automation
>
> *WSO2, Inc. *
>
> lean . enterprise . middleware
> Tel: +94 112 145345
> Mob: +94 779 869138
> Blog: http://suhan-opensource.blogspot.com/
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --

 Tharindu Edirisinghe
 Software Engineer | WSO2 Inc
 Identity Server Team
 mobile : +94 775 181586

 ___
 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
>>>
>>>
>>
>>
>> --
>> Thilini Shanika
>> Software Engineer
>> WSO2, Inc.; http://wso2.com
>> 20, Palmgrove Avenue, Colombo 3
>>
>> E-mail: tgtshan...@gmail.com
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Shashika Prabath Karunatilaka,
> Software Engineer,
> WSO2, Inc: http://wso2.com/
> mobile : +94 77 7487792
>
> ___
> 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 += Rajkumar Rajaratnam

2014-10-20 Thread Shashika Karunatilaka
Congrats Rajkumar

On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika  wrote:

> Congratulations Rajkumar !!!
>
> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka 
> wrote:
>
>> Congratulations Raj !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna 
>> wrote:
>>
>>> Congratz Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
>>> wrote:
>>>
 Congrats Rajkumar!!!

 On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake 
 wrote:

> Congrats !!
>
> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva 
> wrote:
>
>> Congrats Rajkumar !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Raj as a WSO2 Committer. Raj has done
>>> great contributions to Apache Stratos and WSO2 Private PaaS products. 
>>> And
>>> in recognition of his contribution he has been voted as a WSO2 commiter.
>>>
>>> Raj, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> 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
>
>


 --
 Suhan Dharmasuriya
 Software Engineer - Test Automation

 *WSO2, Inc. *

 lean . enterprise . middleware
 Tel: +94 112 145345
 Mob: +94 779 869138
 Blog: http://suhan-opensource.blogspot.com/

 ___
 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
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Thilini Shanika
> Software Engineer
> WSO2, Inc.; http://wso2.com
> 20, Palmgrove Avenue, Colombo 3
>
> E-mail: tgtshan...@gmail.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Shashika Prabath Karunatilaka,
Software Engineer,
WSO2, Inc: http://wso2.com/
mobile : +94 77 7487792
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Prasanna Dangalla
Congratulations Rajkumar...

On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika  wrote:

> Congratulations Rajkumar !!!
>
> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka 
> wrote:
>
>> Congratulations Raj !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna 
>> wrote:
>>
>>> Congratz Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
>>> wrote:
>>>
 Congrats Rajkumar!!!

 On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake 
 wrote:

> Congrats !!
>
> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva 
> wrote:
>
>> Congrats Rajkumar !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Raj as a WSO2 Committer. Raj has done
>>> great contributions to Apache Stratos and WSO2 Private PaaS products. 
>>> And
>>> in recognition of his contribution he has been voted as a WSO2 commiter.
>>>
>>> Raj, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> 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
>
>


 --
 Suhan Dharmasuriya
 Software Engineer - Test Automation

 *WSO2, Inc. *

 lean . enterprise . middleware
 Tel: +94 112 145345
 Mob: +94 779 869138
 Blog: http://suhan-opensource.blogspot.com/

 ___
 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
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Thilini Shanika
> Software Engineer
> WSO2, Inc.; http://wso2.com
> 20, Palmgrove Avenue, Colombo 3
>
> E-mail: tgtshan...@gmail.com
>
>
> ___
> 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 += Rajkumar Rajaratnam

2014-10-20 Thread Milinda Perera
Congratulations rajkumar !

On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika  wrote:

> Congratulations Rajkumar !!!
>
> On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka 
> wrote:
>
>> Congratulations Raj !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna 
>> wrote:
>>
>>> Congratz Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
>>> wrote:
>>>
 Congrats Rajkumar!!!

 On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake 
 wrote:

> Congrats !!
>
> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva 
> wrote:
>
>> Congrats Rajkumar !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana <
>> lak...@wso2.com> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Raj as a WSO2 Committer. Raj has done
>>> great contributions to Apache Stratos and WSO2 Private PaaS products. 
>>> And
>>> in recognition of his contribution he has been voted as a WSO2 commiter.
>>>
>>> Raj, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> 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
>
>


 --
 Suhan Dharmasuriya
 Software Engineer - Test Automation

 *WSO2, Inc. *

 lean . enterprise . middleware
 Tel: +94 112 145345
 Mob: +94 779 869138
 Blog: http://suhan-opensource.blogspot.com/

 ___
 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
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Thilini Shanika
> Software Engineer
> WSO2, Inc.; http://wso2.com
> 20, Palmgrove Avenue, Colombo 3
>
> E-mail: tgtshan...@gmail.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 += Lasindu Charith

2014-10-20 Thread Prasanna Dangalla
Congratulations Lasindu

On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika  wrote:

> Congratulations Lasindu !!!
>
> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka 
> wrote:
>
>> Congratulations Lasindu !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe > > wrote:
>>
>>> Congratulations Lasindu !!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
>>> wrote:
>>>
 Congrats Lasindu!!!

 On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva 
 wrote:

> Congrats Lasindu !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana  > wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu has
>> done great contributions to Apache Stratos and WSO2 Private PaaS 
>> products.
>> And in recognition of his contribution he has been voted as a WSO2 
>> commiter.
>>
>> Lasindu, welcome aboard and keep up 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
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Suhan Dharmasuriya
 Software Engineer - Test Automation

 *WSO2, Inc. *

 lean . enterprise . middleware
 Tel: +94 112 145345
 Mob: +94 779 869138
 Blog: http://suhan-opensource.blogspot.com/

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


>>>
>>>
>>> --
>>>
>>> Tharindu Edirisinghe
>>> Software Engineer | WSO2 Inc
>>> Identity Server Team
>>> mobile : +94 775 181586
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Thilini Shanika
> Software Engineer
> WSO2, Inc.; http://wso2.com
> 20, Palmgrove Avenue, Colombo 3
>
> E-mail: tgtshan...@gmail.com
>
>
> ___
> 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 += Lasindu Charith

2014-10-20 Thread Shashika Karunatilaka
Congrats Lasindu

On Tue, Oct 21, 2014 at 9:28 AM, Thilini Shanika  wrote:

> Congratulations Lasindu !!!
>
> On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka 
> wrote:
>
>> Congratulations Lasindu !
>>
>> *Dakshika Jayathilaka*
>> Software Engineer
>> WSO2, Inc.
>> lean.enterprise.middleware
>> 0771100911
>>
>> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe > > wrote:
>>
>>> Congratulations Lasindu !!
>>>
>>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
>>> wrote:
>>>
 Congrats Lasindu!!!

 On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva 
 wrote:

> Congrats Lasindu !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana  > wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu has
>> done great contributions to Apache Stratos and WSO2 Private PaaS 
>> products.
>> And in recognition of his contribution he has been voted as a WSO2 
>> commiter.
>>
>> Lasindu, welcome aboard and keep up 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
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Suhan Dharmasuriya
 Software Engineer - Test Automation

 *WSO2, Inc. *

 lean . enterprise . middleware
 Tel: +94 112 145345
 Mob: +94 779 869138
 Blog: http://suhan-opensource.blogspot.com/

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


>>>
>>>
>>> --
>>>
>>> Tharindu Edirisinghe
>>> Software Engineer | WSO2 Inc
>>> Identity Server Team
>>> mobile : +94 775 181586
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Thilini Shanika
> Software Engineer
> WSO2, Inc.; http://wso2.com
> 20, Palmgrove Avenue, Colombo 3
>
> E-mail: tgtshan...@gmail.com
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Shashika Prabath Karunatilaka,
Software Engineer,
WSO2, Inc: http://wso2.com/
mobile : +94 77 7487792
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Write integration test for new osgi service.

2014-10-20 Thread Waruna Perera
HI Danesh,

You can use this guide[1] to get an idea as well as above.

[1]
http://wso2.com/library/articles/2014/06/introducing-automated-tests-for-wso2-products/

On Tue, Oct 21, 2014 at 8:54 AM, Ravindra Ranwala  wrote:

> Hi Danesh,
>
> The way you write an integration tests depend on your product. Based on
> that you have to extend a specific class and write integration tests. For
> an instance if the product is ESB you have to extend the ESBIntegrationTest
> class. Also you have to patch the product with the new artifact to test
> that functionality. If you have a module where integration tests have
> already been written then you can merely add the necessary test cases to
> that module. For more information please refer this documentation [1].
>
>
> [1.]
> https://docs.wso2.com/display/TA430/WSO2+Test+Automation+Documentation
>
>
> Thanks & Regards,
>
>
>
> On Tue, Oct 21, 2014 at 7:33 AM, Danesh Kuruppu  wrote:
>
>> Hi all,
>>
>> I wrote new osgi service to expose configuration context. Need to write
>> integration test case for that. what is the best way I could follow.
>>
>> Please help
>>
>> Thanks
>> --
>>
>> Danesh Kuruppu
>> Software Engineer
>> WSO2 Inc,
>> Mobile: +94 (77) 1690552
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Ravindra Ranwala
> Software Engineer
> WSO2, Inc: http://wso2.com
> 
> Mobile: +94714198770
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Waruna Perera
Senior Software Engineer - Test Automation
Mobile: +94 77 3867037
WSO2, Inc.; http://wso2.com/
lean . enterprise . middlewear.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Thilini Shanika
Congratulations Rajkumar !!!

On Tue, Oct 21, 2014 at 9:27 AM, Dakshika Jayathilaka 
wrote:

> Congratulations Raj !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna 
> wrote:
>
>> Congratz Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
>> wrote:
>>
>>> Congrats Rajkumar!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake 
>>> wrote:
>>>
 Congrats !!

 On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva 
 wrote:

> Congrats Rajkumar !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana  > wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Raj as a WSO2 Committer. Raj has done
>> great contributions to Apache Stratos and WSO2 Private PaaS products. And
>> in recognition of his contribution he has been voted as a WSO2 commiter.
>>
>> Raj, welcome aboard and keep up 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
>>
>>
>
> ___
> 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


>>>
>>>
>>> --
>>> Suhan Dharmasuriya
>>> Software Engineer - Test Automation
>>>
>>> *WSO2, Inc. *
>>>
>>> lean . enterprise . middleware
>>> Tel: +94 112 145345
>>> Mob: +94 779 869138
>>> Blog: http://suhan-opensource.blogspot.com/
>>>
>>> ___
>>> 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
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Thilini Shanika
Software Engineer
WSO2, Inc.; http://wso2.com
20, Palmgrove Avenue, Colombo 3

E-mail: tgtshan...@gmail.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Thilini Shanika
Congratulations Lasindu !!!

On Tue, Oct 21, 2014 at 9:26 AM, Dakshika Jayathilaka 
wrote:

> Congratulations Lasindu !
>
> *Dakshika Jayathilaka*
> Software Engineer
> WSO2, Inc.
> lean.enterprise.middleware
> 0771100911
>
> On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe 
> wrote:
>
>> Congratulations Lasindu !!
>>
>> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
>> wrote:
>>
>>> Congrats Lasindu!!!
>>>
>>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva  wrote:
>>>
 Congrats Lasindu !!!

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

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


 On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana 
 wrote:

> Hi all,
>
> It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu has
> done great contributions to Apache Stratos and WSO2 Private PaaS products.
> And in recognition of his contribution he has been voted as a WSO2 
> commiter.
>
> Lasindu, welcome aboard and keep up 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
>
>

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


>>>
>>>
>>> --
>>> Suhan Dharmasuriya
>>> Software Engineer - Test Automation
>>>
>>> *WSO2, Inc. *
>>>
>>> lean . enterprise . middleware
>>> Tel: +94 112 145345
>>> Mob: +94 779 869138
>>> Blog: http://suhan-opensource.blogspot.com/
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>>
>> Tharindu Edirisinghe
>> Software Engineer | WSO2 Inc
>> Identity Server Team
>> mobile : +94 775 181586
>>
>> ___
>> 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
>
>


-- 
Thilini Shanika
Software Engineer
WSO2, Inc.; http://wso2.com
20, Palmgrove Avenue, Colombo 3

E-mail: tgtshan...@gmail.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Dakshika Jayathilaka
Congratulations Raj !

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

On Tue, Oct 21, 2014 at 9:26 AM, Sameera Jayaratna 
wrote:

> Congratz Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
> wrote:
>
>> Congrats Rajkumar!!!
>>
>> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake 
>> wrote:
>>
>>> Congrats !!
>>>
>>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva  wrote:
>>>
 Congrats Rajkumar !!!

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

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


 On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana 
 wrote:

> Hi all,
>
> It's my pleasure to announce Raj as a WSO2 Committer. Raj has done
> great contributions to Apache Stratos and WSO2 Private PaaS products. And
> in recognition of his contribution he has been voted as a WSO2 commiter.
>
> Raj, welcome aboard and keep up 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
>
>

 ___
 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
>>>
>>>
>>
>>
>> --
>> Suhan Dharmasuriya
>> Software Engineer - Test Automation
>>
>> *WSO2, Inc. *
>>
>> lean . enterprise . middleware
>> Tel: +94 112 145345
>> Mob: +94 779 869138
>> Blog: http://suhan-opensource.blogspot.com/
>>
>> ___
>> 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
>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Dakshika Jayathilaka
Congratulations Lasindu !

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

On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe 
wrote:

> Congratulations Lasindu !!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
> wrote:
>
>> Congrats Lasindu!!!
>>
>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva  wrote:
>>
>>> Congrats Lasindu !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana 
>>> wrote:
>>>
 Hi all,

 It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu has
 done great contributions to Apache Stratos and WSO2 Private PaaS products.
 And in recognition of his contribution he has been voted as a WSO2 
 commiter.

 Lasindu, welcome aboard and keep up 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


>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Suhan Dharmasuriya
>> Software Engineer - Test Automation
>>
>> *WSO2, Inc. *
>>
>> lean . enterprise . middleware
>> Tel: +94 112 145345
>> Mob: +94 779 869138
>> Blog: http://suhan-opensource.blogspot.com/
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
>
> Tharindu Edirisinghe
> Software Engineer | WSO2 Inc
> Identity Server Team
> mobile : +94 775 181586
>
> ___
> 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 += Lasindu Charith

2014-10-20 Thread Sameera Jayaratna
Congratz Lasindu!!!

On Tue, Oct 21, 2014 at 9:24 AM, Tharindu Edirisinghe 
wrote:

> Congratulations Lasindu !!
>
> On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya 
> wrote:
>
>> Congrats Lasindu!!!
>>
>> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva  wrote:
>>
>>> Congrats Lasindu !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana 
>>> wrote:
>>>
 Hi all,

 It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu has
 done great contributions to Apache Stratos and WSO2 Private PaaS products.
 And in recognition of his contribution he has been voted as a WSO2 
 commiter.

 Lasindu, welcome aboard and keep up 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


>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Suhan Dharmasuriya
>> Software Engineer - Test Automation
>>
>> *WSO2, Inc. *
>>
>> lean . enterprise . middleware
>> Tel: +94 112 145345
>> Mob: +94 779 869138
>> Blog: http://suhan-opensource.blogspot.com/
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
>
> Tharindu Edirisinghe
> Software Engineer | WSO2 Inc
> Identity Server Team
> mobile : +94 775 181586
>
> ___
> 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 += Rajkumar Rajaratnam

2014-10-20 Thread Sameera Jayaratna
Congratz Rajkumar!!!

On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya  wrote:

> Congrats Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake 
> wrote:
>
>> Congrats !!
>>
>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva  wrote:
>>
>>> Congrats Rajkumar !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana 
>>> wrote:
>>>
 Hi all,

 It's my pleasure to announce Raj as a WSO2 Committer. Raj has done
 great contributions to Apache Stratos and WSO2 Private PaaS products. And
 in recognition of his contribution he has been voted as a WSO2 commiter.

 Raj, welcome aboard and keep up 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


>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Suhan Dharmasuriya
> Software Engineer - Test Automation
>
> *WSO2, Inc. *
>
> lean . enterprise . middleware
> Tel: +94 112 145345
> Mob: +94 779 869138
> Blog: http://suhan-opensource.blogspot.com/
>
> ___
> 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 += Rajkumar Rajaratnam

2014-10-20 Thread Tharindu Edirisinghe
Congratulations !

On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya  wrote:

> Congrats Rajkumar!!!
>
> On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake 
> wrote:
>
>> Congrats !!
>>
>> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva  wrote:
>>
>>> Congrats Rajkumar !!!
>>>
>>> *Kasun de Silva*
>>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> email   : kas...@wso2.com
>>> mobile : +94 77 794 4260
>>>
>>>
>>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana 
>>> wrote:
>>>
 Hi all,

 It's my pleasure to announce Raj as a WSO2 Committer. Raj has done
 great contributions to Apache Stratos and WSO2 Private PaaS products. And
 in recognition of his contribution he has been voted as a WSO2 commiter.

 Raj, welcome aboard and keep up 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


>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Suhan Dharmasuriya
> Software Engineer - Test Automation
>
> *WSO2, Inc. *
>
> lean . enterprise . middleware
> Tel: +94 112 145345
> Mob: +94 779 869138
> Blog: http://suhan-opensource.blogspot.com/
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 

Tharindu Edirisinghe
Software Engineer | WSO2 Inc
Identity Server Team
mobile : +94 775 181586
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Tharindu Edirisinghe
Congratulations Lasindu !!

On Tue, Oct 21, 2014 at 9:23 AM, Suhan Dharmasuriya  wrote:

> Congrats Lasindu!!!
>
> On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva  wrote:
>
>> Congrats Lasindu !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana 
>> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu has
>>> done great contributions to Apache Stratos and WSO2 Private PaaS products.
>>> And in recognition of his contribution he has been voted as a WSO2 commiter.
>>>
>>> Lasindu, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Suhan Dharmasuriya
> Software Engineer - Test Automation
>
> *WSO2, Inc. *
>
> lean . enterprise . middleware
> Tel: +94 112 145345
> Mob: +94 779 869138
> Blog: http://suhan-opensource.blogspot.com/
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 

Tharindu Edirisinghe
Software Engineer | WSO2 Inc
Identity Server Team
mobile : +94 775 181586
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Suhan Dharmasuriya
Congrats Rajkumar!!!

On Tue, Oct 21, 2014 at 9:22 AM, Shiroshica Kulatilake 
wrote:

> Congrats !!
>
> On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva  wrote:
>
>> Congrats Rajkumar !!!
>>
>> *Kasun de Silva*
>> Software Engineer | *WSO2 Inc.*; http://wso2.com
>> lean.enterprise.middleware
>>
>> email   : kas...@wso2.com
>> mobile : +94 77 794 4260
>>
>>
>> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana 
>> wrote:
>>
>>> Hi all,
>>>
>>> It's my pleasure to announce Raj as a WSO2 Committer. Raj has done great
>>> contributions to Apache Stratos and WSO2 Private PaaS products. And in
>>> recognition of his contribution he has been voted as a WSO2 commiter.
>>>
>>> Raj, welcome aboard and keep up 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
>>>
>>>
>>
>> ___
>> 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
>
>


-- 
Suhan Dharmasuriya
Software Engineer - Test Automation

*WSO2, Inc. *

lean . enterprise . middleware
Tel: +94 112 145345
Mob: +94 779 869138
Blog: http://suhan-opensource.blogspot.com/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Consume OSGi services in web app

2014-10-20 Thread Harshan Liyanage
Thanks for your valuable feedback. Yeah, that way is not true dynamic
linking. But unfortunately have to do that. Why can't we use the following
approach [1] ?

[1]. http://eclipse.org/equinox/server/http_in_equinox.php

Best Regards,

Lakshitha Harshan
Software Engineer
Mobile: *+94724423048*
Email: hars...@wso2.com
Blog : http://harshanliyanage.blogspot.com/
*WSO2, Inc. :** wso2.com *
lean.enterprise.middleware.

On Mon, Oct 20, 2014 at 11:22 PM, Sagara Gunathunga  wrote:

>
>
> On Mon, Oct 20, 2014 at 10:39 AM, Johann Nallathamby 
> wrote:
>
>> AFAIK you can't use OSGi declarative services from inside webapps or any
>> deployent artifacts. Declarative services are only for other OSGi bundles.
>> Its true that you can instantiate the service class and use it, or use
>> PriviledgedCarbonContext.getOSGiService(), but they are not the same as
>> using declarative services. If your service bundle leaves the OSGi
>> environment then you are left with a stale reference. It is not true
>> dynamic linking.
>>
>> AFAIK there is no alternative for this currently so you have to use one
>> of the two above approaches. Its still good to expose it as a OSGi service
>> for future usage of it.
>>
>
> +1
> When it come to web applications (/services) you have to stick with well
> known extensions don't use any entry point other than PriviledgedCarbonContext
> and CarbonContext.
>
> Thanks !
>
>>
>> Thanks,
>> Johann.
>>
>> On Sun, Oct 19, 2014 at 9:44 PM, Harshan Liyanage 
>> wrote:
>>
>>> Hi Inosh,
>>>
>>> As per the offline discussion with InoshP, I've modified the web app
>>> libs. Now I'm able to access the logic implemented in OSGi bundles.
>>>
>>> Thanks,
>>>
>>> Best Regards,
>>>
>>> Lakshitha Harshan
>>> Software Engineer
>>> Mobile: *+94724423048*
>>> Email: hars...@wso2.com
>>> Blog : http://harshanliyanage.blogspot.com/
>>> *WSO2, Inc. :** wso2.com *
>>> lean.enterprise.middleware.
>>>
>>> On Mon, Oct 20, 2014 at 8:50 AM, Inosh Perera  wrote:
>>>
 Hi Harshan,
 Yes, you can use Apache CXF for this purpose. You can find a simpler
 example here[1] with sample code.

 [1] .
 http://wso2.com/library/articles/2012/10/develop-cxf-based-jaxws-wso2-developer-studio/

 Regards,
 Inosh

 On Sun, Oct 19, 2014 at 5:07 PM, Dilan Udara Ariyaratne <
 dil...@wso2.com> wrote:

> Hi Harshan!
>
> Apart from Apache CXF, Jersey is also a very good alternative that you
> can consider in writing your JAX-RS web applications.
>
> I am personally impressed with the simplicity of getting
> up-and-running Restful web services using Jersey.
>
> Resources that you may find useful on this:
> [1]
> http://stackoverflow.com/questions/2704700/java-rest-implementation-jersey-vs-cxf
> [2] https://jersey.java.net/documentation/latest/getting-started.html
> [2] http://www.vogella.com/tutorials/REST/article.html
>
> Cheers!
>
>
> *Dilan U. Ariyaratne*
> Software Engineer
> WSO2 Inc. 
> Mobile: +94775149066
> lean . enterprise . middleware
>
> On Sun, Oct 19, 2014 at 12:09 PM, Bhathiya Jayasekara <
> bhath...@wso2.com> wrote:
>
>> Hi Harshan,
>>
>> On Sun, Oct 19, 2014 at 11:37 AM, Harshan Liyanage 
>> wrote:
>>
>>> Hi,
>>>
>>> I'm trying to do the following.
>>>
>>>1. Create a JAX-RS web app & deploy it in AS
>>>2. Create an OSGi bundle which has all the business logic
>>>implementation (exposed as OSGi services) for above JAX-RS web 
>>> services
>>>3. Consume above OSGi services inside JAX-RS web app
>>>
>>> What is the best way to achieve the above? Do I need to use Apache
>>> CXF for this?
>>>
>>
>> Yes, you can use CXF to write the REST service. We have used it in
>> several places[1][2][3] in platform. You can have look and learn how it 
>> is
>> used.
>>
>> [1]
>> https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/components/identity/org.wso2.carbon.identity.oauth.endpoint/4.2.3
>> [2]
>> https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/components/data-bridge/org.wso2.carbon.databridge.receiver.restapi/4.2.0
>> [3]
>> https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/components/identity/org.wso2.carbon.identity.scim.provider/4.2.1
>>
>> Thanks,
>> Bhathiya
>>
>>
>>>
>>> Thanks,
>>>
>>> Best Regards,
>>>
>>> Lakshitha Harshan
>>> Software Engineer
>>> Mobile: *+94724423048*
>>> Email: hars...@wso2.com
>>> Blog : http://harshanliyanage.blogspot.com/
>>> *WSO2, Inc. :** wso2.com *
>>> lean.enterprise.middleware.
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>

Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Suhan Dharmasuriya
Congrats Lasindu!!!

On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva  wrote:

> Congrats Lasindu !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana 
> wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu has
>> done great contributions to Apache Stratos and WSO2 Private PaaS products.
>> And in recognition of his contribution he has been voted as a WSO2 commiter.
>>
>> Lasindu, welcome aboard and keep up 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
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Suhan Dharmasuriya
Software Engineer - Test Automation

*WSO2, Inc. *

lean . enterprise . middleware
Tel: +94 112 145345
Mob: +94 779 869138
Blog: http://suhan-opensource.blogspot.com/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Shiroshica Kulatilake
Congrats !!

On Tue, Oct 21, 2014 at 9:19 AM, Kasun De Silva  wrote:

> Congrats Rajkumar !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana 
> wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Raj as a WSO2 Committer. Raj has done great
>> contributions to Apache Stratos and WSO2 Private PaaS products. And in
>> recognition of his contribution he has been voted as a WSO2 commiter.
>>
>> Raj, welcome aboard and keep up 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
>>
>>
>
> ___
> 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 += Lasindu Charith

2014-10-20 Thread Shiroshica Kulatilake
Congrats !!!

On Tue, Oct 21, 2014 at 9:18 AM, Kasun De Silva  wrote:

> Congrats Lasindu !!!
>
> *Kasun de Silva*
> Software Engineer | *WSO2 Inc.*; http://wso2.com
> lean.enterprise.middleware
>
> email   : kas...@wso2.com
> mobile : +94 77 794 4260
>
>
> On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana 
> wrote:
>
>> Hi all,
>>
>> It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu has
>> done great contributions to Apache Stratos and WSO2 Private PaaS products.
>> And in recognition of his contribution he has been voted as a WSO2 commiter.
>>
>> Lasindu, welcome aboard and keep up 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
>>
>>
>
> ___
> 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 += Rajkumar Rajaratnam

2014-10-20 Thread Kasun De Silva
Congrats Rajkumar !!!

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

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


On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana 
wrote:

> Hi all,
>
> It's my pleasure to announce Raj as a WSO2 Committer. Raj has done great
> contributions to Apache Stratos and WSO2 Private PaaS products. And in
> recognition of his contribution he has been voted as a WSO2 commiter.
>
> Raj, welcome aboard and keep up 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
>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Kasun De Silva
Congrats Lasindu !!!

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

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


On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana 
wrote:

> Hi all,
>
> It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu has done
> great contributions to Apache Stratos and WSO2 Private PaaS products. And
> in recognition of his contribution he has been voted as a WSO2 commiter.
>
> Lasindu, welcome aboard and keep up 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
>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Kalpa Welivitigoda
Congratulations Rajkumar !

On Tue, Oct 21, 2014 at 9:07 AM, Lakmal Warusawithana 
wrote:

> Hi all,
>
> It's my pleasure to announce Raj as a WSO2 Committer. Raj has done great
> contributions to Apache Stratos and WSO2 Private PaaS products. And in
> recognition of his contribution he has been voted as a WSO2 commiter.
>
> Raj, welcome aboard and keep up 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 += Lasindu Charith

2014-10-20 Thread Kalpa Welivitigoda
Congratulations Lasindu !

On Tue, Oct 21, 2014 at 9:09 AM, Lakmal Warusawithana 
wrote:

> Hi all,
>
> It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu has done
> great contributions to Apache Stratos and WSO2 Private PaaS products. And
> in recognition of his contribution he has been voted as a WSO2 commiter.
>
> Lasindu, welcome aboard and keep up 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] WSO2 Committers += Lasindu Charith

2014-10-20 Thread Lakmal Warusawithana
Hi all,

It's my pleasure to announce Lasindu as a WSO2 Committer. Lasindu has done
great contributions to Apache Stratos and WSO2 Private PaaS products. And
in recognition of his contribution he has been voted as a WSO2 commiter.

Lasindu, welcome aboard and keep up 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


[Dev] WSO2 Committers += Rajkumar Rajaratnam

2014-10-20 Thread Lakmal Warusawithana
Hi all,

It's my pleasure to announce Raj as a WSO2 Committer. Raj has done great
contributions to Apache Stratos and WSO2 Private PaaS products. And in
recognition of his contribution he has been voted as a WSO2 commiter.

Raj, welcome aboard and keep up 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] Write integration test for new osgi service.

2014-10-20 Thread Ravindra Ranwala
Hi Danesh,

The way you write an integration tests depend on your product. Based on
that you have to extend a specific class and write integration tests. For
an instance if the product is ESB you have to extend the ESBIntegrationTest
class. Also you have to patch the product with the new artifact to test
that functionality. If you have a module where integration tests have
already been written then you can merely add the necessary test cases to
that module. For more information please refer this documentation [1].


[1.] https://docs.wso2.com/display/TA430/WSO2+Test+Automation+Documentation


Thanks & Regards,



On Tue, Oct 21, 2014 at 7:33 AM, Danesh Kuruppu  wrote:

> Hi all,
>
> I wrote new osgi service to expose configuration context. Need to write
> integration test case for that. what is the best way I could follow.
>
> Please help
>
> Thanks
> --
>
> Danesh Kuruppu
> Software Engineer
> WSO2 Inc,
> Mobile: +94 (77) 1690552
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


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

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


[Dev] Write integration test for new osgi service.

2014-10-20 Thread Danesh Kuruppu
Hi all,

I wrote new osgi service to expose configuration context. Need to write
integration test case for that. what is the best way I could follow.

Please help

Thanks
-- 

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] Commit to Kernal patch009

2014-10-20 Thread Isura Karunaratne
pull request : https://github.com/wso2/carbon4-kernel/pull/53

On Fri, Oct 17, 2014 at 2:20 PM, Isura Karunaratne  wrote:

> Hi All,
>
> I have done the suggested change.
>
> Please commit following
>
> https://wso2.org/jira/browse/IDENTITY-2784
>
> On Fri, Oct 17, 2014 at 1:00 PM, Asela Pathberiya  wrote:
>
>> On Thu, Oct 16, 2014 at 8:01 PM, Johann Nallathamby 
>> wrote:
>> > Make it a private constant. And the user-mgt.xml change should be
>> optional.
>>
>> + 1 Yes.. it have not been referred from any other.
>>
>> Thanks,
>> Asela.
>> >
>> > Thanks,
>> > Johann.
>> >
>> > On Thu, Oct 16, 2014 at 7:52 PM, Isura Karunaratne 
>> wrote:
>> >>
>> >> Adding asela
>> >>
>> >> On Thu, Oct 16, 2014 at 7:47 PM, Manoj Kumara  wrote:
>> >>>
>> >>> Hi Isura,
>> >>>
>> >>> This patch introduce a new public constant and new entry to the
>> >>> user-mgt.xml. We cannot add new API's using patches.
>> >>>
>> >>> Thanks,
>> >>> Manoj
>> >>>
>> >>>
>> >>> Manoj Kumara
>> >>> Software Engineer
>> >>> WSO2 Inc. http://wso2.com/
>> >>> lean.enterprise.middleware
>> >>> Mobile: +94713448188
>> >>>
>> >>> On Thu, Oct 16, 2014 at 9:16 AM, Isura Karunaratne 
>> >>> wrote:
>> 
>>  Hi All,
>> 
>>  Please commit following
>> 
>>  https://wso2.org/jira/browse/IDENTITY-2784
>> 
>> 
>>  Thanks
>>  Isura
>>  --
>>  Isura Dilhara Karunaratne
>>  Software Engineer
>> 
>>  Mob +94 772 254 810
>> 
>> >>>
>> >>
>> >>
>> >>
>> >> --
>> >> Isura Dilhara Karunaratne
>> >> Software Engineer
>> >>
>> >> Mob +94 772 254 810
>> >>
>> >
>> >
>> >
>> > --
>> > Thanks & Regards,
>> >
>> > Johann Dilantha Nallathamby
>> > Associate Technical Lead & Product Lead of WSO2 Identity Server
>> > Integration Technologies Team
>> > WSO2, Inc.
>> > lean.enterprise.middleware
>> >
>> > Mobile - +9476950
>> > Blog - http://nallaa.wordpress.com
>>
>>
>>
>> --
>> Thanks & Regards,
>> Asela
>>
>> ATL
>> Mobile : +94 777 625 933
>>  +358 449 228 979
>>
>
>
>
> --
> Isura Dilhara Karunaratne
> Software Engineer
>
> Mob +94 772 254 810
>
>


-- 
Isura Dilhara Karunaratne
Software Engineer

Mob +94 772 254 810
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Front-end framework to use

2014-10-20 Thread CD Athuraliya
Hi Shiva,

The GUI will be mainly used for user interaction and geo map integration. I
am currently using Bootstrap with jQuery for this purpose. Kindly point out
if there is a better choice.

Thanks.

On Mon, Oct 20, 2014 at 5:42 PM, Shiva Balachandran  wrote:

> Hi CD,
>
> Can you please be more specific about what goes in the web based GUI.
> There are many frameworks/modules, used for such purposes but depending
> on your necessities, you can narrow down a suitable one.
> Any mock-ups or designs?
>
> Thank you,
>
> Shiva Balachandran
>
> On Fri, Oct 17, 2014 at 11:09 AM, CD Athuraliya 
> wrote:
>
>> Hi Chamila,
>>
>> Thanks for the tip on license compatibility. I will look into this.
>>
>> Best regards.
>>
>> On Fri, Oct 17, 2014 at 11:05 AM, Chamila De Alwis 
>> wrote:
>>
>>> Hi,
>>>
>>> I haven't done any serious front end work, but as an additional concern
>>> when selecting frameworks and modules, have a look at the license they are
>>> using. They should be licensed under Apache License v2.0 or under a
>>> compatible license. It might help going briefly through the
>>> articles[1][2][3] on Apache about license compatibility before selecting a
>>> particular module.
>>>
>>> Perhaps Dakshika can add ideas on the specific frameworks to use
>>>
>>> [1] - http://www.apache.org/licenses/GPL-compatibility.html
>>> [2] - http://www.apache.org/legal/3party.html
>>> [3] - http://www.apache.org/legal/resolved.html
>>>
>>>
>>> Regards,
>>> Chamila de Alwis
>>> Software Engineer | WSO2 | +94772207163
>>> Blog: code.chamiladealwis.com
>>>
>>>
>>>
>>> On Fri, Oct 17, 2014 at 10:40 AM, CD Athuraliya 
>>> wrote:
>>>
 Hi all,

 I am developing a web based GUI as a part of this project [1]. Are
 there any de facto frameworks/modules, used for such purposes? Any help
 would be much appreciated.

 [1] https://redmine.wso2.com/issues/3327

 Thanks.

 --
 *CD Athuraliya*
 Software Engineering Intern
 WSO2, Inc.
 lean . enterprise . middleware
 Mobile: +94 716288847
 LinkedIn  | Twitter
  | Blog
 

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


>>>
>>
>>
>> --
>> *CD Athuraliya*
>> Software Engineering Intern
>> WSO2, Inc.
>> lean . enterprise . middleware
>> Mobile: +94 716288847
>> LinkedIn  | Twitter
>>  | Blog
>> 
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Shiva Balachandran
> Software Engineer
> WSO2 Inc.
>
> Mobile - +94 774445788
>



-- 
*CD Athuraliya*
Software Engineering Intern
WSO2, Inc.
lean . enterprise . middleware
Mobile: +94 716288847
LinkedIn  | Twitter
 | Blog 
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Consume OSGi services in web app

2014-10-20 Thread Sagara Gunathunga
On Mon, Oct 20, 2014 at 10:39 AM, Johann Nallathamby 
wrote:

> AFAIK you can't use OSGi declarative services from inside webapps or any
> deployent artifacts. Declarative services are only for other OSGi bundles.
> Its true that you can instantiate the service class and use it, or use
> PriviledgedCarbonContext.getOSGiService(), but they are not the same as
> using declarative services. If your service bundle leaves the OSGi
> environment then you are left with a stale reference. It is not true
> dynamic linking.
>
> AFAIK there is no alternative for this currently so you have to use one of
> the two above approaches. Its still good to expose it as a OSGi service for
> future usage of it.
>

+1
When it come to web applications (/services) you have to stick with well
known extensions don't use any entry point other than PriviledgedCarbonContext
and CarbonContext.

Thanks !

>
> Thanks,
> Johann.
>
> On Sun, Oct 19, 2014 at 9:44 PM, Harshan Liyanage 
> wrote:
>
>> Hi Inosh,
>>
>> As per the offline discussion with InoshP, I've modified the web app
>> libs. Now I'm able to access the logic implemented in OSGi bundles.
>>
>> Thanks,
>>
>> Best Regards,
>>
>> Lakshitha Harshan
>> Software Engineer
>> Mobile: *+94724423048*
>> Email: hars...@wso2.com
>> Blog : http://harshanliyanage.blogspot.com/
>> *WSO2, Inc. :** wso2.com *
>> lean.enterprise.middleware.
>>
>> On Mon, Oct 20, 2014 at 8:50 AM, Inosh Perera  wrote:
>>
>>> Hi Harshan,
>>> Yes, you can use Apache CXF for this purpose. You can find a simpler
>>> example here[1] with sample code.
>>>
>>> [1] .
>>> http://wso2.com/library/articles/2012/10/develop-cxf-based-jaxws-wso2-developer-studio/
>>>
>>> Regards,
>>> Inosh
>>>
>>> On Sun, Oct 19, 2014 at 5:07 PM, Dilan Udara Ariyaratne >> > wrote:
>>>
 Hi Harshan!

 Apart from Apache CXF, Jersey is also a very good alternative that you
 can consider in writing your JAX-RS web applications.

 I am personally impressed with the simplicity of getting up-and-running
 Restful web services using Jersey.

 Resources that you may find useful on this:
 [1]
 http://stackoverflow.com/questions/2704700/java-rest-implementation-jersey-vs-cxf
 [2] https://jersey.java.net/documentation/latest/getting-started.html
 [2] http://www.vogella.com/tutorials/REST/article.html

 Cheers!


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

 On Sun, Oct 19, 2014 at 12:09 PM, Bhathiya Jayasekara <
 bhath...@wso2.com> wrote:

> Hi Harshan,
>
> On Sun, Oct 19, 2014 at 11:37 AM, Harshan Liyanage 
> wrote:
>
>> Hi,
>>
>> I'm trying to do the following.
>>
>>1. Create a JAX-RS web app & deploy it in AS
>>2. Create an OSGi bundle which has all the business logic
>>implementation (exposed as OSGi services) for above JAX-RS web 
>> services
>>3. Consume above OSGi services inside JAX-RS web app
>>
>> What is the best way to achieve the above? Do I need to use Apache
>> CXF for this?
>>
>
> Yes, you can use CXF to write the REST service. We have used it in
> several places[1][2][3] in platform. You can have look and learn how it is
> used.
>
> [1]
> https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/components/identity/org.wso2.carbon.identity.oauth.endpoint/4.2.3
> [2]
> https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/components/data-bridge/org.wso2.carbon.databridge.receiver.restapi/4.2.0
> [3]
> https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/components/identity/org.wso2.carbon.identity.scim.provider/4.2.1
>
> Thanks,
> Bhathiya
>
>
>>
>> Thanks,
>>
>> Best Regards,
>>
>> Lakshitha Harshan
>> Software Engineer
>> Mobile: *+94724423048*
>> Email: hars...@wso2.com
>> Blog : http://harshanliyanage.blogspot.com/
>> *WSO2, Inc. :** wso2.com *
>> lean.enterprise.middleware.
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Bhathiya Jayasekara*
> *Software Engineer,*
> *WSO2 inc., http://wso2.com *
>
> *Phone: +94715478185 <%2B94715478185>*
> *LinkedIn: http://www.linkedin.com/in/bhathiyaj
> *
> *Twitter: https://twitter.com/bhathiyax
> *
> *Blog: http://movingaheadblog.blogspot.com
> *
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>

 

Re: [Dev] Consume OSGi services in web app

2014-10-20 Thread Johann Nallathamby
AFAIK you can't use OSGi declarative services from inside webapps or any
deployent artifacts. Declarative services are only for other OSGi bundles.
Its true that you can instantiate the service class and use it, or use
PriviledgedCarbonContext.getOSGiService(), but they are not the same as
using declarative services. If your service bundle leaves the OSGi
environment then you are left with a stale reference. It is not true
dynamic linking.

AFAIK there is no alternative for this currently so you have to use one of
the two above approaches. Its still good to expose it as a OSGi service for
future usage of it.

Thanks,
Johann.

On Sun, Oct 19, 2014 at 9:44 PM, Harshan Liyanage  wrote:

> Hi Inosh,
>
> As per the offline discussion with InoshP, I've modified the web app libs.
> Now I'm able to access the logic implemented in OSGi bundles.
>
> Thanks,
>
> Best Regards,
>
> Lakshitha Harshan
> Software Engineer
> Mobile: *+94724423048*
> Email: hars...@wso2.com
> Blog : http://harshanliyanage.blogspot.com/
> *WSO2, Inc. :** wso2.com *
> lean.enterprise.middleware.
>
> On Mon, Oct 20, 2014 at 8:50 AM, Inosh Perera  wrote:
>
>> Hi Harshan,
>> Yes, you can use Apache CXF for this purpose. You can find a simpler
>> example here[1] with sample code.
>>
>> [1] .
>> http://wso2.com/library/articles/2012/10/develop-cxf-based-jaxws-wso2-developer-studio/
>>
>> Regards,
>> Inosh
>>
>> On Sun, Oct 19, 2014 at 5:07 PM, Dilan Udara Ariyaratne 
>> wrote:
>>
>>> Hi Harshan!
>>>
>>> Apart from Apache CXF, Jersey is also a very good alternative that you
>>> can consider in writing your JAX-RS web applications.
>>>
>>> I am personally impressed with the simplicity of getting up-and-running
>>> Restful web services using Jersey.
>>>
>>> Resources that you may find useful on this:
>>> [1]
>>> http://stackoverflow.com/questions/2704700/java-rest-implementation-jersey-vs-cxf
>>> [2] https://jersey.java.net/documentation/latest/getting-started.html
>>> [2] http://www.vogella.com/tutorials/REST/article.html
>>>
>>> Cheers!
>>>
>>>
>>> *Dilan U. Ariyaratne*
>>> Software Engineer
>>> WSO2 Inc. 
>>> Mobile: +94775149066
>>> lean . enterprise . middleware
>>>
>>> On Sun, Oct 19, 2014 at 12:09 PM, Bhathiya Jayasekara >> > wrote:
>>>
 Hi Harshan,

 On Sun, Oct 19, 2014 at 11:37 AM, Harshan Liyanage 
 wrote:

> Hi,
>
> I'm trying to do the following.
>
>1. Create a JAX-RS web app & deploy it in AS
>2. Create an OSGi bundle which has all the business logic
>implementation (exposed as OSGi services) for above JAX-RS web services
>3. Consume above OSGi services inside JAX-RS web app
>
> What is the best way to achieve the above? Do I need to use Apache CXF
> for this?
>

 Yes, you can use CXF to write the REST service. We have used it in
 several places[1][2][3] in platform. You can have look and learn how it is
 used.

 [1]
 https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/components/identity/org.wso2.carbon.identity.oauth.endpoint/4.2.3
 [2]
 https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/components/data-bridge/org.wso2.carbon.databridge.receiver.restapi/4.2.0
 [3]
 https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/components/identity/org.wso2.carbon.identity.scim.provider/4.2.1

 Thanks,
 Bhathiya


>
> Thanks,
>
> Best Regards,
>
> Lakshitha Harshan
> Software Engineer
> Mobile: *+94724423048*
> Email: hars...@wso2.com
> Blog : http://harshanliyanage.blogspot.com/
> *WSO2, Inc. :** wso2.com *
> lean.enterprise.middleware.
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 *Bhathiya Jayasekara*
 *Software Engineer,*
 *WSO2 inc., http://wso2.com *

 *Phone: +94715478185 <%2B94715478185>*
 *LinkedIn: http://www.linkedin.com/in/bhathiyaj
 *
 *Twitter: https://twitter.com/bhathiyax *
 *Blog: http://movingaheadblog.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
>>>
>>>
>>
>>
>> --
>> Inosh Perera
>> Software Engineer, WSO2 Inc.
>> Tel: 0785293686
>>
>> ___
>> 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/ma

Re: [Dev] API manager - mechanism for access api manager random generated keys

2014-10-20 Thread Harsha Kumara
Hi Akila,
You also can use REST APIs provide by the API Manager. More details in [1].

[1]-https://docs.wso2.com/display/AM170/Token+API
Thanks,
Harsha


On Mon, Oct 20, 2014 at 8:38 PM, Lakshman Udayakantha 
wrote:

> Hi Akila,
>
> In case of api access tokens generated per application basis, you can use
> regenerateApplicationAccessKey method in SubscriberKeyMgtClient class to
> get generated application access tokens *randomly* for APIs. if you call
> from jaggery layer to generate tokens randomly you can use
> jsFunction_refreshToken in APIStoreHostObject class.
>
> Thanks
>
> On Mon, Oct 20, 2014 at 6:37 PM, Akila Nimantha [IT/EKO/LOITS] <
> aki...@lolctech.com> wrote:
>
>>  Hi all,
>>
>>
>>
>> Is there any way to randomly generate api keys(token,secret and cosumer
>> keys)???
>>
>> If yes,
>>
>> Is there a way to access those randomly generated keys(apis) from outside
>> without hardcoding(ex. adding manually in web.xml ). Is there any documents
>> or blogposts regarding above concerns ???
>>
>>
>>
>> Regards,
>>
>> Akila
>>
>> This message (including any attachments) is intended only for the use of
>> the individual or entity to which it is addressed and may contain
>> information that is non-public, proprietary, privileged, confidential, and
>> exempt from disclosure under applicable law or may constitute as attorney
>> work product. If you are not the intended recipient, you are hereby
>> notified that any use, dissemination, distribution, or copying of this
>> communication is strictly prohibited. If you have received this
>> communication in error, notify us immediately by telephone and (i) destroy
>> this message if a facsimile or (ii) delete this message immediately if this
>> is an electronic communication. Thank you.
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Lakshman Udayakantha
> WSO2 Inc. www.wso2.com
> lean.enterprise.middleware
> Mobile: *0711241005*
>
>
> ___
> 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] API manager - mechanism for access api manager random generated keys

2014-10-20 Thread Lakshman Udayakantha
Hi Akila,

In case of api access tokens generated per application basis, you can use
regenerateApplicationAccessKey method in SubscriberKeyMgtClient class to
get generated application access tokens *randomly* for APIs. if you call
from jaggery layer to generate tokens randomly you can use
jsFunction_refreshToken in APIStoreHostObject class.

Thanks

On Mon, Oct 20, 2014 at 6:37 PM, Akila Nimantha [IT/EKO/LOITS] <
aki...@lolctech.com> wrote:

>  Hi all,
>
>
>
> Is there any way to randomly generate api keys(token,secret and cosumer
> keys)???
>
> If yes,
>
> Is there a way to access those randomly generated keys(apis) from outside
> without hardcoding(ex. adding manually in web.xml ). Is there any documents
> or blogposts regarding above concerns ???
>
>
>
> Regards,
>
> Akila
>
> This message (including any attachments) is intended only for the use of
> the individual or entity to which it is addressed and may contain
> information that is non-public, proprietary, privileged, confidential, and
> exempt from disclosure under applicable law or may constitute as attorney
> work product. If you are not the intended recipient, you are hereby
> notified that any use, dissemination, distribution, or copying of this
> communication is strictly prohibited. If you have received this
> communication in error, notify us immediately by telephone and (i) destroy
> this message if a facsimile or (ii) delete this message immediately if this
> is an electronic communication. Thank you.
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Lakshman Udayakantha
WSO2 Inc. www.wso2.com
lean.enterprise.middleware
Mobile: *0711241005*
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [APIM] Please commit the patches

2014-10-20 Thread Abimaran Kugathasan
Hi Nuwan,


Please commit the follwoing two JIRA's patches.

1. https://wso2.org/jira/browse/APIMANAGER-2977
2. https://wso2.org/jira/browse/APIMANAGER-2978

-- 
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] Build Errors in /platform/components/cassandra-userstore

2014-10-20 Thread Ishara Cooray
ok.
Thanks for pointing that Inosh.

Ishara Cooray
Senior Software Engineer
Mobile : +9477 262 9512
WSO2, Inc. | http://wso2.com/
Lean . Enterprise . Middleware

On Mon, Oct 20, 2014 at 6:29 PM, Inosh Goonewardena  wrote:

> Removed support-dev@ from the list.
>
> Ishara,
>
> Don't address public and private lists at the same time.
>
>
>
> On Mon, Oct 20, 2014 at 6:19 PM, Ishara Cooray  wrote:
>
>> Hi,
>>
>> I get following errors when try to build cassandra-userstore using mvn
>> clean install.
>>
>> [ERROR] Failed to execute goal
>> org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile
>> (default-compile) on project org.wso2.carbon.user.cassandra.core:
>> Compilation failure: Compilation failure:
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[68,7]
>> error: CassandraUserStoreManager is not abstract and does not override
>> abstract method doGetSharedRoleNames(String,String,int) in
>> AbstractUserStoreManager
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[168,12]
>> error: cannot find symbol
>> [ERROR] variable profileManager
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[496,4]
>> error: method does not override or implement a method from a supertype
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[622,19]
>> error: getUserClaimValues(String,String) in CassandraUserStoreManager
>> cannot override getUserClaimValues(String,String) in
>> AbstractUserStoreManager
>> [ERROR] overridden method is final
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[656,20]
>> error: getHybridRoles() in CassandraUserStoreManager cannot override
>> getHybridRoles() in AbstractUserStoreManager
>> [ERROR] overridden method is final
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[713,4]
>> error: method does not override or implement a method from a supertype
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[819,4]
>> error: method does not override or implement a method from a supertype
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[824,4]
>> error: method does not override or implement a method from a supertype
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[829,4]
>> error: method does not override or implement a method from a supertype
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[834,4]
>> error: method does not override or implement a method from a supertype
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[898,20]
>> error: listUsers(String,int) in CassandraUserStoreManager cannot override
>> listUsers(String,int) in AbstractUserStoreManager
>> [ERROR] overridden method is final
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[921,20]
>> error: getRoleNames() in CassandraUserStoreManager cannot override
>> getRoleNames() in AbstractUserStoreManager
>> [ERROR] overridden method is final
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[926,20]
>> error: getRoleNames(boolean) in CassandraUserStoreManager cannot override
>> getRoleNames(boolean) in AbstractUserStoreManager
>> [ERROR] overridden method is final
>> [ERROR]
>> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2

[Dev] API manager - mechanism for access api manager random generated keys

2014-10-20 Thread Akila Nimantha [IT/EKO/LOITS]
Hi all,

Is there any way to randomly generate api keys(token,secret and cosumer keys)???
If yes,
Is there a way to access those randomly generated keys(apis) from outside 
without hardcoding(ex. adding manually in web.xml ). Is there any documents or 
blogposts regarding above concerns ???

Regards,
Akila

This message (including any attachments) is intended only for
the use of the individual or entity to which it is addressed and
may contain information that is non-public, proprietary,
privileged, confidential, and exempt from disclosure under
applicable law or may constitute as attorney work product.
If you are not the intended recipient, you are hereby notified
that any use, dissemination, distribution, or copying of this
communication is strictly prohibited. If you have received this
communication in error, notify us immediately by telephone and
(i) destroy this message if a facsimile or (ii) delete this message
immediately if this is an electronic communication.

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


Re: [Dev] Reduce the execution speed of Web Driver

2014-10-20 Thread Malintha Adikari
On Mon, Oct 20, 2014 at 4:55 AM, Ayesha Dissanayaka  wrote:

> Hi,
>
> I'm also having this concern while executing UI test cases in WSO2 ES.
>
> In my case ES Publisher App take ablout 15sec in order to populate
> properly after completing indexing and all. Hence, I have to thread sleep
> all the test classes. I would also like to know whether this is the
> recommended way to slow down the web driver, or can we implicitly wait to
> start the test execution by the framework.
>
> Thanks!
> - Ayesha
>
> On Fri, Oct 17, 2014 at 10:10 AM, Sohani Weerasinghe 
> wrote:
>
>> Hi,
>>
>> When using selenium web driver to write test cases, currently  I am using
>> Thread sleeps in order to control the speed of the browser. Is this the
>> recommended way to slow down the execution speed?
>>
>> Selenium web driver has no method to control the speed of the tests. Yes
,the possible solution is hold the execution by implicit/explicit waiting
(but not mixing them - [1] ). IMO, in the worst case we have to use thread
sleep when we cannot find a way to use above web driver built in waiting
methods.

[1] http://docs.seleniumhq.org/docs/04_webdriver_advanced.jsp

Regards,
Malintha Adikari

Please note that I am also using explicit waits to wait for certain
>> conditions to occur before proceeding further and implicit waits to poll
>> the DOM for a certain amount of time to find an element.
>>
>> Thanks,
>> Sohani
>> Sohani Weerasinghe
>> Software Engineer
>> WSO2, Inc: http://wso2.com
>>
>> Mobile  : +94 716439774
>> Blog :http://christinetechtips.blogspot.com/
>> Twitter  : https://twitter.com/sohanichristine
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Ayesha Dissanayaka*
> Software Engineer,
> WSO2, Inc : http://wso2.com
> 
> 20, Palmgrove Avenue, Colombo 3
> E-Mail: aye...@wso2.com 
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Malintha Adikari*
 Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

Mobile: +94 71 2312958
Blog:http://malinthas.blogspot.com
Page:   http://about.me/malintha
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Build Errors in /platform/components/cassandra-userstore

2014-10-20 Thread Inosh Goonewardena
Removed support-dev@ from the list.

Ishara,

Don't address public and private lists at the same time.



On Mon, Oct 20, 2014 at 6:19 PM, Ishara Cooray  wrote:

> Hi,
>
> I get following errors when try to build cassandra-userstore using mvn
> clean install.
>
> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile
> (default-compile) on project org.wso2.carbon.user.cassandra.core:
> Compilation failure: Compilation failure:
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[68,7]
> error: CassandraUserStoreManager is not abstract and does not override
> abstract method doGetSharedRoleNames(String,String,int) in
> AbstractUserStoreManager
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[168,12]
> error: cannot find symbol
> [ERROR] variable profileManager
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[496,4]
> error: method does not override or implement a method from a supertype
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[622,19]
> error: getUserClaimValues(String,String) in CassandraUserStoreManager
> cannot override getUserClaimValues(String,String) in
> AbstractUserStoreManager
> [ERROR] overridden method is final
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[656,20]
> error: getHybridRoles() in CassandraUserStoreManager cannot override
> getHybridRoles() in AbstractUserStoreManager
> [ERROR] overridden method is final
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[713,4]
> error: method does not override or implement a method from a supertype
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[819,4]
> error: method does not override or implement a method from a supertype
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[824,4]
> error: method does not override or implement a method from a supertype
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[829,4]
> error: method does not override or implement a method from a supertype
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[834,4]
> error: method does not override or implement a method from a supertype
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[898,20]
> error: listUsers(String,int) in CassandraUserStoreManager cannot override
> listUsers(String,int) in AbstractUserStoreManager
> [ERROR] overridden method is final
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[921,20]
> error: getRoleNames() in CassandraUserStoreManager cannot override
> getRoleNames() in AbstractUserStoreManager
> [ERROR] overridden method is final
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[926,20]
> error: getRoleNames(boolean) in CassandraUserStoreManager cannot override
> getRoleNames(boolean) in AbstractUserStoreManager
> [ERROR] overridden method is final
> [ERROR]
> /home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[1160,20]
> error: getUserListOfRole(String) in CassandraUserStoreManager cannot
> override getUserListOfRole(String) in AbstractUserStoreManager
> [ERROR] -> [Help 1]
> org.apache.maven.lifecycle.Lifec

[Dev] Build Errors in /platform/components/cassandra-userstore

2014-10-20 Thread Ishara Cooray
Hi,

I get following errors when try to build cassandra-userstore using mvn
clean install.

[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile
(default-compile) on project org.wso2.carbon.user.cassandra.core:
Compilation failure: Compilation failure:
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[68,7]
error: CassandraUserStoreManager is not abstract and does not override
abstract method doGetSharedRoleNames(String,String,int) in
AbstractUserStoreManager
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[168,12]
error: cannot find symbol
[ERROR] variable profileManager
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[496,4]
error: method does not override or implement a method from a supertype
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[622,19]
error: getUserClaimValues(String,String) in CassandraUserStoreManager
cannot override getUserClaimValues(String,String) in
AbstractUserStoreManager
[ERROR] overridden method is final
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[656,20]
error: getHybridRoles() in CassandraUserStoreManager cannot override
getHybridRoles() in AbstractUserStoreManager
[ERROR] overridden method is final
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[713,4]
error: method does not override or implement a method from a supertype
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[819,4]
error: method does not override or implement a method from a supertype
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[824,4]
error: method does not override or implement a method from a supertype
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[829,4]
error: method does not override or implement a method from a supertype
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[834,4]
error: method does not override or implement a method from a supertype
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[898,20]
error: listUsers(String,int) in CassandraUserStoreManager cannot override
listUsers(String,int) in AbstractUserStoreManager
[ERROR] overridden method is final
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[921,20]
error: getRoleNames() in CassandraUserStoreManager cannot override
getRoleNames() in AbstractUserStoreManager
[ERROR] overridden method is final
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[926,20]
error: getRoleNames(boolean) in CassandraUserStoreManager cannot override
getRoleNames(boolean) in AbstractUserStoreManager
[ERROR] overridden method is final
[ERROR]
/home/ishara/juno/repos/wso2/carbon/platform/components/cassandra-userstore/org.wso2.carbon.user.cassandra/src/main/java/org/wso2/carbon/user/cassandra/CassandraUserStoreManager.java:[1160,20]
error: getUserListOfRole(String) in CassandraUserStoreManager cannot
override getUserListOfRole(String) in AbstractUserStoreManager
[ERROR] -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute
goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile
(default-compile) on project org.wso2.carbon.user.cassandra.core:
Compilation failure
at
org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:213)
at
org.apac

Re: [Dev] Removing JPA fron RSS Manager and Migrate to native SQL

2014-10-20 Thread Harsha Kumara
Since we don't have large domain object model, we can migrate to ANSII
sql.Also we separated the database specific operations with metadata
repository, there won't be any database specific logic inside the metadata
repository handling. I'm starting to work on this. Thanks for the
suggestions and feedbacks on this.

On Wed, Oct 15, 2014 at 7:02 PM, Dhanuka Ranasinghe 
wrote:

> IMHO, whether we go ahead with JPA or not depend on the developers (we)
> who gonna use it. If it's not gonna make our life easier then I am +1 for
> this.
>
> You only have to change DAO layer
> from org.wso2.carbon.rssmanager.core.dao.util.EntityManager.java to bottom.
> It would be great if we can do a background study about all the RDBMs types
> and how the queries should change accordingly.
>
> Cheers,
> Dhanuka
>
> *Dhanuka Ranasinghe*
>
> Senior Software Engineer
> WSO2 Inc. ; http://wso2.com
> lean . enterprise . middleware
>
> phone : +94 715381915
>
> On Wed, Oct 15, 2014 at 6:04 AM, Prabath Abeysekera 
> wrote:
>
>> I do understand that we'd already spent considerable amount of time
>> rewriting the DAO layers implemented as part of RSS Manager to use JPA.
>> However, some of the inconsistencies/issues observed in JPA provider
>> implementations such as OpenJPA, etc got me thinking we should probably try
>> to make things simpler particularly, since all of these database logics
>> could be implemented in an ANSII compliant and vendor-neutral manner using
>> native SQL. Then again, one might wonder why we don't opt to go get the JPA
>> related issues fixed/use some stable JPA library to get over the said
>> issues. That's obviously going be a little complicated as we might probably
>> depend on some third party library acting as the JPA provider, the control
>> of which is out of our hands. Therefore, this effort is primarily aimed at
>> making things simpler and maintainable without getting ourselves dependent
>> on any third party library for persisting entities manipulated as part of
>> the respective DAO layers.
>>
>> I'm +1 for this.
>>
>> Cheers,
>> Prabath
>>
>> On Wed, Oct 15, 2014 at 2:37 PM, Harsha Kumara  wrote:
>>
>>> Hi,
>>>
>>> I'm looking through the feasibility and complexity of migrating rss
>>> manager data access from JPA to native SQL. This is due to inconsistencies
>>> cause by the JPA in the rss manager core.
>>>
>>> With the JPA most of the internal data access APIs use object mode to
>>> perform CRUD operations.
>>> With the migrations we will needs to change some APIs and and redesigns
>>> things as there is no such a object model with native SQL. Also internal
>>> data service access methods also take the benefit of the JPA object model
>>> during the persistence. Most of the current APIs design in the way that
>>> suits for the persistence. With the native all the persistence activities
>>> will needs to be written with the SQL. Internal restructure will be needed
>>> with the migration.
>>>
>>> @Prabath and Dhanuka WDYT?
>>>
>>> Appreciate any suggestions and thoughts on this.
>>>
>>> Thanks,
>>> Harsha
>>>
>>> --
>>> Harsha Kumara
>>> Software Engineer, WSO2 Inc.
>>> Mobile: +94775505618
>>> Blog:harshcreationz.blogspot.com
>>>
>>
>>
>>
>> --
>> Prabath Abeysekara
>> Associate Technical Lead, Data TG.
>> WSO2 Inc.
>> Email: praba...@wso2.com
>> Mobile: +94774171471
>>
>
>


-- 
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] Getting an RemoteException When calling getAllInboundEndpointNames() from InboundAdminStub

2014-10-20 Thread Shiva Balachandran
Hi,

it looks like you are accessing the endpoints incorrectly, or the
InboundAdmin client is null or doesn't contain any data. Before clearing,
check if the endpoints are present and see if you are accessing them
correctly.

Thank you
Shiva Balachandran

On Mon, Oct 20, 2014 at 2:18 PM, Iqbal Irham  wrote:

> Hi,
>
> In ESB integration test, after running the test cases(inside @AfterClass
> method) on cleaning out stage to delete inbound end points we are calling
> getAllInboundEndpointNames() method from InboundAdminStub service stub to
> get all the inbound end point names
>
>String endPoint = backEndUrl + serviceName;
> InboundAdminStub endpointAdminStub = new
> InboundAdminStub(endPoint);
> AuthenticateStub.authenticateStub(userName, password,
> endpointAdminStub);
> endpointAdminStub.getAllInboundEndpointNames();
>
> It's throwing RemoteException.
>
> java.lang.Exception: java.rmi.RemoteException: Error when get endpoint
> names in InboundAdmin Client; nested exception is:
> org.apache.axis2.AxisFault: The input stream for an incoming message
> is null.
> at
> org.wso2.esb.integration.common.utils.ESBIntegrationTest.deleteInboundEndpoints(ESBIntegrationTest.java:269)
> at
> org.wso2.esb.integration.common.utils.ESBIntegrationTest.cleanup(ESBIntegrationTest.java:137)
> at
> org.wso2.carbon.esb.samples.test.proxy.Sample151TestCase.destroy(Sample151TestCase.java:59)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:601)
> at
> org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:80)
> at
> org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:525)
> at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:202)
> at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:130)
> at
> org.testng.internal.TestMethodWorker.invokeAfterClassMethods(TestMethodWorker.java:222)
> at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:112)
> at org.testng.TestRunner.runWorkers(TestRunner.java:1178)
> at org.testng.TestRunner.privateRun(TestRunner.java:757)
> at org.testng.TestRunner.run(TestRunner.java:608)
> at org.testng.SuiteRunner.runTest(SuiteRunner.java:334)
> at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:329)
> at org.testng.SuiteRunner.privateRun(SuiteRunner.java:291)
> at org.testng.SuiteRunner.run(SuiteRunner.java:240)
> at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:52)
> at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:86)
> at org.testng.TestNG.runSuitesSequentially(TestNG.java:1158)
> at org.testng.TestNG.runSuitesLocally(TestNG.java:1083)
> at org.testng.TestNG.run(TestNG.java:999)
> at
> org.apache.maven.surefire.testng.TestNGExecutor.run(TestNGExecutor.java:178)
> at
> org.apache.maven.surefire.testng.TestNGXmlTestSuite.execute(TestNGXmlTestSuite.java:92)
> at
> org.apache.maven.surefire.testng.TestNGProvider.invoke(TestNGProvider.java:96)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:601)
> at
> org.apache.maven.surefire.util.ReflectionUtils.invokeMethodWithArray(ReflectionUtils.java:189)
> at
> org.apache.maven.surefire.booter.ProviderFactory$ProviderProxy.invoke(ProviderFactory.java:165)
> at
> org.apache.maven.surefire.booter.ProviderFactory.invokeProvider(ProviderFactory.java:85)
> at
> org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:115)
> at
> org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:75)
> Caused by: java.rmi.RemoteException: Error when get endpoint names in
> InboundAdmin Client; nested exception is:
> org.apache.axis2.AxisFault: The input stream for an incoming message
> is null.
> at
> org.wso2.esb.integration.common.clients.inbound.endpoint.InboundAdminClient.getAllInboundEndpointNames(InboundAdminClient.java:71)
> at
> org.wso2.esb.integration.common.utils.ESBTestCaseUtils.getAllInboundEndpoints(ESBTestCaseUtils.java:397)
> at
> org.wso2.esb.integration.common.utils.ESBIntegrationTest.deleteInboundEndpoints(ESBIntegrationTest.java:260)
> ... 36 more
> Caused by: org.apache.axis2.AxisFault: The input stream for an incoming
> message is null.
> at
> org.apache.axis2.transport.TransportUtils.createSOAPMessage(TransportUtils.java:93)
> at
> org.apache.axis2.transport.TransportUtils.createSOAPMessage(TransportUtils.java:68)
> at
> 

  1   2   >