Re: [Dev] [BAM] Optimizing BAM Mediator Data Publishing Logic

2014-06-15 Thread Imesh Gunaratne
Hi Gayan, Thanks for the input, yes I noticed this in Developer Studio. By any chance do you know the reason for adding this restriction? As I understand there could be scenarios where we need to add mediators after a send mediator in an out sequence such as BAM and log. One other point to note h

[Dev] Please apply this patch to kernel 4.2.0 patch to patch0009.

2014-06-15 Thread Pulasthi Supun
Hi manoj, Please apply the patch for [1] to the 4.2.0 branch patch0009. [1] https://wso2.org/jira/browse/CARBON-14831 Regards, Pulasthi -- -- Pulasthi Supun Software Engineer; WSO2 Inc.; http://wso2.com, Email: pulas...@wso2.com Mobile: +94 (71) 9258281 Blog : http://pulasthisupun.blogspot.co

[Dev] how to access evet table parameters to pass to a custom siddhi function

2014-06-15 Thread Awanthika Senarath
Hi, I want to pass parameters from an event table to a custom siddhi extension. The following query [1] doesn's work. Can someone explain whether it is possible and if so what Im doing wrong here? [1] *define table inMemoryTable (myid int, lastDateTime double, lattitude double, longitud

Re: [Dev] [Connector-Store] ES 1.1.0 M3 when try to add new assert

2014-06-15 Thread Ayesha Dissanayaka
Ah, oki thanks a lot [?] On Mon, Jun 16, 2014 at 9:47 AM, Dushan Abeyruwan wrote: > problem was due to some malformed text data, Sameera knows this well > > > On Mon, Jun 16, 2014 at 9:24 AM, Ayesha Dissanayaka > wrote: > >> Hi Dushan, >> >> Same blocker mentioned in https://wso2.org/jira/bro

Re: [Dev] [BAM] Optimizing BAM Mediator Data Publishing Logic

2014-06-15 Thread Gayan Yalpathwala
Hi Imesh, Considering perf details you have mentioned, having the BAM mediator after a send mediator would optimize the situation. But it is not the recommended to add any mediator after a send mediator. If you check in Developer studio, we have deliberately restricted this behavior. Thanks, On

Re: [Dev] [Connector-Store] ES 1.1.0 M3 when try to add new assert

2014-06-15 Thread Dushan Abeyruwan
problem was due to some malformed text data, Sameera knows this well On Mon, Jun 16, 2014 at 9:24 AM, Ayesha Dissanayaka wrote: > Hi Dushan, > > Same blocker mentioned in https://wso2.org/jira/browse/STORE-438 has > occurred to me, when there were mismatches between .rxt and > relevant .json.

Re: [Dev] [IS] Debug log prints every 2 seconds

2014-06-15 Thread Asela Pathberiya
On Sun, Jun 15, 2014 at 12:06 AM, Nirmal Fernando wrote: > IS 5.0; > > TID: [0] [IS] [2014-06-14 18:34:57,360] DEBUG > {org.wso2.carbon.user.core.common.RealmCache} - created authorization > cache : org.wso2.carbon.caching.impl.CacheImpl@922bea56 > {org.wso2.carbon.user.core.common.RealmCache} >

Re: [Dev] [Connector-Store] ES 1.1.0 M3 when try to add new assert

2014-06-15 Thread Ayesha Dissanayaka
Hi Dushan, Same blocker mentioned in https://wso2.org/jira/browse/STORE-438 has occurred to me, when there were mismatches between .rxt and relevant .json. I was able to resolve it by configuring .json file. On Mon, Jun 16, 2014 at 7:44 AM, Dushan Abeyruwan wrote: > anoter blocker , https://

[Dev] Scratch area for App Factory developments

2014-06-15 Thread Shamika Ariyawansa
HI, $subject is created on following location https://svn.wso2.org/repos/wso2/scratch/appfactory_2.0.0 Please use product-releases/chunk-af for the builds and update this as an when you are adding new components, features etc. Regards, -- Shamika Ariyawansa Senior Software Engineer WSO2, Inc.

Re: [Dev] [Connector-Store] ES 1.1.0 M3 when try to add new assert

