[Dev] [DEV] Unable to clone git repo using JGit API

2014-11-06 Thread Ishara Cooray
Hi,

Im trying to clone a git repo using JGit.Following is the code snippet. I
have customized the JVM default proxy selector by following a forum [1]
http://stackoverflow.com/questions/19854053/jgit-https-cloning-is-not-working
because it is said  JGit uses the standard ProxySelector mechanism for the
Http connection. As of Today, the field
org.eclipse.jgit.transport.TransportHttp.proxySelector used by the
framework, is not overridable. It is configurable, though

UsernamePasswordCredentialsProvider credentialsProvider = new
UsernamePasswordCredentialsProvider(gitUser, gitPassword);
 ProxySelector.setDefault(new GitBlitProxySelector());
 
Git.cloneRepository().setCredentialsProvider(credentialsProvider).setURI(remotePath)
.setDirectory(new File(localPath)).call();

public class GitBlitProxySelector extends ProxySelector {

final ProxySelector delegate = ProxySelector.getDefault();

@Override
public ListProxy select(URI uri) {
// Filter the URIs to be proxied

if (uri.toString().contains(git)
 uri.toString().contains(https)) {
return Arrays.asList(new Proxy(Proxy.Type.HTTP,
InetSocketAddress
.createUnresolved(localhost, 3128)));
}
if (uri.toString().contains(git)
 uri.toString().contains(http)) {
return Arrays.asList(new Proxy(Proxy.Type.HTTP,
InetSocketAddress
.createUnresolved(localhost, 3129)));
}
// revert to the default behaviour
return delegate == null ? Arrays.asList(Proxy.NO_PROXY)
: delegate.select(uri);
}

@Override
public void connectFailed(URI uri, SocketAddress sa, IOException ioe) {
if (uri == null || sa == null || ioe == null) {
throw new IllegalArgumentException(
Arguments can't be null.);
}
}
}


Now i get a Connection refused Exception, the stack trace is given below.

org.eclipse.jgit.api.errors.TransportException:
https://git.cloudstaging.wso2.com/git/aaishara/samplejavaapp.git: cannot
open git-upload-pack
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:139)
at org.eclipse.jgit.api.CloneCommand.fetch(CloneCommand.java:178)
at org.eclipse.jgit.api.CloneCommand.call(CloneCommand.java:125)
at
org.wso2.cloud.heartbeat.monitor.modules.gitblit.GitCloneTest.gitClone(GitCloneTest.java:54)
at
org.wso2.cloud.heartbeat.monitor.modules.gitblit.GitCloneTest.execute(GitCloneTest.java:36)
at org.quartz.core.JobRunShell.run(JobRunShell.java:213)
at
org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:557)
Caused by: org.eclipse.jgit.errors.TransportException:
https://git.cloudstaging.wso2.com/git/aaishara/samplejavaapp.git: cannot
open git-upload-pack
at
org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:524)Unable
at
org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:309)
at
org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:136)
at
org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:122)
at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1115)
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:130)
... 6 more
Caused by: java.net.ConnectException: Connection refused
git.cloudstaging.wso2.com
at org.eclipse.jgit.util.HttpSupport.response(HttpSupport.java:175)
at
org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:475)
... 11 more

Does anyone has an idea of how i can get rid from this?
I can clone this repo using command line with the same credentials.

Thanks!
Ishara Cooray
Senior Software Engineer
Mobile : +9477 262 9512
WSO2, Inc. | http://wso2.com/
Lean . Enterprise . Middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [DEV] Unable to clone git repo using JGit API

2014-11-06 Thread Nirmal Fernando
This is how Stratos does it
https://github.com/apache/stratos/blob/master/components/org.apache.stratos.cartridge.agent/src/main/java/org/apache/stratos/cartridge/agent/artifact/deployment/synchronizer/git/impl/GitBasedArtifactRepository.java#L900

@IsuruH should be able to help if you have further questions.

On Thu, Nov 6, 2014 at 9:06 AM, Ishara Cooray isha...@wso2.com wrote:

 Hi,

 Im trying to clone a git repo using JGit.Following is the code snippet. I
 have customized the JVM default proxy selector by following a forum [1]
 http://stackoverflow.com/questions/19854053/jgit-https-cloning-is-not-working
 because it is said  JGit uses the standard ProxySelector mechanism for
 the Http connection. As of Today, the field
 org.eclipse.jgit.transport.TransportHttp.proxySelector used by the
 framework, is not overridable. It is configurable, though

 UsernamePasswordCredentialsProvider credentialsProvider = new
 UsernamePasswordCredentialsProvider(gitUser, gitPassword);
  ProxySelector.setDefault(new GitBlitProxySelector());

  
 Git.cloneRepository().setCredentialsProvider(credentialsProvider).setURI(remotePath)
 .setDirectory(new File(localPath)).call();

 public class GitBlitProxySelector extends ProxySelector {

 final ProxySelector delegate = ProxySelector.getDefault();

 @Override
 public ListProxy select(URI uri) {
 // Filter the URIs to be proxied

 if (uri.toString().contains(git)
  uri.toString().contains(https)) {
 return Arrays.asList(new Proxy(Proxy.Type.HTTP,
 InetSocketAddress
 .createUnresolved(localhost, 3128)));
 }
 if (uri.toString().contains(git)
  uri.toString().contains(http)) {
 return Arrays.asList(new Proxy(Proxy.Type.HTTP,
 InetSocketAddress
 .createUnresolved(localhost, 3129)));
 }
 // revert to the default behaviour
 return delegate == null ? Arrays.asList(Proxy.NO_PROXY)
 : delegate.select(uri);
 }

 @Override
 public void connectFailed(URI uri, SocketAddress sa, IOException ioe) {
 if (uri == null || sa == null || ioe == null) {
 throw new IllegalArgumentException(
 Arguments can't be null.);
 }
 }
 }


 Now i get a Connection refused Exception, the stack trace is given below.

 org.eclipse.jgit.api.errors.TransportException:
 https://git.cloudstaging.wso2.com/git/aaishara/samplejavaapp.git: cannot
 open git-upload-pack
 at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:139)
 at org.eclipse.jgit.api.CloneCommand.fetch(CloneCommand.java:178)
 at org.eclipse.jgit.api.CloneCommand.call(CloneCommand.java:125)
 at
 org.wso2.cloud.heartbeat.monitor.modules.gitblit.GitCloneTest.gitClone(GitCloneTest.java:54)
 at
 org.wso2.cloud.heartbeat.monitor.modules.gitblit.GitCloneTest.execute(GitCloneTest.java:36)
 at org.quartz.core.JobRunShell.run(JobRunShell.java:213)
 at
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:557)
 Caused by: org.eclipse.jgit.errors.TransportException:
 https://git.cloudstaging.wso2.com/git/aaishara/samplejavaapp.git: cannot
 open git-upload-pack
 at
 org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:524)Unable
 at
 org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:309)
 at
 org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:136)
 at
 org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:122)
 at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1115)
 at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:130)
 ... 6 more
 Caused by: java.net.ConnectException: Connection refused
 git.cloudstaging.wso2.com
 at org.eclipse.jgit.util.HttpSupport.response(HttpSupport.java:175)
 at
 org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:475)
 ... 11 more

 Does anyone has an idea of how i can get rid from this?
 I can clone this repo using command line with the same credentials.

 Thanks!
 Ishara Cooray
 Senior Software Engineer
 Mobile : +9477 262 9512
 WSO2, Inc. | http://wso2.com/
 Lean . Enterprise . Middleware

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




-- 

Thanks  regards,
Nirmal

Senior Software Engineer- Platform Technologies Team, WSO2 Inc.
Mobile: +94715779733
Blog: http://nirmalfdo.blogspot.com/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [DEV] Unable to clone git repo using JGit API

2014-11-06 Thread Isuru Haththotuwa
Hi Ishara,

The error says connection refused. Are you sure this url is accessible? If
so, can you re-try with the http url and see of it works.

On Thu, Nov 6, 2014 at 1:36 PM, Ishara Cooray isha...@wso2.com wrote:

 Hi,

 Im trying to clone a git repo using JGit.Following is the code snippet. I
 have customized the JVM default proxy selector by following a forum [1]
 http://stackoverflow.com/questions/19854053/jgit-https-cloning-is-not-working
 because it is said  JGit uses the standard ProxySelector mechanism for
 the Http connection. As of Today, the field
 org.eclipse.jgit.transport.TransportHttp.proxySelector used by the
 framework, is not overridable. It is configurable, though

 UsernamePasswordCredentialsProvider credentialsProvider = new
 UsernamePasswordCredentialsProvider(gitUser, gitPassword);
  ProxySelector.setDefault(new GitBlitProxySelector());

  
 Git.cloneRepository().setCredentialsProvider(credentialsProvider).setURI(remotePath)
 .setDirectory(new File(localPath)).call();

 public class GitBlitProxySelector extends ProxySelector {

 final ProxySelector delegate = ProxySelector.getDefault();

 @Override
 public ListProxy select(URI uri) {
 // Filter the URIs to be proxied

 if (uri.toString().contains(git)
  uri.toString().contains(https)) {
 return Arrays.asList(new Proxy(Proxy.Type.HTTP,
 InetSocketAddress
 .createUnresolved(localhost, 3128)));
 }
 if (uri.toString().contains(git)
  uri.toString().contains(http)) {
 return Arrays.asList(new Proxy(Proxy.Type.HTTP,
 InetSocketAddress
 .createUnresolved(localhost, 3129)));
 }
 // revert to the default behaviour
 return delegate == null ? Arrays.asList(Proxy.NO_PROXY)
 : delegate.select(uri);
 }

 @Override
 public void connectFailed(URI uri, SocketAddress sa, IOException ioe) {
 if (uri == null || sa == null || ioe == null) {
 throw new IllegalArgumentException(
 Arguments can't be null.);
 }
 }
 }


 Now i get a Connection refused Exception, the stack trace is given below.

 org.eclipse.jgit.api.errors.TransportException:
 https://git.cloudstaging.wso2.com/git/aaishara/samplejavaapp.git: cannot
 open git-upload-pack
 at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:139)
 at org.eclipse.jgit.api.CloneCommand.fetch(CloneCommand.java:178)
 at org.eclipse.jgit.api.CloneCommand.call(CloneCommand.java:125)
 at
 org.wso2.cloud.heartbeat.monitor.modules.gitblit.GitCloneTest.gitClone(GitCloneTest.java:54)
 at
 org.wso2.cloud.heartbeat.monitor.modules.gitblit.GitCloneTest.execute(GitCloneTest.java:36)
 at org.quartz.core.JobRunShell.run(JobRunShell.java:213)
 at
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:557)
 Caused by: org.eclipse.jgit.errors.TransportException:
 https://git.cloudstaging.wso2.com/git/aaishara/samplejavaapp.git: cannot
 open git-upload-pack
 at
 org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:524)Unable
 at
 org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:309)
 at
 org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:136)
 at
 org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:122)
 at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1115)
 at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:130)
 ... 6 more
 Caused by: java.net.ConnectException: Connection refused
 git.cloudstaging.wso2.com
 at org.eclipse.jgit.util.HttpSupport.response(HttpSupport.java:175)
 at
 org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:475)
 ... 11 more

 Does anyone has an idea of how i can get rid from this?
 I can clone this repo using command line with the same credentials.

 Thanks!
 Ishara Cooray
 Senior Software Engineer
 Mobile : +9477 262 9512
 WSO2, Inc. | http://wso2.com/
 Lean . Enterprise . Middleware

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




-- 
Thanks and Regards,

Isuru H.
+94 716 358 048* http://wso2.com/*
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [DEV] Unable to clone git repo using JGit API

2014-11-06 Thread Ishara Cooray
Hi Nirmal  Isuru,
Thanks for replying.:)

Seems I have done the same thing as Nirmal suggested.

It is assured the url is accessible as i can clone it in terminal.But if i
use http, in terminal i get a time out.In java code i get the same error as
above.


Ishara Cooray
Senior Software Engineer
Mobile : +9477 262 9512
WSO2, Inc. | http://wso2.com/
Lean . Enterprise . Middleware

On Thu, Nov 6, 2014 at 2:07 PM, Isuru Haththotuwa isu...@wso2.com wrote:

 Hi Ishara,

 The error says connection refused. Are you sure this url is accessible? If
 so, can you re-try with the http url and see of it works.

 On Thu, Nov 6, 2014 at 1:36 PM, Ishara Cooray isha...@wso2.com wrote:

 Hi,

 Im trying to clone a git repo using JGit.Following is the code snippet. I
 have customized the JVM default proxy selector by following a forum [1]
 http://stackoverflow.com/questions/19854053/jgit-https-cloning-is-not-working
 because it is said  JGit uses the standard ProxySelector mechanism for
 the Http connection. As of Today, the field
 org.eclipse.jgit.transport.TransportHttp.proxySelector used by the
 framework, is not overridable. It is configurable, though

 UsernamePasswordCredentialsProvider credentialsProvider = new
 UsernamePasswordCredentialsProvider(gitUser, gitPassword);
  ProxySelector.setDefault(new GitBlitProxySelector());

  
 Git.cloneRepository().setCredentialsProvider(credentialsProvider).setURI(remotePath)
 .setDirectory(new File(localPath)).call();

 public class GitBlitProxySelector extends ProxySelector {

 final ProxySelector delegate = ProxySelector.getDefault();

 @Override
 public ListProxy select(URI uri) {
 // Filter the URIs to be proxied

 if (uri.toString().contains(git)
  uri.toString().contains(https)) {
 return Arrays.asList(new Proxy(Proxy.Type.HTTP,
 InetSocketAddress
 .createUnresolved(localhost, 3128)));
 }
 if (uri.toString().contains(git)
  uri.toString().contains(http)) {
 return Arrays.asList(new Proxy(Proxy.Type.HTTP,
 InetSocketAddress
 .createUnresolved(localhost, 3129)));
 }
 // revert to the default behaviour
 return delegate == null ? Arrays.asList(Proxy.NO_PROXY)
 : delegate.select(uri);
 }

 @Override
 public void connectFailed(URI uri, SocketAddress sa, IOException ioe)
 {
 if (uri == null || sa == null || ioe == null) {
 throw new IllegalArgumentException(
 Arguments can't be null.);
 }
 }
 }


 Now i get a Connection refused Exception, the stack trace is given below.

 org.eclipse.jgit.api.errors.TransportException:
 https://git.cloudstaging.wso2.com/git/aaishara/samplejavaapp.git: cannot
 open git-upload-pack
 at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:139)
 at org.eclipse.jgit.api.CloneCommand.fetch(CloneCommand.java:178)
 at org.eclipse.jgit.api.CloneCommand.call(CloneCommand.java:125)
 at
 org.wso2.cloud.heartbeat.monitor.modules.gitblit.GitCloneTest.gitClone(GitCloneTest.java:54)
 at
 org.wso2.cloud.heartbeat.monitor.modules.gitblit.GitCloneTest.execute(GitCloneTest.java:36)
 at org.quartz.core.JobRunShell.run(JobRunShell.java:213)
 at
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:557)
 Caused by: org.eclipse.jgit.errors.TransportException:
 https://git.cloudstaging.wso2.com/git/aaishara/samplejavaapp.git: cannot
 open git-upload-pack
 at
 org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:524)Unable
 at
 org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:309)
 at
 org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:136)
 at
 org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:122)
 at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1115)
 at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:130)
 ... 6 more
 Caused by: java.net.ConnectException: Connection refused
 git.cloudstaging.wso2.com
 at org.eclipse.jgit.util.HttpSupport.response(HttpSupport.java:175)
 at
 org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:475)
 ... 11 more

 Does anyone has an idea of how i can get rid from this?
 I can clone this repo using command line with the same credentials.

 Thanks!
 Ishara Cooray
 Senior Software Engineer
 Mobile : +9477 262 9512
 WSO2, Inc. | http://wso2.com/
 Lean . Enterprise . Middleware

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




 --
 Thanks and Regards,

 Isuru H.
 +94 716 358 048* http://wso2.com/*



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


Re: [Dev] EMM OAuth Implementation - Android - Storing Consumer Secret

2014-11-06 Thread Gayan Gunawardana
Most probably this is not going to support in next IS release.

