Re: [Dev] Calling web service within REST api

2014-11-03 Thread Asok Perera
Hi Susinda, Difference between these two soap versions are described in the below[1] w3c specification. [1] http://www.w3.org/2003/06/soap11-soap12.html Check whether that answers you question. I found this[2] answer is also informative - [2]

[Dev] [ELB] What is host and remote host w.r.t. a cluster fronted by ELB?

2014-11-03 Thread Gayashan Amarasinghe
Hi all, I'm seeing the following log in ELB when a worker joins the cluster. What is the difference of Host and Remote Host entry here? [2014-11-03 10:40:39,077] INFO {org.wso2.carbon.core.clustering.hazelcast.util.MemberUtils} - Added member: *Host:10.100.5.80*, *Remote Host:null*, Port:

Re: [Dev] [Siddhi] Counting Patterns

2014-11-03 Thread Seshika Fernando
Hi Suho, Leaving this particular example aside, I still have an issue with counting patterns. In the following example from e1 = data - e2 = data[(e1.cardNum == e2.cardNum) and (e1.location != e2.location)] 4: select e1.cardNum, e1.location as loc1, e2[0].location as loc2, e2[1].location as

Re: [Dev] Integration tests for Hazelcast Session Replication feature

2014-11-03 Thread Pubudu Dissanayake
On Mon, Nov 3, 2014 at 11:05 AM, Kishanthan Thangarajah kishant...@wso2.com wrote: If that's the case, we can go ahead with graceful server shutdown restart approach. ​ ​+1 for the approach​ ​ Also write some integration test cases using HZ Map EntryListener as-well. With this, you can

Re: [Dev] Locating UI elements with Selenium

2014-11-03 Thread Awanthika Senarath
Hi Krishantha, Yes i was using that plugin to locate the web drive element. I will update you on th eprogress thanks and regards On Mon, Nov 3, 2014 at 10:35 AM, Krishantha Samaraweera krishan...@wso2.com wrote: For the debug purpose you can put appropriate waits and see whether the UI

Re: [Dev] Recommended approach to adapt 3rd party dependencies

2014-11-03 Thread Jaminda Batuwangala
Hi Azeez,Paul,All Don't think we have come to a conclusion on this. Are we able to finalize our approach on this as we have come to a juncture where this is required to proceed further with next release. Regards, Jaminda On Tue, Oct 21, 2014 at 10:02 PM, Prabath Abeysekera praba...@wso2.com

[Dev] [APIM] Integration tests for API Manager 1.8.0

2014-11-03 Thread Sanjeewa Malalgoda
Hi All, In following svn directory we can see test, tests-new directories. And i can see some of artifacts(synapse configs etc) got deleted from tests directory. What was the reason to have different directories? Which one we should run for integration tests(according to pom file we build tests if

[Dev] Issue with BAM Message Tracer Handler

2014-11-03 Thread Sewmini Jayaweera
Hi, As an integration scenario I Installed BAM Message Tracer Handler Aggregate feature into ESB (version 4.8.1) and configured message tracing by giving correct thrift port and IP as the Receiver URL. When invoking echo service I got following error in esb log. [2014-11-03 14:56:25,376] ERROR -

Re: [Dev] Issue with BAM Message Tracer Handler

2014-11-03 Thread Gihan Anuruddha
Hi Sewmini, We changed the stream definition of the Message tracer. BAM 2.5.0 only compatible with Message Tracer version 4.2.3 or later. This 4.2.3 version going to release with chunk-13. You can find the 4.2.3 version in this p2- repo [1]. [1] -

Re: [Dev] Issue with BAM Message Tracer Handler

2014-11-03 Thread Sewmini Jayaweera
Thanks Sewmini Jayaweera *Software Engineer - QA Team* Mobile: +94 (0) 773 381 250 sewm...@wso2.com On Mon, Nov 3, 2014 at 3:28 PM, Gihan Anuruddha gi...@wso2.com wrote: Hi Sewmini, We changed the stream definition of the Message tracer. BAM 2.5.0 only compatible with Message Tracer version

Re: [Dev] [APIM] Integration tests for API Manager 1.8.0

2014-11-03 Thread Krishantha Samaraweera
commit r205512 disable tests module from integration pom. Any idea why this module was disabled ? only a few integration tests are enabled now. AFAIK, integration tests are broken due to API changes introduced in latest releases. We must fix all failures before the release. Thanks, Krishantha.

Re: [Dev] UI test - screen capture on Test failure

2014-11-03 Thread Ayesha Dissanayaka
Hi, I've been able to implement screen-capture on exception using the above mentioned approach. I added this wrapper to the same custom webdriver class mentioned in the thread [01]. Now web-driver captures and saves screen-shots to */target/surefire-reports/screen-shot *location when an

Re: [Dev] Adding Functional/Regression tests for MQTT - MB 3.0.0

2014-11-03 Thread Akalanka Pagoda Arachchi
Hi all, According to hasitha's mail I have identified following test cases to include in the MQTT tests. *Functional Tests* - Test MQTT for QOS 0,1 and 2 - Test long topic hierarchies - Test MQTT wildcards - Test duplicate client Id - Test last will testament *Load Tests*

Re: [Dev] [APIM] Integration tests for API Manager 1.8.0

2014-11-03 Thread Vijayaratha Vijayasingam
Sanjeewa; We fixed tests-new module only.. Tests module consists old testcases which are broken for some time. On 3 November 2014 16:11, Krishantha Samaraweera krishan...@wso2.com wrote: commit r205512 disable tests module from integration pom. Any idea why this module was disabled ? only a

[Dev] How to access data sources defined in master-datasources.xml from jaggery app

2014-11-03 Thread Kalpa Welivitigoda
Hi $subject -- 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] How to access data sources defined in master-datasources.xml from jaggery app