2014-06-15 Thread Dushan Abeyruwan
anoter blocker , https://wso2.org/jira/browse/STORE-438 On Sat, Jun 14, 2014 at 7:11 PM, Dushan Abeyruwan wrote: > Hi Sameera and ES Team, > Created jira please regard this as high priority blocker, > https://wso2.org/jira/browse/STORE-436 > > > Cheers, > Dushan > > > On Fri, Jun 13, 2014 at

Re: [Dev] How to import a specific version of a library from OSGI

2014-06-15 Thread Dilshan Edirisuriya
Hi Pulasthi, I assume you are using multiple bouncycastle components such as bcprov, bcpkix etc. When there are dependencies to each other those bundles also tries to load the classes where it fails to find the newest version. These things have been already resolved in our orbit bundles. You bette

Re: [Dev] How to import a specific version of a library from OSGI

2014-06-15 Thread Pulasthi Mahawithana
Thanks Manoj, Dilshan, I got the correct version loaded by specifying the version range. However, It made one of the webapps not working, failing to load classes from this bundle. I double checked the reason by reverting the changes I made, and the webapp works as expected (It loads the classes f

Re: [Dev] [API-M] Token expiration time is set 300s less than the given value when generating tokens using the UI

2014-06-15 Thread Sanjeewa Malalgoda
Yes that is the reason. Theoretically time stamp skew < cache duration < token validity period. Otherwise it will mess up token generation logic Thanks, sanjeewa. On Sat, Jun 14, 2014 at 4:50 PM, Nirodha Pramod wrote: > Hi, > > Noticed this API cloud. I have mentioned the steps in JIRA [1]. Ca

Re: [Dev] How to import a specific version of a library from OSGI

2014-06-15 Thread Manoj Kumara
Hi, Seems like the package was resolved with highest version which is "132.0.0". As Dilshan mentioned by providing import version range should resolve this. ex: org.bouncycastle.*; version:="[1.45.0.wso2v1, 1.5.0)" Thanks, Manoj *Manoj Kumara* Software Engineer WSO2 Inc. http://wso2.com/ *lean

Re: [Dev] How to import a specific version of a library from OSGI

2014-06-15 Thread Dilshan Edirisuriya
Hi Pulasthi, I too faced the same issue when working with bouncycastle. Anyway I have created bouncycastle orbit bundles in carbon 4.2.0. You can use them. So in your imports you can add the versions as below. FYI bouncycastle in orbit version are 1.49 so you could use the same.

[Dev] How to import a specific version of a library from OSGI

2014-06-15 Thread Pulasthi Mahawithana
Hi, I want to use BouncyCastle v 1.45 with Identity Server. In my pom.xml for the service component I have used the following configuration to import the BouncyCastle classes, org.apache.axis2.*, org.wso2.carbon.core.utils.*, org.wso2.carbon

Re: [Dev] Foursquare connector error

2014-06-15 Thread Amaaniy Muhammad
Hi Ranindu, As you said, I missed to check the component.xml in the /resources/jira_user. Now I solved it. Thanks & regards, Amaaniy On Sun, Jun 15, 2014 at 2:16 PM, Ramindu Deshapriya wrote: > Hi Amaaniy, > > It seems the jira_user subcomponent is missing some files. Before you > build th

Re: [Dev] Foursquare connector error

2014-06-15 Thread Ramindu Deshapriya
Hi Amaaniy, It seems the jira_user subcomponent is missing some files. Before you build the connector, check the component.xml file within the /resources/jira_user. Check whether the configuration files listed there are actually available within the folder. Thanks. On Sun, Jun 15, 2014 at 2:05

[Dev] Foursquare connector error

2014-06-15 Thread Amaaniy Muhammad
Hi All, I am in the process of developing an ESB connector for Foursquare(REST). I took the Jira Connector as a sample and made changes to build the Foursquare connector to study the process of designing connectors. I did the maven clean install and add the connector.zip to the ESB management con

Re: [Dev] [DEV] [ESB] Can we increase height size of source view

2014-06-15 Thread Dushan Abeyruwan
Hi Please create a public jira, we will consider this but IMO this not a showstopper, as most of the time user experience relying on the DevS Cheers, Dushan On Fri, Jun 13, 2014 at 10:39 AM, Seshika Fernando wrote: > Hi, > > Can we increase the height of the source view to improve user > frien