Re: [Dev] GSOC 2017 - Native inbound and connector for FTP/SFTP operations

2017-03-18 Thread Chanaka Lakmal
Hi Malaka, I researched for the Java NIO FTP library that you suggested for me [1]. What I found was that this is a code base with a very short history and the most recent commit was over 13 years ago by Torvald Riegel who was the only contributor to this [2]. I feel like this is not an ongoing

Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-03-18 Thread Maduranga Siriwardena
Hi Abishalani, The components are in /repository/components/plugins folder. There you will find org.wso2.carbon.identity.oauth.dcr_5.3.4.jar. You can checkout the tag v5.3.4 of the repository and then work through the changes to the component. If you are going to apply the changes to the

Re: [Dev] [GSoC 2017][ESB]Native inbound and connector for IBM MQ 8.0

2017-03-18 Thread Malaka Silva
Hi Chanaka, This looks good so far. Can we check if it is possible to have an alternative way to set SSL details other than system properties with IBM MQ client libraries. The reason for that is we are limiting our self to one set of properties per JVM. eg: System.setProperty( On Sat, Mar 18,

Re: [Dev] [GSoC 2017][ESB]Native inbound and connector for IBM MQ 8.0

2017-03-18 Thread Chanaka Balasooriya
Hi Malaka, After some effort I could upgrade MQ-Client [1] that I created earlier, to establish SSL connections with IBM WebSphere MQ. Please have a look. Here I used SSL_RSA_WITH_3DES_EDE_CBC_SHA Cipher Suit and IBM MQ self signed certificate. During that implementation I could realized that

Re: [Dev] GSoC 2017 : Python API for Siddhi CEP

2017-03-18 Thread Sriskandarajah Suhothayan
The idea is to use native python calls as much as posible. In worsecase we'll use the service calls. On Sat, Mar 18, 2017 at 8:48 PM, Roshan Alwis wrote: > Hi, > > In H2O.ai they are running a backend server (.jar file) and python API > just initiate service calls.

[Dev] GSoC 2017 : Real-Time Machine Learning Toolkit for Siddhi

2017-03-18 Thread Viraj Gamage
Hi, I'm Viraj Salaka, a 3rd year undergraduate from Department of Computer Science and Engineering, University of Moratuwa. I would like to do a project for WSO2 for GSoC 2017. Considering my interests and capabilities, I have chosen Proposal-24 (Real-Time Machine Learning Toolkit for Siddhi). I

Re: [Dev] [GSOC][CEP][DEV] Python API for Siddhi CEP

2017-03-18 Thread Sriskandarajah Suhothayan
For the initial cut this looks good, please go ahead with the proposal. Let's check some other alternatives and start the development. Regards Suho On Sat, Mar 18, 2017 at 1:01 PM, Madhawa Vidanapathirana < madhawavidanapathir...@gmail.com> wrote: > Hi Suho, > > You can find the python version

Re: [Dev] GSoC 2017 : Python API for Siddhi CEP

2017-03-18 Thread Roshan Alwis
Hi, In H2O.ai they are running a backend server (.jar file) and python API just initiate service calls. In that case, it is not necessary to use PyJnius kind of libraries. But for further implemetation it is required to consider performance factors as well. Since JAVA is much faster than Python

Re: [Dev] GSoC 2017 : Real-Time Machine Learning Toolkit for Siddhi

2017-03-18 Thread Sriskandarajah Suhothayan
On Sat, Mar 18, 2017 at 8:18 PM, Nadheesh Jihan wrote: > Hi, > > I am an undergraduate from Department of Computer Science and Engineering > at University of Moratuwa. I recently completed my internship period at > WSO2. While I was working at WSO2, I was exposed to machine

[Dev] GSoC 2017 : Real-Time Machine Learning Toolkit for Siddhi

2017-03-18 Thread Nadheesh Jihan
Hi, I am an undergraduate from Department of Computer Science and Engineering at University of Moratuwa. I recently completed my internship period at WSO2. While I was working at WSO2, I was exposed to machine learning and real-time event processing using Siddhi. I am interested about Proposal-24

Re: [Dev] [UUF]Handling events of fragments

2017-03-18 Thread Denuwanthi De Silva
Hi, As Rajith mentioned when using the short hand form of document ready function [1] it works as expected. When using [2] only it does not execute the public js of the fragment. [1]$(function(){}); [2] $(document).ready(function () {}); Thanks, On Sat, Mar 18, 2017 at 4:06 PM, Rajith

[Dev] [GSOC 2017] WS-Trust Implementation for IS 6.0.0

2017-03-18 Thread Nadun Akalanka
Hi All I'm Nadun Akalanka third year undergraduate at Informatics Institute of Technoloy. I'm really interested in [1] . Apart from developing the STS can you describe the scope of this project [1]

Re: [Dev] GSOC : OAuth 2.0 Dynamic Client Registration Management Protocol Support

2017-03-18 Thread Abilashini Thiyagarajah
Hi, I have worked to understand the specifications and code base related to OAuth 2.0 DCR protocol management. Now I am trying to fix some of the issues that you have shared with me. Can I know the location of dcr component in the server? Or else the way to try my code changes in the dcr

Re: [Dev] [UUF]Handling events of fragments

2017-03-18 Thread Rajith Roshan
Hi, I have used button register event on document ready[1] of the front end js which is inside the fragment(public/js) folder. This works fine for me. I haven't used success call back for event register. [1] - $(function () { $('#addThrottleBtn').on('click', addPolicyToBackend); }); I

Re: [Dev] [UUF]Handling events of fragments

2017-03-18 Thread Manuranga Perera
Why does someone has to use a seccuess event? Can't they just put it in public/js and get the same result ? On 18 Mar 2017 10:06, "Chandana Napagoda" wrote: Hi Manu, This is not a bug in uuf client. Once js is dynamically loaded, they can bind events from that javascript.

Re: [Dev] [UUF]Handling events of fragments

2017-03-18 Thread Chandana Napagoda
Hi Manu, This is not a bug in uuf client. Once js is dynamically loaded, they can bind events from that javascript. You can verify it by modifying the sample I have mentioned in my previous mail. BTW, could you please elaborate more on what you meant by "special" fragments? Regards, Chandana

Re: [Dev] [GSOC][CEP][DEV] Python API for Siddhi CEP

2017-03-18 Thread Madhawa Vidanapathirana
Hi Suho, You can find the python version of test case written using Pyjnius in below link. https://github.com/madhawav/CEP-Python-Wraps/tree/master/Pyjnius%20Prototype%20Wrap Instructions on building the code is also given their. During development, I noticed following disadvantages of Pyjnius