Re: [Dev] [VOTE] Release WSO2 Dashboard Server 2.0.0 RC1

2016-02-21 Thread Sinthuja Ragendran
Hi,

I have tested below.


   - Verify user is directed to the dashboard creation page when there are
   no dashboards (super tenant, tenant)
   - Verify user is directed to the dashboard when there are is exactly one
   dashboard (super tenant, tenant)
   - Verify user is directed to the dashboard list page when there are more
   than one dashboard
   - Verify the dashboard name is not case sensitive
   - Verify the length of the dashboard name is validated
   - Verify special characters cannot be included in the dashboard name
   - Verify numerical characters can be included in the dashboard name
   - Verify the length of the dashboard description is validated
   - Test with mobile devices - ipad, iphone, samsung with browsers chrome,
   firefox, safari
   - Tested in Windows - create dashboard, add gadgets, anonymous mode,
   banner, add pages, blocks
   - Tested in Mac - create dashboard, add gadgets, anonymous mode, banner,
   add pages, blocks
   - Tested in Mac with chrome and safari

[+] Stable go ahead and release.

Thanks,
Sinthuja.


On Sat, Feb 20, 2016 at 6:21 PM, Tanya Madurapperuma  wrote:

> Hi Devs,
>
> This is the RC release candidate of WSO2 Dashboard Server 2.0.0
>
> Please download DS 2.0.0 RC1 and test the functionality and vote. Vote
> will be open for 72 hours or as needed.
>
> Source & binary distribution files:
> https://github.com/wso2/product-ds/releases/tag/v2.0.0-RC1
>
> Maven staging repo:
> http://maven.wso2.org/nexus/content/repositories/orgwso2ds-358/
>
> The tag to be voted upon:
> https://github.com/wso2/product-ds/tree/v2.0.0-RC1
>
>
> [+] Stable - go ahead and release
> [-]  Broken - do not release (explain why)
>
> Thanks and Regards,
> ~ WSO2 DS Team ~
>
> --
> Tanya Madurapperuma
>
> Senior Software Engineer,
> WSO2 Inc. : wso2.com
> Mobile : +94718184439
> Blog : http://tanyamadurapperuma.blogspot.com
>



-- 
*Sinthuja Rajendran*
Associate Technical Lead
WSO2, Inc.:http://wso2.com

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


Re: [Dev] Implementing Geographical based Analytics in API Manager

2016-02-21 Thread Joseph Fonseka
Please find the inline comments.

On Mon, Feb 22, 2016 at 11:46 AM, Tharindu Dharmarathna 
wrote:

1. When events publish from APIM to DAS we can extract the location and
> send it through the stream
>

This is quite possible but you need to cache resolved locations to reduce
the number of service calls to resolve locations. Usually you only need to
resolve the location when a new client connects.


>
> 2. When we running the spark script on top of stream data we can write a
> new function to extract this from DAS and do the sumarization As necessary.
> This way will reduce the # of checks to get Location.
>

This seems to be the most appropriate place to do the resolution IMO.


> 3. Running from the Graph side.
>

This is a no go since we cannot aggregate data when rendering on the client
and even if we can will be costly.

Also we might want to look for what levels of location data available (Ex.
country, state, latlong) for ip address if possible we should support
graphing at any level.

Regards
Jo




I think from 2nd way is the best way to do this.
>
>
> @ Mohan,
>
> Shall we make a Interface which people can plug any type of implementation
> which can extract the location . As default we can use MAXMIND database.
>
> Thanks
> Tharindu
>
> On Sun, Feb 21, 2016 at 10:53 PM, Mohanadarshan Vivekanandalingam <
> mo...@wso2.com> wrote:
>
>> AFAIR, there is an external third party API used to find the location of
>> IP address in fraud detection tool-kit.. But I think, it has many
>> restrictions..
>>
>> I agree with Jo where some customers might want to use paid services for
>> that, we need to implement the feature in such a way.. Yes, going with a
>> free database by default would be good or can't we host a service in our
>> end and use it in the pack ?
>>
>> Thanks,
>> Mohan
>>
>>
>> On Sun, Feb 21, 2016 at 10:34 PM, Joseph Fonseka  wrote:
>>
>>> Hi Tharindu
>>>
>>> They both use the same source of data from MaxMind. And the database is
>>> licensed under "CC Attribution-ShareAlike" thus we should attribute them if
>>> we are using it. see [1]
>>>
>>> On an on premise deployment customers might want to use a paid service
>>> to get the location so I think we should support that. And to ship with the
>>> product like suggested we can use a free database.
>>>
>>> Also when will the location be resolved ? will it be a background task
>>> or are you planing to do it real-time ?
>>>
>>> Regards
>>> Jo
>>>
>>>
>>>
>>> [1] http://dev.maxmind.com/geoip/geoip2/geolite2/
>>>
>>> On Sun, Feb 21, 2016 at 8:27 PM, Tharindu Dharmarathna <
>>> tharin...@wso2.com> wrote:
>>>
 HI Nuwan,

 There are two lightweight databases we can use as I found from [1] and
 [2] and those are open source projects.

 [1] - https://freegeoip.net/
 [2] -
 http://gis.stackexchange.com/questions/88/how-can-i-determine-the-location-of-a-visitor-to-my-website

 Thanks
 Tharindu

 On Sun, Feb 21, 2016 at 8:23 PM, Nirmal Fernando 
 wrote:

> @Seshika any thoughts?
>
> On Sun, Feb 21, 2016 at 8:19 PM, Nuwan Dias  wrote:
>
>> I have doubts on using an HTTP API to get these details because,
>>
>> 1. It will be costly in terms of performance to call these APIs (and
>> they might not be free as well).
>> 2. We have no control nor guarantee on their availability (they can
>> shutdown whenever they want).
>> 3. They will only work if the stats visualizing agent
>> (store/publisher) or DAS has access to internet.
>>
>> Can we look for a light-weight open-source database which has region
>> information based on IP ranges?
>>
>> Thanks,
>> NuwanD.
>>
>> On Sun, Feb 21, 2016 at 10:29 AM, Tharindu Dharmarathna <
>> tharin...@wso2.com> wrote:
>>
>>> Hi All,
>>>
>>> We are going to implement $Subject on latest release . I want to
>>> know is there any best way to extract Geographical location from IP . 
>>> And
>>> here are my findings of the ways of do.
>>>
>>> [1] - http://www.geoplugin.com
>>> Thi will retrive all the data according to the location as json
>>>
>>> [2] - http://www.telize.com/
>>>
>>> This is another REST API which can used to extract location.
>>>
>>> *Thanks*
>>> *Tharindu Dharmarathna*
>>> Associate Software Engineer
>>> WSO2 Inc.; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> mobile: *+94779109091 <%2B94779109091>*
>>>
>>
>>
>>
>> --
>> Nuwan Dias
>>
>> Technical 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
>>
>>
>
>
> --
>
> Thanks & regards,
> Nirmal
>

Re: [Dev] [GSoC 2016][CDMF] [EMM] Location and Time-based Device Policy Enforcement

2016-02-21 Thread Kamidu Punchihewa
Hi Tharida.

Project deliverable "Extension point for current EMM policy module
with location
and time based policy publishing capability" includes followings,


   - Location based policy enforcement component.
   - A component which enables the location base policy monitoring and
  enforcements including statics.This need to be a extension to thee
  component which enabled device policies currently
   - Time based location component.
   - A component which enables the time base policy monitoring and
  enforcements including statics.This need to be a extension to thee
  component which enabled device policies currently
   - Location and time based policy configuration UI.
   - This is to enable users to configure and maintain the locations and
  time frames.The UI must have the ability to monitor the policies which is
  active in the device and compliance status.Above features must follow the
  current pattern used for policy monitoring and Policy Management in WSO2
  EMM.

Thanks and Best Regards.

Kamidu Sachith Punchihewa
*Software Engineer*
WSO2, Inc.
lean . enterprise . middleware
Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>


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,
retransmit, 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.

On Mon, Feb 22, 2016 at 11:52 AM, Tharinda Ehelepola 
wrote:

> Hi Kamidu,
>
> Thanks for the quick response. Now I have a brief idea about project
> scope. Can I know about the deliverable in the project. It is not that much
> clear for me.
>
> Thanks and Regards,
> Tharinda.
>
> On Mon, Feb 22, 2016 at 11:45 AM, Tharinda Ehelepola 
> wrote:
>
>
>> -- Forwarded message --
>> From: Kamidu Punchihewa 
>> Date: Mon, Feb 22, 2016 at 10:25 AM
>> Subject: Re: [Dev][GSoC 2016][CDMF] [EMM] Location and Time-based Device
>> Policy Enforcement
>> To: Tharinda Ehelepola 
>> Cc: dev , Kasun Dananjaya Delgolla ,
>> Prabath Abeysekera , Geeth Munasinghe 
>>
>>
>> Hi Tharinda
>>
>> Thank you for your interest in this project.
>> In order to get a better picture of the project make sure to build WSO@
>> EMM including CDMF framework using the git repositories listed in [1], [2]
>> and [3] in the mentioned order.
>> Enrolled a device and a publish a sample policy against the device and
>> study the current behavior of the policy.
>> You are expected to change the behavior a mentioned below.
>>
>> Given policy must be activated automatically when the device enters a
>> predefined area.
>> Given policy must be deactivated when a device leaves a predefined area.
>> Given policy must be activated automatically in the given time frame.
>> Stats of the current policy, whether its active or inactive need to be
>> visible in the dashboard.
>> Policy compliance monitoring to the given device must be activated when a
>> policy is activated.
>>
>> While working with WSO2 EMM, if you found any bugs or improvements feel
>> free to let us know by using the oxygen tank[4].
>>
>> [1] https://github.com/wso2/carbon-device-mgt
>> [2] https://github.com/wso2/carbon-device-mgt-plugins
>> [3] https://github.com/wso2/product-mdm
>> [4] https://wso2.org/jira/secure/Dashboard.jspa
>>
>> Thanks and Best Regards.
>>
>> Kamidu Sachith Punchihewa
>> *Software Engineer*
>> WSO2, Inc.
>> lean . enterprise . middleware
>> Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>
>>
>>
>> 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, retransmit, 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.
>>
>> On Sun, Feb 21, 2016 at 10:28 PM, Tharinda Ehelepola 
>> wrote:
>>
>>> Hi,
>>>
>>> I am Tharinda Ehelepola, a final year undergraduate at Faculty of
>>> Engineering, University of Peradeniya and currently in my internship at
>>> Wso2. I am very much interesting about this 

Re: [Dev] [GSoC 2016][CDMF] [EMM] Location and Time-based Device Policy Enforcement

2016-02-21 Thread Tharinda Ehelepola
Hi Kamidu,

Thanks for the quick response. Now I have a brief idea about project scope.
Can I know about the deliverable in the project. It is not that much clear
for me.

Thanks and Regards,
Tharinda.

On Mon, Feb 22, 2016 at 11:45 AM, Tharinda Ehelepola 
wrote:

>
> -- Forwarded message --
> From: Kamidu Punchihewa 
> Date: Mon, Feb 22, 2016 at 10:25 AM
> Subject: Re: [Dev][GSoC 2016][CDMF] [EMM] Location and Time-based Device
> Policy Enforcement
> To: Tharinda Ehelepola 
> Cc: dev , Kasun Dananjaya Delgolla ,
> Prabath Abeysekera , Geeth Munasinghe 
>
>
> Hi Tharinda
>
> Thank you for your interest in this project.
> In order to get a better picture of the project make sure to build WSO@
> EMM including CDMF framework using the git repositories listed in [1], [2]
> and [3] in the mentioned order.
> Enrolled a device and a publish a sample policy against the device and
> study the current behavior of the policy.
> You are expected to change the behavior a mentioned below.
>
> Given policy must be activated automatically when the device enters a
> predefined area.
> Given policy must be deactivated when a device leaves a predefined area.
> Given policy must be activated automatically in the given time frame.
> Stats of the current policy, whether its active or inactive need to be
> visible in the dashboard.
> Policy compliance monitoring to the given device must be activated when a
> policy is activated.
>
> While working with WSO2 EMM, if you found any bugs or improvements feel
> free to let us know by using the oxygen tank[4].
>
> [1] https://github.com/wso2/carbon-device-mgt
> [2] https://github.com/wso2/carbon-device-mgt-plugins
> [3] https://github.com/wso2/product-mdm
> [4] https://wso2.org/jira/secure/Dashboard.jspa
>
> Thanks and Best Regards.
>
> Kamidu Sachith Punchihewa
> *Software Engineer*
> WSO2, Inc.
> lean . enterprise . middleware
> Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>
>
>
> 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, retransmit, 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.
>
> On Sun, Feb 21, 2016 at 10:28 PM, Tharinda Ehelepola 
> wrote:
>
>> Hi,
>>
>> I am Tharinda Ehelepola, a final year undergraduate at Faculty of
>> Engineering, University of Peradeniya and currently in my internship at
>> Wso2. I am very much interesting about this project and I have some
>> experience about EMM server and its policies.
>>
>> I would like to know more details about the project and deliverable.
>>
>> Thanks and Regards,
>> Tharinda.
>> --
>>
>> *Tharinda Ehelepola*
>>
>> *Software Engineering Intern*
>> LinkedIn 
>> TP :  94711834769
>> Email: tharin...@wso2.com
>> Blog: tharindaehelepola.blogspot.com/
>> Web: tharinda.tk
>>
>
>
>
>
> --
>
> *Tharinda Ehelepola*
>
> *Software Engineering Intern*
> LinkedIn 
> TP :  94711834769
> Email: tharin...@wso2.com
> Blog: tharindaehelepola.blogspot.com/
> Web: tharinda.tk
>