On Thu, Nov 6, 2014 at 12:07 PM, Chan duli...@wso2.com wrote:

 Rekindling an old thread. Are we going to support this in next IS release?

 On Thu, Apr 17, 2014 at 8:26 PM, Kasun Dananjaya Delgolla kas...@wso2.com
  wrote:

 +1. I think this is the ideal way of doing that.


 On Thu, Apr 17, 2014 at 5:57 PM, Gayan Gunawardana ga...@wso2.com
 wrote:

 Hi,

 +1 for dynamic client generation.

 This is what we have discussed in several meetings.

 If time permit I can have a look at the spec and do the implementation.
 This will be an ideal solution for most of security holes.



 On Thu, Apr 17, 2014 at 5:41 PM, Suresh Attanayaka sur...@wso2.com
 wrote:

 Hi,

 We can use Dynamic Client Registration[1] to get a ClientKey and a
 ClientSecrete. The advantage here is that different instances of the same
 application will have different ClientKey and ClientSecrete. With this we
 can identify each installation.

 Dynamic Client Registration has a registration endpoint which requires
 an initial token. The initial token can be obtained using basic
 authentication, then the client can use that initial token to register
 itself at the EMM and get the ClientKey + ClientSecrete.

 Once the client has received the ClientKey and ClientSecrete, it should
 store it securely.

 [1]- http://openid.net/specs/openid-connect-registration-1_0.html




 On Thu, Apr 17, 2014 at 2:52 PM, Harshan Liyanage hars...@wso2.com
 wrote:

 I think we could use a technique like *Image Steganography[[1]* to
 store consumer key/secret inside the application so it would be difficult
 to hack. For the image we can use something like application logo so it
 won't get much attention. On the otherhand we could modify the
 steganography algorithm and make it much more secure.

 [1]. http://en.wikipedia.org/wiki/Steganography

 Best Regards,

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


 On Thu, Apr 17, 2014 at 2:21 PM, Chathura Dilan chathu...@wso2.com
 wrote:

 if it is unique to the app, there could be another security issue.
 Someone can get our source and authenticate himself with his app, and 
 they
 are able to download the key from the server.


 On Thu, Apr 17, 2014 at 2:12 PM, Chathura Dilan chathu...@wso2.com
 wrote:

 Is consumer/secret key unique to a user or is it unique to the app?


 On Thu, Apr 17, 2014 at 12:20 PM, Chan duli...@wso2.com wrote:

 +1 to the idea since basic auth will be first used to obtain the
 consumer secret. But we might have to change the flow from how it 
 usually
 work.

 Cheers~


 On Thu, Apr 17, 2014 at 12:17 PM, Kasun Dananjaya Delgolla 
 kas...@wso2.com wrote:

 Hi All,

 We're going to protect all the API calls from EMM client side
 using OAuth.

 I have a concern whether to store the consumer key/secret inside
 the EMM Agent Application or making it dynamic. We can actually send 
 those
 2 when the user authenticates from the mobile client (As the 
 response), and
 then we can store it inside a private preference (Which is application
 private).

 I see this as the safest way because keeping it hardcoded in the
 source or a file might be extremely easy to hack. So WDYT?

 Regards,
 --
 Kasun Dananjaya Delgolla

 Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware
 Tel:  +94 11 214 5345
 Fax: +94 11 2145300
 Mob: + 94 777 997 850
 Blog: http://kddcodingparadise.blogspot.com
 Linkedin: *http://lk.linkedin.com/in/kasundananjaya
 http://lk.linkedin.com/in/kasundananjaya*



 --
 Kasun Dananjaya Delgolla

 Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware
 Tel:  +94 11 214 5345
 Fax: +94 11 2145300
 Mob: + 94 777 997 850
 Blog: http://kddcodingparadise.blogspot.com
 Linkedin: *http://lk.linkedin.com/in/kasundananjaya
 http://lk.linkedin.com/in/kasundananjaya*




 --
 Chan (Dulitha Wijewantha)
 Software Engineer - Mobile Development
 WSO2Mobile
 Lean.Enterprise.Mobileware
  * ~Email   duli...@wso2.com duli...@wso2mobile.com*
 *  ~Mobile +94712112165 %2B94712112165*
 *  ~Website   dulitha.me http://dulitha.me*
 *  ~Twitter @dulitharw https://twitter.com/dulitharw*
   *~Github @dulichan https://github.com/dulichan*
   *~SO @chan http://stackoverflow.com/users/813471/chan*




 --
 Regards,

 Chatura Dilan Perera
 *(Senior Software Engineer - WSO2 Inc.)*
 www.dilan.me




 --
 Regards,

 Chatura Dilan Perera
 *(Senior Software Engineer - WSO2 Inc.)*
 www.dilan.me



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




 --
 Suresh Attanayake
 Senior Software Engineer; WSO2 Inc. http://wso2.com/
 Blog : http://sureshatt.blogspot.com/
 Web : http://www.ssoarcade.com/
 Facebook : https://www.facebook.com/IdentityWorld
 Twitter : 

Re: [Dev] [DEV] Unable to clone git repo using JGit API

2014-11-06 Thread Ishara Cooray
hi isuru,

I think the connection refused problem comes with the ProxySelector i have
added.
When i use the JVM default proxy selector i get below exceptions.

org.eclipse.jgit.api.errors.TransportException:
https://git.cloudstaging.wso2.com/git/aaishara/samplejavaapp.git: cannot
open git-upload-pack
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:139)
at org.eclipse.jgit.api.CloneCommand.fetch(CloneCommand.java:178)
at org.eclipse.jgit.api.CloneCommand.call(CloneCommand.java:125)
at
org.wso2.cloud.heartbeat.monitor.modules.gitblit.GitCloneTest.gitClone(GitCloneTest.java:64)
at
org.wso2.cloud.heartbeat.monitor.modules.gitblit.GitCloneTest.execute(GitCloneTest.java:40)
at org.quartz.core.JobRunShell.run(JobRunShell.java:213)
at
org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:557)
Caused by: org.eclipse.jgit.errors.TransportException:
https://git.cloudstaging.wso2.com/git/aaishara/samplejavaapp.git: cannot
open git-upload-pack
at
org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:524)
at
org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:309)
at
org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:136)
at
org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:122)
at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1115)
at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:130)
... 6 more
Caused by: javax.net.ssl.SSLException: java.lang.RuntimeException:
Unexpected error: java.security.InvalidAlgorithmParameterException: the
trustAnchors parameter must be non-empty
at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:190)
at
com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1747)
at
com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1708)
at
com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1691)
at
com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1222)
at
com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1199)
at
sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:434)
at
sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:166)
at
sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1195)
at
java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:379)
at
sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:318)
at
org.eclipse.jgit.transport.http.JDKHttpConnection.getResponseCode(JDKHttpConnection.java:98)
at org.eclipse.jgit.util.HttpSupport.response(HttpSupport.java:168)
at
org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:475)
... 11 more
Caused by: java.lang.RuntimeException: Unexpected error:
java.security.InvalidAlgorithmParameterException: the trustAnchors
parameter must be non-empty
at sun.security.validator.PKIXValidator.init(PKIXValidator.java:57)
at sun.security.validator.Validator.getInstance(Validator.java:161)
at
com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.getValidator(X509TrustManagerImpl.java:108)
at
com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:204)
at
com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:249)
at
com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1188)
at
com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:135)
at
com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:593)
at
com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:529)
at
com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:943)
at
com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1188)
at
com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1215)
... 20 more
Caused by: java.security.InvalidAlgorithmParameterException: the
trustAnchors parameter must be non-empty
at
java.security.cert.PKIXParameters.setTrustAnchors(PKIXParameters.java:183)
at java.security.cert.PKIXParameters.init(PKIXParameters.java:103)
at
java.security.cert.PKIXBuilderParameters.init(PKIXBuilderParameters.java:87)
at sun.security.validator.PKIXValidator.init(PKIXValidator.java:55)
... 31 more

may be i have to set following system properties.

System.setProperty(javax.net.ssl.trustStore, secure.ts);
System.setProperty(javax.net.ssl.trustStorePassword, S3cuR3pas$!);

WDYT?

if so how can i find the truststore and the password?

Any help would be appreciated.

Thanks  Regards,

Ishara Cooray
Senior Software Engineer
Mobile : +9477 262 9512
WSO2, Inc. | http://wso2.com/
Lean . 

[Dev] Getting URI declaratively from dynamic endpoint configured in ESB

2014-11-06 Thread Dhanuka Ranasinghe
Hi,

Is there way to get end point URI using property mediator without using a
class mediator. Something like below. I tried but it gives me null value as
content.

property name=some name
expression=get-property('registry',gov:resource/path')/


Cheers,

Dhanuka

*Dhanuka Ranasinghe*

Senior Software Engineer
WSO2 Inc. ; http://wso2.com
lean . enterprise . middleware

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


Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread CD Athuraliya
Congratulations!!! :)

On Thu, Nov 6, 2014 at 12:43 PM, Suhan Dharmasuriya suh...@wso2.com wrote:

 Congrats Asanka!!!

 On Thu, Nov 6, 2014 at 12:26 PM, Kasun De Silva kas...@wso2.com wrote:

 Congrats Asanka!!!

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

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


 On Thu, Nov 6, 2014 at 12:24 PM, Pamod Sylvester pa...@wso2.com wrote:

 Congratulations Asanka !

 On Thu, Nov 6, 2014 at 12:00 PM, Hasintha Indrajee hasin...@wso2.com
 wrote:

 Congratulations Asanka !!

 On Thu, Nov 6, 2014 at 10:26 AM, Denuwanthi De Silva 
 denuwan...@wso2.com wrote:

 Congratulations Asanka!!

 On Thu, Nov 6, 2014 at 10:14 AM, Prasanna Dangalla prasa...@wso2.com
 wrote:

 Congratulations Asanka.!!!

 On Thu, Nov 6, 2014 at 10:11 AM, Buddhima Wijeweera 
 buddh...@wso2.com wrote:

 Congratulations Asanka !!!

 On Thu, Nov 6, 2014 at 10:03 AM, Dakshika Jayathilaka 
 daksh...@wso2.com wrote:

 Congratulations Asanka,.!!!

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

 On Thu, Nov 6, 2014 at 9:22 AM, Sajini De Silva saj...@wso2.com
 wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:49 AM, Sachini Jayasekara 
 sachi...@wso2.com wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:36 AM, Gayashan Amarasinghe 
 gayas...@wso2.com wrote:

 Congratulations Asanka :)

 Gayashan Amarasinghe
 (sent from mobile)
 On 6 Nov 2014 06:11, Dilan Udara Ariyaratne dil...@wso2.com
 wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya 
 hasit...@wso2.com wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara 
 hars...@wso2.com wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana 
 raji...@wso2.com wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe 
 ram...@wso2.com wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2
 committer. Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com* http://abeykoon.blogspot.com



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



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


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




 --



 *Thanks  Regards,Sachini JayasekaraSoftware Engineer; **WSO2
 Inc. *

 *lean . enterprise . middleware |  http://wso2.com
 http://wso2.com *

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




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

 Phone: +94 712797729


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



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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




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

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

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




 --
 Denuwanthi De Silva
 Software Engineer;
 WSO2 Inc.; 

Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Abimaran Kugathasan
Congrats!

On Thu, Nov 6, 2014 at 8:37 PM, CD Athuraliya chathur...@wso2.com wrote:

 Congratulations!!! :)

 On Thu, Nov 6, 2014 at 12:43 PM, Suhan Dharmasuriya suh...@wso2.com
 wrote:

 Congrats Asanka!!!

 On Thu, Nov 6, 2014 at 12:26 PM, Kasun De Silva kas...@wso2.com wrote:

 Congrats Asanka!!!

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

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


 On Thu, Nov 6, 2014 at 12:24 PM, Pamod Sylvester pa...@wso2.com wrote:

 Congratulations Asanka !

 On Thu, Nov 6, 2014 at 12:00 PM, Hasintha Indrajee hasin...@wso2.com
 wrote:

 Congratulations Asanka !!

 On Thu, Nov 6, 2014 at 10:26 AM, Denuwanthi De Silva 
 denuwan...@wso2.com wrote:

 Congratulations Asanka!!

 On Thu, Nov 6, 2014 at 10:14 AM, Prasanna Dangalla prasa...@wso2.com
  wrote:

 Congratulations Asanka.!!!

 On Thu, Nov 6, 2014 at 10:11 AM, Buddhima Wijeweera 
 buddh...@wso2.com wrote:

 Congratulations Asanka !!!

 On Thu, Nov 6, 2014 at 10:03 AM, Dakshika Jayathilaka 
 daksh...@wso2.com wrote:

 Congratulations Asanka,.!!!

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

 On Thu, Nov 6, 2014 at 9:22 AM, Sajini De Silva saj...@wso2.com
 wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:49 AM, Sachini Jayasekara 
 sachi...@wso2.com wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:36 AM, Gayashan Amarasinghe 
 gayas...@wso2.com wrote:

 Congratulations Asanka :)

 Gayashan Amarasinghe
 (sent from mobile)
 On 6 Nov 2014 06:11, Dilan Udara Ariyaratne dil...@wso2.com
 wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya 
 hasit...@wso2.com wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara 
 hars...@wso2.com wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana 
 raji...@wso2.com wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe 
 ram...@wso2.com wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2
 committer. Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com*
 http://abeykoon.blogspot.com


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



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


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




 --



 *Thanks  Regards,Sachini JayasekaraSoftware Engineer; **WSO2
 Inc. *

 *lean . enterprise . middleware |  http://wso2.com
 http://wso2.com *

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




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

 Phone: +94 712797729


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



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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




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

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

 ___
 Dev mailing list
 Dev@wso2.org
 

Re: [Dev] When one or more worker nodes are shutdown in a cluster ELB stops sending requests to workers after sometime

2014-11-06 Thread Gayashan Amarasinghe
Hi Kishanthan, all,

This was a tricky situation and i was able to identify the issue and fix
it. This was caused by the new hazelcast upgrade.

There are two lists of members maintained in the
HazelcastGroupManagementAgent. A hazelcast distributed map shared by the
cluster which consists of all the members (members map) in the cluster and
a connected members list which is maintained per each subdomain in the
cluster. When a member leaves the cluster there's a MemberEntryListener and
GroupMembershipListener (and some other listeners) that gets notified. The
MemberEntryListener gets notified when the members map gets changed. And
when a member leaves, in the entryRemoved method of this listener we remove
the particular member that just left from the connectedMembers list as
well. And the event that it receives (EntryEvent) consists of the member
that left. In the current implementation this member is acquired from this
EntryEvent as follows,

entryEvent.getValue()

So in the code we do this,

connectedMembers.remove(entryEvent.getValue());

In the previous hazelcast version this returned the correct member. However
with the new hazelcast version this returns a null value which causes the
connected members list not getting updated properly. This is casued by a
fix in hazlecast [1] [2].

The TenantAwareLoadBalanceEndpoint in the ELB uses this connected members
list to get the next application member to serve the incoming request. This
was the cause that resulted for the ELB to try sending requests to
disconnected members and eventually become non-responsive.

As a fix i have identified that we can use the,

entryEvent.getOldValue()

to acquire the member that just left. (hazelcast issue [1] also suggests to
use it)

WDYT?

I have created the JIRA [3] for this issue and will send the PR with the
fix.

[1] https://github.com/hazelcast/hazelcast/issues/3198
[2] https://github.com/hazelcast/hazelcast/issues/3859
[3] https://wso2.org/jira/browse/CARBON-15057

Thanks.
/Gayashan

On Wed, Nov 5, 2014 at 5:47 PM, Kishanthan Thangarajah kishant...@wso2.com
wrote:

 Gayashan, please share your latest findings on this.

 When we see the member left msg, the current member list is updated with
 that event (the member gets removed). So above can occur if that is not
 happening accordingly. We should also compare the same with and without
 hazelcast upgrade.

 On Fri, Oct 31, 2014 at 5:30 PM, Gayashan Amarasinghe gayas...@wso2.com
 wrote:

 Hi all,

 For Carbon testing we have a worker-mgt cluster fronted by ELB and
 requests keep coming in from a jmeter client. During this if one (or more)
 of the worker nodes were shutdown, after some time the ELB stops sending
 requests to the nodes and the connection times out. Following log gets
 printed in the ELB.

 ​​TID: [0] [ELB] [2014-10-31 06:27:32,517]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed to send message to Member Host:172.31.7.214, Remote Host:null, Port:
 4100, HTTP:9765, HTTPS:9445, Domain: wso2.as.domain, Sub-domain:worker,
 Active:true . Error Code: 101503
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,519]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Dropping the faulty/unreachable Member with Domain:wso2.as.domain,
 Host:172.31.7.214, Port:4100
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,738]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed over to Host:172.31.0.128, Remote Host:null, Port: 4100, HTTP:9763,
 HTTPS:9443, Domain: wso2.as.domain, Sub-domain:worker, Active:true
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,740]  WARN
 {org.apache.synapse.transport.passthru.ConnectCallback} -  Connection
 refused or failed for : /172.31.7.214:9765
 {org.apache.synapse.transport.passthru.ConnectCallback}
 TID: [0] [ELB] [2014-10-31 06:27:32,743]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed to send message to Member Host:172.31.7.214, Remote Host:null, Port:
 4100, HTTP:9765, HTTPS:9445, Domain: wso2.as.domain, Sub-domain:worker,
 Active:true . Error Code: 101503
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,745]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Dropping the faulty/unreachable Member with Domain:wso2.as.domain,
 Host:172.31.7.214, Port:4100
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:33,518]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed over to Host:172.31.7.214, Remote Host:null, Port: 4100, HTTP:9765,
 HTTPS:9445, Domain: wso2.as.domain, Sub-domain:worker, Active:true
 

Re: [Dev] Getting URI declaratively from dynamic endpoint configured in ESB

2014-11-06 Thread Chanaka Fernando
Hi Dhanuka,

Looks like your syntax is wrong. Please use this.