2014-11-03 Thread Inosh Perera
Hi Kalpa, It can be done as bellow, var db = new Database(WSO2_EMM_DB); where WSO2_EMM_DB is your datasource name. Regards, Inosh On Mon, Nov 3, 2014 at 5:20 PM, Kalpa Welivitigoda kal...@wso2.com wrote: Hi $subject -- Best Regards, Kalpa Welivitigoda Software Engineer, WSO2 Inc.

Re: [Dev] How to access data sources defined in master-datasources.xml from jaggery app

2014-11-03 Thread Kalpa Welivitigoda
Thanks Inosh On Mon, Nov 3, 2014 at 5:27 PM, Inosh Perera ino...@wso2.com wrote: Hi Kalpa, It can be done as bellow, var db = new Database(WSO2_EMM_DB); where WSO2_EMM_DB is your datasource name. Regards, Inosh On Mon, Nov 3, 2014 at 5:20 PM, Kalpa Welivitigoda kal...@wso2.com wrote:

Re: [Dev] BAM 2.5.0 Release testing

2014-11-03 Thread Dunith Dhanushka
Hi , Please note that when setting this up in the research cloud, turn off the iptables by '*sudo service iptables stop*'. Otherwise it'll block internode communications. Regards, Dunith On Mon, Nov 3, 2014 at 11:53 AM, Dunith Dhanushka dun...@wso2.com wrote: Hi Aparna, I have completed the

Re: [Dev] org.h2.jdbc.JdbcSQLException: File corrupted while reading record excception is throwing APIM GIT build while adding a new API.

2014-11-03 Thread Supun Sethunga
Hi, Is this resolved? We are getting the same error when trying to integrate a product specific H2 database to the ML product (WSO2ML_DB). However, inbuilt carbon H2 DB works fine. Error is thrown when the product (from UI) tries to access the WSO2ML_DB. Follow are the configurations did when

Re: [Dev] Getting error when having two ESB instance with offset 0 1

2014-11-03 Thread Priyadarssini Kishokumar
Hi, Thanks for the replies. I noticed that port 1 is already occupied. After restart, it works fine. On Fri, Oct 31, 2014 at 6:47 PM, Waruna Perera waru...@wso2.com wrote: Hi, use lsof -n -i command and see On Fri, Oct 31, 2014 at 6:38 PM, Harsha Kumara hars...@wso2.com wrote: Hi

Re: [Dev] org.h2.jdbc.JdbcSQLException: File corrupted while reading record excception is throwing APIM GIT build while adding a new API.

2014-11-03 Thread Harsha Kumara
Hi Supun, Remove the filteredtrue/filtered and try again which sometime cause to corrupt files. Thanks, Harsha On Mon, Nov 3, 2014 at 6:13 PM, Supun Sethunga sup...@wso2.com wrote: Hi, Is this resolved? We are getting the same error when trying to integrate a product specific H2 database

Re: [Dev] [APIM] Integration tests for API Manager 1.8.0