-- 
*Tharinda Dilshan Ehelepola*
*Faculty of Engineering,*
*University Of Peradeniya.*
*Software Engineering Intern  - WSO2 Inc.*

*LinkedIn *
*Blog* - http://tharindaehelepola.blogspot.com/
*Website*- https://tharinda.tk/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Implementing Geographical based Analytics in API Manager

2016-02-21 Thread Tharindu Dharmarathna
@Joe,

We can done this from 3 ways.

1. When events publish from APIM to DAS we can extract the location and
send it through the stream

2. When we running the spark script on top of stream data we can write a
new function to extract this from DAS and do the sumarization As necessary.
This way will reduce the # of checks to get Location.

3. Running from the Graph side.

I think from 2nd way is the best way to do this.


@ Mohan,

Shall we make a Interface which people can plug any type of implementation
which can extract the location . As default we can use MAXMIND database.

Thanks
Tharindu

On Sun, Feb 21, 2016 at 10:53 PM, Mohanadarshan Vivekanandalingam <
mo...@wso2.com> wrote:

> AFAIR, there is an external third party API used to find the location of
> IP address in fraud detection tool-kit.. But I think, it has many
> restrictions..
>
> I agree with Jo where some customers might want to use paid services for
> that, we need to implement the feature in such a way.. Yes, going with a
> free database by default would be good or can't we host a service in our
> end and use it in the pack ?
>
> Thanks,
> Mohan
>
>
> On Sun, Feb 21, 2016 at 10:34 PM, Joseph Fonseka  wrote:
>
>> Hi Tharindu
>>
>> They both use the same source of data from MaxMind. And the database is
>> licensed under "CC Attribution-ShareAlike" thus we should attribute them if
>> we are using it. see [1]
>>
>> On an on premise deployment customers might want to use a paid service to
>> get the location so I think we should support that. And to ship with the
>> product like suggested we can use a free database.
>>
>> Also when will the location be resolved ? will it be a background task or
>> are you planing to do it real-time ?
>>
>> Regards
>> Jo
>>
>>
>>
>> [1] http://dev.maxmind.com/geoip/geoip2/geolite2/
>>
>> On Sun, Feb 21, 2016 at 8:27 PM, Tharindu Dharmarathna <
>> tharin...@wso2.com> wrote:
>>
>>> HI Nuwan,
>>>
>>> There are two lightweight databases we can use as I found from [1] and
>>> [2] and those are open source projects.
>>>
>>> [1] - https://freegeoip.net/
>>> [2] -
>>> http://gis.stackexchange.com/questions/88/how-can-i-determine-the-location-of-a-visitor-to-my-website
>>>
>>> Thanks
>>> Tharindu
>>>
>>> On Sun, Feb 21, 2016 at 8:23 PM, Nirmal Fernando 
>>> wrote:
>>>
 @Seshika any thoughts?

 On Sun, Feb 21, 2016 at 8:19 PM, Nuwan Dias  wrote:

> I have doubts on using an HTTP API to get these details because,
>
> 1. It will be costly in terms of performance to call these APIs (and
> they might not be free as well).
> 2. We have no control nor guarantee on their availability (they can
> shutdown whenever they want).
> 3. They will only work if the stats visualizing agent
> (store/publisher) or DAS has access to internet.
>
> Can we look for a light-weight open-source database which has region
> information based on IP ranges?
>
> Thanks,
> NuwanD.
>
> On Sun, Feb 21, 2016 at 10:29 AM, Tharindu Dharmarathna <
> tharin...@wso2.com> wrote:
>
>> Hi All,
>>
>> We are going to implement $Subject on latest release . I want to know
>> is there any best way to extract Geographical location from IP . And here
>> are my findings of the ways of do.
>>
>> [1] - http://www.geoplugin.com
>> Thi will retrive all the data according to the location as json
>>
>> [2] - http://www.telize.com/
>>
>> This is another REST API which can used to extract location.
>>
>> *Thanks*
>> *Tharindu Dharmarathna*
>> Associate Software Engineer
>> WSO2 Inc.; http://wso2.com
>> lean.enterprise.middleware
>>
>> mobile: *+94779109091 <%2B94779109091>*
>>
>
>
>
> --
> Nuwan Dias
>
> Technical 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
>
>


 --

 Thanks & regards,
 Nirmal

 Team Lead - WSO2 Machine Learner
 Associate Technical Lead - Data Technologies Team, WSO2 Inc.
 Mobile: +94715779733
 Blog: http://nirmalfdo.blogspot.com/



>>>
>>>
>>> --
>>>
>>> *Tharindu Dharmarathna*Associate Software Engineer
>>> WSO2 Inc.; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> mobile: *+94779109091 <%2B94779109091>*
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>>
>> --
>> *Joseph Fonseka*
>> WSO2 Inc.; http://wso2.com
>> lean.enterprise.middleware
>>
>> mobile: +94 772 512 430
>> skype: jpfonseka
>>
>> * *
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org

Re: [Dev] [GSoC 2016][CDMF] [EMM] Location and Time-based Device Policy Enforcement

2016-02-21 Thread Kamidu Punchihewa
Hi Tharinda

Thank you for your interest in this project.
In order to get a better picture of the project make sure to build WSO@ EMM
including CDMF framework using the git repositories listed in [1], [2] and
[3] in the mentioned order.
Enrolled a device and a publish a sample policy against the device and
study the current behavior of the policy.
You are expected to change the behavior a mentioned below.

Given policy must be activated automatically when the device enters a
predefined area.
Given policy must be deactivated when a device leaves a predefined area.
Given policy must be activated automatically in the given time frame.
Stats of the current policy, whether its active or inactive need to be
visible in the dashboard.
Policy compliance monitoring to the given device must be activated when a
policy is activated.

While working with WSO2 EMM, if you found any bugs or improvements feel
free to let us know by using the oxygen tank[4].

[1] https://github.com/wso2/carbon-device-mgt
[2] https://github.com/wso2/carbon-device-mgt-plugins
[3] https://github.com/wso2/product-mdm
[4] https://wso2.org/jira/secure/Dashboard.jspa

Thanks and Best Regards.

Kamidu Sachith Punchihewa
*Software Engineer*
WSO2, Inc.
lean . enterprise . middleware
Mobile : +94 (0) 770566749 <%2B94%20%280%29%20773%20451194>


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,
retransmit, 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.

On Sun, Feb 21, 2016 at 10:28 PM, Tharinda Ehelepola 
wrote:

> Hi,
>
> I am Tharinda Ehelepola, a final year undergraduate at Faculty of
> Engineering, University of Peradeniya and currently in my internship at
> Wso2. I am very much interesting about this project and I have some
> experience about EMM server and its policies.
>
> I would like to know more details about the project and deliverable.
>
> Thanks and Regards,
> Tharinda.
> --
>
> *Tharinda Ehelepola*
>
> *Software Engineering Intern*
> LinkedIn 
> TP :  94711834769
> Email: tharin...@wso2.com
> Blog: tharindaehelepola.blogspot.com/
> Web: tharinda.tk
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [GSoC 2016] [CDMF] Calculate Device Health Status using Analytics and API Calls

2016-02-21 Thread Nuwan Sameera
Hi,
   Thank You all.

Regards,
Nuwan Sameera.

On Mon, Feb 22, 2016 at 9:11 AM, Milan Perera  wrote:

> Hi Nuwan,
>
> Please use the master branch since it is the latest.
>
> Thanks,
>
> On Mon, Feb 22, 2016 at 8:53 AM, Hasunie Adikari  wrote:
>
>> Hi Nuwan,
>>
>> Thank you for your interest in this project.You need to build following
>> repositories accordingly.
>>
>> [1] https://github.com/wso2/carbon-device-mgt
>> [2] https://github.com/wso2/carbon-device-mgt-plugins
>> [3] https://github.com/wso2/product-cdm
>> [4] https://github.com/wso2/product-mdm
>>
>>
>> On Mon, Feb 22, 2016 at 7:30 AM, Nuwan Sameera 
>> wrote:
>>
>>> Hello,
>>>There are many branches in carbon-device-mgt. What is the branch I
>>> need to build.
>>>
>>> Thanks
>>> Regards.
>>> Nuwan Sameera.
>>>
>>> On Sun, Feb 21, 2016 at 2:02 PM, Nuwan Sameera >> > wrote:
>>>
 Hello,

   I'm Y.G.Nuwan Sameera. I am third year student of University of
 Moratuwa. I am interesting to work above project. How I need to start my
 work.

 Thanks,
 Regards,
 Nuwan Sameera.

>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Hasunie Adikari*
>> Software Engineer
>> WSO2 Inc.; http://wso2.com
>> lean.enterprise.middleware
>> blog http://hasuniea.blogspot.com
>> Mobile:+94715139495
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Milan Perera *| Software Engineer
> WSO2, Inc | lean. enterprise. middleware.
> #20, Palm Grove, Colombo 03, Sri Lanka
> Mobile: +94 77 309 7088 | Work: +94 11 214 5345
> Email: mi...@wso2.com  | Web: www.wso2.com
> 
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [GSoC 2016] [CDMF] Calculate Device Health Status using Analytics and API Calls

2016-02-21 Thread Nuwan Sameera
Hi,
What is the branch I need to build above products.

Regards,
Nuwan Sameera.

On Mon, Feb 22, 2016 at 8:53 AM, Hasunie Adikari  wrote:

> Hi Nuwan,
>
> Thank you for your interest in this project.You need to build following
> repositories accordingly.
>
> [1] https://github.com/wso2/carbon-device-mgt
> [2] https://github.com/wso2/carbon-device-mgt-plugins
> [3] https://github.com/wso2/product-cdm
> [4] https://github.com/wso2/product-mdm
>
>
> On Mon, Feb 22, 2016 at 7:30 AM, Nuwan Sameera 
> wrote:
>
>> Hello,
>>There are many branches in carbon-device-mgt. What is the branch I
>> need to build.
>>
>> Thanks
>> Regards.
>> Nuwan Sameera.
>>
>> On Sun, Feb 21, 2016 at 2:02 PM, Nuwan Sameera 
>> wrote:
>>
>>> Hello,
>>>
>>>   I'm Y.G.Nuwan Sameera. I am third year student of University of
>>> Moratuwa. I am interesting to work above project. How I need to start my
>>> work.
>>>
>>> Thanks,
>>> Regards,
>>> Nuwan Sameera.
>>>
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Hasunie Adikari*
> Software Engineer
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
> blog http://hasuniea.blogspot.com
> Mobile:+94715139495
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [GSoC 2016] [CDMF] Calculate Device Health Status using Analytics and API Calls

2016-02-21 Thread Milan Perera
Hi Nuwan,

Please use the master branch since it is the latest.

Thanks,

On Mon, Feb 22, 2016 at 8:53 AM, Hasunie Adikari  wrote:

> Hi Nuwan,
>
> Thank you for your interest in this project.You need to build following
> repositories accordingly.
>
> [1] https://github.com/wso2/carbon-device-mgt
> [2] https://github.com/wso2/carbon-device-mgt-plugins
> [3] https://github.com/wso2/product-cdm
> [4] https://github.com/wso2/product-mdm
>
>
> On Mon, Feb 22, 2016 at 7:30 AM, Nuwan Sameera 
> wrote:
>
>> Hello,
>>There are many branches in carbon-device-mgt. What is the branch I
>> need to build.
>>
>> Thanks
>> Regards.
>> Nuwan Sameera.
>>
>> On Sun, Feb 21, 2016 at 2:02 PM, Nuwan Sameera 
>> wrote:
>>
>>> Hello,
>>>
>>>   I'm Y.G.Nuwan Sameera. I am third year student of University of
>>> Moratuwa. I am interesting to work above project. How I need to start my
>>> work.
>>>
>>> Thanks,
>>> Regards,
>>> Nuwan Sameera.
>>>
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Hasunie Adikari*
> Software Engineer
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
> blog http://hasuniea.blogspot.com
> Mobile:+94715139495
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Milan Perera *| Software Engineer
WSO2, Inc | lean. enterprise. middleware.
#20, Palm Grove, Colombo 03, Sri Lanka
Mobile: +94 77 309 7088 | Work: +94 11 214 5345
Email: mi...@wso2.com  | Web: www.wso2.com

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


Re: [Dev] [GSoC 2016] [CDMF] Calculate Device Health Status using Analytics and API Calls

2016-02-21 Thread Hasunie Adikari
Hi Nuwan,

Thank you for your interest in this project.You need to build following
repositories accordingly.

[1] https://github.com/wso2/carbon-device-mgt
[2] https://github.com/wso2/carbon-device-mgt-plugins
[3] https://github.com/wso2/product-cdm
[4] https://github.com/wso2/product-mdm


On Mon, Feb 22, 2016 at 7:30 AM, Nuwan Sameera 
wrote:

> Hello,
>There are many branches in carbon-device-mgt. What is the branch I need
> to build.
>
> Thanks
> Regards.
> Nuwan Sameera.
>
> On Sun, Feb 21, 2016 at 2:02 PM, Nuwan Sameera 
> wrote:
>
>> Hello,
>>
>>   I'm Y.G.Nuwan Sameera. I am third year student of University of
>> Moratuwa. I am interesting to work above project. How I need to start my
>> work.
>>
>> Thanks,
>> Regards,
>> Nuwan Sameera.
>>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Hasunie Adikari*
Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware
blog http://hasuniea.blogspot.com
Mobile:+94715139495
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [GSoC 2016] [ESB/GW] File Gateway on top of WSO2 Gateway

2016-02-21 Thread Malaka Silva
Hi Geethika,

Currently in ESB for VFS operations we are mainly using common-vfs. There
may be better alternatives for this. Worth checking for alternatives as
part of R

eg:-

[1]
http://ysb33r.github.io/groovy-vfs/1.0-beta3/docs/product-documentation.html
(Again this is running on top of common-vfs)
[2] https://developer.jboss.org/wiki/VFS3UserGuide?_sscc=t

On Sun, Feb 21, 2016 at 9:44 PM, Geethika Kumari 
wrote:

> Hi,
>   Thank you. I will try it.
>
> Regards,
> Geethika Kumari.
>
> On Sun, Feb 21, 2016 at 9:38 PM, Imesh Gunaratne  wrote:
>
>>
>>
>> On Sun, Feb 21, 2016 at 9:33 PM, Geethika Kumari 
>> wrote:
>>
>>> Hi,
>>>Thank you. But same error occurred both these products.
>>>"*Failed to execute goal
>>> org.apache.maven.plugins:maven-compiler-plugin:3.3:compile
>>> (default-compile) on project org.wso2.carbon.messaging: Fatal error
>>> compiling: invalid target release: 1.8*"
>>>
>>> I used java version 1.7.0_80 and maven version 3.3
>>>
>>
>> You need to use JDK 1.8. Set JAVA_HOME pointing to JDK 1.8 home directory
>> and build using Maven. Maven 3.3.3 should work.
>>
>>
>>>  Thank you.
>>> Regards,
>>> Geethika Kumari.
>>>
>>> On Sun, Feb 21, 2016 at 8:20 PM, Chamil Elladeniya 
>>> wrote:
>>>
 Hi,
 Before that you need to build both carbon messaging[1] and carbon
 transport[2] as they provide necessary dependencies.

 [1] https://github.com/wso2/carbon-messaging.git
 [2] https://github.com/wso2/carbon-transports.git

 On Sun, Feb 21, 2016 at 6:30 PM, Geethika Kumari <
 geethika@gmail.com> wrote:

> Hello,
>   I'm Geethika Kumari Abeysinghe third year student of University
> of Moratuwa. I am interested with above project. I have some skills about
> java programming.
>
>   I cloned product-gw and try to build master branch. But build
> break occurred. There is any dependent product need to build this product.
>
> Regars,
> Thank you.
> Geethika Abeysinghe.
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


 --
 Chamil Elladeniya
 Software Engineering Intern
 Mobile : +94 71 6181154 <%2B94%20%280%29%20773%20451194>
 cham...@wso2.com

>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> *Imesh Gunaratne*
>> Senior Technical Lead
>> WSO2 Inc: http://wso2.com
>> T: +94 11 214 5345 M: +94 77 374 2057
>> W: http://imesh.gunaratne.org
>> Lean . Enterprise . Middleware
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 

Best Regards,

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

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

https://store.wso2.com/store/

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


Re: [Dev] [GSoC 2016] [CDMF] Calculate Device Health Status using Analytics and API Calls

2016-02-21 Thread Nuwan Sameera
Hello,
   There are many branches in carbon-device-mgt. What is the branch I need
to build.

Thanks
Regards.
Nuwan Sameera.

On Sun, Feb 21, 2016 at 2:02 PM, Nuwan Sameera 
wrote:

> Hello,
>
>   I'm Y.G.Nuwan Sameera. I am third year student of University of
> Moratuwa. I am interesting to work above project. How I need to start my
> work.
>
> Thanks,
> Regards,
> Nuwan Sameera.
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Native inbound and connector for IBM MQ 7.5

2016-02-21 Thread Malaka Silva
Hi Riyafa ,

I guess you can implement it using one of those types. One issue is event
based type is going to be introduce with ESB 5.0.0. Next wso2 esb version.
If you use this this feature will not work with previous versions on esbs.

I think you can adjust Get-message
​ ​
behavior using WaitInterval
​ parameter and do polling or event-based. [1]

However there may be issues with client libraries when waiting for long
periods. We first need to do a r of the behavior from library when there
are no messages for a long period. Based on that we should decide the
correct approach.

Also it is important to include SSL and authentication into this feature.​

[1]
https://www-01.ibm.com/support/knowledgecenter/SSB23S_1.1.0.12/gtpc2/mqgmost.html

On Sun, Feb 21, 2016 at 6:58 PM, Riyafa Abdul Hameed <
riyafa...@cse.mrt.ac.lk> wrote:

> Hi,
>
> Can you please suggest if it would be appropriate to use an event based
> custom inbound endpoint in this case so that I would learn more about it?
>
> Thank you.
>
> Yours sincerely,
> Riyafa
>
> On 21 February 2016 at 18:09, Rajjaz Mohammed  wrote:
>
>> Hi Riyafa,
>> You no need to follow exactly as same as in [1]. it's just an try of one
>> developer so you can try your own way.
>>
>> [1]
>> https://github.com/Kirishanthy/IBM-MQ-Client/blob/master/ibmmqClient/src/main/java/MQProducerSSL.java
>>
>> On Sun, Feb 21, 2016 at 5:38 PM, Riyafa Abdul Hameed <
>> riyafa...@cse.mrt.ac.lk> wrote:
>>
>>> Hi,
>>>
>>>
>>>
>>> *Reporting progress:*
>>> This week I learned about inbound endpoints and how to use them. I did
>>> some searching and found that two types of custom inbound endpoints are
>>> suitable as consumer for IBM MQ:
>>>
>>> 1. Polling custom inbound endpoint
>>> 2. Event based custom inbound endpoint
>>>
>>> As for the first one I have found that code have been written to achieve
>>> this[1]. As for the second I think it is more appropriate to use it when "
>>> the number of messages arriving on the queues is unpredictable. In this
>>> case if polling is used, applications could be consuming system resources
>>> even when there are no messages to retrieve." I have found in [2] and [3]
>>> about triggers. I have not tried any of those yet. I will do so hopefully
>>> in the near future.
>>>
>>> Further I went through the code provided in [1] and found that I have
>>> created the consumer and the producer in the same way as in the above code.
>>> But I didn't understand how to use ssl with the queue manager[4]. I will
>>> try to understand that as well.
>>>
>>> That is what I have done this week. Please inform me whether my approach
>>> is correct and what else I could do.
>>>
>>> [1]https://github.com/search?q=user%3AKirishanthy+ibm-mq
>>> [2]
>>> https://www-01.ibm.com/support/knowledgecenter/SSFKSJ_7.5.0/com.ibm.mq.dev.doc/q026910_.htm
>>> [3]
>>> http://stackoverflow.com/questions/26840204/ibm-websphere-mq-triggering-issue
>>> [4]
>>> https://github.com/Kirishanthy/IBM-MQ-Client/blob/master/ibmmqClient/src/main/java/MQProducerSSL.java
>>>
>>> Thank you.
>>>
>>> Yours sincerely,
>>> Riyafa
>>>
>>> On 14 February 2016 at 16:46, Riyafa Abdul Hameed <
>>> riyafa...@cse.mrt.ac.lk> wrote:
>>>
 Hi,

 Thank you for the reply. I shall follow the links you sent and report
 progress.

 Thanks again,
 Riyafa

 On 13 February 2016 at 20:45, Rajjaz Mohammed  wrote:

> Hi Riyafa,
> Good to hear, first learn how wso2 ESB custom inbound works[1][2]. And
> there is a thread regarding IBM MQ Inbound/Connector[3] already so you can
> check the issues and samples[4][5].
>
> [1]
> https://docs.wso2.com/display/ESB490/Working+with+Inbound+Endpoints
> [2]
> http://wso2experience.blogspot.com/2015/08/getting-started-with-simple-wso2-esb_22.html
> [3]
> http://wso2-oxygen-tank.10903.n7.nabble.com/IBM-MQ-Inbound-Connector-for-WSO2-ESB-td125494.html#a125507
> [4] https://github.com/Kirishanthy/esb-connectors/tree/master/ibmmq
> [5] https://github.com/search?q=user%3AKirishanthy+ibm-mq
>
> On Sat, Feb 13, 2016 at 8:22 PM, Riyafa Abdul Hameed <
> riyafa...@cse.mrt.ac.lk> wrote:
>
>> Hi Malaka,
>>
>> I managed to install Websphere MQ 7.5 on my windows machine and to
>> try connection as consumer and producer from simple java clients I
>> created [1]. Please suggest what else that needs to be done to get 
>> started.
>>
>>
>> [1] https://github.com/riyafa/websphere/tree/master/src/riyafa
>>
>> Thank you,
>> Riyafa
>>
>> On 11 February 2016 at 19:32, Malaka Silva  wrote:
>>
>>> Yes sometimes there are issues when installing on​ linux based
>>> system. Go ahead and try on Windows.
>>>
>>> ​You can call me Malaka :)
>>>
>>> On Thu, Feb 11, 2016 at 7:28 PM, Riyafa Abdul Hameed <
>>> riyafa...@cse.mrt.ac.lk> wrote:
>>>
 Dear sir,

 I 

[Dev] Fwd: [GSOC 2016] Contribute Developer Tooling for Microservice Framework for Java

2016-02-21 Thread Heshan Jayasinghe
I am Heshan Jayasinghe undergraduate of university of moratuwa.i am
interested on web services,Apache projects and cloud based projects.I work
with apache jclouds,docker,kubernates and more other applications as well.i
used google cloud platform,AWS to configure above applications.

I participate Wso2Con Asia 2016 and gain big knowledge.i participate most
of sessions done by wso2.I participate wso2 hackathon 2014.

I like to contribute project *Developer Tooling for Microservice Framework
for Java.*

I work with JAX-RS,Eclipse and IntelliJ IDEA so hope i can complete this
task.I'd like to know more details about this project.

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


Re: [Dev] Implementing Geographical based Analytics in API Manager

2016-02-21 Thread Mohanadarshan Vivekanandalingam
AFAIR, there is an external third party API used to find the location of IP
address in fraud detection tool-kit.. But I think, it has many
restrictions..