property name=REG_PROPERTY

expression=get-property('registry','gov:/endpoints/test')/

The above configuration sets the value stored in the registry resource to
the REG_PROPERTY variable.

Thanks,
Chanaka

On Thu, Nov 6, 2014 at 7:53 PM, Dhanuka Ranasinghe dhan...@wso2.com wrote:

 Hi,

 Is there way to get end point URI using property mediator without using a
 class mediator. Something like below. I tried but it gives me null value as
 content.

 property name=some name 
 expression=get-property('registry',gov:resource/path')/


 Cheers,

 Dhanuka

 *Dhanuka Ranasinghe*

 Senior Software Engineer
 WSO2 Inc. ; http://wso2.com
 lean . enterprise . middleware

 phone : +94 715381915




-- 
--
Chanaka Fernando
Technical Lead
WSO2, Inc.; http://wso2.com
lean.enterprise.middleware

mobile: +94 773337238
Blog : http://soatutorials.blogspot.com
LinkedIn:http://www.linkedin.com/pub/chanaka-fernando/19/a20/5b0
Twitter:https://twitter.com/chanakaudaya
Wordpress:http://chanakaudaya.wordpress.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [CEP][G-Reg] Retrieving a specific file from the Registry

2014-11-06 Thread Madhawa Gunasekara
Please ignore this mail.

Thanks,


On Wed, Nov 5, 2014 at 10:51 PM, Madhawa Gunasekara madha...@wso2.com
wrote:

 Hi All,

 I'm trying to write a CEP extension to load a trained model (which is
 stored as a file in the Registry).
 I'm sending filename as a parameter for the extension.Therefore my
 extension should search and retrieve the specific file from the RegistryDB.

 How can I access the RegistryDB to retrieve the file ?

 I found a sample in G-Reg Documentation [1]. is it good to follow this
 sample for this scenario ?

 Thanks,
 Madhawa

 [1] https://docs.wso2.com/display/Governance460/Advance+Search+Sample
 --
 *Madhawa Gunasekara*
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 mobile: +94 719411002





-- 
*Madhawa Gunasekara*
Software Engineering Intern
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

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


Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Akalanka Pagoda Arachchi
Congratz bro..!

On Thu, Nov 6, 2014 at 8:54 PM, Abimaran Kugathasan abima...@wso2.com
wrote:

 Congrats!

 On Thu, Nov 6, 2014 at 8:37 PM, CD Athuraliya chathur...@wso2.com wrote:

 Congratulations!!! :)

 On Thu, Nov 6, 2014 at 12:43 PM, Suhan Dharmasuriya suh...@wso2.com
 wrote:

 Congrats Asanka!!!

 On Thu, Nov 6, 2014 at 12:26 PM, Kasun De Silva kas...@wso2.com wrote:

 Congrats Asanka!!!

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

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


 On Thu, Nov 6, 2014 at 12:24 PM, Pamod Sylvester pa...@wso2.com
 wrote:

 Congratulations Asanka !

 On Thu, Nov 6, 2014 at 12:00 PM, Hasintha Indrajee hasin...@wso2.com
 wrote:

 Congratulations Asanka !!

 On Thu, Nov 6, 2014 at 10:26 AM, Denuwanthi De Silva 
 denuwan...@wso2.com wrote:

 Congratulations Asanka!!

 On Thu, Nov 6, 2014 at 10:14 AM, Prasanna Dangalla 
 prasa...@wso2.com wrote:

 Congratulations Asanka.!!!

 On Thu, Nov 6, 2014 at 10:11 AM, Buddhima Wijeweera 
 buddh...@wso2.com wrote:

 Congratulations Asanka !!!

 On Thu, Nov 6, 2014 at 10:03 AM, Dakshika Jayathilaka 
 daksh...@wso2.com wrote:

 Congratulations Asanka,.!!!

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

 On Thu, Nov 6, 2014 at 9:22 AM, Sajini De Silva saj...@wso2.com
 wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:49 AM, Sachini Jayasekara 
 sachi...@wso2.com wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:36 AM, Gayashan Amarasinghe 
 gayas...@wso2.com wrote:

 Congratulations Asanka :)

 Gayashan Amarasinghe
 (sent from mobile)
 On 6 Nov 2014 06:11, Dilan Udara Ariyaratne dil...@wso2.com
 wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya 
 hasit...@wso2.com wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara 
 hars...@wso2.com wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana 
 raji...@wso2.com wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe 
 ram...@wso2.com wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2
 committer. Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com*
 http://abeykoon.blogspot.com


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



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


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




 --



 *Thanks  Regards,Sachini JayasekaraSoftware Engineer; **WSO2
 Inc. *

 *lean . enterprise . middleware |  http://wso2.com
 http://wso2.com *

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




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

 Phone: +94 712797729


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



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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




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

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


Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Sewwandi Perera
Congratulations Asanka...!!!

On Fri, Nov 7, 2014 at 8:12 AM, Akalanka Pagoda Arachchi darsha...@wso2.com
 wrote:

 Congratz bro..!

 On Thu, Nov 6, 2014 at 8:54 PM, Abimaran Kugathasan abima...@wso2.com
 wrote:

 Congrats!

 On Thu, Nov 6, 2014 at 8:37 PM, CD Athuraliya chathur...@wso2.com
 wrote:

 Congratulations!!! :)

 On Thu, Nov 6, 2014 at 12:43 PM, Suhan Dharmasuriya suh...@wso2.com
 wrote:

 Congrats Asanka!!!

 On Thu, Nov 6, 2014 at 12:26 PM, Kasun De Silva kas...@wso2.com
 wrote:

 Congrats Asanka!!!

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

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


 On Thu, Nov 6, 2014 at 12:24 PM, Pamod Sylvester pa...@wso2.com
 wrote:

 Congratulations Asanka !

 On Thu, Nov 6, 2014 at 12:00 PM, Hasintha Indrajee hasin...@wso2.com
  wrote:

 Congratulations Asanka !!

 On Thu, Nov 6, 2014 at 10:26 AM, Denuwanthi De Silva 
 denuwan...@wso2.com wrote:

 Congratulations Asanka!!

 On Thu, Nov 6, 2014 at 10:14 AM, Prasanna Dangalla 
 prasa...@wso2.com wrote:

 Congratulations Asanka.!!!

 On Thu, Nov 6, 2014 at 10:11 AM, Buddhima Wijeweera 
 buddh...@wso2.com wrote:

 Congratulations Asanka !!!

 On Thu, Nov 6, 2014 at 10:03 AM, Dakshika Jayathilaka 
 daksh...@wso2.com wrote:

 Congratulations Asanka,.!!!

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

 On Thu, Nov 6, 2014 at 9:22 AM, Sajini De Silva saj...@wso2.com
  wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:49 AM, Sachini Jayasekara 
 sachi...@wso2.com wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:36 AM, Gayashan Amarasinghe 
 gayas...@wso2.com wrote:

 Congratulations Asanka :)

 Gayashan Amarasinghe
 (sent from mobile)
 On 6 Nov 2014 06:11, Dilan Udara Ariyaratne 
 dil...@wso2.com wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya 
 hasit...@wso2.com wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara 
 hars...@wso2.com wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana 
 raji...@wso2.com wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe 
 ram...@wso2.com wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2
 committer. Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com*
 http://abeykoon.blogspot.com


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



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


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




 --



 *Thanks  Regards,Sachini JayasekaraSoftware Engineer; **WSO2
 Inc. *

 *lean . enterprise . middleware |  http://wso2.com
 http://wso2.com *

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




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

 Phone: +94 712797729


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



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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Prasanna Dangalla
 Software 

Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Supun Malinga
Congrats! :)

On Fri, Nov 7, 2014 at 8:21 AM, Sewwandi Perera sewwa...@wso2.com wrote:


 Congratulations Asanka...!!!

 On Fri, Nov 7, 2014 at 8:12 AM, Akalanka Pagoda Arachchi 
 darsha...@wso2.com wrote:

 Congratz bro..!

 On Thu, Nov 6, 2014 at 8:54 PM, Abimaran Kugathasan abima...@wso2.com
 wrote:

 Congrats!

 On Thu, Nov 6, 2014 at 8:37 PM, CD Athuraliya chathur...@wso2.com
 wrote:

 Congratulations!!! :)

 On Thu, Nov 6, 2014 at 12:43 PM, Suhan Dharmasuriya suh...@wso2.com
 wrote:

 Congrats Asanka!!!

 On Thu, Nov 6, 2014 at 12:26 PM, Kasun De Silva kas...@wso2.com
 wrote:

 Congrats Asanka!!!

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

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


 On Thu, Nov 6, 2014 at 12:24 PM, Pamod Sylvester pa...@wso2.com
 wrote:

 Congratulations Asanka !

 On Thu, Nov 6, 2014 at 12:00 PM, Hasintha Indrajee 
 hasin...@wso2.com wrote:

 Congratulations Asanka !!

 On Thu, Nov 6, 2014 at 10:26 AM, Denuwanthi De Silva 
 denuwan...@wso2.com wrote:

 Congratulations Asanka!!

 On Thu, Nov 6, 2014 at 10:14 AM, Prasanna Dangalla 
 prasa...@wso2.com wrote:

 Congratulations Asanka.!!!

 On Thu, Nov 6, 2014 at 10:11 AM, Buddhima Wijeweera 
 buddh...@wso2.com wrote:

 Congratulations Asanka !!!

 On Thu, Nov 6, 2014 at 10:03 AM, Dakshika Jayathilaka 
 daksh...@wso2.com wrote:

 Congratulations Asanka,.!!!

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

 On Thu, Nov 6, 2014 at 9:22 AM, Sajini De Silva 
 saj...@wso2.com wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:49 AM, Sachini Jayasekara 
 sachi...@wso2.com wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:36 AM, Gayashan Amarasinghe 
 gayas...@wso2.com wrote:

 Congratulations Asanka :)

 Gayashan Amarasinghe
 (sent from mobile)
 On 6 Nov 2014 06:11, Dilan Udara Ariyaratne 
 dil...@wso2.com wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya 
 hasit...@wso2.com wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara 
 hars...@wso2.com wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana 
 raji...@wso2.com wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe 
 ram...@wso2.com wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2
 committer. Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com*
 http://abeykoon.blogspot.com


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



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


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




 --



 *Thanks  Regards,Sachini JayasekaraSoftware Engineer; **WSO2
 Inc. *

 *lean . enterprise . middleware |  http://wso2.com
 http://wso2.com *

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




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

 Phone: +94 712797729


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



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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

 ___
 Dev mailing list
 

Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Thilini Shanika
Congratulations Asanka !!!

On Fri, Nov 7, 2014 at 8:35 AM, Supun Malinga sup...@wso2.com wrote:

 Congrats! :)

 On Fri, Nov 7, 2014 at 8:21 AM, Sewwandi Perera sewwa...@wso2.com wrote:


 Congratulations Asanka...!!!

 On Fri, Nov 7, 2014 at 8:12 AM, Akalanka Pagoda Arachchi 
 darsha...@wso2.com wrote:

 Congratz bro..!

 On Thu, Nov 6, 2014 at 8:54 PM, Abimaran Kugathasan abima...@wso2.com
 wrote:

 Congrats!

 On Thu, Nov 6, 2014 at 8:37 PM, CD Athuraliya chathur...@wso2.com
 wrote:

 Congratulations!!! :)

 On Thu, Nov 6, 2014 at 12:43 PM, Suhan Dharmasuriya suh...@wso2.com
 wrote:

 Congrats Asanka!!!

 On Thu, Nov 6, 2014 at 12:26 PM, Kasun De Silva kas...@wso2.com
 wrote:

 Congrats Asanka!!!

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

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


 On Thu, Nov 6, 2014 at 12:24 PM, Pamod Sylvester pa...@wso2.com
 wrote:

 Congratulations Asanka !

 On Thu, Nov 6, 2014 at 12:00 PM, Hasintha Indrajee 
 hasin...@wso2.com wrote:

 Congratulations Asanka !!

 On Thu, Nov 6, 2014 at 10:26 AM, Denuwanthi De Silva 
 denuwan...@wso2.com wrote:

 Congratulations Asanka!!

 On Thu, Nov 6, 2014 at 10:14 AM, Prasanna Dangalla 
 prasa...@wso2.com wrote:

 Congratulations Asanka.!!!

 On Thu, Nov 6, 2014 at 10:11 AM, Buddhima Wijeweera 
 buddh...@wso2.com wrote:

 Congratulations Asanka !!!

 On Thu, Nov 6, 2014 at 10:03 AM, Dakshika Jayathilaka 
 daksh...@wso2.com wrote:

 Congratulations Asanka,.!!!

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

 On Thu, Nov 6, 2014 at 9:22 AM, Sajini De Silva 
 saj...@wso2.com wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:49 AM, Sachini Jayasekara 
 sachi...@wso2.com wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:36 AM, Gayashan Amarasinghe 
 gayas...@wso2.com wrote:

 Congratulations Asanka :)

 Gayashan Amarasinghe
 (sent from mobile)
 On 6 Nov 2014 06:11, Dilan Udara Ariyaratne 
 dil...@wso2.com wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya 
 hasit...@wso2.com wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara 
 hars...@wso2.com wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana 
 raji...@wso2.com wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe 
 ram...@wso2.com wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a
 WSO2 committer. Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com*
 http://abeykoon.blogspot.com


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



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


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




 --



 *Thanks  Regards,Sachini JayasekaraSoftware Engineer; **WSO2
 Inc. *

 *lean . enterprise . middleware |  http://wso2.com
 http://wso2.com *

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




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

 Phone: +94 712797729


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



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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: 

Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Vijitha Ekanayake
Congratulations Asanka...!!!

On Fri, Nov 7, 2014 at 8:38 AM, Thilini Shanika thili...@wso2.com wrote:

 Congratulations Asanka !!!

 On Fri, Nov 7, 2014 at 8:35 AM, Supun Malinga sup...@wso2.com wrote:

 Congrats! :)

 On Fri, Nov 7, 2014 at 8:21 AM, Sewwandi Perera sewwa...@wso2.com
 wrote:


 Congratulations Asanka...!!!

 On Fri, Nov 7, 2014 at 8:12 AM, Akalanka Pagoda Arachchi 
 darsha...@wso2.com wrote:

 Congratz bro..!

 On Thu, Nov 6, 2014 at 8:54 PM, Abimaran Kugathasan abima...@wso2.com
 wrote:

 Congrats!

 On Thu, Nov 6, 2014 at 8:37 PM, CD Athuraliya chathur...@wso2.com
 wrote:

 Congratulations!!! :)

 On Thu, Nov 6, 2014 at 12:43 PM, Suhan Dharmasuriya suh...@wso2.com
 wrote:

 Congrats Asanka!!!

 On Thu, Nov 6, 2014 at 12:26 PM, Kasun De Silva kas...@wso2.com
 wrote:

 Congrats Asanka!!!

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

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


 On Thu, Nov 6, 2014 at 12:24 PM, Pamod Sylvester pa...@wso2.com
 wrote:

 Congratulations Asanka !

 On Thu, Nov 6, 2014 at 12:00 PM, Hasintha Indrajee 
 hasin...@wso2.com wrote:

 Congratulations Asanka !!

 On Thu, Nov 6, 2014 at 10:26 AM, Denuwanthi De Silva 
 denuwan...@wso2.com wrote:

 Congratulations Asanka!!

 On Thu, Nov 6, 2014 at 10:14 AM, Prasanna Dangalla 
 prasa...@wso2.com wrote:

 Congratulations Asanka.!!!

 On Thu, Nov 6, 2014 at 10:11 AM, Buddhima Wijeweera 
 buddh...@wso2.com wrote:

 Congratulations Asanka !!!

 On Thu, Nov 6, 2014 at 10:03 AM, Dakshika Jayathilaka 
 daksh...@wso2.com wrote:

 Congratulations Asanka,.!!!

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

 On Thu, Nov 6, 2014 at 9:22 AM, Sajini De Silva 
 saj...@wso2.com wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:49 AM, Sachini Jayasekara 
 sachi...@wso2.com wrote:

 Congratulations Asanka!!!

 On Thu, Nov 6, 2014 at 8:36 AM, Gayashan Amarasinghe 
 gayas...@wso2.com wrote:

 Congratulations Asanka :)

 Gayashan Amarasinghe
 (sent from mobile)
 On 6 Nov 2014 06:11, Dilan Udara Ariyaratne 
 dil...@wso2.com wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya 
 hasit...@wso2.com wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara 
 hars...@wso2.com wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana 
 raji...@wso2.com wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe 
 ram...@wso2.com wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a
 WSO2 committer. Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com*
 http://abeykoon.blogspot.com


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



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


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




 --



 *Thanks  Regards,Sachini JayasekaraSoftware Engineer; **WSO2
 Inc. *

 *lean . enterprise . middleware |  http://wso2.com
 http://wso2.com *

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




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

 Phone: +94 712797729


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



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




 --
 Buddhima Wijeweera
 Software Engineer; WSO2 Inc.; 

Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Roshan Deniyage
Congrats asanka!

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

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