2014-11-03 Thread Krishantha Samaraweera
Disabling tests due to test failures are not good. You got to fix the failure cases before the release. Think about the patches we are going to release on top on this branch, how someone ensure their patches don't break any existing functionality. QAA team have fixed some of these broken cases in

Re: [Dev] [APIM] Integration tests for API Manager 1.8.0

2014-11-03 Thread Sanjeewa Malalgoda
Hi All, Are these tests build on top of 1.7.0 or 1.8.0? And why do we maintain in private git repo? I think need to merge fixed tests to current code and fix test cases as much as possible(tests-new is having only 2 test cases from what we had previously). Thanks, sanjeewa. On Mon, Nov 3, 2014

Re: [Dev] Does Token API port need to be changed when there's a port-offset in APIM?

2014-11-03 Thread Bhathiya Jayasekara
Hi guys, I have a related question. In APIM store, when I generate an access token, isn't it using the Token API internally to retrieve the token? I can see that it works even when I have a wrong port in _TokenAPI_.xml. How does that happen? Thanks, Bhathiya On Mon, Nov 3, 2014 at 12:57 PM,

Re: [Dev] Does Token API port need to be changed when there's a port-offset in APIM?

2014-11-03 Thread Udara Rathnayake
May be it's coming from the db if not expired. Im not 100% sure. But you can confirm this by trying after expiry. sent from my nexus4, ignore any typos On Nov 3, 2014 8:05 AM, Bhathiya Jayasekara bhath...@wso2.com wrote: Hi guys, I have a related question. In APIM store, when I generate an

Re: [Dev] Does Token API port need to be changed when there's a port-offset in APIM?

2014-11-03 Thread Bhathiya Jayasekara
On Mon, Nov 3, 2014 at 9:48 PM, Udara Rathnayake uda...@wso2.com wrote: May be it's coming from the db if not expired. No, I'm generating a token for a new application. Im not 100% sure. But you can confirm this by trying after expiry. sent from my nexus4, ignore any typos On Nov 3, 2014

Re: [Dev] Does Token API port need to be changed when there's a port-offset in APIM?

2014-11-03 Thread Vijayaratha Vijayasingam
Regenerate token does not use deployed rest APIs at gateway. On 3 November 2014 21:49, Bhathiya Jayasekara bhath...@wso2.com wrote: On Mon, Nov 3, 2014 at 9:48 PM, Udara Rathnayake uda...@wso2.com wrote: May be it's coming from the db if not expired. No, I'm generating a token for a new

Re: [Dev] Does Token API port need to be changed when there's a port-offset in APIM?

2014-11-03 Thread Bhathiya Jayasekara
Hi Ratha, How does that happen then? Thanks, On Mon, Nov 3, 2014 at 9:59 PM, Vijayaratha Vijayasingam rat...@wso2.com wrote: Regenerate token does not use deployed rest APIs at gateway. On 3 November 2014 21:49, Bhathiya Jayasekara bhath...@wso2.com wrote: On Mon, Nov 3, 2014 at 9:48 PM,

Re: [Dev] Does Token API port need to be changed when there's a port-offset in APIM?

2014-11-03 Thread Vijayaratha Vijayasingam
they read KM endpoint info from api-manger.xml On 3 November 2014 22:00, Bhathiya Jayasekara bhath...@wso2.com wrote: Hi Ratha, How does that happen then? Thanks, On Mon, Nov 3, 2014 at 9:59 PM, Vijayaratha Vijayasingam rat...@wso2.com wrote: Regenerate token does not use deployed rest

Re: [Dev] Does Token API port need to be changed when there's a port-offset in APIM?

2014-11-03 Thread Colin Roy-Ehri
Does the regenerate token in the store also revoke the current token, calling the _revokeAPI_.xml in the gateway? I thought it did that to remove a locally cached value. Thanks, Colin Roy-Ehri Software Engineer *WSO2, Inc. : wso2.com http://wso2.com/* *Mobile* : 812-219-6517 On Mon,

Re: [Dev] Does Token API port need to be changed when there's a port-offset in APIM?