I agree with Jo where some customers might want to use paid services for
that, we need to implement the feature in such a way.. Yes, going with a
free database by default would be good or can't we host a service in our
end and use it in the pack ?

Thanks,
Mohan


On Sun, Feb 21, 2016 at 10:34 PM, Joseph Fonseka  wrote:

> Hi Tharindu
>
> They both use the same source of data from MaxMind. And the database is
> licensed under "CC Attribution-ShareAlike" thus we should attribute them if
> we are using it. see [1]
>
> On an on premise deployment customers might want to use a paid service to
> get the location so I think we should support that. And to ship with the
> product like suggested we can use a free database.
>
> Also when will the location be resolved ? will it be a background task or
> are you planing to do it real-time ?
>
> Regards
> Jo
>
>
>
> [1] http://dev.maxmind.com/geoip/geoip2/geolite2/
>
> On Sun, Feb 21, 2016 at 8:27 PM, Tharindu Dharmarathna  > wrote:
>
>> HI Nuwan,
>>
>> There are two lightweight databases we can use as I found from [1] and
>> [2] and those are open source projects.
>>
>> [1] - https://freegeoip.net/
>> [2] -
>> http://gis.stackexchange.com/questions/88/how-can-i-determine-the-location-of-a-visitor-to-my-website
>>
>> Thanks
>> Tharindu
>>
>> On Sun, Feb 21, 2016 at 8:23 PM, Nirmal Fernando  wrote:
>>
>>> @Seshika any thoughts?
>>>
>>> On Sun, Feb 21, 2016 at 8:19 PM, Nuwan Dias  wrote:
>>>
 I have doubts on using an HTTP API to get these details because,

 1. It will be costly in terms of performance to call these APIs (and
 they might not be free as well).
 2. We have no control nor guarantee on their availability (they can
 shutdown whenever they want).
 3. They will only work if the stats visualizing agent (store/publisher)
 or DAS has access to internet.

 Can we look for a light-weight open-source database which has region
 information based on IP ranges?

 Thanks,
 NuwanD.

 On Sun, Feb 21, 2016 at 10:29 AM, Tharindu Dharmarathna <
 tharin...@wso2.com> wrote:

> Hi All,
>
> We are going to implement $Subject on latest release . I want to know
> is there any best way to extract Geographical location from IP . And here
> are my findings of the ways of do.
>
> [1] - http://www.geoplugin.com
> Thi will retrive all the data according to the location as json
>
> [2] - http://www.telize.com/
>
> This is another REST API which can used to extract location.
>
> *Thanks*
> *Tharindu Dharmarathna*
> Associate Software Engineer
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: *+94779109091 <%2B94779109091>*
>



 --
 Nuwan Dias

 Technical 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


>>>
>>>
>>> --
>>>
>>> Thanks & regards,
>>> Nirmal
>>>
>>> Team Lead - WSO2 Machine Learner
>>> Associate Technical Lead - Data Technologies Team, WSO2 Inc.
>>> Mobile: +94715779733
>>> Blog: http://nirmalfdo.blogspot.com/
>>>
>>>
>>>
>>
>>
>> --
>>
>> *Tharindu Dharmarathna*Associate Software Engineer
>> WSO2 Inc.; http://wso2.com
>> lean.enterprise.middleware
>>
>> mobile: *+94779109091 <%2B94779109091>*
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
>
> --
> *Joseph Fonseka*
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: +94 772 512 430
> skype: jpfonseka
>
> * *
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


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

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


Re: [Dev] Implementing Geographical based Analytics in API Manager

2016-02-21 Thread Joseph Fonseka
Hi Tharindu

They both use the same source of data from MaxMind. And the database is
licensed under "CC Attribution-ShareAlike" thus we should attribute them if
we are using it. see [1]

On an on premise deployment customers might want to use a paid service to
get the location so I think we should support that. And to ship with the
product like suggested we can use a free database.

Also when will the location be resolved ? will it be a background task or
are you planing to do it real-time ?

Regards
Jo



[1] http://dev.maxmind.com/geoip/geoip2/geolite2/

On Sun, Feb 21, 2016 at 8:27 PM, Tharindu Dharmarathna 
wrote:

> HI Nuwan,
>
> There are two lightweight databases we can use as I found from [1] and [2]
> and those are open source projects.
>
> [1] - https://freegeoip.net/
> [2] -
> http://gis.stackexchange.com/questions/88/how-can-i-determine-the-location-of-a-visitor-to-my-website
>
> Thanks
> Tharindu
>
> On Sun, Feb 21, 2016 at 8:23 PM, Nirmal Fernando  wrote:
>
>> @Seshika any thoughts?
>>
>> On Sun, Feb 21, 2016 at 8:19 PM, Nuwan Dias  wrote:
>>
>>> I have doubts on using an HTTP API to get these details because,
>>>
>>> 1. It will be costly in terms of performance to call these APIs (and
>>> they might not be free as well).
>>> 2. We have no control nor guarantee on their availability (they can
>>> shutdown whenever they want).
>>> 3. They will only work if the stats visualizing agent (store/publisher)
>>> or DAS has access to internet.
>>>
>>> Can we look for a light-weight open-source database which has region
>>> information based on IP ranges?
>>>
>>> Thanks,
>>> NuwanD.
>>>
>>> On Sun, Feb 21, 2016 at 10:29 AM, Tharindu Dharmarathna <
>>> tharin...@wso2.com> wrote:
>>>
 Hi All,

 We are going to implement $Subject on latest release . I want to know
 is there any best way to extract Geographical location from IP . And here
 are my findings of the ways of do.

 [1] - http://www.geoplugin.com
 Thi will retrive all the data according to the location as json

 [2] - http://www.telize.com/

 This is another REST API which can used to extract location.

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

 mobile: *+94779109091 <%2B94779109091>*

>>>
>>>
>>>
>>> --
>>> Nuwan Dias
>>>
>>> Technical 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
>>>
>>>
>>
>>
>> --
>>
>> Thanks & regards,
>> Nirmal
>>
>> Team Lead - WSO2 Machine Learner
>> Associate Technical Lead - Data Technologies Team, WSO2 Inc.
>> Mobile: +94715779733
>> Blog: http://nirmalfdo.blogspot.com/
>>
>>
>>
>
>
> --
>
> *Tharindu Dharmarathna*Associate Software Engineer
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: *+94779109091 <%2B94779109091>*
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 

-- 
*Joseph Fonseka*
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

mobile: +94 772 512 430
skype: jpfonseka

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


[Dev] [GSoC 2016][CDMF] [EMM] Location and Time-based Device Policy Enforcement

2016-02-21 Thread Tharinda Ehelepola
Hi,

I am Tharinda Ehelepola, a final year undergraduate at Faculty of
Engineering, University of Peradeniya and currently in my internship at
Wso2. I am very much interesting about this project and I have some
experience about EMM server and its policies.

I would like to know more details about the project and deliverable.

Thanks and Regards,
Tharinda.
-- 

*Tharinda Ehelepola*

*Software Engineering Intern*
LinkedIn 
TP :  94711834769
Email: tharin...@wso2.com
Blog: tharindaehelepola.blogspot.com/
Web: tharinda.tk
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [VOTE] Release WSO2 Complex Event Processor 4.1.0 RC2

2016-02-21 Thread Lasantha Fernando
Tested the Event Metrics feature and input part of arbitrary maps in
standalone mode.

No issues found.
[x] Stable - Please go ahead and release

Thanks,
Lasantha

On 21 February 2016 at 07:00, Damith Wickramasinghe 
wrote:

> Tested dashboard and related samples.
>
> No issues found.
> [+] Stable - Please go ahead and release..
>
> Regards,
> Damith.
>
> On Sun, Feb 21, 2016 at 4:42 PM, Grainier Perera 
> wrote:
>
>> Tested following scenarios/features.
>>
>> 1. Distributed deployment of CEP.
>> 2. High availability deployment of CEP.
>> 3. High availability deployment with state persistence (Single Node,
>> Clustered).
>> 4. Siddhi Extensions in Storm (Map, Reorder, Time Series, Event Table,
>> ML, Kalman, Geo).
>>
>> No issues found.
>> [x] Stable - Please go ahead and release.
>>
>> Regards,
>>
>> On Sun, Feb 21, 2016 at 4:04 PM, Mohanadarshan Vivekanandalingam <
>> mo...@wso2.com> wrote:
>>
>>> Tested following scenarios/features..
>>>
>>> 1. All Samples(-0022) related to Event Receivers
>>> 2. Basic end-to-end execution Flow
>>> 3. Execution Manager
>>> 4. Event Tracer
>>>
>>> No issues found.
>>> [x] Stable - Please go ahead and release..
>>>
>>> Thanks,
>>> Mohan
>>>
>>> On Fri, Feb 19, 2016 at 2:04 AM, Grainier Perera 
>>> wrote:
>>> > Hi Devs,
>>> >
>>> > This is the second release candidate of WSO2 Complex Event Processor
>>> 4.1.0.
>>> >
>>> > This release fixes the following issues:
>>> > https://wso2.org/jira/issues/?filter=12644
>>> >
>>> > Please download CEP 4.1.0 RC2 and test the functionality and vote.
>>> Vote will
>>> > be open for 72 hours or as needed.
>>> >
>>> > Source & binary distribution files:
>>> > https://github.com/wso2/product-cep/releases/tag/v4.1.0-RC2
>>> >
>>> > The tag to be voted upon:
>>> > https://github.com/wso2/product-cep/tree/release-4.1.0-RC2
>>> >
>>> > [+] Stable - go ahead and release
>>> > [-] Broken - do not release (explain why)
>>> >
>>> > Thanks and Regards,
>>> > WSO2 CEP Team.
>>> >
>>> > --
>>> > Grainier Perera
>>> > Software Engineer
>>> > Mobile : +94716122384
>>> > WSO2 Inc. | http://wso2.com
>>> > lean.enterprise.middleware
>>> >
>>> > ___
>>> > Dev mailing list
>>> > Dev@wso2.org
>>> > http://wso2.org/cgi-bin/mailman/listinfo/dev
>>> >
>>>
>>>
>>>
>>> --
>>> V. Mohanadarshan
>>> Senior Software Engineer,
>>> Data Technologies Team,
>>> WSO2, Inc. http://wso2.com
>>> lean.enterprise.middleware.
>>>
>>> email: mo...@wso2.com
>>> phone:(+94) 771117673
>>>
>>
>>
>>
>> --
>> Grainier Perera
>> Software Engineer
>> Mobile : +94716122384
>> WSO2 Inc. | http://wso2.com
>> lean.enterprise.middleware
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Software Engineer
> WSO2 Inc.; http://wso2.com
> 
> lean.enterprise.middleware
>
> mobile: *+94728671315 <%2B94728671315>*
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


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

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


Re: [Dev] [GSoC 2016] [ESB/GW] File Gateway on top of WSO2 Gateway

2016-02-21 Thread Geethika Kumari
Hi,
  Thank you. I will try it.

Regards,
Geethika Kumari.

On Sun, Feb 21, 2016 at 9:38 PM, Imesh Gunaratne  wrote:

>
>
> On Sun, Feb 21, 2016 at 9:33 PM, Geethika Kumari 
> wrote:
>
>> Hi,
>>Thank you. But same error occurred both these products.
>>"*Failed to execute goal
>> org.apache.maven.plugins:maven-compiler-plugin:3.3:compile
>> (default-compile) on project org.wso2.carbon.messaging: Fatal error
>> compiling: invalid target release: 1.8*"
>>
>> I used java version 1.7.0_80 and maven version 3.3
>>
>
> You need to use JDK 1.8. Set JAVA_HOME pointing to JDK 1.8 home directory
> and build using Maven. Maven 3.3.3 should work.
>
>
>>  Thank you.
>> Regards,
>> Geethika Kumari.
>>
>> On Sun, Feb 21, 2016 at 8:20 PM, Chamil Elladeniya 
>> wrote:
>>
>>> Hi,
>>> Before that you need to build both carbon messaging[1] and carbon
>>> transport[2] as they provide necessary dependencies.
>>>
>>> [1] https://github.com/wso2/carbon-messaging.git
>>> [2] https://github.com/wso2/carbon-transports.git
>>>
>>> On Sun, Feb 21, 2016 at 6:30 PM, Geethika Kumari >> > wrote:
>>>
 Hello,
   I'm Geethika Kumari Abeysinghe third year student of University
 of Moratuwa. I am interested with above project. I have some skills about
 java programming.

   I cloned product-gw and try to build master branch. But build
 break occurred. There is any dependent product need to build this product.

 Regars,
 Thank you.
 Geethika Abeysinghe.


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