On Thu, Nov 6, 2014 at 6:10 AM, Dilan Udara Ariyaratne dil...@wso2.com
wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya hasit...@wso2.com
 wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara hars...@wso2.com wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana raji...@wso2.com
 wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe ram...@wso2.com
 wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2 committer.
 Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com* http://abeykoon.blogspot.com


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



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


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


Re: [Dev] WSO2 Committers += Milinda Perera

2014-11-06 Thread Roshan Deniyage
Congrats Milinda!

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

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


On Wed, Nov 5, 2014 at 6:54 PM, Gayan Gunawardana ga...@wso2.com wrote:

 Congratzzz Milinda!

 On Tue, Nov 4, 2014 at 11:20 AM, Priyadarssini Kishokumar 
 priyadarss...@wso2.com wrote:

 Congrats Milinda!

 On Tue, Nov 4, 2014 at 10:45 AM, Abimaran Kugathasan abima...@wso2.com
 wrote:

 Congrats Milinda!

 On Thu, Oct 30, 2014 at 6:56 AM, Akila Ravihansa Perera 
 raviha...@wso2.com wrote:

 Congratulations Milinda!!!

 On Wed, Oct 29, 2014 at 5:09 AM, Shashika Karunatilaka 
 shashi...@wso2.com wrote:

 Congrats Milinda

 On Wed, Oct 29, 2014 at 4:22 PM, Manula Chathurika Thantriwatte 
 manu...@wso2.com wrote:

 Congratulations !!!

 On Wed, Oct 29, 2014 at 4:18 PM, Thilini Shanika thili...@wso2.com
 wrote:

 Congratulations Milinda!!!

 On Wed, Oct 29, 2014 at 4:14 PM, Inshaf Mahath ins...@wso2.com
 wrote:

 Congrats Milinda!! :)

 On Wed, Oct 29, 2014 at 3:39 PM, Amal Gunatilake am...@wso2.com
 wrote:

 Congratulations Milinda!!

 Thank you   Best regards,

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

 On Wed, Oct 29, 2014 at 3:31 PM, Malintha Adikari 
 malin...@wso2.com wrote:

 Congratulations, Milinda!


 On Wed, Oct 29, 2014 at 9:59 AM, Denuwanthi De Silva 
 denuwan...@wso2.com wrote:

 Congratulations!!

 On Tue, Oct 28, 2014 at 7:05 PM, Shiva Balachandran 
 sh...@wso2.com wrote:

 Congrats :)

 On Tue, Oct 28, 2014 at 5:07 PM, Roshan Deniyage 
 rosh...@wso2.com wrote:

 Congratulations Milinda !

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

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


 On Tue, Oct 28, 2014 at 4:26 PM, Tharindu Edirisinghe 
 tharin...@wso2.com wrote:

 Congratulations Milinda 

 On Tue, Oct 28, 2014 at 4:23 PM, Hasintha Indrajee 
 hasin...@wso2.com wrote:

 Congratulations Milinda !!

 On Tue, Oct 28, 2014 at 4:13 PM, Buddhima Wijeweera 
 buddh...@wso2.com wrote:

 Congratulations Milinda !!!

 On Tue, Oct 28, 2014 at 3:39 PM, Yasassri Ratnayake 
 yasas...@wso2.com wrote:

 Congrats Milinda :)

 On Tue, Oct 28, 2014 at 3:34 PM, Mahesh Chinthaka 
 mahe...@wso2.com wrote:

 Congratz milinda...!!!

 On Tue, Oct 28, 2014 at 3:32 PM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Milinda...!!

 On Tue, Oct 28, 2014 at 3:29 PM, Kasun De Silva 
 kas...@wso2.com wrote:

 Congratz Milinda..!!!

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

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


 On Tue, Oct 28, 2014 at 3:28 PM, Dakshika Jayathilaka 
 daksh...@wso2.com wrote:

 Congratulations Milinda.!!

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

 On Tue, Oct 28, 2014 at 3:27 PM, Supun Sethunga 
 sup...@wso2.com wrote:

 Congratz!!

 On Tue, Oct 28, 2014 at 3:26 PM, Waruna Jayaweera 
 waru...@wso2.com wrote:

 Congratzz Milinda..

 On Tue, Oct 28, 2014 at 3:14 PM, Godwin Amila
 Shrimal god...@wso2.com wrote:

 Congratulations Milinda !!!

 On Tue, Oct 28, 2014 at 3:11 PM, Firzhan Naqash 
 firz...@wso2.com wrote:

 Congars Milinda

 Regards,
 Firzhan

 On Tue, Oct 28, 2014 at 3:17 PM, Suhan
 Dharmasuriya suh...@wso2.com wrote:

 Congrats Milinda!!!

 On Tue, Oct 28, 2014 at 3:00 PM, Kalpa
 Welivitigoda kal...@wso2.com wrote:

 Congratulations Milinda !

 On Tue, Oct 28, 2014 at 2:58 PM, Gayashan
 Amarasinghe gayas...@wso2.com wrote:

 Congratulations Milinda!!! :)

 On Tue, Oct 28, 2014 at 2:53 PM, Nandika
 Jayawardana nand...@wso2.com wrote:

 Hi all,

 It's my pleasure to announce Milinda Perera as
 a WSO2 Committer. Milinda has been a valuable 
 contributor to WSO2 BPS
 product and in recognition of his contribution he 
 has been voted as a WSO2
 Committer.

 Milinda, welcome aboard and keep up the good
 work!.

 Regards
 Nandika

 --
 Nandika Jayawardana
 Senior Technical Lead
 WSO2 Inc ; http://wso2.com
 lean.enterprise.middleware

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




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

 Mobile : +94718314517
 Blog : gayashan-a.blogspot.com

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




 --
 Best Regards,

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

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




 --
 Suhan 

Re: [Dev] WSO2 Committers += Niranjan Karunanandham

2014-11-06 Thread Roshan Deniyage
Congrats Niranjan!

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

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


On Wed, Nov 5, 2014 at 7:43 PM, Danesh Kuruppu dan...@wso2.com wrote:

 Congrats Niranjan..!!!

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

 Congratulations Niranjan !

 On Wed, Nov 5, 2014 at 12:30 PM, Chan duli...@wso2.com wrote:

 Congratz !

 On Wed, Nov 5, 2014 at 9:37 AM, Sam Sivayogam s...@wso2.com wrote:

 Congrats Niranjan :)

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

 Congratulations !!!

 On Tue, Nov 4, 2014 at 11:43 AM, Sameera Perera samee...@wso2.com
 wrote:

 Hi all,

 It's my pleasure to announce Niranjan as a WSO2 Committer.  He has
 been an active contributor for WSO2 Enterprise Mobility Manager.

 Niranjan, welcome aboard and keep up the good work!.

 --

 --

 *Sameera Perera*
 Director of Engineering
 gtalk: samee...@wso2.com
 Tel : 94 11 214 5345
 Fax :94 11 2145300
 *WSO2, Inc.* http://wso2.com/
 lean.enterprise.middleware



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




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

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




 --
 *Sam Sivayogam*

 Software Engineer

 http://www.wso2.com/
 *Mobile*  : +94 772 906 439
 *Office*   : +94 112 145 345

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




 --
 Chan (Dulitha Wijewantha)
 Software Engineer - Mobile Development
 WSO2 Inc
 Lean.Enterprise.Mobileware
  * ~Email   duli...@wso2.com duli...@wso2mobile.com*
 *  ~Mobile +94712112165 %2B94712112165*
 *  ~Website   dulitha.me http://dulitha.me*
 *  ~Twitter @dulitharw https://twitter.com/dulitharw*
   *~Github @dulichan https://github.com/dulichan*
   *~SO @chan http://stackoverflow.com/users/813471/chan*

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




 --
 Priya Kishok
 Software Engineer
 WSO2, Inc : http://wso2.com
 Mob : +94774457404

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




 --

 Danesh Kuruppu
 Software Engineer
 WSO2 Inc,
 Mobile: +94 (77) 1690552

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


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


Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Kalpa Welivitigoda
Congratulations Asanka !

On Fri, Nov 7, 2014 at 9:18 AM, Roshan Deniyage rosh...@wso2.com wrote:

 Congrats asanka!

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

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


 On Thu, Nov 6, 2014 at 6:10 AM, Dilan Udara Ariyaratne dil...@wso2.com
 wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya hasit...@wso2.com
 wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara hars...@wso2.com wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana raji...@wso2.com
 wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe ram...@wso2.com
 wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2 committer.
 Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com* http://abeykoon.blogspot.com


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



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



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




-- 
Best Regards,

Kalpa Welivitigoda
Software Engineer, WSO2 Inc. http://wso2.com
Email: kal...@wso2.com
Mobile: +94776509215
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Godwin Amila Shrimal
Congratulations Asanka...!

On Fri, Nov 7, 2014 at 9:20 AM, Kalpa Welivitigoda kal...@wso2.com wrote:

 Congratulations Asanka !

 On Fri, Nov 7, 2014 at 9:18 AM, Roshan Deniyage rosh...@wso2.com wrote:

 Congrats asanka!

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

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


 On Thu, Nov 6, 2014 at 6:10 AM, Dilan Udara Ariyaratne dil...@wso2.com
 wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya hasit...@wso2.com
 wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara hars...@wso2.com
 wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana raji...@wso2.com
 wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe ram...@wso2.com
 wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2 committer.
 Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com* http://abeykoon.blogspot.com


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



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



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




 --
 Best Regards,

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

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




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

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


Re: [Dev] WSO2 Committers += Milinda Perera

2014-11-06 Thread Thanuja Jayasinghe
Congratz milinda!!!

On Fri, Nov 7, 2014 at 9:17 AM, Roshan Deniyage rosh...@wso2.com wrote:

 Congrats Milinda!

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

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


 On Wed, Nov 5, 2014 at 6:54 PM, Gayan Gunawardana ga...@wso2.com wrote:

 Congratzzz Milinda!

 On Tue, Nov 4, 2014 at 11:20 AM, Priyadarssini Kishokumar 
 priyadarss...@wso2.com wrote:

 Congrats Milinda!

 On Tue, Nov 4, 2014 at 10:45 AM, Abimaran Kugathasan abima...@wso2.com
 wrote:

 Congrats Milinda!

 On Thu, Oct 30, 2014 at 6:56 AM, Akila Ravihansa Perera 
 raviha...@wso2.com wrote:

 Congratulations Milinda!!!

 On Wed, Oct 29, 2014 at 5:09 AM, Shashika Karunatilaka 
 shashi...@wso2.com wrote:

 Congrats Milinda

 On Wed, Oct 29, 2014 at 4:22 PM, Manula Chathurika Thantriwatte 
 manu...@wso2.com wrote:

 Congratulations !!!

 On Wed, Oct 29, 2014 at 4:18 PM, Thilini Shanika thili...@wso2.com
 wrote:

 Congratulations Milinda!!!

 On Wed, Oct 29, 2014 at 4:14 PM, Inshaf Mahath ins...@wso2.com
 wrote:

 Congrats Milinda!! :)

 On Wed, Oct 29, 2014 at 3:39 PM, Amal Gunatilake am...@wso2.com
 wrote:

 Congratulations Milinda!!

 Thank you   Best regards,

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

 On Wed, Oct 29, 2014 at 3:31 PM, Malintha Adikari 
 malin...@wso2.com wrote:

 Congratulations, Milinda!


 On Wed, Oct 29, 2014 at 9:59 AM, Denuwanthi De Silva 
 denuwan...@wso2.com wrote:

 Congratulations!!

 On Tue, Oct 28, 2014 at 7:05 PM, Shiva Balachandran 
 sh...@wso2.com wrote:

 Congrats :)

 On Tue, Oct 28, 2014 at 5:07 PM, Roshan Deniyage 
 rosh...@wso2.com wrote:

 Congratulations Milinda !

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

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


 On Tue, Oct 28, 2014 at 4:26 PM, Tharindu Edirisinghe 
 tharin...@wso2.com wrote:

 Congratulations Milinda 

 On Tue, Oct 28, 2014 at 4:23 PM, Hasintha Indrajee 
 hasin...@wso2.com wrote:

 Congratulations Milinda !!

 On Tue, Oct 28, 2014 at 4:13 PM, Buddhima Wijeweera 
 buddh...@wso2.com wrote:

 Congratulations Milinda !!!

 On Tue, Oct 28, 2014 at 3:39 PM, Yasassri Ratnayake 
 yasas...@wso2.com wrote:

 Congrats Milinda :)

 On Tue, Oct 28, 2014 at 3:34 PM, Mahesh Chinthaka 
 mahe...@wso2.com wrote:

 Congratz milinda...!!!

 On Tue, Oct 28, 2014 at 3:32 PM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Milinda...!!

 On Tue, Oct 28, 2014 at 3:29 PM, Kasun De Silva 
 kas...@wso2.com wrote:

 Congratz Milinda..!!!

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

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


 On Tue, Oct 28, 2014 at 3:28 PM, Dakshika Jayathilaka
 daksh...@wso2.com wrote:

 Congratulations Milinda.!!

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

 On Tue, Oct 28, 2014 at 3:27 PM, Supun Sethunga 
 sup...@wso2.com wrote:

 Congratz!!

 On Tue, Oct 28, 2014 at 3:26 PM, Waruna Jayaweera 
 waru...@wso2.com wrote:

 Congratzz Milinda..

 On Tue, Oct 28, 2014 at 3:14 PM, Godwin Amila
 Shrimal god...@wso2.com wrote:

 Congratulations Milinda !!!

 On Tue, Oct 28, 2014 at 3:11 PM, Firzhan Naqash 
 firz...@wso2.com wrote:

 Congars Milinda

 Regards,
 Firzhan

 On Tue, Oct 28, 2014 at 3:17 PM, Suhan
 Dharmasuriya suh...@wso2.com wrote:

 Congrats Milinda!!!

 On Tue, Oct 28, 2014 at 3:00 PM, Kalpa
 Welivitigoda kal...@wso2.com wrote:

 Congratulations Milinda !

 On Tue, Oct 28, 2014 at 2:58 PM, Gayashan
 Amarasinghe gayas...@wso2.com wrote:

 Congratulations Milinda!!! :)

 On Tue, Oct 28, 2014 at 2:53 PM, Nandika
 Jayawardana nand...@wso2.com wrote:

 Hi all,

 It's my pleasure to announce Milinda Perera
 as a WSO2 Committer. Milinda has been a valuable 
 contributor to WSO2 BPS
 product and in recognition of his contribution 
 he has been voted as a WSO2
 Committer.

 Milinda, welcome aboard and keep up the good
 work!.

 Regards
 Nandika

 --
 Nandika Jayawardana
 Senior Technical Lead
 WSO2 Inc ; http://wso2.com
 lean.enterprise.middleware


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




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

 Mobile : +94718314517
 Blog : gayashan-a.blogspot.com

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




 --
 Best Regards,

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

 

Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Niranjan Karunanandham
Congrats Asanka!!

On Fri, Nov 7, 2014 at 9:24 AM, Godwin Amila Shrimal god...@wso2.com
wrote:

 Congratulations Asanka...!

 On Fri, Nov 7, 2014 at 9:20 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Asanka !

 On Fri, Nov 7, 2014 at 9:18 AM, Roshan Deniyage rosh...@wso2.com wrote:

 Congrats asanka!

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

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


 On Thu, Nov 6, 2014 at 6:10 AM, Dilan Udara Ariyaratne dil...@wso2.com
 wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya hasit...@wso2.com
 wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara hars...@wso2.com
 wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana raji...@wso2.com
 wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe ram...@wso2.com
 wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2 committer.
 Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com* http://abeykoon.blogspot.com


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



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



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




 --
 Best Regards,

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

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




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

 mobile: *+94772264165*
 linkedin: *http://lnkd.in/KUum6D http://lnkd.in/KUum6D*
 twitter: https://twitter.com/godwinamila

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




-- 

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


Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Anuruddha Premalal
Congratulations Asanka!!

On Fri, Nov 7, 2014 at 9:32 AM, Niranjan Karunanandham niran...@wso2.com
wrote:

 Congrats Asanka!!

 On Fri, Nov 7, 2014 at 9:24 AM, Godwin Amila Shrimal god...@wso2.com
 wrote:

 Congratulations Asanka...!

 On Fri, Nov 7, 2014 at 9:20 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Asanka !

 On Fri, Nov 7, 2014 at 9:18 AM, Roshan Deniyage rosh...@wso2.com
 wrote:

 Congrats asanka!

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

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


 On Thu, Nov 6, 2014 at 6:10 AM, Dilan Udara Ariyaratne dil...@wso2.com
  wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya hasit...@wso2.com
 wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara hars...@wso2.com
 wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana raji...@wso2.com
 wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe ram...@wso2.com
 wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2 committer.
 Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com* http://abeykoon.blogspot.com


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



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



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




 --
 Best Regards,

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

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




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

 mobile: *+94772264165*
 linkedin: *http://lnkd.in/KUum6D http://lnkd.in/KUum6D*
 twitter: https://twitter.com/godwinamila

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




 --

 *Niranjan Karunanandham*
 Senior Software Engineer - WSO2 Inc.
 WSO2 Inc.: http://www.wso2.com

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




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


