[Dev] Change in intitail tenant loading

2013-10-30 Thread Kishanthan Thangarajah
Hi All, With the recent changes to ActivationHandler (we removed it with CC re-factoring effort), we observe a change is tenant loading in some of the products. The tenant does not load with the login. But it starts to load when you try to access some mgt console pages (for example, try to view th

[Dev] Int arrays are not available via request.getContent [Jaggery]

2013-10-30 Thread Chan
Hi, I am trying to send data via post request and int arrays are being lost somewhere. My payload is {"ints": [1,2]} and what I see in the console is {"ints" : [{}, {}]}. I debugged jaggery and figured out that Gson properly passes the int array and sends to the buildObject method (HostObjectUtil

Re: [Dev] Int arrays are not available via request.getContent [Jaggery]

2013-10-30 Thread Ruchira Wageesha
Hi Chan, Instead of parse(), use JSON.parse(). It will solve your problem. parse() and stringify() methods have been deprecated as ECMAScript 1.5 itself has JSON.parse() and JSON.stringify(). /Ruchira On Wed, Oct 30, 2013 at 3:25 PM, Chan wrote: > Hi, > I am trying to send data via post reque

[Dev] wso2 cep 3.0.0 - Event Builder Problem

2013-10-30 Thread andresgomez92
Hi all, I try to deploy a custom event input adaptors to kafka, I already have the implementation with OSGI Bundle and put the jar into drop ins directory! I make the custom adapter, like this:

Re: [Dev] wso2 cep 3.0.0 - Event Builder Problem

2013-10-30 Thread Mohanadarshan Vivekanandalingam
Hi Andres, On Wed, Oct 30, 2013 at 8:47 PM, andresgomez92 wrote: > Hi all, > > I try to deploy a custom event input adaptors to kafka, I already have the > implementation with OSGI Bundle and put the jar into drop ins directory! > > I make the custom adapter, like this: > > >

Re: [Dev] Progress of Test Automation Framework core module refactoring

2013-10-30 Thread Malintha Adikari
*Running the test in product/stratos modes* The tenant which is used to build the test environment decides whether test is running on product or stratos modes. In the case of the super tenant user is used to build the test environment , the test is running on product mode. If the tenant is any oth

Re: [Dev] Progress of Test Automation Framework core module refactoring

2013-10-30 Thread Dharshana Warusavitharana
Hi Malintha, I think configuration should be something like Here basically we need NHTTP for ESB and LB only. As out initial design we check whether NHTTP and NHTTPS potts are null or not to assign this to url. Though +1 fo introducing a configuration. But still the servicePortType="nhttppo

Re: [Dev] ESB 4.6.0

2013-10-30 Thread Malaka Silva
It's in esb_home/lib. I guess we need to manually replace this. Not like other patches. On Thu, Oct 31, 2013 at 9:36 AM, Malaka Silva wrote: > How the kernel module org.wso2.carbon.server is packed with $subject > > Can't find it in plugins folder? > > -- > Best Regards, > > Malaka Silva > Se

[Dev] Validate distribution size - Test implementation plan

2013-10-30 Thread Dimuthu De Lanerolle
Hi All, We are going to implement the $subject. Our strategy for this is to validate the running distribution pack's size against the latest distribution hosted in the maven repo. This means that we are assuming maven repo always carries the latest released product distribution of a given product.

Re: [Dev] ESB 4.6.0

2013-10-30 Thread Isuru Haththotuwa
Ideally it should be copied to the lib folder using the bin.xml as we copy the kernel patch to the patches folder. We did this in the 4.2.0 chunk 02 release. On Thu, Oct 31, 2013 at 10:03 AM, Malaka Silva wrote: > It's in esb_home/lib. > > I guess we need to manually replace this. > > Not like

Re: [Dev] Kernel commit required for patch0002

2013-10-30 Thread Thilini Ishaka
Please create the kernel patch0002 feature. Thanks Thilini On Wed, Oct 30, 2013 at 11:09 AM, Thilini Ishaka wrote: > Hi Manoj, > > Can you please commit the attached kernel patch. > > > Thanks > Thilini > > > On Tue, Oct 29, 2013 at 8:59 AM, Chanaka Fernando wrote: > >> Thanks ... >> >> Regar

Re: [Dev] ESB 4.6.0

2013-10-30 Thread Lasantha Fernando
Hi Malaka, Isuru, AFAIK if you are using the kernel patch as a feature, even copying via bin.xml is not needed. If you install it as a feature, you can use p2-touchpoints to do the replacing of the jar. I think the carbon team has already done it although using the kernel patch as a feature was n

[Dev] WSO2 ESB 4.8.0 - Milestone 5 Released

2013-10-30 Thread Ishan Jayawardena
Hi, ESB version 4.8.0 M5 is available at https://svn.wso2.org/repos/wso2/people/ishan/dist/esb/480m5/wso2esb-4.8.0.zip Cloud connectors can be found in $ESB_HOME/repository/connectors Release Notes - WSO2 ESB - Version 4.8.0 M5 Bug - [ESBJAVA-2452 ]

Re: [Dev] ESB 4.6.0

2013-10-30 Thread Manoj Kumara
Hi, What Lasantha mentioned was correct. To chunk-04 products you can use kernel patch as a feature. I think BPS team have already added that. Thanks, manoj Best Regards.. Manoj Kumara Software Engineer WSO2, Inc.; http://wso2.com Twitter: http://twitter.com/ManKuma Mobile: +94713448188 On

Re: [Dev] Change in intitail tenant loading

2013-10-30 Thread Asela Pathberiya
On Wed, Oct 30, 2013 at 3:03 PM, Kishanthan Thangarajah wrote: > Hi All, > > With the recent changes to ActivationHandler (we removed it with CC > re-factoring effort), we observe a change is tenant loading in some of the > products. The tenant does not load with the login. But it starts to load

Re: [Dev] Change in intitail tenant loading

2013-10-30 Thread Kishanthan Thangarajah
On Thu, Oct 31, 2013 at 11:25 AM, Asela Pathberiya wrote: > > > > On Wed, Oct 30, 2013 at 3:03 PM, Kishanthan Thangarajah < > kishant...@wso2.com> wrote: > >> Hi All, >> >> With the recent changes to ActivationHandler (we removed it with CC >> re-factoring effort), we observe a change is tenant l

[Dev] STS component new version

2013-10-30 Thread Nandika Jayawardana
It seems sts component was not re-factored for carbon context changes. I made the necessary changes and created a new version of the feature to avoid the stack overflow error from getCurrentContext. If you are packing sts component, please update the feature. Regards Nandika -- Nandika Jayaward

Re: [Dev] Int arrays are not available via request.getContent [Jaggery]

2013-10-30 Thread Chan
Hi Ruchira, But the problem is that getContent() method doesn't properly handle int arrays. Peace~ On Wed, Oct 30, 2013 at 3:49 PM, Ruchira Wageesha wrote: > Hi Chan, > > Instead of parse(), use JSON.parse(). It will solve your problem. parse() > and stringify() methods have been deprecated as