2014-11-03 Thread Vijayaratha Vijayasingam
Call goes like this; Store-- KM --reads token endpoint from apimanager.xml ( TokenEndPointName/oauth2/token/TokenEndPointName) and for revoke we point gateway rest api(revoke api) which will be read from api-manger.xml (RevokeAPIURLhttps://

Re: [Dev] [APIM] Integration tests for API Manager 1.8.0

2014-11-03 Thread Sanjeewa Malalgoda
On Mon, Nov 3, 2014 at 10:17 PM, Krishantha Samaraweera krishan...@wso2.com wrote: I think you haven't seen this pull request - https://github.com/wso2-dev/product-apim/pull/4 My concern is product teams should be more responsible for maintaining their own tests rather depending on another

Re: [Dev] [APPFAC] Move apptype specific jenkins job configurations to apptype processors

2014-11-03 Thread Kasun De Silva
Hi Danushka, Are you suggesting to move all the jenkins job configurations currently we have in to apptype processors, what my impression was we are doing that for non maven and buildable apptypes like ASP.NET. Should we refactor that improvement for maven apptype and other apptypes as well ?

Re: [Dev] org.h2.jdbc.JdbcSQLException: File corrupted while reading record excception is throwing APIM GIT build while adding a new API.

2014-11-03 Thread Supun Sethunga
Hi Harsha, Yeah it did the trick. Thanks! :) Regards, Supun On Mon, Nov 3, 2014 at 6:30 PM, Harsha Kumara hars...@wso2.com wrote: Hi Supun, Remove the filteredtrue/filtered and try again which sometime cause to corrupt files. Thanks, Harsha On Mon, Nov 3, 2014 at 6:13 PM, Supun

Re: [Dev] [Siddhi] Counting Patterns

2014-11-03 Thread Sriskandarajah Suhothayan
On Mon, Nov 3, 2014 at 3:57 AM, Seshika Fernando sesh...@wso2.com wrote: Hi Suho, Leaving this particular example aside, I still have an issue with counting patterns. In the following example from e1 = data - e2 = data[(e1.cardNum == e2.cardNum) and (e1.location != e2.location)] 4:

[Dev] Is there a way to remove jsonObject element from xml to json converted message

2014-11-03 Thread Asanka Vithanage
Hi, I customized API manager main sequence to change the default error message according to below format.so now i am getting the error messages as below. *PayloadFactory:* property name=ERROR_DETAIL value=Unsupported Transport. The requested resource is not available./ property

Re: [Dev] [Siddhi] Counting Patterns

2014-11-03 Thread Seshika Fernando
Thanks. Shall open a jira for this. On Tue, Nov 4, 2014 at 9:56 AM, Sriskandarajah Suhothayan s...@wso2.com wrote: On Mon, Nov 3, 2014 at 3:57 AM, Seshika Fernando sesh...@wso2.com wrote: Hi Suho, Leaving this particular example aside, I still have an issue with counting patterns. In

Re: [Dev] Axis2 Email Issue with jaggery jar

2014-11-03 Thread Tanya Madurapperuma
Hi Prasad, Are you sure it is when org.jaggeryjs.hostobjects.stream_0.9.0.SNAPSHOT-10252013.jar is in classpath not org.jaggeryjs.hostobjects.email_0.9.0.SNAPSHOT-*10252013.jar *? Because we have came across the same exception [1] with email host object in class path and fixed in jaggery master,

Re: [Dev] Axis2 Email Issue with jaggery jar

2014-11-03 Thread Prasad Tissera
Hi Tanaya, Yes, that could be the issue, actually I have removed several jars. Thanks for the info. Regards, Prasad. On Tue, Nov 4, 2014 at 10:17 AM, Tanya Madurapperuma ta...@wso2.com wrote: Hi Prasad, Are you sure it is when org.jaggeryjs.hostobjects.stream_0.9.0.SNAPSHOT-10252013.jar

Re: [Dev] WSO2 Committers += Milinda Perera

2014-11-03 Thread Abimaran Kugathasan
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

Re: [Dev] [Siddhi] Counting Patterns

2014-11-03 Thread Seshika Fernando
Jira opened for counting patterns issue - CEP-977 - Counting Patterns do not work properly https://wso2.org/browse/CEP-977 Separately, you had mentioned that we can use e2[*prev*], e2[*last*] etc; These are not documented anywhere AFAIK. Need to open a docsJIRA for this. Are there any other

Re: [Dev] [APPFAC] Move apptype specific jenkins job configurations to apptype processors

2014-11-03 Thread Danushka Fernando
IIRC what Dimuthu asked for is to move all build configuration. No point of moving it just for one apptype. On Nov 4, 2014 9:38 AM, Kasun De Silva kas...@wso2.com wrote: Hi Danushka, Are you suggesting to move all the jenkins job configurations currently we have in to apptype processors, what

[Dev] Resource.properties file doesn't link with carbon component.