Re: [Dev] [DEV] Unable to clone git repo using JGit API

2014-11-06 Thread Isuru Haththotuwa
Hi Ishara,

Any particular reason to use a proxy selector to clone the repo? The
simplest way is to try without a proxy selector [1].

The truststore comes in to play if you use https. What you need is to
create a local truststore (you need to give a password when you are
creating a truststore), and import the git server's public certificate to
that. And then you can use the System properties you have shown in the
previous reply to tell your code where to locate the truststore.

[1].
https://github.com/centic9/jgit-cookbook/blob/master/src/main/java/org/dstadler/jgit/porcelain/CloneRemoteRepository.java

On Thu, Nov 6, 2014 at 6:31 PM, Ishara Cooray isha...@wso2.com wrote:

 hi isuru,

 I think the connection refused problem comes with the ProxySelector i have
 added.
 When i use the JVM default proxy selector i get below exceptions.

 org.eclipse.jgit.api.errors.TransportException:
 https://git.cloudstaging.wso2.com/git/aaishara/samplejavaapp.git: cannot
 open git-upload-pack
 at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:139)
 at org.eclipse.jgit.api.CloneCommand.fetch(CloneCommand.java:178)
 at org.eclipse.jgit.api.CloneCommand.call(CloneCommand.java:125)
 at
 org.wso2.cloud.heartbeat.monitor.modules.gitblit.GitCloneTest.gitClone(GitCloneTest.java:64)
 at
 org.wso2.cloud.heartbeat.monitor.modules.gitblit.GitCloneTest.execute(GitCloneTest.java:40)
 at org.quartz.core.JobRunShell.run(JobRunShell.java:213)
 at
 org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:557)
 Caused by: org.eclipse.jgit.errors.TransportException:
 https://git.cloudstaging.wso2.com/git/aaishara/samplejavaapp.git: cannot
 open git-upload-pack
 at
 org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:524)
 at
 org.eclipse.jgit.transport.TransportHttp.openFetch(TransportHttp.java:309)
 at
 org.eclipse.jgit.transport.FetchProcess.executeImp(FetchProcess.java:136)
 at
 org.eclipse.jgit.transport.FetchProcess.execute(FetchProcess.java:122)
 at org.eclipse.jgit.transport.Transport.fetch(Transport.java:1115)
 at org.eclipse.jgit.api.FetchCommand.call(FetchCommand.java:130)
 ... 6 more
 Caused by: javax.net.ssl.SSLException: java.lang.RuntimeException:
 Unexpected error: java.security.InvalidAlgorithmParameterException: the
 trustAnchors parameter must be non-empty
 at com.sun.net.ssl.internal.ssl.Alerts.getSSLException(Alerts.java:190)
 at
 com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1747)
 at
 com.sun.net.ssl.internal.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1708)
 at
 com.sun.net.ssl.internal.ssl.SSLSocketImpl.handleException(SSLSocketImpl.java:1691)
 at
 com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1222)
 at
 com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1199)
 at
 sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:434)
 at
 sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:166)
 at
 sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1195)
 at
 java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:379)
 at
 sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:318)
 at
 org.eclipse.jgit.transport.http.JDKHttpConnection.getResponseCode(JDKHttpConnection.java:98)
 at org.eclipse.jgit.util.HttpSupport.response(HttpSupport.java:168)
 at
 org.eclipse.jgit.transport.TransportHttp.connect(TransportHttp.java:475)
 ... 11 more
 Caused by: java.lang.RuntimeException: Unexpected error:
 java.security.InvalidAlgorithmParameterException: the trustAnchors
 parameter must be non-empty
 at sun.security.validator.PKIXValidator.init(PKIXValidator.java:57)
 at sun.security.validator.Validator.getInstance(Validator.java:161)
 at
 com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.getValidator(X509TrustManagerImpl.java:108)
 at
 com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:204)
 at
 com.sun.net.ssl.internal.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:249)
 at
 com.sun.net.ssl.internal.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1188)
 at
 com.sun.net.ssl.internal.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:135)
 at
 com.sun.net.ssl.internal.ssl.Handshaker.processLoop(Handshaker.java:593)
 at
 com.sun.net.ssl.internal.ssl.Handshaker.process_record(Handshaker.java:529)
 at
 com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:943)
 at
 com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1188)
 at
 com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1215)
 ... 20 more
 Caused by: 

Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Isuru Ranawaka
Congratulations Asanka

On Fri, Nov 7, 2014 at 9:58 AM, Anuruddha Premalal anurud...@wso2.com
wrote:

 Congratulations Asanka!!

 On Fri, Nov 7, 2014 at 9:32 AM, Niranjan Karunanandham niran...@wso2.com
 wrote:

 Congrats Asanka!!

 On Fri, Nov 7, 2014 at 9:24 AM, Godwin Amila Shrimal god...@wso2.com
 wrote:

 Congratulations Asanka...!

 On Fri, Nov 7, 2014 at 9:20 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Asanka !

 On Fri, Nov 7, 2014 at 9:18 AM, Roshan Deniyage rosh...@wso2.com
 wrote:

 Congrats asanka!

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

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


 On Thu, Nov 6, 2014 at 6:10 AM, Dilan Udara Ariyaratne 
 dil...@wso2.com wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya hasit...@wso2.com
 wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara hars...@wso2.com
 wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana raji...@wso2.com
  wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe ram...@wso2.com
  wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2 committer.
 Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com* http://abeykoon.blogspot.com


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



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



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




 --
 Best Regards,

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

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




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

 mobile: *+94772264165*
 linkedin: *http://lnkd.in/KUum6D http://lnkd.in/KUum6D*
 twitter: https://twitter.com/godwinamila

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




 --

 *Niranjan Karunanandham*
 Senior Software Engineer - WSO2 Inc.
 WSO2 Inc.: http://www.wso2.com

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




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


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




-- 
Best Regards
Isuru Ranawaka
M: +94714629880
Blog : http://isurur.blogspot.com/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Prabath Abeysekera
Hi Everyone,

It's my pleasure to welcome Harsha Kumara as a WSO2 Committer. Harsha has
always been a key member of the Storage Server team contributing immensely
to SS related developments ever since he joined us a few months back. In
recognition of his contributions, ownership shown towards the
tasks/responsibilities assigned to him, and commitment, he's been voted as
a WSO2 committer.

Harsha, Welcome aboard and keep up the awesome work!


Cheers,
Prabath
-- 
Prabath Abeysekara
Associate Technical Lead, Data TG.
WSO2 Inc.
Email: praba...@wso2.com
Mobile: +94774171471
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Chunk-13 Build Failure appmgt/org.wso2.carbon.appmgt.gateway/1.2.1

2014-11-06 Thread Gayan Gunawardana
Hi,

I am getting this while building chunk-13. Am I missing something ?

BUILD FAILURE
[INFO]

[INFO] Total time: 21.471s
[INFO] Finished at: Fri Nov 07 10:19:52 IST 2014
[INFO] Final Memory: 46M/100M
[INFO]

[ERROR] Failed to execute goal
org.apache.maven.plugins:maven-compiler-plugin:2.0:compile
(default-compile) on project org.wso2.carbon.appmgt.gateway: Compilation
failure: Compilation failure:
[ERROR]
/Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/throttling/APPResourceManager.java:[69,45]
cannot find symbol
[ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
[ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
[ERROR]
[ERROR]
/Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/saml2/SAML2AuthenticationHandler.java:[373,61]
cannot find symbol
[ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
[ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
[ERROR]
[ERROR]
/Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/saml2/SAML2AuthenticationHandler.java:[395,61]
cannot find symbol
[ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
[ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
[ERROR]
[ERROR]
/Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/saml2/SAML2Authenticator.java:[63,51]
cannot find symbol
[ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
[ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
[ERROR]
[ERROR]
/Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/service/APIAuthenticationService.java:[34,58]
cannot find symbol
[ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
[ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
[ERROR]
[ERROR]
/Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/service/APIAuthenticationService.java:[53,58]
cannot find symbol
[ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
[ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
[ERROR]
[ERROR]
/Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/service/APIAuthenticationService.java:[64,58]
cannot find symbol
[ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
[ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
[ERROR]
[ERROR]
/Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/service/APIAuthenticationService.java:[65,61]
cannot find symbol
[ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
[ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
[ERROR]
[ERROR]
/Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/service/APIAuthenticationService.java:[111,61]
cannot find symbol
[ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
[ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
[ERROR]
[ERROR]
/Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/APIKeyValidator.java:[76,51]
cannot find symbol
[ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
[ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants

-- 
Gayan Gunawardana
Software Engineer; WSO2 Inc.; http://wso2.com/
Email: ga...@wso2.com
Mobile: +94 (71) 8020933
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Mahesh Chinthaka
Congratulations Harsha

On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer. Harsha has
 always been a key member of the Storage Server team contributing immensely
 to SS related developments ever since he joined us a few months back. In
 recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




-- 
*Mahesh Chinthaka Vidanagama* | Software Engineer
WSO2, Inc | lean. enterprise. middleware.
#20, Palm Grove, Colombo 03, Sri Lanka
Mobile: +94 71 63 63 083 | Work: +94 112 145 345
Email: mahe...@wso2.com | Web: www.wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Compile error while building ESB integration tests

2014-11-06 Thread Omindu Rathnaweera
Hi,

Thank you Dilan. Commented out all the lines related to SimulatedService and
the class compiled fine.

Regards,
Omindu.

On Thu, Nov 6, 2014 at 6:26 AM, Dilan Udara Ariyaratne dil...@wso2.com
wrote:

 Hi Omindu,

 I have checked for the ContentTypeCharsetTestCase.java class in the latest
 product-esb-master in github and found out that
 the line referencing the SimulatedService class has been commented as
 follows and not been used.

 //SimpleWebServer simpleWebServer = new SimulatedService(port, 200);

 May be this class an obsolete one.

 So, you can try out the following.

 Comment the line appearing this class and give a try.

 You will be able to build successfully and run the tests.

 Cheers.






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

 On Wed, Nov 5, 2014 at 2:05 PM, Omindu Rathnaweera omi...@wso2.com
 wrote:

 Hi,

 I was trying to write a test case for ESB. When building the tests, the
 following error occurred.

 [ERROR] COMPILATION ERROR :

 [INFO] -

 [ERROR]
 /Users/Omindu/Documents/Eclipse/workspace/wso2carbon-platform-turing-4.2.0-chunk07/products/esb/4.8.1/modules/integration/tests/src/test/java/org/wso2/carbon/esb/nhttp/transport/test/ContentTypeCharsetTestCase.java:[44,31]
 cannot find symbol

 symbol  : class SimulatedService

 location: package org.wso2.carbon.esb.util

 [ERROR]
 /Users/Omindu/Documents/Eclipse/workspace/wso2carbon-platform-turing-4.2.0-chunk07/products/esb/4.8.1/modules/integration/tests/src/test/java/org/wso2/carbon/esb/nhttp/transport/test/ContentTypeCharsetTestCase.java:[44,31]
 cannot find symbol

 symbol  : class SimulatedService

 location: package org.wso2.carbon.esb.util

 [ERROR]
 /Users/Omindu/Documents/Eclipse/workspace/wso2carbon-platform-turing-4.2.0-chunk07/products/esb/4.8.1/modules/integration/tests/src/test/java/org/wso2/carbon/esb/nhttp/transport/test/ContentTypeCharsetTestCase.java:[74,40]
 cannot find symbol

 symbol  : class SimulatedService

 location: class
 org.wso2.carbon.esb.nhttp.transport.test.ContentTypeCharsetTestCase

 When checking the class I found out that SimulatedService.java class
 (which is used by ContentTypeCharsetTestCase.java class as an import) is
 missing.

 Any advice on how to proceed with the issue?

 Thank you.
 Omindu

 --
 Omindu Rathnaweera
 Software Engineer, WSO2 Inc.
 Mobile: +94 771 197 211

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





-- 
Omindu Rathnaweera
Software Engineer, WSO2 Inc.
Mobile: +94 771 197 211
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Kalpa Welivitigoda
Congratulations Harsha !

On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
 wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer. Harsha
 has always been a key member of the Storage Server team contributing
 immensely to SS related developments ever since he joined us a few months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




-- 
Best Regards,

Kalpa Welivitigoda
Software Engineer, WSO2 Inc. http://wso2.com
Email: kal...@wso2.com
Mobile: +94776509215
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Rajeevan Vimalanathan
Congratz Harsha...!!!

On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
 wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer. Harsha
 has always been a key member of the Storage Server team contributing
 immensely to SS related developments ever since he joined us a few months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

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


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Pulasthi Supun
Congrats 

On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
 wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer. Harsha
 has always been a key member of the Storage Server team contributing
 immensely to SS related developments ever since he joined us a few months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




-- 
--
Pulasthi Supun
Software Engineer; WSO2 Inc.; http://wso2.com,
Email: pulas...@wso2.com
Mobile: +94 (71) 9258281
Blog : http://pulasthisupun.blogspot.com/
Git hub profile: https://github.com/pulasthi
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Error in the ESB(chunk-07) build process : ode-axis2: Compilation failure /..1.6.1-wso2v2/mex-1.6.1-wso2v2-impl.jar; cannot read zip file

2014-11-06 Thread Saneth Dharmakeerthi
Hi,

I am getting  the following error in the ESB(chunk-07) build process. It is
occurring when building the ODE :: AXIS2

ERROR] Failed to execute goal
org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile
(default-compile) on project ode-axis2: Compilation failure

[ERROR] error: error reading
/Users/saneth/.m2/repository/org/apache/axis2/mex/1.6.1-wso2v2/mex-1.6.1-wso2v2-impl.jar;
cannot read zip file

[ERROR] - [Help 1]

[ERROR]

[ERROR] To see the full stack trace of the errors, re-run Maven with the -e
switch.

[ERROR] Re-run Maven using the -X switch to enable full debug logging.

[ERROR]

[ERROR] For more information about the errors and possible solutions,
please read the following articles:

[ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

[ERROR]

[ERROR] After correcting the problems, you can resume the build with the
command

[ERROR]   mvn goals -rf :ode-axis2

I removed the mex-1.6.1-wso2v2-impl.jar  file from  the local repository
and  try to re-build. But ended up with same error.
Is  anyone experiencing this  same issue?

Thanks and Best Regards,

Saneth Dharmakeerthi
Senior Software Engineer
WSO2, Inc.
Mobile: +94772325511
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Omindu Rathnaweera
Congratulations Harsha!

On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
 wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer. Harsha
 has always been a key member of the Storage Server team contributing
 immensely to SS related developments ever since he joined us a few months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




-- 
Omindu Rathnaweera
Software Engineer, WSO2 Inc.
Mobile: +94 771 197 211
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] When one or more worker nodes are shutdown in a cluster ELB stops sending requests to workers after sometime

2014-11-06 Thread Kishanthan Thangarajah
On Thu, Nov 6, 2014 at 9:00 PM, Gayashan Amarasinghe gayas...@wso2.com
wrote:

 Hi Kishanthan, all,

 This was a tricky situation and i was able to identify the issue and fix
 it. This was caused by the new hazelcast upgrade.

 There are two lists of members maintained in the
 HazelcastGroupManagementAgent. A hazelcast distributed map shared by the
 cluster which consists of all the members (members map) in the cluster and
 a connected members list which is maintained per each subdomain in the
 cluster. When a member leaves the cluster there's a MemberEntryListener and
 GroupMembershipListener (and some other listeners) that gets notified. The
 MemberEntryListener gets notified when the members map gets changed. And
 when a member leaves, in the entryRemoved method of this listener we remove
 the particular member that just left from the connectedMembers list as
 well. And the event that it receives (EntryEvent) consists of the member
 that left. In the current implementation this member is acquired from this
 EntryEvent as follows,

 entryEvent.getValue()

 So in the code we do this,

 connectedMembers.remove(entryEvent.getValue());

 In the previous hazelcast version this returned the correct member.
 However with the new hazelcast version this returns a null value which
 causes the connected members list not getting updated properly. This is
 casued by a fix in hazlecast [1] [2].

 The TenantAwareLoadBalanceEndpoint in the ELB uses this connected members
 list to get the next application member to serve the incoming request. This
 was the cause that resulted for the ELB to try sending requests to
 disconnected members and eventually become non-responsive.

 As a fix i have identified that we can use the,

 entryEvent.getOldValue()

 to acquire the member that just left. (hazelcast issue [1] also suggests
 to use it)

 WDYT?


+1, looks like they have fixed the implementation properly and we should
use the above for member removed event. Good findings :)
Also I believe this only affects member removed event type and we don't
have to change any for member added events ?



 I have created the JIRA [3] for this issue and will send the PR with the
 fix.

 [1] https://github.com/hazelcast/hazelcast/issues/3198
 [2] https://github.com/hazelcast/hazelcast/issues/3859
 [3] https://wso2.org/jira/browse/CARBON-15057

 Thanks.
 /Gayashan

 On Wed, Nov 5, 2014 at 5:47 PM, Kishanthan Thangarajah 
 kishant...@wso2.com wrote:

 Gayashan, please share your latest findings on this.

 When we see the member left msg, the current member list is updated with
 that event (the member gets removed). So above can occur if that is not
 happening accordingly. We should also compare the same with and without
 hazelcast upgrade.

 On Fri, Oct 31, 2014 at 5:30 PM, Gayashan Amarasinghe gayas...@wso2.com
 wrote:

 Hi all,

 For Carbon testing we have a worker-mgt cluster fronted by ELB and
 requests keep coming in from a jmeter client. During this if one (or more)
 of the worker nodes were shutdown, after some time the ELB stops sending
 requests to the nodes and the connection times out. Following log gets
 printed in the ELB.

 ​​TID: [0] [ELB] [2014-10-31 06:27:32,517]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed to send message to Member Host:172.31.7.214, Remote Host:null, Port:
 4100, HTTP:9765, HTTPS:9445, Domain: wso2.as.domain, Sub-domain:worker,
 Active:true . Error Code: 101503
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,519]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Dropping the faulty/unreachable Member with Domain:wso2.as.domain,
 Host:172.31.7.214, Port:4100
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,738]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed over to Host:172.31.0.128, Remote Host:null, Port: 4100, HTTP:9763,
 HTTPS:9443, Domain: wso2.as.domain, Sub-domain:worker, Active:true
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,740]  WARN
 {org.apache.synapse.transport.passthru.ConnectCallback} -  Connection
 refused or failed for : /172.31.7.214:9765
 {org.apache.synapse.transport.passthru.ConnectCallback}
 TID: [0] [ELB] [2014-10-31 06:27:32,743]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed to send message to Member Host:172.31.7.214, Remote Host:null, Port:
 4100, HTTP:9765, HTTPS:9445, Domain: wso2.as.domain, Sub-domain:worker,
 Active:true . Error Code: 101503
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,745]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Dropping the faulty/unreachable Member with Domain:wso2.as.domain,
 Host:172.31.7.214, Port:4100
 

Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Roshan Wijesena
Congratulations..!!

On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan rajeev...@wso2.com
wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
 wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer. Harsha
 has always been a key member of the Storage Server team contributing
 immensely to SS related developments ever since he joined us a few months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




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


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Sameera Jayaratna
Congratulations Harsha!!!

On Fri, Nov 7, 2014 at 10:43 AM, Omindu Rathnaweera omi...@wso2.com wrote:

 Congratulations Harsha!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
 wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer. Harsha
 has always been a key member of the Storage Server team contributing
 immensely to SS related developments ever since he joined us a few months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




 --
 Omindu Rathnaweera
 Software Engineer, WSO2 Inc.
 Mobile: +94 771 197 211

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




-- 



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

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


Re: [Dev] When one or more worker nodes are shutdown in a cluster ELB stops sending requests to workers after sometime

2014-11-06 Thread Gayashan Amarasinghe
Hi Kishanthan,

On Fri, Nov 7, 2014 at 10:45 AM, Kishanthan Thangarajah kishant...@wso2.com
 wrote:



 On Thu, Nov 6, 2014 at 9:00 PM, Gayashan Amarasinghe gayas...@wso2.com
 wrote:

 Hi Kishanthan, all,

 This was a tricky situation and i was able to identify the issue and fix
 it. This was caused by the new hazelcast upgrade.

 There are two lists of members maintained in the
 HazelcastGroupManagementAgent. A hazelcast distributed map shared by the
 cluster which consists of all the members (members map) in the cluster and
 a connected members list which is maintained per each subdomain in the
 cluster. When a member leaves the cluster there's a MemberEntryListener and
 GroupMembershipListener (and some other listeners) that gets notified. The
 MemberEntryListener gets notified when the members map gets changed. And
 when a member leaves, in the entryRemoved method of this listener we remove
 the particular member that just left from the connectedMembers list as
 well. And the event that it receives (EntryEvent) consists of the member
 that left. In the current implementation this member is acquired from this
 EntryEvent as follows,

 entryEvent.getValue()

 So in the code we do this,

 connectedMembers.remove(entryEvent.getValue());

 In the previous hazelcast version this returned the correct member.
 However with the new hazelcast version this returns a null value which
 causes the connected members list not getting updated properly. This is
 casued by a fix in hazlecast [1] [2].

 The TenantAwareLoadBalanceEndpoint in the ELB uses this connected members
 list to get the next application member to serve the incoming request. This
 was the cause that resulted for the ELB to try sending requests to
 disconnected members and eventually become non-responsive.

 As a fix i have identified that we can use the,

 entryEvent.getOldValue()

 to acquire the member that just left. (hazelcast issue [1] also suggests
 to use it)

 WDYT?


 +1, looks like they have fixed the implementation properly and we should
 use the above for member removed event. Good findings :)
 Also I believe this only affects member removed event type and we don't
 have to change any for member added events ?


Thanks and ​Yes, this only affects the member removed event. No changes for
the member added events.​


​/Gayashan​




 I have created the JIRA [3] for this issue and will send the PR with the
 fix.

 [1] https://github.com/hazelcast/hazelcast/issues/3198
 [2] https://github.com/hazelcast/hazelcast/issues/3859
 [3] https://wso2.org/jira/browse/CARBON-15057

 Thanks.
 /Gayashan

 On Wed, Nov 5, 2014 at 5:47 PM, Kishanthan Thangarajah 
 kishant...@wso2.com wrote:

 Gayashan, please share your latest findings on this.

 When we see the member left msg, the current member list is updated with
 that event (the member gets removed). So above can occur if that is not
 happening accordingly. We should also compare the same with and without
 hazelcast upgrade.

 On Fri, Oct 31, 2014 at 5:30 PM, Gayashan Amarasinghe gayas...@wso2.com
  wrote:

 Hi all,

 For Carbon testing we have a worker-mgt cluster fronted by ELB and
 requests keep coming in from a jmeter client. During this if one (or more)
 of the worker nodes were shutdown, after some time the ELB stops sending
 requests to the nodes and the connection times out. Following log gets
 printed in the ELB.

 ​​TID: [0] [ELB] [2014-10-31 06:27:32,517]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed to send message to Member Host:172.31.7.214, Remote Host:null, Port:
 4100, HTTP:9765, HTTPS:9445, Domain: wso2.as.domain, Sub-domain:worker,
 Active:true . Error Code: 101503
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,519]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Dropping the faulty/unreachable Member with Domain:wso2.as.domain,
 Host:172.31.7.214, Port:4100
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,738]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed over to Host:172.31.0.128, Remote Host:null, Port: 4100, HTTP:9763,
 HTTPS:9443, Domain: wso2.as.domain, Sub-domain:worker, Active:true
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,740]  WARN
 {org.apache.synapse.transport.passthru.ConnectCallback} -  Connection
 refused or failed for : /172.31.7.214:9765
 {org.apache.synapse.transport.passthru.ConnectCallback}
 TID: [0] [ELB] [2014-10-31 06:27:32,743]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed to send message to Member Host:172.31.7.214, Remote Host:null, Port:
 4100, HTTP:9765, HTTPS:9445, Domain: wso2.as.domain, Sub-domain:worker,
 Active:true . Error Code: 101503
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] 

Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Buddhima Wijeweera
Congratulations Harsha !!!

On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan rajeev...@wso2.com
  wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
 wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer. Harsha
 has always been a key member of the Storage Server team contributing
 immensely to SS related developments ever since he joined us a few months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

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


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Rajith Siriwardena
Congratulations Harsha !!

On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
 wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer. Harsha
 has always been a key member of the Storage Server team contributing
 immensely to SS related developments ever since he joined us a few months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




-- 
*Rajith Siriwardana*
Software Engineer | Cloud Team
WSO2 Inc. ; http://wso2.com
*lean. enterprise. middleware*

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


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Gayashan Amarasinghe
Congratulations Harsha :)

On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer. Harsha has
 always been a key member of the Storage Server team contributing immensely
 to SS related developments ever since he joined us a few months back. In
 recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




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

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


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Thilini Shanika
Congratulations Harsha !!!

On Fri, Nov 7, 2014 at 10:51 AM, Dunith Dhanushka dun...@wso2.com wrote:

 Congrats Harsha!

 On Fri, Nov 7, 2014 at 10:43 AM, Omindu Rathnaweera omi...@wso2.com
 wrote:

 Congratulations Harsha!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
 wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer. Harsha
 has always been a key member of the Storage Server team contributing
 immensely to SS related developments ever since he joined us a few months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




 --
 Omindu Rathnaweera
 Software Engineer, WSO2 Inc.
 Mobile: +94 771 197 211

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




 --
 Regards,

 Dunith Dhanushka,
 Senior Software Engineer - BAM,
 WSO2 Inc,

 Mobile - +94 71 8615744
 Blog - dunithd.wordpress.com http://blog.dunith.com
 Twitter - @dunithd http://twitter.com/dunithd

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




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

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


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread CD Athuraliya
Congratulations! :)

On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
  wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted 
 as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




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


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Thilini Anoratna
Congratz Harsha!!  :)

On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera praba...@wso2.com
  wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted 
 as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




-- 
Thilini Anoratna
Software Engineering Intern
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

Mobile : +94 (0) 778955654
Email: thili...@wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] When one or more worker nodes are shutdown in a cluster ELB stops sending requests to workers after sometime

2014-11-06 Thread Gayashan Amarasinghe
Please review and merge the pull request below with the fix,

https://github.com/wso2/carbon4-kernel/pull/73

Thanks.
/Gayashan

On Fri, Nov 7, 2014 at 10:50 AM, Gayashan Amarasinghe gayas...@wso2.com
wrote:

 Hi Kishanthan,

 On Fri, Nov 7, 2014 at 10:45 AM, Kishanthan Thangarajah 
 kishant...@wso2.com wrote:



 On Thu, Nov 6, 2014 at 9:00 PM, Gayashan Amarasinghe gayas...@wso2.com
 wrote:

 Hi Kishanthan, all,

 This was a tricky situation and i was able to identify the issue and fix
 it. This was caused by the new hazelcast upgrade.

 There are two lists of members maintained in the
 HazelcastGroupManagementAgent. A hazelcast distributed map shared by the
 cluster which consists of all the members (members map) in the cluster and
 a connected members list which is maintained per each subdomain in the
 cluster. When a member leaves the cluster there's a MemberEntryListener and
 GroupMembershipListener (and some other listeners) that gets notified. The
 MemberEntryListener gets notified when the members map gets changed. And
 when a member leaves, in the entryRemoved method of this listener we remove
 the particular member that just left from the connectedMembers list as
 well. And the event that it receives (EntryEvent) consists of the member
 that left. In the current implementation this member is acquired from this
 EntryEvent as follows,

 entryEvent.getValue()

 So in the code we do this,

 connectedMembers.remove(entryEvent.getValue());

 In the previous hazelcast version this returned the correct member.
 However with the new hazelcast version this returns a null value which
 causes the connected members list not getting updated properly. This is
 casued by a fix in hazlecast [1] [2].

 The TenantAwareLoadBalanceEndpoint in the ELB uses this connected
 members list to get the next application member to serve the incoming
 request. This was the cause that resulted for the ELB to try sending
 requests to disconnected members and eventually become non-responsive.

 As a fix i have identified that we can use the,

 entryEvent.getOldValue()

 to acquire the member that just left. (hazelcast issue [1] also suggests
 to use it)

 WDYT?


 +1, looks like they have fixed the implementation properly and we should
 use the above for member removed event. Good findings :)
 Also I believe this only affects member removed event type and we don't
 have to change any for member added events ?


 Thanks and ​Yes, this only affects the member removed event. No changes
 for the member added events.​


 ​/Gayashan​




 I have created the JIRA [3] for this issue and will send the PR with the
 fix.

 [1] https://github.com/hazelcast/hazelcast/issues/3198
 [2] https://github.com/hazelcast/hazelcast/issues/3859
 [3] https://wso2.org/jira/browse/CARBON-15057

 Thanks.
 /Gayashan

 On Wed, Nov 5, 2014 at 5:47 PM, Kishanthan Thangarajah 
 kishant...@wso2.com wrote:

 Gayashan, please share your latest findings on this.

 When we see the member left msg, the current member list is updated
 with that event (the member gets removed). So above can occur if that is
 not happening accordingly. We should also compare the same with and without
 hazelcast upgrade.

 On Fri, Oct 31, 2014 at 5:30 PM, Gayashan Amarasinghe 
 gayas...@wso2.com wrote:

 Hi all,

 For Carbon testing we have a worker-mgt cluster fronted by ELB and
 requests keep coming in from a jmeter client. During this if one (or more)
 of the worker nodes were shutdown, after some time the ELB stops sending
 requests to the nodes and the connection times out. Following log gets
 printed in the ELB.

 ​​TID: [0] [ELB] [2014-10-31 06:27:32,517]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed to send message to Member Host:172.31.7.214, Remote Host:null, 
 Port:
 4100, HTTP:9765, HTTPS:9445, Domain: wso2.as.domain, Sub-domain:worker,
 Active:true . Error Code: 101503
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,519]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Dropping the faulty/unreachable Member with Domain:wso2.as.domain,
 Host:172.31.7.214, Port:4100
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,738]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed over to Host:172.31.0.128, Remote Host:null, Port: 4100, HTTP:9763,
 HTTPS:9443, Domain: wso2.as.domain, Sub-domain:worker, Active:true
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint}
 TID: [0] [ELB] [2014-10-31 06:27:32,740]  WARN
 {org.apache.synapse.transport.passthru.ConnectCallback} -  Connection
 refused or failed for : /172.31.7.214:9765
 {org.apache.synapse.transport.passthru.ConnectCallback}
 TID: [0] [ELB] [2014-10-31 06:27:32,743]  INFO
 {org.wso2.carbon.lb.endpoint.endpoint.TenantAwareLoadBalanceEndpoint} -
 Failed to send message to Member 

Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Shashika Karunatilaka
Congrats Asanka..

On Fri, Nov 7, 2014 at 10:06 AM, Isuru Ranawaka isu...@wso2.com wrote:

 Congratulations Asanka

 On Fri, Nov 7, 2014 at 9:58 AM, Anuruddha Premalal anurud...@wso2.com
 wrote:

 Congratulations Asanka!!

 On Fri, Nov 7, 2014 at 9:32 AM, Niranjan Karunanandham niran...@wso2.com
  wrote:

 Congrats Asanka!!

 On Fri, Nov 7, 2014 at 9:24 AM, Godwin Amila Shrimal god...@wso2.com
 wrote:

 Congratulations Asanka...!

 On Fri, Nov 7, 2014 at 9:20 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Asanka !

 On Fri, Nov 7, 2014 at 9:18 AM, Roshan Deniyage rosh...@wso2.com
 wrote:

 Congrats asanka!

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

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


 On Thu, Nov 6, 2014 at 6:10 AM, Dilan Udara Ariyaratne 
 dil...@wso2.com wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya hasit...@wso2.com
 wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara hars...@wso2.com
 wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana 
 raji...@wso2.com wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe 
 ram...@wso2.com wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2
 committer. Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com* http://abeykoon.blogspot.com


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



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



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




 --
 Best Regards,

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

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




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

 mobile: *+94772264165*
 linkedin: *http://lnkd.in/KUum6D http://lnkd.in/KUum6D*
 twitter: https://twitter.com/godwinamila

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




 --

 *Niranjan Karunanandham*
 Senior Software Engineer - WSO2 Inc.
 WSO2 Inc.: http://www.wso2.com

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




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


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




 --
 Best Regards
 Isuru Ranawaka
 M: +94714629880
 Blog : http://isurur.blogspot.com/

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




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


Re: [Dev] Chunk-13 Build Failure appmgt/org.wso2.carbon.appmgt.gateway/1.2.1

2014-11-06 Thread Dinusha Senanayaka
Fixed ..

Regards,
Dinusha.

On Fri, Nov 7, 2014 at 10:25 AM, Gayan Gunawardana ga...@wso2.com wrote:

 Hi,

 I am getting this while building chunk-13. Am I missing something ?

 BUILD FAILURE
 [INFO]
 
 [INFO] Total time: 21.471s
 [INFO] Finished at: Fri Nov 07 10:19:52 IST 2014
 [INFO] Final Memory: 46M/100M
 [INFO]
 
 [ERROR] Failed to execute goal
 org.apache.maven.plugins:maven-compiler-plugin:2.0:compile
 (default-compile) on project org.wso2.carbon.appmgt.gateway: Compilation
 failure: Compilation failure:
 [ERROR]
 /Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/throttling/APPResourceManager.java:[69,45]
 cannot find symbol
 [ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
 [ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
 [ERROR]
 [ERROR]
 /Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/saml2/SAML2AuthenticationHandler.java:[373,61]
 cannot find symbol
 [ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
 [ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
 [ERROR]
 [ERROR]
 /Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/saml2/SAML2AuthenticationHandler.java:[395,61]
 cannot find symbol
 [ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
 [ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
 [ERROR]
 [ERROR]
 /Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/saml2/SAML2Authenticator.java:[63,51]
 cannot find symbol
 [ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
 [ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
 [ERROR]
 [ERROR]
 /Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/service/APIAuthenticationService.java:[34,58]
 cannot find symbol
 [ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
 [ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
 [ERROR]
 [ERROR]
 /Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/service/APIAuthenticationService.java:[53,58]
 cannot find symbol
 [ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
 [ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
 [ERROR]
 [ERROR]
 /Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/service/APIAuthenticationService.java:[64,58]
 cannot find symbol
 [ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
 [ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
 [ERROR]
 [ERROR]
 /Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/service/APIAuthenticationService.java:[65,61]
 cannot find symbol
 [ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
 [ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
 [ERROR]
 [ERROR]
 /Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/service/APIAuthenticationService.java:[111,61]
 cannot find symbol
 [ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
 [ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants
 [ERROR]
 [ERROR]
 /Users/Gayan/Development/4.2.0/turing/components/appmgt/org.wso2.carbon.appmgt.gateway/1.2.1/src/main/java/org/wso2/carbon/appmgt/gateway/handlers/security/APIKeyValidator.java:[76,51]
 cannot find symbol
 [ERROR] symbol  : variable API_MANAGER_CACHE_MANAGER
 [ERROR] location: class org.wso2.carbon.appmgt.impl.APIConstants

 --
 Gayan Gunawardana
 Software Engineer; WSO2 Inc.; http://wso2.com/
 Email: ga...@wso2.com
 Mobile: +94 (71) 8020933




-- 
Dinusha Dilrukshi
Senior Software Engineer
WSO2 Inc.: http://wso2.com/
Mobile: +94725255071
Blog: http://dinushasblog.blogspot.com/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Niranjan Karunanandham

2014-11-06 Thread Akalanka Pagoda Arachchi
Congratz bro..!!!

On Fri, Nov 7, 2014 at 9:17 AM, Roshan Deniyage rosh...@wso2.com wrote:

 Congrats Niranjan!

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

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


 On Wed, Nov 5, 2014 at 7:43 PM, Danesh Kuruppu dan...@wso2.com wrote:

 Congrats Niranjan..!!!

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

 Congratulations Niranjan !

 On Wed, Nov 5, 2014 at 12:30 PM, Chan duli...@wso2.com wrote:

 Congratz !

 On Wed, Nov 5, 2014 at 9:37 AM, Sam Sivayogam s...@wso2.com wrote:

 Congrats Niranjan :)

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

 Congratulations !!!

 On Tue, Nov 4, 2014 at 11:43 AM, Sameera Perera samee...@wso2.com
 wrote:

 Hi all,

 It's my pleasure to announce Niranjan as a WSO2 Committer.  He has
 been an active contributor for WSO2 Enterprise Mobility Manager.

 Niranjan, welcome aboard and keep up the good work!.

 --

 --

 *Sameera Perera*
 Director of Engineering
 gtalk: samee...@wso2.com
 Tel : 94 11 214 5345
 Fax :94 11 2145300
 *WSO2, Inc.* http://wso2.com/
 lean.enterprise.middleware



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




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

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




 --
 *Sam Sivayogam*

 Software Engineer

 http://www.wso2.com/
 *Mobile*  : +94 772 906 439
 *Office*   : +94 112 145 345

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




 --
 Chan (Dulitha Wijewantha)
 Software Engineer - Mobile Development
 WSO2 Inc
 Lean.Enterprise.Mobileware
  * ~Email   duli...@wso2.com duli...@wso2mobile.com*
 *  ~Mobile +94712112165 %2B94712112165*
 *  ~Website   dulitha.me http://dulitha.me*
 *  ~Twitter @dulitharw https://twitter.com/dulitharw*
   *~Github @dulichan https://github.com/dulichan*
   *~SO @chan http://stackoverflow.com/users/813471/chan*

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




 --
 Priya Kishok
 Software Engineer
 WSO2, Inc : http://wso2.com
 Mob : +94774457404

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




 --

 Danesh Kuruppu
 Software Engineer
 WSO2 Inc,
 Mobile: +94 (77) 1690552

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



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




-- 
*Darshana Akalanka Pagoda Arachchi,*
*Software Engineer*
*078-4721791*
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Shani Ranasinghe
Congrats Harsha!

On Fri, Nov 7, 2014 at 11:05 AM, Thilini Anoratna thili...@wso2.com wrote:

 Congratz Harsha!!  :)

 On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
 wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera 
 praba...@wso2.com wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few 
 months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted 
 as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




-- 
Thanks and Regards
*,Shani Ranasinghe*
Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

mobile: +94 77 2273555
linked in: lk.linkedin.com/pub/shani-ranasinghe/34/111/ab
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Shashika Karunatilaka
Congratulations Harsha...

On Fri, Nov 7, 2014 at 11:05 AM, Thilini Anoratna thili...@wso2.com wrote:

 Congratz Harsha!!  :)

 On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
 wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera 
 praba...@wso2.com wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few 
 months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted 
 as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




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


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Malintha Adikari
Congratulations Harsha !

On Fri, Nov 7, 2014 at 5:35 AM, Thilini Anoratna thili...@wso2.com wrote:

 Congratz Harsha!!  :)

 On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
 wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera 
 praba...@wso2.com wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few 
 months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been voted 
 as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




-- 
*Malintha Adikari*
 Software Engineer
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

Mobile: +94 71 2312958
Blog:http://malinthas.blogspot.com
Page:   http://about.me/malintha
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Milinda Perera
Congratulations Asanka :)

On Fri, Nov 7, 2014 at 11:18 AM, Shashika Karunatilaka shashi...@wso2.com
wrote:

 Congrats Asanka..

 On Fri, Nov 7, 2014 at 10:06 AM, Isuru Ranawaka isu...@wso2.com wrote:

 Congratulations Asanka

 On Fri, Nov 7, 2014 at 9:58 AM, Anuruddha Premalal anurud...@wso2.com
 wrote:

 Congratulations Asanka!!

 On Fri, Nov 7, 2014 at 9:32 AM, Niranjan Karunanandham 
 niran...@wso2.com wrote:

 Congrats Asanka!!

 On Fri, Nov 7, 2014 at 9:24 AM, Godwin Amila Shrimal god...@wso2.com
 wrote:

 Congratulations Asanka...!

 On Fri, Nov 7, 2014 at 9:20 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Asanka !

 On Fri, Nov 7, 2014 at 9:18 AM, Roshan Deniyage rosh...@wso2.com
 wrote:

 Congrats asanka!

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

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


 On Thu, Nov 6, 2014 at 6:10 AM, Dilan Udara Ariyaratne 
 dil...@wso2.com wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya hasit...@wso2.com
  wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara hars...@wso2.com
 wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana 
 raji...@wso2.com wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe 
 ram...@wso2.com wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2
 committer. Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com* http://abeykoon.blogspot.com


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



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



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




 --
 Best Regards,

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

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




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

 mobile: *+94772264165*
 linkedin: *http://lnkd.in/KUum6D http://lnkd.in/KUum6D*
 twitter: https://twitter.com/godwinamila

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




 --

 *Niranjan Karunanandham*
 Senior Software Engineer - WSO2 Inc.
 WSO2 Inc.: http://www.wso2.com

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




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


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




 --
 Best Regards
 Isuru Ranawaka
 M: +94714629880
 Blog : http://isurur.blogspot.com/

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




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

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




-- 
Milinda Perera
Software Engineer;
WSO2 Inc. http://wso2.com ,
Mobile: (+94) 714 115 032
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Milinda Perera
Congratulations harsha :)

On Fri, Nov 7, 2014 at 11:38 AM, Malintha Adikari malin...@wso2.com wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 5:35 AM, Thilini Anoratna thili...@wso2.com
 wrote:

 Congratz Harsha!!  :)

 On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
 wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com
 wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera 
 praba...@wso2.com wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few 
 months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been 
 voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




 --
 *Malintha Adikari*
  Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile: +94 71 2312958
 Blog:http://malinthas.blogspot.com
 Page:   http://about.me/malintha

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




-- 
Milinda Perera
Software Engineer;
WSO2 Inc. http://wso2.com ,
Mobile: (+94) 714 115 032
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Priyadarssini Kishokumar
Congratulations Harsha !

On Fri, Nov 7, 2014 at 11:48 AM, Milinda Perera milin...@wso2.com wrote:

 Congratulations harsha :)

 On Fri, Nov 7, 2014 at 11:38 AM, Malintha Adikari malin...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 5:35 AM, Thilini Anoratna thili...@wso2.com
 wrote:

 Congratz Harsha!!  :)

 On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
 wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com
 wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera 
 praba...@wso2.com wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few 
 months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been 
 voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




 --
 *Malintha Adikari*
  Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile: +94 71 2312958
 Blog:http://malinthas.blogspot.com
 Page:   http://about.me/malintha

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




 --
 Milinda Perera
 Software Engineer;
 WSO2 Inc. http://wso2.com ,
 Mobile: (+94) 714 115 032


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




-- 
Priya Kishok
Software Engineer
WSO2, Inc : http://wso2.com
Mob : +94774457404
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Asanka Abeyweera

2014-11-06 Thread Priyadarssini Kishokumar
Congratulations Asanka ... !!

On Fri, Nov 7, 2014 at 11:42 AM, Milinda Perera milin...@wso2.com wrote:

 Congratulations Asanka :)

 On Fri, Nov 7, 2014 at 11:18 AM, Shashika Karunatilaka shashi...@wso2.com
  wrote:

 Congrats Asanka..

 On Fri, Nov 7, 2014 at 10:06 AM, Isuru Ranawaka isu...@wso2.com wrote:

 Congratulations Asanka

 On Fri, Nov 7, 2014 at 9:58 AM, Anuruddha Premalal anurud...@wso2.com
 wrote:

 Congratulations Asanka!!

 On Fri, Nov 7, 2014 at 9:32 AM, Niranjan Karunanandham 
 niran...@wso2.com wrote:

 Congrats Asanka!!

 On Fri, Nov 7, 2014 at 9:24 AM, Godwin Amila Shrimal god...@wso2.com
 wrote:

 Congratulations Asanka...!

 On Fri, Nov 7, 2014 at 9:20 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Asanka !

 On Fri, Nov 7, 2014 at 9:18 AM, Roshan Deniyage rosh...@wso2.com
 wrote:

 Congrats asanka!

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

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


 On Thu, Nov 6, 2014 at 6:10 AM, Dilan Udara Ariyaratne 
 dil...@wso2.com wrote:

 Congratulations, Asanka...!!!


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

 On Wed, Nov 5, 2014 at 11:55 PM, Hasitha Hiranya 
 hasit...@wso2.com wrote:

 Congratulations, Asanka...!!!

 On Wed, Nov 5, 2014 at 11:29 PM, Harsha Kumara hars...@wso2.com
 wrote:

 Congratulations Asanka!

 On Wed, Nov 5, 2014 at 11:27 PM, Rajith Vitharana 
 raji...@wso2.com wrote:

 Congratulations Asanka ... !!

 On Wed, Nov 5, 2014 at 8:37 AM, Ramith Jayasinghe 
 ram...@wso2.com wrote:

 Hi Asanka,
  Congratulations!
 It is with great pleasure that we welcome you as a WSO2
 committer. Keep up the good work!
 thanks and best regards,

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

 E: ram...@wso2.com


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




 --
 Rajith Vitharana

 Software Engineer,
 WSO2 Inc. : wso2.com
 Mobile : +94715883223
 Blog : http://lankavitharana.blogspot.com/

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




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

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




 --
 *Hasitha Abeykoon*
 Senior Software Engineer; WSO2, Inc.; http://wso2.com
 *cell:* *+94 719363063*
 *blog: **abeykoon.blogspot.com* http://abeykoon.blogspot.com


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



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



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




 --
 Best Regards,

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

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




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

 mobile: *+94772264165*
 linkedin: *http://lnkd.in/KUum6D http://lnkd.in/KUum6D*
 twitter: https://twitter.com/godwinamila

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




 --

 *Niranjan Karunanandham*
 Senior Software Engineer - WSO2 Inc.
 WSO2 Inc.: http://www.wso2.com

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




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


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




 --
 Best Regards
 Isuru Ranawaka
 M: +94714629880
 Blog : http://isurur.blogspot.com/

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




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

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




 --
 Milinda Perera
 Software Engineer;
 WSO2 Inc. http://wso2.com ,
 Mobile: (+94) 714 115 032


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




-- 
Priya Kishok

Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Abimaran Kugathasan
Congrats!

On Fri, Nov 7, 2014 at 11:48 AM, Milinda Perera milin...@wso2.com wrote:

 Congratulations harsha :)

 On Fri, Nov 7, 2014 at 11:38 AM, Malintha Adikari malin...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 5:35 AM, Thilini Anoratna thili...@wso2.com
 wrote:

 Congratz Harsha!!  :)

 On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
 wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com
 wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera 
 praba...@wso2.com wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few 
 months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been 
 voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




 --
 *Malintha Adikari*
  Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile: +94 71 2312958
 Blog:http://malinthas.blogspot.com
 Page:   http://about.me/malintha

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




 --
 Milinda Perera
 Software Engineer;
 WSO2 Inc. http://wso2.com ,
 Mobile: (+94) 714 115 032


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




-- 
Thanks
Abimaran Kugathasan

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

http://stackoverflow.com/users/515034
http://lk.linkedin.com/in/abimaran  http://www.lkabimaran.blogspot.com/
https://github.com/abimaran  https://twitter.com/abimaran
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Build issue after upgrading hazelcast version to 3.2.6 in MB 3.0.0

2014-11-06 Thread Niranjan Karunanandham
Hi MB Team,

The hazelcast version in carbon 4.3.0 has been upgraded to 3.2.6.wso2v2.
Therefore on upgrading the hazelcast version in the git repo Andes, a build
error occurs. A build error occurs when trying to build the MB after
updating the hazelcast version. This issue occurs because from hazelcast
v3.2, a new abstract method, memberAttributeChanged, was introduced to
MembershipListener.java [2]. A public jira has been created for this[3].

[1] -
https://github.com/wso2/carbon4-kernel/blob/release-4.3.0/parent/pom.xml
[2] -
https://github.com/hazelcast/hazelcast/blob/v3.2.6/hazelcast/src/main/java/com/hazelcast/core/MembershipListener.java
[3] - https://wso2.org/jira/browse/MB-849

Regards,
Nira
-- 

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


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Godwin Amila Shrimal
Congratulations Harsha...!

On Fri, Nov 7, 2014 at 11:48 AM, Milinda Perera milin...@wso2.com wrote:

 Congratulations harsha :)

 On Fri, Nov 7, 2014 at 11:38 AM, Malintha Adikari malin...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 5:35 AM, Thilini Anoratna thili...@wso2.com
 wrote:

 Congratz Harsha!!  :)

 On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
 wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com
 wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera 
 praba...@wso2.com wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few 
 months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been 
 voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




 --
 *Malintha Adikari*
  Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile: +94 71 2312958
 Blog:http://malinthas.blogspot.com
 Page:   http://about.me/malintha

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




 --
 Milinda Perera
 Software Engineer;
 WSO2 Inc. http://wso2.com ,
 Mobile: (+94) 714 115 032


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




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

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


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Vijitha Ekanayake
Congratulations Harsha!!!

On Fri, Nov 7, 2014 at 11:55 AM, Priyadarssini Kishokumar 
priyadarss...@wso2.com wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 11:48 AM, Milinda Perera milin...@wso2.com wrote:

 Congratulations harsha :)

 On Fri, Nov 7, 2014 at 11:38 AM, Malintha Adikari malin...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 5:35 AM, Thilini Anoratna thili...@wso2.com
 wrote:

 Congratz Harsha!!  :)

 On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
 wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com
 wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
  wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
  wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera 
 praba...@wso2.com wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few 
 months
 back. In recognition of his contributions, ownership shown towards 
 the
 tasks/responsibilities assigned to him, and commitment, he's been 
 voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




 --
 *Malintha Adikari*
  Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile: +94 71 2312958
 Blog:http://malinthas.blogspot.com
 Page:   http://about.me/malintha

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




 --
 Milinda Perera
 Software Engineer;
 WSO2 Inc. http://wso2.com ,
 Mobile: (+94) 714 115 032


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




 --
 Priya Kishok
 Software Engineer
 WSO2, Inc : http://wso2.com
 Mob : +94774457404

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




-- 
Vijitha Ekanayake
Software Engineer*, *WSO2, Inc.; http://wso2.com/
Mobile : +94 777 24 73 39 | +94 718 74 44 08
lean.enterprise.middleware
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Kasun De Silva
Congratulations Harsha!!!

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

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


On Fri, Nov 7, 2014 at 11:48 AM, Milinda Perera milin...@wso2.com wrote:

 Congratulations harsha :)

 On Fri, Nov 7, 2014 at 11:38 AM, Malintha Adikari malin...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 5:35 AM, Thilini Anoratna thili...@wso2.com
 wrote:

 Congratz Harsha!!  :)

 On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
 wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com
 wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda kal...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera 
 praba...@wso2.com wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few 
 months
 back. In recognition of his contributions, ownership shown towards the
 tasks/responsibilities assigned to him, and commitment, he's been 
 voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




 --
 *Malintha Adikari*
  Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile: +94 71 2312958
 Blog:http://malinthas.blogspot.com
 Page:   http://about.me/malintha

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




 --
 Milinda Perera
 Software Engineer;
 WSO2 Inc. http://wso2.com ,
 Mobile: (+94) 714 115 032


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


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


Re: [Dev] How to run selenium test cases in App Factory

2014-11-06 Thread Kasun De Silva
Updated in (4)

On Tue, Oct 7, 2014 at 9:02 AM, Amalka Subasinghe ama...@wso2.com wrote:

 *Test location:* [1]

 *Prerequisites:*
 1. Create a tenant and application

 2. Go to the build server, login as un:jenkinssystemadmin/ pw:admin and
 change the configuration setting # of executors = 1

 3. Create API giving following information
 Name: testAPI001,
 Version: 1.0.0
 Production url : http://weather.yahooapis.com/forecastrss?w=2442047u=c
 Sandbox url: http://weather.yahooapis.com/forecastrss?w=2502265

 4. Update [2] DataTables.xml file changing the following properties

 Table name=initializeTenantLogin
 Header
 Column name=TenantAdminName type=String /
 Column name=TenantAdminPassword type=String /
 Column name=TenantDomain type=String /
 Column name=AppFactoryUserCommonPassword type=String /
 Column name=mainURL type=String /
 /Header
 Row
 Valuevtest011/Value
 Value123456/Value



If your tenant domain is *vtest011.com http://vtest011.com *value
should be only *vtest001*
Valuevtest011 http://vtest011.com/Value

Value123456/Value
 Valuehttps://appfactory.private.wso2.com:9443/appmgt//Value
 /Row
 /Table

 *Run the tests*
 go to [1]/scenario1 folder
 execute mvn test


 *NOTE:*
 - You can enable/disable test scenarios changing the first value of each
 row of Table named 'dtScenario1'
 Table name=dtScenario1
 Row
  Valuetrue/Value

 - To test upload application, make sure to change the file paths
 Value//home//appfactory//Desktop//AF_Virtusa//example.war/Value

 [1]
 https://svn.wso2.org/repos/wso2/scratch/appfactory_2.0.0/products/appfactory/2.1.0/selinium-tests/
 [2]
 https://svn.wso2.org/repos/wso2/scratch/appfactory_2.0.0/products/appfactory/2.1.0/selinium-tests/scenario1/src/main/resources/data/DataTables.xml

 Thanks
 Amalka

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



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


[Dev] Integrating Python modules to the Maven build process

2014-11-06 Thread Chamila De Alwis
Hi,

I have a python module that should be integrated in to the rest of the Java
code in a project with Maven. The production code folder in this module
should be zipped up and moved to the target folder when maven install is
run.

The only option I've found so far is to map actions in Python's setuptools
to Maven through exec-maven-plugin[1]. However my requirement seems simpler
than writing a setup.py file.

Are there any other methods to approach this?


[1] - http://shiningpanda.com/python-java-unified-build-process-14.html


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


Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Sajini De Silva
Congratulations Harsha!!!

On Fri, Nov 7, 2014 at 12:05 PM, Damith Wickramasinghe dami...@wso2.com
wrote:

 Congratzz Harsha...!

 On Fri, Nov 7, 2014 at 12:00 PM, Abimaran Kugathasan abima...@wso2.com
 wrote:

 Congrats!

 On Fri, Nov 7, 2014 at 11:48 AM, Milinda Perera milin...@wso2.com
 wrote:

 Congratulations harsha :)

 On Fri, Nov 7, 2014 at 11:38 AM, Malintha Adikari malin...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 5:35 AM, Thilini Anoratna thili...@wso2.com
 wrote:

 Congratz Harsha!!  :)

 On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
  wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com
 wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda 
 kal...@wso2.com wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka 
 mahe...@wso2.com wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera 
 praba...@wso2.com wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few 
 months
 back. In recognition of his contributions, ownership shown towards 
 the
 tasks/responsibilities assigned to him, and commitment, he's been 
 voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




 --
 *Malintha Adikari*
  Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile: +94 71 2312958
 Blog:http://malinthas.blogspot.com
 Page:   http://about.me/malintha

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




 --
 Milinda Perera
 Software Engineer;
 WSO2 Inc. http://wso2.com ,
 Mobile: (+94) 714 115 032


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




 --
 Thanks
 Abimaran Kugathasan

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

 http://stackoverflow.com/users/515034
 http://lk.linkedin.com/in/abimaran
 http://www.lkabimaran.blogspot.com/  https://github.com/abimaran
 https://twitter.com/abimaran


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




 --
 Software Engineer
 WSO2 Inc.; http://wso2.com
 http://www.google.com/url?q=http%3A%2F%2Fwso2.comsa=Dsntz=1usg=AFQjCNEZvyc0uMD1HhBaEGCBxs6e9fBObg
 lean.enterprise.middleware

 mobile: *+94728671315*


 ___
 Dev mailing list
 Dev@wso2.org
 

Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Denuwanthi De Silva
Congratulations Harsha!!

On Fri, Nov 7, 2014 at 12:05 PM, Damith Wickramasinghe dami...@wso2.com
wrote:

 Congratzz Harsha...!

 On Fri, Nov 7, 2014 at 12:00 PM, Abimaran Kugathasan abima...@wso2.com
 wrote:

 Congrats!

 On Fri, Nov 7, 2014 at 11:48 AM, Milinda Perera milin...@wso2.com
 wrote:

 Congratulations harsha :)

 On Fri, Nov 7, 2014 at 11:38 AM, Malintha Adikari malin...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 5:35 AM, Thilini Anoratna thili...@wso2.com
 wrote:

 Congratz Harsha!!  :)

 On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera buddh...@wso2.com
  wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com
 wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda 
 kal...@wso2.com wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka 
 mahe...@wso2.com wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera 
 praba...@wso2.com wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few 
 months
 back. In recognition of his contributions, ownership shown towards 
 the
 tasks/responsibilities assigned to him, and commitment, he's been 
 voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




 --
 *Malintha Adikari*
  Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile: +94 71 2312958
 Blog:http://malinthas.blogspot.com
 Page:   http://about.me/malintha

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




 --
 Milinda Perera
 Software Engineer;
 WSO2 Inc. http://wso2.com ,
 Mobile: (+94) 714 115 032


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




 --
 Thanks
 Abimaran Kugathasan

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

 http://stackoverflow.com/users/515034
 http://lk.linkedin.com/in/abimaran
 http://www.lkabimaran.blogspot.com/  https://github.com/abimaran
 https://twitter.com/abimaran


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




 --
 Software Engineer
 WSO2 Inc.; http://wso2.com
 http://www.google.com/url?q=http%3A%2F%2Fwso2.comsa=Dsntz=1usg=AFQjCNEZvyc0uMD1HhBaEGCBxs6e9fBObg
 lean.enterprise.middleware

 mobile: *+94728671315 %2B94728671315*


 ___
 Dev mailing list
 Dev@wso2.org
 

[Dev] Getting errors when use get-property xpath function

2014-11-06 Thread Asanka Vithanage
Hi All,

When invoke the following proxy service on ESB 481 using soapui, I am
getting the below exception.

Note: ESB runs with  synapse.xpath.dom.failover.enabled=true property

Am i getting these exceptions due to any configuration issues on proxy or
is there any more configurations required on ESB side.
Appreciate any help on this.

?xml version=1.0 encoding=UTF-8?
proxy xmlns=http://ws.apache.org/ns/synapse;
   name=MyProxyA
   transports=https,http
   statistics=disable
   trace=disable
   startOnLoad=true
   target
  inSequence
 log
property name=ERROR_URL value=\/greet?name=Hi/
property xmlns:fn=http://www.w3.org/2005/xpath-functions;
  name=MY_VALUE

expression=fn:replace(get-property('ERROR_URL'),'\\/','/')/
 /log
  /inSequence
  outSequence
 send/
  /outSequence
  endpoint
 address uri=
https://10.100.0.58:9473/services/SimpleStockQuoteService/
  /endpoint
   /target
   description/
/proxy


Issue:

[2014-11-06 22:31:35,731] ERROR - SynapseXPath Evaluation of the XPath
expression fn:replace(get-property('ERROR_URL_POSTFIX'),'\\/','/') resulted
in an error
net.sf.saxon.trans.XPathException: Unknown system function get-property()
at
net.sf.saxon.expr.parser.ExpressionParser.grumble(ExpressionParser.java:263)
at
net.sf.saxon.expr.parser.ExpressionParser.parseFunctionCall(ExpressionParser.java:2375)
at
net.sf.saxon.expr.parser.ExpressionParser.parseBasicStep(ExpressionParser.java:1731)
at
net.sf.saxon.expr.parser.ExpressionParser.parseStepExpression(ExpressionParser.java:1654)
at
net.sf.saxon.expr.parser.ExpressionParser.parseRelativePath(ExpressionParser.java:1573)
at
net.sf.saxon.expr.parser.ExpressionParser.parsePathExpression(ExpressionParser.java:1557)
at
net.sf.saxon.expr.parser.ExpressionParser.parseUnaryExpression(ExpressionParser.java:1447)
at
net.sf.saxon.expr.parser.ExpressionParser.parseExprSingle(ExpressionParser.java:517)
at
net.sf.saxon.expr.parser.ExpressionParser.parseFunctionArgument(ExpressionParser.java:2532)
at
net.sf.saxon.expr.parser.ExpressionParser.parseFunctionCall(ExpressionParser.java:2336)
at
net.sf.saxon.expr.parser.ExpressionParser.parseBasicStep(ExpressionParser.java:1731)
at
net.sf.saxon.expr.parser.ExpressionParser.parseStepExpression(ExpressionParser.java:1654)
at
net.sf.saxon.expr.parser.ExpressionParser.parseRelativePath(ExpressionParser.java:1573)
at
net.sf.saxon.expr.parser.ExpressionParser.parsePathExpression(ExpressionParser.java:1557)
at
net.sf.saxon.expr.parser.ExpressionParser.parseUnaryExpression(ExpressionParser.java:1447)
at
net.sf.saxon.expr.parser.ExpressionParser.parseExprSingle(ExpressionParser.java:517)
at
net.sf.saxon.expr.parser.ExpressionParser.parseExpression(ExpressionParser.java:455)
at
net.sf.saxon.expr.parser.ExpressionParser.parse(ExpressionParser.java:391)
at net.sf.saxon.expr.parser.ExpressionTool.make(ExpressionTool.java:94)
at
net.sf.saxon.xpath.XPathEvaluator.createExpressionInternal(XPathEvaluator.java:235)
at net.sf.saxon.xpath.XPathEvaluator.compile(XPathEvaluator.java:376)
at
org.apache.synapse.util.xpath.SynapseXPath.evaluateDOMXPath(SynapseXPath.java:529)
at
org.apache.synapse.util.xpath.SynapseXPath.stringValueOf(SynapseXPath.java:364)
at
org.apache.synapse.mediators.MediatorProperty.getEvaluatedExpression(MediatorProperty.java:138)
at
org.apache.synapse.mediators.builtin.LogMediator.setCustomProperties(LogMediator.java:192)
at
org.apache.synapse.mediators.builtin.LogMediator.getSimpleLogMessage(LogMediator.java:153)
at
org.apache.synapse.mediators.builtin.LogMediator.getLogMessage(LogMediator.java:119)
at
org.apache.synapse.mediators.builtin.LogMediator.mediate(LogMediator.java:91)
at
org.apache.synapse.mediators.AbstractListMediator.mediate(AbstractListMediator.java:77)
at
org.apache.synapse.mediators.AbstractListMediator.mediate(AbstractListMediator.java:47)
at
org.apache.synapse.mediators.base.SequenceMediator.mediate(SequenceMediator.java:131)
at
org.apache.synapse.core.axis2.ProxyServiceMessageReceiver.receive(ProxyServiceMessageReceiver.java:166)
at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:180)
at
org.apache.synapse.transport.passthru.ServerWorker.processEntityEnclosingRequest(ServerWorker.java:411)
at
org.apache.synapse.transport.passthru.ServerWorker.run(ServerWorker.java:183)
at
org.apache.axis2.transport.base.threads.NativeWorkerPool$1.run(NativeWorkerPool.java:172)
at
java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)
at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)
at java.lang.Thread.run(Thread.java:662)
--- linked to --
javax.xml.xpath.XPathExpressionException:
net.sf.saxon.trans.XPathException: Unknown system function 

Re: [Dev] WSO2 Committers += Harsha Kumara

2014-11-06 Thread Vinuri Perera
Congratz  :)

On Fri, Nov 7, 2014 at 12:18 PM, Denuwanthi De Silva denuwan...@wso2.com
wrote:

 Congratulations Harsha!!

 On Fri, Nov 7, 2014 at 12:05 PM, Damith Wickramasinghe dami...@wso2.com
 wrote:

 Congratzz Harsha...!

 On Fri, Nov 7, 2014 at 12:00 PM, Abimaran Kugathasan abima...@wso2.com
 wrote:

 Congrats!

 On Fri, Nov 7, 2014 at 11:48 AM, Milinda Perera milin...@wso2.com
 wrote:

 Congratulations harsha :)

 On Fri, Nov 7, 2014 at 11:38 AM, Malintha Adikari malin...@wso2.com
 wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 5:35 AM, Thilini Anoratna thili...@wso2.com
 wrote:

 Congratz Harsha!!  :)

 On Fri, Nov 7, 2014 at 10:53 AM, Buddhima Wijeweera 
 buddh...@wso2.com wrote:

 Congratulations Harsha !!!

 On Fri, Nov 7, 2014 at 10:47 AM, Roshan Wijesena ros...@wso2.com
 wrote:

 Congratulations..!!

 On Fri, Nov 7, 2014 at 10:41 AM, Rajeevan Vimalanathan 
 rajeev...@wso2.com wrote:

 Congratz Harsha...!!!

 On Fri, Nov 7, 2014 at 10:33 AM, Kalpa Welivitigoda 
 kal...@wso2.com wrote:

 Congratulations Harsha !

 On Fri, Nov 7, 2014 at 10:26 AM, Mahesh Chinthaka 
 mahe...@wso2.com wrote:

 Congratulations Harsha

 On Fri, Nov 7, 2014 at 10:17 AM, Prabath Abeysekera 
 praba...@wso2.com wrote:

 Hi Everyone,

 It's my pleasure to welcome Harsha Kumara as a WSO2 Committer.
 Harsha has always been a key member of the Storage Server team 
 contributing
 immensely to SS related developments ever since he joined us a few 
 months
 back. In recognition of his contributions, ownership shown towards 
 the
 tasks/responsibilities assigned to him, and commitment, he's been 
 voted as
 a WSO2 committer.

 Harsha, Welcome aboard and keep up the awesome work!


 Cheers,
 Prabath
 --
 Prabath Abeysekara
 Associate Technical Lead, Data TG.
 WSO2 Inc.
 Email: praba...@wso2.com
 Mobile: +94774171471

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




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com

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




 --
 Best Regards,

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

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




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

 Mobile : +94 773090875
 Email : rajeev...@wso2.com

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




 --
 Roshan Wijesena.
 Senior Software Engineer-WSO2 Inc.
 Mobile: *+94752126789*
 Email: ros...@wso2.com
 *WSO2, Inc. :** wso2.com http://wso2.com/*
 lean.enterprise.middleware.

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




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

 Email: buddh...@wso2.com
 Blog:   https://buddhimawijeweera.wordpress.com
 GitHub Profile: https://github.com/Buddhima

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




 --
 Thilini Anoratna
 Software Engineering Intern
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile : +94 (0) 778955654
 Email: thili...@wso2.com

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




 --
 *Malintha Adikari*
  Software Engineer
 WSO2 Inc.; http://wso2.com
 lean.enterprise.middleware

 Mobile: +94 71 2312958
 Blog:http://malinthas.blogspot.com
 Page:   http://about.me/malintha

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




 --
 Milinda Perera
 Software Engineer;
 WSO2 Inc. http://wso2.com ,
 Mobile: (+94) 714 115 032


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




 --
 Thanks
 Abimaran Kugathasan

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

 http://stackoverflow.com/users/515034
 http://lk.linkedin.com/in/abimaran
 http://www.lkabimaran.blogspot.com/  https://github.com/abimaran
 https://twitter.com/abimaran


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




 --
 Software Engineer
 WSO2 Inc.; http://wso2.com
 http://www.google.com/url?q=http%3A%2F%2Fwso2.comsa=Dsntz=1usg=AFQjCNEZvyc0uMD1HhBaEGCBxs6e9fBObg
 lean.enterprise.middleware

 mobile: *+94728671315 

[Dev] Jaggery Support in WSO2CEP 4.0

2014-11-06 Thread Damith Wickramasinghe
Hi,

Please find the repository[1].


[1]https://github.com/dnwick/product-cep.git


Regards,
Damith.
-- 
Software Engineer
WSO2 Inc.; http://wso2.com
http://www.google.com/url?q=http%3A%2F%2Fwso2.comsa=Dsntz=1usg=AFQjCNEZvyc0uMD1HhBaEGCBxs6e9fBObg
lean.enterprise.middleware

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