>>>
>>>
>>> --
>>> Chamil Elladeniya
>>> Software Engineering Intern
>>> Mobile : +94 71 6181154 <%2B94%20%280%29%20773%20451194>
>>> cham...@wso2.com
>>>
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> *Imesh Gunaratne*
> Senior Technical Lead
> WSO2 Inc: http://wso2.com
> T: +94 11 214 5345 M: +94 77 374 2057
> W: http://imesh.gunaratne.org
> Lean . Enterprise . Middleware
>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [GSoC 2016] [ESB/GW] File Gateway on top of WSO2 Gateway

2016-02-21 Thread Imesh Gunaratne
On Sun, Feb 21, 2016 at 9:33 PM, Geethika Kumari 
wrote:

> Hi,
>Thank you. But same error occurred both these products.
>"*Failed to execute goal
> org.apache.maven.plugins:maven-compiler-plugin:3.3:compile
> (default-compile) on project org.wso2.carbon.messaging: Fatal error
> compiling: invalid target release: 1.8*"
>
> I used java version 1.7.0_80 and maven version 3.3
>

You need to use JDK 1.8. Set JAVA_HOME pointing to JDK 1.8 home directory
and build using Maven. Maven 3.3.3 should work.


>  Thank you.
> Regards,
> Geethika Kumari.
>
> On Sun, Feb 21, 2016 at 8:20 PM, Chamil Elladeniya 
> wrote:
>
>> Hi,
>> Before that you need to build both carbon messaging[1] and carbon
>> transport[2] as they provide necessary dependencies.
>>
>> [1] https://github.com/wso2/carbon-messaging.git
>> [2] https://github.com/wso2/carbon-transports.git
>>
>> On Sun, Feb 21, 2016 at 6:30 PM, Geethika Kumari 
>> wrote:
>>
>>> Hello,
>>>   I'm Geethika Kumari Abeysinghe third year student of University of
>>> Moratuwa. I am interested with above project. I have some skills about java
>>> programming.
>>>
>>>   I cloned product-gw and try to build master branch. But build
>>> break occurred. There is any dependent product need to build this product.
>>>
>>> Regars,
>>> Thank you.
>>> Geethika Abeysinghe.
>>>
>>>
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>>
>>
>>
>> --
>> Chamil Elladeniya
>> Software Engineering Intern
>> Mobile : +94 71 6181154 <%2B94%20%280%29%20773%20451194>
>> cham...@wso2.com
>>
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
*Imesh Gunaratne*
Senior Technical Lead
WSO2 Inc: http://wso2.com
T: +94 11 214 5345 M: +94 77 374 2057
W: http://imesh.gunaratne.org
Lean . Enterprise . Middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [GSoC 2016] [ESB/GW] File Gateway on top of WSO2 Gateway

2016-02-21 Thread Geethika Kumari
Hi,
   Thank you. But same error occurred both these products.
   "*Failed to execute goal
org.apache.maven.plugins:maven-compiler-plugin:3.3:compile
(default-compile) on project org.wso2.carbon.messaging: Fatal error
compiling: invalid target release: 1.8*"

I used java version 1.7.0_80 and maven version 3.3

 Thank you.
Regards,
Geethika Kumari.

On Sun, Feb 21, 2016 at 8:20 PM, Chamil Elladeniya  wrote:

> Hi,
> Before that you need to build both carbon messaging[1] and carbon
> transport[2] as they provide necessary dependencies.
>
> [1] https://github.com/wso2/carbon-messaging.git
> [2] https://github.com/wso2/carbon-transports.git
>
> On Sun, Feb 21, 2016 at 6:30 PM, Geethika Kumari 
> wrote:
>
>> Hello,
>>   I'm Geethika Kumari Abeysinghe third year student of University of
>> Moratuwa. I am interested with above project. I have some skills about java
>> programming.
>>
>>   I cloned product-gw and try to build master branch. But build break
>> occurred. There is any dependent product need to build this product.
>>
>> Regars,
>> Thank you.
>> Geethika Abeysinghe.
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Chamil Elladeniya
> Software Engineering Intern
> Mobile : +94 71 6181154 <%2B94%20%280%29%20773%20451194>
> cham...@wso2.com
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [GSoC 2016] [ESB/GW] File Gateway on top of WSO2 Gateway

2016-02-21 Thread Viraj Senevirathne
Hi Geethika,

Thank you for your interest in this project. We are planning to write file
gateway which will be based on wso2 gateway [1] architecture in this
project. Basically we be aiming to implement file functionality for most
common file systems like ftp & ftps, sftp, local file system and samba.

In current ESB implementation we use commons-vfs[2] for all the file
transfers. You can go through the documentation [3] and try out vfs
functionality in ESB 4.9.0. We also introduced file inbound [4] with ESB
4.9.0, which is a dynamic transport which can be changed in run-time with
restating the ESB.

Through this project we are planning to improve performance and flexibility
of file transfers than present implementation. It should be based on wso2
gateway architecture.

You can go through following links to get more idea about wso2-gw and
present implementation of file processing in the ESB.

Regards,

[1] https://github.com/wso2/product-gw

[2] https://commons.apache.org/proper/commons-vfs/

[3]
https://docs.wso2.com/display/ESB490/WSO2+Enterprise+Service+Bus+Documentation

[4] https://docs.wso2.com/display/ESB490/VFS+Transport

[5] https://docs.wso2.com/display/ESB490/File+Inbound+Protocol

On Sun, Feb 21, 2016 at 8:20 PM, Chamil Elladeniya  wrote:

> Hi,
> Before that you need to build both carbon messaging[1] and carbon
> transport[2] as they provide necessary dependencies.
>
> [1] https://github.com/wso2/carbon-messaging.git
> [2] https://github.com/wso2/carbon-transports.git
>
> On Sun, Feb 21, 2016 at 6:30 PM, Geethika Kumari 
> wrote:
>
>> Hello,
>>   I'm Geethika Kumari Abeysinghe third year student of University of
>> Moratuwa. I am interested with above project. I have some skills about java
>> programming.
>>
>>   I cloned product-gw and try to build master branch. But build break
>> occurred. There is any dependent product need to build this product.
>>
>> Regars,
>> Thank you.
>> Geethika Abeysinghe.
>>
>>
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>>
>
>
> --
> Chamil Elladeniya
> Software Engineering Intern
> Mobile : +94 71 6181154 <%2B94%20%280%29%20773%20451194>
> cham...@wso2.com
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Viraj Senevirathne
Software Engineer; WSO2, Inc.

Mobile : +94 71 958 0269
Email : vir...@wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [GSoC 2016] File Gateway on top of WSO2 Gateway

2016-02-21 Thread Viraj Senevirathne
Hi Nuwan,

Thank you for your interest in this project. We are planning to write file
gateway which will be based on wso2 gateway [1] architecture in this
project. Basically we be aiming to implement file functionality for most
common file systems like ftp & ftps, sftp, local file system and samba.

In current ESB implementation we use commons-vfs[2] for all the file
transfers. You can go through the documentation [3] and try out vfs
functionality in ESB 4.9.0. We also introduced file inbound [4] with ESB
4.9.0, which is a dynamic transport which can be changed in run-time with
restating the ESB.

Through this project we are planning to improve performance and flexibility
of file transfers than present implementation. It should be based on wso2
gateway architecture.

You can go through following links to get more idea about wso2-gw and
present implementation of file processing in the ESB.

Regards,

[1] https://github.com/wso2/product-gw

[2] https://commons.apache.org/proper/commons-vfs/

[3]
https://docs.wso2.com/display/ESB490/WSO2+Enterprise+Service+Bus+Documentation

[4] https://docs.wso2.com/display/ESB490/VFS+Transport

[5] https://docs.wso2.com/display/ESB490/File+Inbound+Protocol

On Fri, Feb 19, 2016 at 4:39 PM, Nuwan Sameera 
wrote:

> Dear sir,
>I'm Y.G.Nuwan Sameera student of University of Moratuwa. I would
> like work with this project.
>
> Thank you.
> Nuwan
>



-- 
Viraj Senevirathne
Software Engineer; WSO2, Inc.

Mobile : +94 71 958 0269
Email : vir...@wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] GSOC 2016-support xml, cvs, json, excel and web services formats in data mapper

2016-02-21 Thread Jayamine A.
Hi,

I have a question about the web services format.
I did not get the idea of web services format..

What kind of web services ?
please help me to understand it.


Thanks
Jayamine :-)




>> On Thu, Feb 18, 2016 at 10:04 AM, Nuwan Pallewela 
>> wrote:
>>
>>> Hi Jayamine,
>>>
>>> Thank you for showing interest on this project.
>>>
>>> We have not created a proper documentation of the design yet. It will be
>>> completed in next week and we will share it with you. Until that you can go
>>> through data mapper engine source and understand how the current
>>> implementation have been done to convert message formats (Input adapters ,
>>> Output adapters ). These implementations were done as a POC before, so we
>>> need to improve these implementations to be done in proper way.
>>>
>>> If you could research and suggest us on the proper and efficient way to
>>> convert different message formats to AVRO and vise versa it will be great.
>>> And if you could find a different and better way to support conversion
>>> of the message types rather than using AVRO, feel free to share your
>>> findings.
>>>
>>> Thanks,
>>> Nuwan
>>>
>>> On Wed, Feb 17, 2016 at 5:55 PM, Jayamine A. <
>>> jayamine.alupo...@gmail.com> wrote:
>>>
 Hi,

 Thanks for the suggestions.
 I looked in to Data Mapper engine folder.
 I feel awesome. :-).
 This project is related to the area that i have planned to do in my
 higher studies.
 Also I think this is a good start to contribute to the opensource world.

 I really want to contribute this whether it get accepted or not in gsoc.
 Can I do it?

 Also I have a question.
 Even it is in implementation level , Is there a way to get a rough idea
 about the design overview of Data mapper?

 Thanks
 Jayamine.

 >Hi,

 >Glad to hear it.

 >You can always contact me or vi...@wso2.com for more details. If you
 want to >observe the current implementation you can refer developer studio
 repository [1]. >There you have Data Mapper >Engine folder which contains
 message format >conversions related sources done for the POC >(proof of
 concept). What we need >is to implement them up-to the required level to
 release this >feature.

 >[1]
 https://github.com/wso2/developer-studio/tree/developer-studio-product-plugins

 >Thanks,
 >Nuwan

>>>
>>>
>>>
>>> --
>>> --
>>>
>>> *Nuwan Chamara Pallewela*
>>>
>>>
>>> *Software Engineer*
>>>
>>> *WSO2, Inc. *http://wso2.com
>>> *lean . enterprise . middleware*
>>>
>>> Email   *nuw...@wso2.com *
>>> Mobile  *+94719079739 <%2B94719079739>@*
>>>
>>>
>>>
>>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Implementing Geographical based Analytics in API Manager

2016-02-21 Thread Tharindu Dharmarathna
HI Nuwan,

There are two lightweight databases we can use as I found from [1] and [2]
and those are open source projects.

[1] - https://freegeoip.net/
[2] -
http://gis.stackexchange.com/questions/88/how-can-i-determine-the-location-of-a-visitor-to-my-website

Thanks
Tharindu

On Sun, Feb 21, 2016 at 8:23 PM, Nirmal Fernando  wrote:

> @Seshika any thoughts?
>
> On Sun, Feb 21, 2016 at 8:19 PM, Nuwan Dias  wrote:
>
>> I have doubts on using an HTTP API to get these details because,
>>
>> 1. It will be costly in terms of performance to call these APIs (and they
>> might not be free as well).
>> 2. We have no control nor guarantee on their availability (they can
>> shutdown whenever they want).
>> 3. They will only work if the stats visualizing agent (store/publisher)
>> or DAS has access to internet.
>>
>> Can we look for a light-weight open-source database which has region
>> information based on IP ranges?
>>
>> Thanks,
>> NuwanD.
>>
>> On Sun, Feb 21, 2016 at 10:29 AM, Tharindu Dharmarathna <
>> tharin...@wso2.com> wrote:
>>
>>> Hi All,
>>>
>>> We are going to implement $Subject on latest release . I want to know is
>>> there any best way to extract Geographical location from IP . And here are
>>> my findings of the ways of do.
>>>
>>> [1] - http://www.geoplugin.com
>>> Thi will retrive all the data according to the location as json
>>>
>>> [2] - http://www.telize.com/
>>>
>>> This is another REST API which can used to extract location.
>>>
>>> *Thanks*
>>> *Tharindu Dharmarathna*
>>> Associate Software Engineer
>>> WSO2 Inc.; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> mobile: *+94779109091 <%2B94779109091>*
>>>
>>
>>
>>
>> --
>> Nuwan Dias
>>
>> Technical 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
>>
>>
>
>
> --
>
> Thanks & regards,
> Nirmal
>
> Team Lead - WSO2 Machine Learner
> Associate Technical Lead - Data Technologies Team, WSO2 Inc.
> Mobile: +94715779733
> Blog: http://nirmalfdo.blogspot.com/
>
>
>