2014-11-03 Thread Buddhi Senarathna
My carbon component works properly. but it doesn't show the name that i want to display. ​ ​i believe the problem occurs when the component links with the Resource.properties file. *this is the folder structure* *​* *this is the content of component.xml file * component

Re: [Dev] WSO2 Committers += Milinda Perera

2014-11-03 Thread Priyadarssini Kishokumar
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

[Dev] What is ESB mediator serializer for?

2014-11-03 Thread Lahiru Chandima
Hi All, I am writing a new ESB mediator and I cannot figure out the need of a mediator serializer (extension of AbstractMediatorSerializer) for a mediator. Also, in the new mediator I created, if I add a breakpoint in serializeSpecificMediator() method in my mediator serializer and debugged, the

[Dev] WSO2 Committers += Niranjan Karunanandham

2014-11-03 Thread Sameera Perera
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

Re: [Dev] WSO2 Committers += Niranjan Karunanandham

2014-11-03 Thread Aruna Karunarathna
Congratulations Nira..!!! On Tue, Nov 4, 2014 at 11:44 AM, Kalpa Welivitigoda kal...@wso2.com wrote: Congratulations Niranjan ! 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

Re: [Dev] What is ESB mediator serializer for?

2014-11-03 Thread Waruna Perera
Hi Lahiru, can you check whether your bundle got activated vi Osgi console? Thanks On Tue, Nov 4, 2014 at 11:34 AM, Lahiru Chandima lahi...@wso2.com wrote: Hi All, I am writing a new ESB mediator and I cannot figure out the need of a mediator serializer (extension of

Re: [Dev] What is ESB mediator serializer for?

2014-11-03 Thread Isuru Ranawaka
Hi Lahiru, Mediator serializer is for write mediator configuration object to XML file which is used when saving configuration from UI to file system. Check by saving your configuration from UI. Thanks isuruR On Tue, Nov 4, 2014 at 11:47 AM, Waruna Perera waru...@wso2.com wrote: Hi Lahiru,

Re: [Dev] WSO2 Committers += Niranjan Karunanandham

2014-11-03 Thread Rajeevan Vimalanathan
Congratz Niranjan...!!! On Tue, Nov 4, 2014 at 11:54 AM, Gayashan Amarasinghe gayas...@wso2.com wrote: Congratulations Niranjan!!! :) On Tue, Nov 4, 2014 at 11:47 AM, Prasanna Dangalla prasa...@wso2.com wrote: Congratulations !!! On Tue, Nov 4, 2014 at 11:45 AM, Aruna Karunarathna

Re: [Dev] What is ESB mediator serializer for?

2014-11-03 Thread Lahiru Chandima
Hi Waruna, My OSGi bundle is active. mediate() method of the mediator gets called without a problem. The problem is that serializeSpecificMediator() doesn't get called. Hi Isuru, Isn't it org.wso2.carbon.mediator.service.ui.AbstractMediator.serialize() method (which needs to be implemented in

Re: [Dev] [APPFAC] Move apptype specific jenkins job configurations to apptype processors

2014-11-03 Thread Kasun De Silva
Hi Danushka, Yes, that would be more generic, I will proceed with the above approach. Thanks, Kasun *Kasun de Silva* Software Engineer | *WSO2 Inc.*; http://wso2.com lean.enterprise.middleware email : kas...@wso2.com mobile : +94 77 794 4260 On Tue, Nov 4, 2014 at 11:07 AM, Danushka

Re: [Dev] WSO2 Committers += Niranjan Karunanandham

2014-11-03 Thread Kasun Dissanayake
Congradzzz Nira !!! On Tue, Nov 4, 2014 at 12:06 PM, Inosh Perera ino...@wso2.com wrote: Congratulations Niranjan !! On Tue, Nov 4, 2014 at 11:56 AM, Rajeevan Vimalanathan rajeev...@wso2.com wrote: Congratz Niranjan...!!! On Tue, Nov 4, 2014 at 11:54 AM, Gayashan Amarasinghe

Re: [Dev] WSO2 Committers += Niranjan Karunanandham

2014-11-03 Thread Abimaran Kugathasan
Congrats Niranjan! On Tue, Nov 4, 2014 at 12:15 PM, Kasun Dissanayake kas...@wso2.com wrote: Congradzzz Nira !!! On Tue, Nov 4, 2014 at 12:06 PM, Inosh Perera ino...@wso2.com wrote: Congratulations Niranjan !! On Tue, Nov 4, 2014 at 11:56 AM, Rajeevan Vimalanathan

Re: [Dev] Is there a way to remove jsonObject element from xml to json converted message

2014-11-03 Thread Senduran Balasubramaniyam
Hi Asanka, Is your requirement to get the final output as json or xml ? If it is xml then you can change the payload factory media-type to xml Thanks Senduran On Tue, Nov 4, 2014 at 10:09 AM, Asanka Vithanage asan...@wso2.com wrote: Hi, I customized API manager main sequence to change the

Re: [Dev] WSO2 Committers += Niranjan Karunanandham

2014-11-03 Thread Nuwan Silva
Congrats Niranjan On Tue, Nov 4, 2014 at 12:20 PM, Abimaran Kugathasan abima...@wso2.com wrote: Congrats Niranjan! On Tue, Nov 4, 2014 at 12:15 PM, Kasun Dissanayake kas...@wso2.com wrote: Congradzzz Nira !!! On Tue, Nov 4, 2014 at 12:06 PM, Inosh Perera ino...@wso2.com wrote:

Re: [Dev] What is ESB mediator serializer for?

2014-11-03 Thread Lahiru Chandima
Hi Isuru, Actually the blog post you provided is the one that I am already referring to :). It specifies to create a serializer but doesn't mention what is the need of a serializer. Thanks. On Tue, Nov 4, 2014 at 12:18 PM, Isuru Ranawaka isu...@wso2.com wrote: Hi , Hope following links help

Re: [Dev] WSO2 Committers += Niranjan Karunanandham

2014-11-03 Thread Senduran Balasubramaniyam
Congratulations Niranjan !! On Tue, Nov 4, 2014 at 12:20 PM, Abimaran Kugathasan abima...@wso2.com wrote: Congrats Niranjan! On Tue, Nov 4, 2014 at 12:15 PM, Kasun Dissanayake kas...@wso2.com wrote: Congradzzz Nira !!! On Tue, Nov 4, 2014 at 12:06 PM, Inosh Perera ino...@wso2.com

Re: [Dev] WSO2 Committers += Niranjan Karunanandham

2014-11-03 Thread KasunG Gajasinghe
Congratulations Niranjan! On Tue, Nov 4, 2014 at 12:30 PM, Godwin Amila Shrimal god...@wso2.com wrote: Congratulations Niranjan...! On Tue, Nov 4, 2014 at 12:27 PM, Senduran Balasubramaniyam sendu...@wso2.com wrote: Congratulations Niranjan !! On Tue, Nov 4, 2014 at 12:20 PM, Abimaran

Re: [Dev] What is ESB mediator serializer for?

2014-11-03 Thread Maninda Edirisooriya
Hi Lahiru, As earlier said by Isuru, it is used to convert the mediator UI entered configuration to generate the mediator XML as I remember. And you may find another class to generate the UI from this XML back which does the reverse of the serializer. These two classes will be called when you

Re: [Dev] WSO2 Committers += Niranjan Karunanandham

2014-11-03 Thread Isuruwan Herath
Congratulations !!! On Tue, Nov 4, 2014 at 12:32 PM, KasunG Gajasinghe kas...@wso2.com wrote: Congratulations Niranjan! On Tue, Nov 4, 2014 at 12:30 PM, Godwin Amila Shrimal god...@wso2.com wrote: Congratulations Niranjan...! On Tue, Nov 4, 2014 at 12:27 PM, Senduran Balasubramaniyam

Re: [Dev] Adding Functional/Regression tests for MQTT - MB 3.0.0

2014-11-03 Thread Pamod Sylvester
Hi Akalanka, Srinath an i had a discussion. One of the aspects Srinath pointed out was to assure the use case when there're let's say 3 subscribers bound to the same topic and two subscribers acked instantly but the third took more time to ack which will result in the message being assigned to

Re: [Dev] What is ESB mediator serializer for?

2014-11-03 Thread Lahiru Chandima
Hi Maninda, I thought the conversion of the mediator to xml and vice versa is done by the mediator class in the mediator configuration UI bundle. It has serialize() method to convert mediator to XML and build() method to build a mediator from XML. Anyway, I will check whether

Re: [Dev] [Appfactory] Use GJit plugin for repository management

2014-11-03 Thread Harsha Thirimanna
Hi Samitha, As we discussed, it is better to move AppfactoryRepositoryClient interface from Repository component to core component and it should be an interface instead of abstract class. Then Repository component can register its implementation to the AppfactoryRepositoryClient when the