-- 

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

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


Re: [Dev] Implementing Geographical based Analytics in API Manager

2016-02-21 Thread Nirmal Fernando
@Seshika any thoughts?

On Sun, Feb 21, 2016 at 8:19 PM, Nuwan Dias  wrote:

> I have doubts on using an HTTP API to get these details because,
>
> 1. It will be costly in terms of performance to call these APIs (and they
> might not be free as well).
> 2. We have no control nor guarantee on their availability (they can
> shutdown whenever they want).
> 3. They will only work if the stats visualizing agent (store/publisher) or
> DAS has access to internet.
>
> Can we look for a light-weight open-source database which has region
> information based on IP ranges?
>
> Thanks,
> NuwanD.
>
> On Sun, Feb 21, 2016 at 10:29 AM, Tharindu Dharmarathna <
> tharin...@wso2.com> wrote:
>
>> Hi All,
>>
>> We are going to implement $Subject on latest release . I want to know is
>> there any best way to extract Geographical location from IP . And here are
>> my findings of the ways of do.
>>
>> [1] - http://www.geoplugin.com
>> Thi will retrive all the data according to the location as json
>>
>> [2] - http://www.telize.com/
>>
>> This is another REST API which can used to extract location.
>>
>> *Thanks*
>> *Tharindu Dharmarathna*
>> Associate Software Engineer
>> WSO2 Inc.; http://wso2.com
>> lean.enterprise.middleware
>>
>> mobile: *+94779109091 <%2B94779109091>*
>>
>
>
>
> --
> Nuwan Dias
>
> Technical 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
>
>


-- 

Thanks & regards,
Nirmal

Team Lead - WSO2 Machine Learner
Associate Technical Lead - Data Technologies Team, WSO2 Inc.
Mobile: +94715779733
Blog: http://nirmalfdo.blogspot.com/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [GSoC 2016] [ESB/GW] File Gateway on top of WSO2 Gateway

2016-02-21 Thread Chamil Elladeniya
Hi,
Before that you need to build both carbon messaging[1] and carbon
transport[2] as they provide necessary dependencies.

[1] https://github.com/wso2/carbon-messaging.git
[2] https://github.com/wso2/carbon-transports.git

On Sun, Feb 21, 2016 at 6:30 PM, Geethika Kumari 
wrote:

> Hello,
>   I'm Geethika Kumari Abeysinghe third year student of University of
> Moratuwa. I am interested with above project. I have some skills about java
> programming.
>
>   I cloned product-gw and try to build master branch. But build break
> occurred. There is any dependent product need to build this product.
>
> Regars,
> Thank you.
> Geethika Abeysinghe.
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


-- 
Chamil Elladeniya
Software Engineering Intern
Mobile : +94 71 6181154 <%2B94%20%280%29%20773%20451194>
cham...@wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Implementing Geographical based Analytics in API Manager

2016-02-21 Thread Nuwan Dias
I have doubts on using an HTTP API to get these details because,

1. It will be costly in terms of performance to call these APIs (and they
might not be free as well).
2. We have no control nor guarantee on their availability (they can
shutdown whenever they want).
3. They will only work if the stats visualizing agent (store/publisher) or
DAS has access to internet.

Can we look for a light-weight open-source database which has region
information based on IP ranges?

Thanks,
NuwanD.

On Sun, Feb 21, 2016 at 10:29 AM, Tharindu Dharmarathna 
wrote:

> Hi All,
>
> We are going to implement $Subject on latest release . I want to know is
> there any best way to extract Geographical location from IP . And here are
> my findings of the ways of do.
>
> [1] - http://www.geoplugin.com
> Thi will retrive all the data according to the location as json
>
> [2] - http://www.telize.com/
>
> This is another REST API which can used to extract location.
>
> *Thanks*
> *Tharindu Dharmarathna*
> Associate Software Engineer
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: *+94779109091 <%2B94779109091>*
>



-- 
Nuwan Dias

Technical 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] Native inbound and connector for IBM MQ 7.5

2016-02-21 Thread Riyafa Abdul Hameed
Hi,

Can you please suggest if it would be appropriate to use an event based
custom inbound endpoint in this case so that I would learn more about it?

Thank you.

Yours sincerely,
Riyafa

On 21 February 2016 at 18:09, Rajjaz Mohammed  wrote:

> Hi Riyafa,
> You no need to follow exactly as same as in [1]. it's just an try of one
> developer so you can try your own way.
>
> [1]
> https://github.com/Kirishanthy/IBM-MQ-Client/blob/master/ibmmqClient/src/main/java/MQProducerSSL.java
>
> On Sun, Feb 21, 2016 at 5:38 PM, Riyafa Abdul Hameed <
> riyafa...@cse.mrt.ac.lk> wrote:
>
>> Hi,
>>
>>
>>
>> *Reporting progress:*
>> This week I learned about inbound endpoints and how to use them. I did
>> some searching and found that two types of custom inbound endpoints are
>> suitable as consumer for IBM MQ:
>>
>> 1. Polling custom inbound endpoint
>> 2. Event based custom inbound endpoint
>>
>> As for the first one I have found that code have been written to achieve
>> this[1]. As for the second I think it is more appropriate to use it when "
>> the number of messages arriving on the queues is unpredictable. In this
>> case if polling is used, applications could be consuming system resources
>> even when there are no messages to retrieve." I have found in [2] and [3]
>> about triggers. I have not tried any of those yet. I will do so hopefully
>> in the near future.
>>
>> Further I went through the code provided in [1] and found that I have
>> created the consumer and the producer in the same way as in the above code.
>> But I didn't understand how to use ssl with the queue manager[4]. I will
>> try to understand that as well.
>>
>> That is what I have done this week. Please inform me whether my approach
>> is correct and what else I could do.
>>
>> [1]https://github.com/search?q=user%3AKirishanthy+ibm-mq
>> [2]
>> https://www-01.ibm.com/support/knowledgecenter/SSFKSJ_7.5.0/com.ibm.mq.dev.doc/q026910_.htm
>> [3]
>> http://stackoverflow.com/questions/26840204/ibm-websphere-mq-triggering-issue
>> [4]
>> https://github.com/Kirishanthy/IBM-MQ-Client/blob/master/ibmmqClient/src/main/java/MQProducerSSL.java
>>
>> Thank you.
>>
>> Yours sincerely,
>> Riyafa
>>
>> On 14 February 2016 at 16:46, Riyafa Abdul Hameed <
>> riyafa...@cse.mrt.ac.lk> wrote:
>>
>>> Hi,
>>>
>>> Thank you for the reply. I shall follow the links you sent and report
>>> progress.
>>>
>>> Thanks again,
>>> Riyafa
>>>
>>> On 13 February 2016 at 20:45, Rajjaz Mohammed  wrote:
>>>
 Hi Riyafa,
 Good to hear, first learn how wso2 ESB custom inbound works[1][2]. And
 there is a thread regarding IBM MQ Inbound/Connector[3] already so you can
 check the issues and samples[4][5].

 [1] https://docs.wso2.com/display/ESB490/Working+with+Inbound+Endpoints
 [2]
 http://wso2experience.blogspot.com/2015/08/getting-started-with-simple-wso2-esb_22.html
 [3]
 http://wso2-oxygen-tank.10903.n7.nabble.com/IBM-MQ-Inbound-Connector-for-WSO2-ESB-td125494.html#a125507
 [4] https://github.com/Kirishanthy/esb-connectors/tree/master/ibmmq
 [5] https://github.com/search?q=user%3AKirishanthy+ibm-mq

 On Sat, Feb 13, 2016 at 8:22 PM, Riyafa Abdul Hameed <
 riyafa...@cse.mrt.ac.lk> wrote:

> Hi Malaka,
>
> I managed to install Websphere MQ 7.5 on my windows machine and to try 
> connection
> as consumer and producer from simple java clients I created [1]. Please
> suggest what else that needs to be done to get started.
>
>
> [1] https://github.com/riyafa/websphere/tree/master/src/riyafa
>
> Thank you,
> Riyafa
>
> On 11 February 2016 at 19:32, Malaka Silva  wrote:
>
>> Yes sometimes there are issues when installing on​ linux based
>> system. Go ahead and try on Windows.
>>
>> ​You can call me Malaka :)
>>
>> On Thu, Feb 11, 2016 at 7:28 PM, Riyafa Abdul Hameed <
>> riyafa...@cse.mrt.ac.lk> wrote:
>>
>>> Dear sir,
>>>
>>> I failed to install IBM MQ 7.5 on my Ubuntu machine. It seemed to
>>> be because of attempting to install rpm files. I will try to install it 
>>> in
>>> a windows machine or in a redhat or fedora version of linux. Then I will
>>> try connection as a consumer and producer from a java client. I
>>> shall report progress every week.
>>>
>>> Thank you.
>>>
>>> Yours sincerely,
>>> Riyafa
>>>
>>> On 11 February 2016 at 06:38, Malaka Silva  wrote:
>>>
 Hi Riyafa,​

 Please post the progress weekly or once in two weeks.​

 On Wed, Feb 10, 2016 at 10:31 PM, Riyafa Abdul Hameed <
 riyafa...@cse.mrt.ac.lk> wrote:

> Hi,
>
> I shall do that and report once done or if I have any problem.
>
> Thank you.
>
> Yours sincerely,
> Riyafa
>
> On 10 February 2016 at 12:38, 

[Dev] [GSoC 2016] [ESB/GW] File Gateway on top of WSO2 Gateway

2016-02-21 Thread Geethika Kumari
Hello,
  I'm Geethika Kumari Abeysinghe third year student of University of
Moratuwa. I am interested with above project. I have some skills about java
programming.

  I cloned product-gw and try to build master branch. But build break
occurred. There is any dependent product need to build this product.

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


Re: [Dev] [Architecture]Proposal 12: [ESB/GW] WSO2 ESB JMS Transactions support with JTA

2016-02-21 Thread Maheeka Jayasuriya
Hi Dinanjana,

The idea is to write a mediator which will support creating transaction
sessions that are allowed to be committed at a success scenario or rollback
in case of a failure. The article you have shared has the basic behavior of
a transaction use case. We need to be able to include this behavior,
ideally via a mediator in the message flow.

Please note that the project expects similar behavior to be extended for
RabbitMQ as well.

Thanks,
Maheeka

On Fri, Feb 19, 2016 at 3:57 PM, Dinanjana Gunaratne <
dinanjanagunara...@gmail.com> wrote:

> Dear sir,
>
> Is this kind of an implementation are you looking for ? [1]
> . This is to
> get a rough idea about the project.
> Thank you in advance.
>
> [1 ]https://docs.oracle.com/cd/E11035_01/wls100/jms/trans.html
>
> On Fri, Feb 19, 2016 at 1:35 PM, Dinanjana Gunaratne <
> dinanjanagunara...@gmail.com> wrote:
>
>> Great i will look at it :)
>>
>> On Fri, Feb 19, 2016 at 1:37 AM, Vanjikumaran Sivajothy 
>> wrote:
>>
>>> There is JTA based transaction implementation done for DBReport and
>>> DBLookup [1]
>>>
>>> [1]
>>> https://github.com/wso2/wso2-synapse/blob/master/modules/core/src/main/java/org/apache/synapse/mediators/db/DBReportMediator.java
>>>
>>> On Thu, Feb 18, 2016 at 5:43 AM, Shafreen Anfar 
>>> wrote:
>>>
 Hi Dinanjana,

 You can start with the samples in WSO2 documentation [1]. In addition
 to that it is better if you can read a bit about Java Transaction API as
 well.

 [1] https://docs.wso2.com/display/ESB490/JMS+Samples

 On Thu, Feb 18, 2016 at 7:09 AM, Dinanjana Gunaratne <
 dinanjanagunara...@gmail.com> wrote:

> Dear Shafreen,
>
> I am a 3rd year computer engineering student from University of
> Peradeniya. I am currently engaged in internship. I know JMS. So i would
> like to contribute to this GSOC project. Let me know how can i start.
>



 --
 Regards,
 *Shafreen*
 Software Engineer
 WSO2 Inc
 Mobile : 077-556-395-1

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


>>>
>>>
>>> --
>>> Vanjikumaran Sivajothy
>>> *Associate Technical Lead*
>>> *WSO2 Inc. http://wso2.com *
>>>  *+1-925-464-6816*
>>> [image: Facebook]  [image:
>>> Twitter]  [image: LinkedIn]
>>>  [image:
>>> Blogger]  [image: SlideShare]
>>> 
>>>
>>> This communication may contain privileged or other
>>> confidential information and is intended exclusively for the addressee/s.
>>> If you are not the intended recipient/s, or believe that you may
>>> have received this communication in error, please reply to the
>>> sender indicating that fact and delete the copy you received and in
>>> addition, you should not print, copy, re-transmit, disseminate, or
>>> otherwise use the information contained in this communication.
>>> Internet communications cannot be guaranteed to be timely, secure, error
>>> or virus-free. The sender does not accept liability for any errors
>>> or omissions
>>>
>>
>>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Native inbound and connector for IBM MQ 7.5

2016-02-21 Thread Rajjaz Mohammed
Hi Riyafa,
You no need to follow exactly as same as in [1]. it's just an try of one
developer so you can try your own way.

[1]
https://github.com/Kirishanthy/IBM-MQ-Client/blob/master/ibmmqClient/src/main/java/MQProducerSSL.java

On Sun, Feb 21, 2016 at 5:38 PM, Riyafa Abdul Hameed <
riyafa...@cse.mrt.ac.lk> wrote:

> Hi,
>
>
>
> *Reporting progress:*
> This week I learned about inbound endpoints and how to use them. I did
> some searching and found that two types of custom inbound endpoints are
> suitable as consumer for IBM MQ:
>
> 1. Polling custom inbound endpoint
> 2. Event based custom inbound endpoint
>
> As for the first one I have found that code have been written to achieve
> this[1]. As for the second I think it is more appropriate to use it when "
> the number of messages arriving on the queues is unpredictable. In this
> case if polling is used, applications could be consuming system resources
> even when there are no messages to retrieve." I have found in [2] and [3]
> about triggers. I have not tried any of those yet. I will do so hopefully
> in the near future.
>
> Further I went through the code provided in [1] and found that I have
> created the consumer and the producer in the same way as in the above code.
> But I didn't understand how to use ssl with the queue manager[4]. I will
> try to understand that as well.
>
> That is what I have done this week. Please inform me whether my approach
> is correct and what else I could do.
>
> [1]https://github.com/search?q=user%3AKirishanthy+ibm-mq
> [2]
> https://www-01.ibm.com/support/knowledgecenter/SSFKSJ_7.5.0/com.ibm.mq.dev.doc/q026910_.htm
> [3]
> http://stackoverflow.com/questions/26840204/ibm-websphere-mq-triggering-issue
> [4]
> https://github.com/Kirishanthy/IBM-MQ-Client/blob/master/ibmmqClient/src/main/java/MQProducerSSL.java
>
> Thank you.
>
> Yours sincerely,
> Riyafa
>
> On 14 February 2016 at 16:46, Riyafa Abdul Hameed  > wrote:
>
>> Hi,
>>
>> Thank you for the reply. I shall follow the links you sent and report
>> progress.
>>
>> Thanks again,
>> Riyafa
>>
>> On 13 February 2016 at 20:45, Rajjaz Mohammed  wrote:
>>
>>> Hi Riyafa,
>>> Good to hear, first learn how wso2 ESB custom inbound works[1][2]. And
>>> there is a thread regarding IBM MQ Inbound/Connector[3] already so you can
>>> check the issues and samples[4][5].
>>>
>>> [1] https://docs.wso2.com/display/ESB490/Working+with+Inbound+Endpoints
>>> [2]
>>> http://wso2experience.blogspot.com/2015/08/getting-started-with-simple-wso2-esb_22.html
>>> [3]
>>> http://wso2-oxygen-tank.10903.n7.nabble.com/IBM-MQ-Inbound-Connector-for-WSO2-ESB-td125494.html#a125507
>>> [4] https://github.com/Kirishanthy/esb-connectors/tree/master/ibmmq
>>> [5] https://github.com/search?q=user%3AKirishanthy+ibm-mq
>>>
>>> On Sat, Feb 13, 2016 at 8:22 PM, Riyafa Abdul Hameed <
>>> riyafa...@cse.mrt.ac.lk> wrote:
>>>
 Hi Malaka,

 I managed to install Websphere MQ 7.5 on my windows machine and to try 
 connection
 as consumer and producer from simple java clients I created [1]. Please
 suggest what else that needs to be done to get started.


 [1] https://github.com/riyafa/websphere/tree/master/src/riyafa

 Thank you,
 Riyafa

 On 11 February 2016 at 19:32, Malaka Silva  wrote:

> Yes sometimes there are issues when installing on​ linux based system.
> Go ahead and try on Windows.
>
> ​You can call me Malaka :)
>
> On Thu, Feb 11, 2016 at 7:28 PM, Riyafa Abdul Hameed <
> riyafa...@cse.mrt.ac.lk> wrote:
>
>> Dear sir,
>>
>> I failed to install IBM MQ 7.5 on my Ubuntu machine. It seemed to be
>> because of attempting to install rpm files. I will try to install it in a
>> windows machine or in a redhat or fedora version of linux. Then I will 
>> try
>> connection as a consumer and producer from a java client. I shall
>> report progress every week.
>>
>> Thank you.
>>
>> Yours sincerely,
>> Riyafa
>>
>> On 11 February 2016 at 06:38, Malaka Silva  wrote:
>>
>>> Hi Riyafa,​
>>>
>>> Please post the progress weekly or once in two weeks.​
>>>
>>> On Wed, Feb 10, 2016 at 10:31 PM, Riyafa Abdul Hameed <
>>> riyafa...@cse.mrt.ac.lk> wrote:
>>>
 Hi,

 I shall do that and report once done or if I have any problem.

 Thank you.

 Yours sincerely,
 Riyafa

 On 10 February 2016 at 12:38, Malaka Silva  wrote:

> Hi Riyafa,
>
> First you should install IBM MQ 7.5.
>
> Then try connection as consumer and producer from a java client.
> Using IBM MQ client.
>
> This need to add consumer functionality to custom inbound endpoint
> and producer to a connector.
>
> On Wed, Feb 10, 

Re: [Dev] Native inbound and connector for IBM MQ 7.5

2016-02-21 Thread Riyafa Abdul Hameed
Hi,



*Reporting progress:*
This week I learned about inbound endpoints and how to use them. I did some
searching and found that two types of custom inbound endpoints are suitable
as consumer for IBM MQ:

1. Polling custom inbound endpoint
2. Event based custom inbound endpoint

As for the first one I have found that code have been written to achieve
this[1]. As for the second I think it is more appropriate to use it when "
the number of messages arriving on the queues is unpredictable. In this
case if polling is used, applications could be consuming system resources
even when there are no messages to retrieve." I have found in [2] and [3]
about triggers. I have not tried any of those yet. I will do so hopefully
in the near future.

Further I went through the code provided in [1] and found that I have
created the consumer and the producer in the same way as in the above code.
But I didn't understand how to use ssl with the queue manager[4]. I will
try to understand that as well.

That is what I have done this week. Please inform me whether my approach is
correct and what else I could do.

[1]https://github.com/search?q=user%3AKirishanthy+ibm-mq
[2]
https://www-01.ibm.com/support/knowledgecenter/SSFKSJ_7.5.0/com.ibm.mq.dev.doc/q026910_.htm
[3]
http://stackoverflow.com/questions/26840204/ibm-websphere-mq-triggering-issue
[4]
https://github.com/Kirishanthy/IBM-MQ-Client/blob/master/ibmmqClient/src/main/java/MQProducerSSL.java

Thank you.

Yours sincerely,
Riyafa

On 14 February 2016 at 16:46, Riyafa Abdul Hameed 
wrote:

> Hi,
>
> Thank you for the reply. I shall follow the links you sent and report
> progress.
>
> Thanks again,
> Riyafa
>
> On 13 February 2016 at 20:45, Rajjaz Mohammed  wrote:
>
>> Hi Riyafa,
>> Good to hear, first learn how wso2 ESB custom inbound works[1][2]. And
>> there is a thread regarding IBM MQ Inbound/Connector[3] already so you can
>> check the issues and samples[4][5].
>>
>> [1] https://docs.wso2.com/display/ESB490/Working+with+Inbound+Endpoints
>> [2]
>> http://wso2experience.blogspot.com/2015/08/getting-started-with-simple-wso2-esb_22.html
>> [3]
>> http://wso2-oxygen-tank.10903.n7.nabble.com/IBM-MQ-Inbound-Connector-for-WSO2-ESB-td125494.html#a125507
>> [4] https://github.com/Kirishanthy/esb-connectors/tree/master/ibmmq
>> [5] https://github.com/search?q=user%3AKirishanthy+ibm-mq
>>
>> On Sat, Feb 13, 2016 at 8:22 PM, Riyafa Abdul Hameed <
>> riyafa...@cse.mrt.ac.lk> wrote:
>>
>>> Hi Malaka,
>>>
>>> I managed to install Websphere MQ 7.5 on my windows machine and to try 
>>> connection
>>> as consumer and producer from simple java clients I created [1]. Please
>>> suggest what else that needs to be done to get started.
>>>
>>>
>>> [1] https://github.com/riyafa/websphere/tree/master/src/riyafa
>>>
>>> Thank you,
>>> Riyafa
>>>
>>> On 11 February 2016 at 19:32, Malaka Silva  wrote:
>>>
 Yes sometimes there are issues when installing on​ linux based system.
 Go ahead and try on Windows.

 ​You can call me Malaka :)

 On Thu, Feb 11, 2016 at 7:28 PM, Riyafa Abdul Hameed <
 riyafa...@cse.mrt.ac.lk> wrote:

> Dear sir,
>
> I failed to install IBM MQ 7.5 on my Ubuntu machine. It seemed to be
> because of attempting to install rpm files. I will try to install it in a
> windows machine or in a redhat or fedora version of linux. Then I will try
> connection as a consumer and producer from a java client. I shall
> report progress every week.
>
> Thank you.
>
> Yours sincerely,
> Riyafa
>
> On 11 February 2016 at 06:38, Malaka Silva  wrote:
>
>> Hi Riyafa,​
>>
>> Please post the progress weekly or once in two weeks.​
>>
>> On Wed, Feb 10, 2016 at 10:31 PM, Riyafa Abdul Hameed <
>> riyafa...@cse.mrt.ac.lk> wrote:
>>
>>> Hi,
>>>
>>> I shall do that and report once done or if I have any problem.
>>>
>>> Thank you.
>>>
>>> Yours sincerely,
>>> Riyafa
>>>
>>> On 10 February 2016 at 12:38, Malaka Silva  wrote:
>>>
 Hi Riyafa,

 First you should install IBM MQ 7.5.

 Then try connection as consumer and producer from a java client.
 Using IBM MQ client.

 This need to add consumer functionality to custom inbound endpoint
 and producer to a connector.

 On Wed, Feb 10, 2016 at 7:16 AM, Riyafa Abdul Hameed <
 riyafa...@cse.mrt.ac.lk> wrote:

> Dear sir,
>
> I am a third year Computer Science and Engineering undergraduate
> at University of Moratuwa. I would like to take part in GSoC 2016 
> with the
> open source community of WSO2.
>
> I am quite familiar with the ESB-Connectors of WSO2. I have
> previously worked with the saleforce, google-spreadsheet and the 
> 

Re: [Dev] [VOTE] Release WSO2 Complex Event Processor 4.1.0 RC2

2016-02-21 Thread Damith Wickramasinghe
Tested dashboard and related samples.

No issues found.
[+] Stable - Please go ahead and release..

Regards,
Damith.

On Sun, Feb 21, 2016 at 4:42 PM, Grainier Perera  wrote:

> Tested following scenarios/features.
>
> 1. Distributed deployment of CEP.
> 2. High availability deployment of CEP.
> 3. High availability deployment with state persistence (Single Node,
> Clustered).
> 4. Siddhi Extensions in Storm (Map, Reorder, Time Series, Event Table, ML,
> Kalman, Geo).
>
> No issues found.
> [x] Stable - Please go ahead and release.
>
> Regards,
>
> On Sun, Feb 21, 2016 at 4:04 PM, Mohanadarshan Vivekanandalingam <
> mo...@wso2.com> wrote:
>
>> Tested following scenarios/features..
>>
>> 1. All Samples(-0022) related to Event Receivers
>> 2. Basic end-to-end execution Flow
>> 3. Execution Manager
>> 4. Event Tracer
>>
>> No issues found.
>> [x] Stable - Please go ahead and release..
>>
>> Thanks,
>> Mohan
>>
>> On Fri, Feb 19, 2016 at 2:04 AM, Grainier Perera 
>> wrote:
>> > Hi Devs,
>> >
>> > This is the second release candidate of WSO2 Complex Event Processor
>> 4.1.0.
>> >
>> > This release fixes the following issues:
>> > https://wso2.org/jira/issues/?filter=12644
>> >
>> > Please download CEP 4.1.0 RC2 and test the functionality and vote. Vote
>> will
>> > be open for 72 hours or as needed.
>> >
>> > Source & binary distribution files:
>> > https://github.com/wso2/product-cep/releases/tag/v4.1.0-RC2
>> >
>> > The tag to be voted upon:
>> > https://github.com/wso2/product-cep/tree/release-4.1.0-RC2
>> >
>> > [+] Stable - go ahead and release
>> > [-] Broken - do not release (explain why)
>> >
>> > Thanks and Regards,
>> > WSO2 CEP Team.
>> >
>> > --
>> > Grainier Perera
>> > Software Engineer
>> > Mobile : +94716122384
>> > WSO2 Inc. | http://wso2.com
>> > lean.enterprise.middleware
>> >
>> > ___
>> > Dev mailing list
>> > Dev@wso2.org
>> > http://wso2.org/cgi-bin/mailman/listinfo/dev
>> >
>>
>>
>>
>> --
>> V. Mohanadarshan
>> Senior Software Engineer,
>> Data Technologies Team,
>> WSO2, Inc. http://wso2.com
>> lean.enterprise.middleware.
>>
>> email: mo...@wso2.com
>> phone:(+94) 771117673
>>
>
>
>
> --
> Grainier Perera
> Software Engineer
> Mobile : +94716122384
> WSO2 Inc. | http://wso2.com
> lean.enterprise.middleware
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
>


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

lean.enterprise.middleware

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


Re: [Dev] [VOTE] Release WSO2 Complex Event Processor 4.1.0 RC2

2016-02-21 Thread Grainier Perera
Tested following scenarios/features.

1. Distributed deployment of CEP.
2. High availability deployment of CEP.
3. High availability deployment with state persistence (Single Node,
Clustered).
4. Siddhi Extensions in Storm (Map, Reorder, Time Series, Event Table, ML,
Kalman, Geo).

No issues found.
[x] Stable - Please go ahead and release.

Regards,

On Sun, Feb 21, 2016 at 4:04 PM, Mohanadarshan Vivekanandalingam <
mo...@wso2.com> wrote:

> Tested following scenarios/features..
>
> 1. All Samples(-0022) related to Event Receivers
> 2. Basic end-to-end execution Flow
> 3. Execution Manager
> 4. Event Tracer
>
> No issues found.
> [x] Stable - Please go ahead and release..
>
> Thanks,
> Mohan
>
> On Fri, Feb 19, 2016 at 2:04 AM, Grainier Perera 
> wrote:
> > Hi Devs,
> >
> > This is the second release candidate of WSO2 Complex Event Processor
> 4.1.0.
> >
> > This release fixes the following issues:
> > https://wso2.org/jira/issues/?filter=12644
> >
> > Please download CEP 4.1.0 RC2 and test the functionality and vote. Vote
> will
> > be open for 72 hours or as needed.
> >
> > Source & binary distribution files:
> > https://github.com/wso2/product-cep/releases/tag/v4.1.0-RC2
> >
> > The tag to be voted upon:
> > https://github.com/wso2/product-cep/tree/release-4.1.0-RC2
> >
> > [+] Stable - go ahead and release
> > [-] Broken - do not release (explain why)
> >
> > Thanks and Regards,
> > WSO2 CEP Team.
> >
> > --
> > Grainier Perera
> > Software Engineer
> > Mobile : +94716122384
> > WSO2 Inc. | http://wso2.com
> > lean.enterprise.middleware
> >
> > ___
> > Dev mailing list
> > Dev@wso2.org
> > http://wso2.org/cgi-bin/mailman/listinfo/dev
> >
>
>
>
> --
> V. Mohanadarshan
> Senior Software Engineer,
> Data Technologies Team,
> WSO2, Inc. http://wso2.com
> lean.enterprise.middleware.
>
> email: mo...@wso2.com
> phone:(+94) 771117673
>



-- 
Grainier Perera
Software Engineer
Mobile : +94716122384
WSO2 Inc. | http://wso2.com
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [VOTE] Release WSO2 Complex Event Processor 4.1.0 RC2

2016-02-21 Thread Mohanadarshan Vivekanandalingam
Tested following scenarios/features..

1. All Samples(-0022) related to Event Receivers
2. Basic end-to-end execution Flow
3. Execution Manager
4. Event Tracer

No issues found.
[x] Stable - Please go ahead and release..

Thanks,
Mohan

On Fri, Feb 19, 2016 at 2:04 AM, Grainier Perera  wrote:
> Hi Devs,
>
> This is the second release candidate of WSO2 Complex Event Processor 4.1.0.
>
> This release fixes the following issues:
> https://wso2.org/jira/issues/?filter=12644
>
> Please download CEP 4.1.0 RC2 and test the functionality and vote. Vote will
> be open for 72 hours or as needed.
>
> Source & binary distribution files:
> https://github.com/wso2/product-cep/releases/tag/v4.1.0-RC2
>
> The tag to be voted upon:
> https://github.com/wso2/product-cep/tree/release-4.1.0-RC2
>
> [+] Stable - go ahead and release
> [-] Broken - do not release (explain why)
>
> Thanks and Regards,
> WSO2 CEP Team.
>
> --
> Grainier Perera
> Software Engineer
> Mobile : +94716122384
> WSO2 Inc. | http://wso2.com
> lean.enterprise.middleware
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>



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

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


[Dev] [GSOC 2016] Contribute Developer Tooling for Microservice Framework for Java

2016-02-21 Thread Heshan Jayasinghe
I am Heshan Jayasinghe undergraduate of university of moratuwa.i am
interested on web services,Apache projects and cloud based projects.I work
with apache jclouds,docker,kubernates and more other applications as well.i
used google cloud platform,AWS to configure above applications.

I participate Wso2Con Asia 2016 and gain big knowledge.i participate most
of sessions done by wso2.I participate wso2 hackathon 2014.

I like to contribute project *Developer Tooling for Microservice Framework
for Java.*

I work with JAX-RS,Eclipse and IntelliJ IDEA so hope i can complete this
task.I'd like to know more details about this project.

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


[Dev] [GSoC 2016][CDMF][IOT] IOT SDK for creating device agents.

2016-02-21 Thread Menaka Jayawardena
Hello,

I'm Menaka Madushanka Jayawardena, a Final year undergraduate at Faculty of
Engineering, University of Peradeniya. I'm very much interested in doing
the above project. I have some experience with WSO2 IOT server and the
device types.

I'd like to know more information about the project.
Also deliverable is not very clear to me, so I prefer some more information
about it.

Thanks and regards
Menaka Madushanka
-- 
Menaka Madushanka Jayawardena
Software Engineering Intern
men...@wso2.com
Mobile:- +94 71 8851183/ +94 71 3505470
LinkedIn - Menaka Jayawardena 
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] GSOC 2016: Proposal 7

2016-02-21 Thread Dinanjana Gunaratne
Dear Isuru,

Sorry for bothering you again. I created a sample module with some of the
requirements you mentioned in gsoc project page. Those requirements are
creating thread dumps when resources usage increased unexpectedly. Now I
like to know how to integrate this in to ESB and test the functionality. I
couldn't find the location of ESB source.
On Feb 20, 2016 9:33 AM, "Dinanjana Gunaratne" 
wrote:

> Dear Isuru,
>
> Are we looking at an implementation like this ?
> "Dashboard is a remote monitoring system which was developed to monitor
> the status(server's aliveness and management details) of software deployed
> remotely. This monitoring system is highly scalable and does not depend on
> any component which is being monitored. With Dashboard comes a Java library
> called "HeartBeat".HeartBeat is a client which was developed by us for
> connects to Dashboard and share information. So any component wish to
> register with Dashboard monitoring system must implement that Java
> library."
>
> I did this during my internship. I think we are looking at an
> implementation within esb for debugging and monitoring. am i correct ? :)
>
>
> On Sat, Feb 20, 2016 at 9:12 AM, Isuru Udana  wrote:
>
>> Great...!
>>
>> btw, don't call me "Sir" :)
>>
>> On Sat, Feb 20, 2016 at 8:58 AM, Dinanjana Gunaratne <
>> dinanjanagunara...@gmail.com> wrote:
>>
>>> Dear Isuru,
>>> Found the solution :)
>>>
>>> On Sat, Feb 20, 2016 at 8:49 AM, Dinanjana Gunaratne <
>>> dinanjanagunara...@gmail.com> wrote:
>>>
 Dear Isuru,
 Sorry for bothering you. Found the solution for earlier problem from
 here [1
 ].
 Now i am facing a new problem. axis2 server looking for axis2.xml on wrong
 directory. below is the stack trace

 [2016-02-20 08:41:21,491] FATAL {samples.util.SampleAxis2ServerManager}
 -  [SimpleAxisServer] Shutti
 ng down. Error starting SimpleAxisServer
 org.apache.axis2.AxisFault: System can not find the given axis2.xml
 E:\Project\wso2esb-4.9.0\samples
 \axis2Serverrepository\conf\axis2.xml
 at
 org.apache.axis2.deployment.FileSystemConfigurator.getAxisConfiguration(FileSystemConfigu
 rator.java:118)
 at
 org.apache.axis2.context.ConfigurationContextFactory.createConfigurationContext(Configura
 tionContextFactory.java:64)
 at
 org.apache.axis2.context.ConfigurationContextFactory.createConfigurationContextFromFileSy
 stem(ConfigurationContextFactory.java:210)
 at
 samples.util.SampleAxis2ServerManager.start(SampleAxis2ServerManager.java:93)
 at
 samples.util.SampleAxis2Server.startServer(SampleAxis2Server.java:61)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
 at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:483)
 at samples.util.Bootstrap.main(Bootstrap.java:132)

 I have defined AXIS2_HOME correctly

 [1]
 http://stackoverflow.com/questions/32866263/axis2server-packed-with-esb-4-9-0-doesnt-start-while-it-works-fine-4-8-0

 On Sat, Feb 20, 2016 at 7:55 AM, Dinanjana Gunaratne <
 dinanjanagunara...@gmail.com> wrote:

> Dear sir,
>
> When i tried to run axis2server.bat came bundled with wso2esb i am
> getting this
>
> Usage: java [-options] class [args...]
>(to execute a class)
>or  java [-options] -jar jarfile [args...]
>(to execute a jar file)
> where options include:
> -d32  use a 32-bit data model if available
> -d64  use a 64-bit data model if available
> -server   to select the "server" VM
>   The default VM is server.
>
> -cp 
> -classpath 
>   A ; separated list of directories, JAR archives,
>   and ZIP archives to search for class files.
> -D=
>   set a system property
> -verbose:[class|gc|jni]
>   enable verbose output
> -version  print product version and exit
> -version:
>   require the specified version to run
> -showversion  print product version and continue
> -jre-restrict-search | -no-jre-restrict-search
>   include/exclude user private JREs in the version
> search
> -? -help  print this help message
> -Xprint help on non-standard options
> -ea[:...|:]
> -enableassertions[:...|:]
>   enable assertions with specified granularity

[Dev] [GSoC 2016] [CDMF] Calculate Device Health Status using Analytics and API Calls

2016-02-21 Thread Nuwan Sameera
Hello,

  I'm Y.G.Nuwan Sameera. I am third year student of University of
Moratuwa. I am interesting to work above project. How I need to start my
work.

Thanks,
Regards,
Nuwan Sameera.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev