Re: [Dev] [Carbon]Can't login in to management console when both proxycontextpath and webcontextroot is used together

2015-10-15 Thread Hasanthi Purnima Dissanayake
Hi Krishanthan, As you suggested I checked the configurations of proxy and reverse proxy and they seems correct. I followed [1] as the reference. We can use IS and LB with default web context root. The problem occurs when we try to login to management console with both proxycontextpath and

Re: [Dev] How to make mySQL DB case sensitive

2015-10-15 Thread Mahesh Chinthaka
Hi Hasitha, AFAIK you can set collation at both the database creation and table creation level. And you can set individual tables treated as case sensitive if you want. Please refer[1] [1] - http://stackoverflow.com/questions/4879846/how-to-configure-mysql-to-be-case-sensitive On Thu, Oct 15,

Re: [Dev] [VOTE] Release WSO2 Carbon Kernel 4.4.2 RC2

2015-10-15 Thread Johann Nallathamby
Hi Kishanthan/Kernel Team, We are in the process writing the test case for the issue. Should be able to send it before end of day. [1] has been reported in another thread. This issue in particular looks critical to me, because AFAIK there are many users using proxyContextPath. Not sure about

[Dev] How to make mySQL DB case sensitive

2015-10-15 Thread Hasitha Hiranya
Hi Devs, How can we do the subject? Are we doing this in registry/user store DBs? Thanks -- *Hasitha Abeykoon* Senior Software Engineer; WSO2, Inc.; http://wso2.com *cell:* *+94 719363063* *blog: **abeykoon.blogspot.com*

Re: [Dev] How to make mySQL DB case sensitive

2015-10-15 Thread Hasitha Hiranya
Hi Mahesh, Already tried it. Gives me following error [image: Inline image 1] I am using mysql Ver 14.14 Distrib 5.6.23, for osx10.8 (x86_64) Thanks On Thu, Oct 15, 2015 at 5:48 PM, Mahesh Chinthaka wrote: > Hi Hasitha, > > AFAIK you can set collation at both the

Re: [Dev] How to make mySQL DB case sensitive

2015-10-15 Thread Denuwanthi De Silva
Hi Hasitha, For MySql DB the case sensitivity of the underlying OS also impacts[1]. For example in Linux mysql db are case sensitive, in OSX and windows not case sensitive. You might be able to configure 'lower_case_table_names' property as mentioned in [1] and apply case

Re: [Dev] How to make mySQL DB case sensitive

2015-10-15 Thread Mahesh Chinthaka
Hi Hasitha, Did you try with collation 'utf8_bin' ? CREATE DATABASE test_database CHARACTER SET utf8 COLLATE utf8_bin; On Thu, Oct 15, 2015 at 5:53 PM, Hasitha Hiranya wrote: > Hi Mahesh, > > Already tried it. > Gives me following error > > > [image: Inline image 1] > > I

Re: [Dev] [Integration test] testng.xml Reading Error (java.lang.reflect.InvocationTargetException)

2015-10-15 Thread Rajjaz Mohammed
Hi Nuwan, i solved that error as you mentioned and now its producing new error [3] but if i include proxy manually inside the ESB zip before start the esb test work fine. full log [4] [3] Failed tests: init(org.wso2.carbon.connector.ejb2XIntegrationTest):

[Dev] WSO2 Developer Studio 3.8.0 Released!

2015-10-15 Thread Kavith Lokuhewage
*WSO2 Developer Studio 3.8.0 Released!* WSO2 Developer Studio team is pleased to announce the release of the version 3.8.0 WSO2 Developer Studio. Developer Studio is the one-stop solution for almost all the development tools you will ever need for creating middle-ware applications based on the

Re: [Dev] Enabling security with user name token

2015-10-15 Thread Hasintha Indrajee
Are you calling the service with security headers in the request it self ?. On Wed, Oct 14, 2015 at 8:37 PM, Rajith Vitharana wrote: > Hi Hasintha, > > We are using carbon-identity 4.5.6 > > @Firzan we are using [1] as the policy file which contains the element you > mentioned

[Dev] [BPS] - Performance test - Long running

2015-10-15 Thread Chathurika De Silva
Hi While running the $subject on a manager, 2 worker cluster, noticed a dis-ambiguity reported in [1] Can you please provide an explanation on this? Your help is greatly appreciated. [1] https://wso2.org/jira/browse/BPS-912 Thank You Erandi -- *Chathurika Erandi* Software Engineer, WSO2 Inc.

Re: [Dev] [Integration test] testng.xml Reading Error (java.lang.reflect.InvocationTargetException)

2015-10-15 Thread Nuwan Wimalasekara
Hi Rajjaz, This might happen due to version mismatch of stub versions. Can you please check the ServiceAdminStub version in ESB and dependency version in test module. Thanks, Nuwanw On Thu, Oct 15, 2015 at 12:30 PM, Rajjaz Mohammed wrote: > Hi Nuwan, > i solved that error as

Re: [Dev] WSO2 MSS JAX-RS Runtime Features

2015-10-15 Thread Samiyuru Senarathne
Hi Sameera, Please find the details you requested in the mail "WSO2 MSS JAX-RS Runtime Design Decisions" in architecture list. Best Regards, Samiyuru On Thu, Oct 15, 2015 at 11:16 AM, Sameera Jayasoma wrote: > +1. Since we are providing a subset of JAX-RC specification, we

[Dev] WSO2 AppFactory 2.2.0 Milestone ​5​ Released!

2015-10-15 Thread Kasun De Silva
WSO2 AppFactory 2.2.0 Milestone ​5​ Released! WSO2 AppFactory team is pleased to announce the release of version 2.2.0-M​5 of the WSO2 App Factory. WSO2 App Factory is a multi-tenant, elastic and self-service enterprise platform that enables multiple project teams to collaboratively create, run

[Dev] Service provider (SaaS enabled) is not visible to tenants

2015-10-15 Thread Harshan Liyanage
Hi, I have created a service provider (with SaaS app option enabled) in super tenant space and configured Oauth settings. But when I try to get an oauth token for a user in another tenant domain (wso2.com) I'm getting the below NPE because application mgt components could not find the OAuth

Re: [Dev] [Private PaaS] Version command not compatible in OSX

2015-10-15 Thread Imesh Gunaratne
The below command works on both Ubuntu and OSX: head -50 pom.xml | awk -F'>' '/SNAPSHOT/ {print $2}' | awk -F'<' '{print $1}' Thanks On Thu, Oct 15, 2015 at 6:59 PM, Imesh Gunaratne wrote: > Hi Devs, > > The following command used in docker/build.sh [1] does not work in OSX: >

[Dev] [Private PaaS] Version command not compatible in OSX

2015-10-15 Thread Imesh Gunaratne
Hi Devs, The following command used in docker/build.sh [1] does not work in OSX: VERSION=`grep -oP '\K[^<]+' pom.xml| head -1` Shall we just use version text for the moment? [1] https://github.com/wso2/private-paas-cartridges/blob/master/wso2as/5.2.1/docker/build.sh Thanks -- *Imesh

Re: [Dev] [Private PaaS] Version command not compatible in OSX

2015-10-15 Thread Chamila De Alwis
I think we can use printf instead of print to get to strip the new lines and select by "version". head -50 pom.xml | awk -F'>' '/version/ {printf $2}' | awk -F'<' '{print $1}' Regards, Chamila de Alwis Committer and PMC Member - Apache Stratos Software Engineer | WSO2 | +94772207163 Blog:

Re: [Dev] [Architecture] [Connector + Inbound] RSS/Atom feed Connector + Inbound for WSO2 ESB

2015-10-15 Thread Rajjaz Mohammed
Hi Malaka, i sent the PR for both inbound and connector, and i finish the Documentation for inbound. Since connector only work with testing feed server documentation in pending stage. On 16 Oct 2015 08:40, "Malaka Silva" wrote: > Hi Rajjaz, > > Guess this is not added to the

Re: [Dev] [Architecture] [Connector + Inbound] RSS/Atom feed Connector + Inbound for WSO2 ESB

2015-10-15 Thread Malaka Silva
Hi Rajjaz, Guess this is not added to the store yet? Can you please give an update? On Thu, Aug 27, 2015 at 12:40 PM, Rajjaz Mohammed wrote: > Hi Mlaka, > Since ATOM is an IETF standard while RSS is not[1] I’m using Apache abdera > Framework[2] because its support with Atom

Re: [Dev] Enabling security with user name token

2015-10-15 Thread Rajith Vitharana
Hi Hasintha, I was able to resolve the error with help of ESB team, There was an error in our deployment flow as well. How ever when we use Soap UI, it still doesn't send the security headers itself, where as we have to manually add the security header to the request This was working fine with

Re: [Dev] [JS] how tosend headers with redirect in Javascript

2015-10-15 Thread Shani Ranasinghe
[+ WSO2 Dev] On Fri, Oct 16, 2015 at 10:12 AM, Shani Ranasinghe wrote: > > Hi, > > I have a requirement where I need to do a redirect from a Javascript, and > I need to send some headers along with it too. > > The scenario is as follows. > > From my jaggery layer, I use a JS.At

Re: [Dev] [BPS] - Performance test - Long running

2015-10-15 Thread Hasitha Aravinda
Hi Chathurika, On Fri, Oct 16, 2015 at 9:47 AM, Chathurika De Silva wrote: > Furthermore, following WARNING is observed frequently in the cluster at > the 4th day of the long running test > > TID: [-1] [] [2015-10-16 03:58:45,455] WARN >

Re: [Dev] [Architecture] [Connector + Inbound] RSS/Atom feed Connector + Inbound for WSO2 ESB

2015-10-15 Thread Malaka Silva
I think this is good for the initial version. Can you work with kathees and add this to the store. I guess this is in production ready state now. Have we done the load and long running tests? On Fri, Oct 16, 2015 at 9:10 AM, Rajjaz Mohammed wrote: > Hi Malaka, > i sent the PR

Re: [Dev] [BPS] - Performance test - Long running

2015-10-15 Thread Chathurika De Silva
Furthermore, following WARNING is observed frequently in the cluster at the 4th day of the long running test TID: [-1] [] [2015-10-16 03:58:45,455] WARN {org.apache.ode.scheduler.simple.SimpleScheduler} - Dispatching jobs with more than 5 minutes delay. Either the server was down for some time

Re: [Dev] [VOTE] Release WSO2 Carbon Kernel 4.4.2 RC2

2015-10-15 Thread Johann Nallathamby
Hi Kishanthan/Kernel Team, We have added the test case as well to the same PR. Also can we get CARBON-15505 merged? The PR for master is a very old PR which we have missed to review and merge. This mainly contains some reordering of fields in the UI to make it more consistent and reorder

[Dev] [EMM][JAGGERY]Jaggery XML parsing

2015-10-15 Thread Inosh Perera
Hi all, When working with SAML2Bearer grant type, in our Jaggery app, we need to extract the SAML Assertion from the SAML response, and we tried as bellow, var assertionXML = new XML(decode(assertion)); var extractedAssertion = assertionXML..*::["Assertion"].toXMLString(); When doing so, it

Re: [Dev] [BPS] - Performance test - Long running

2015-10-15 Thread Vinod Kavinda
Hi Chathurika, The first error you have reported is a known issue in hazelcast if you interrupted a node. Please refer [2] for more info. There is a fix given. No idea either we have included it in latest fixes of hazelcast. The second warning message is logged, when a batch of jobs are enqueued

Re: [Dev] [BPS] - Performance test - Long running

2015-10-15 Thread Vinod Kavinda
Hi Chathurika, Missed the last part. The required frequency for database cleanup depends on the request frequency and the space available for DB. So it is hard to give a recommended frequency. Regards, Vinod Kavinda On Fri, Oct 16, 2015 at 10:18 AM, Vinod Kavinda wrote: > Hi

Re: [Dev] Null pointer exception from api gateway component when logging as the tenant-admin

2015-10-15 Thread Harshan Liyanage
Hi all, We have put "synapse" as the gateway type. Changing it to none resolved the issue. Thanks for the feedback. Regards, Harshan Liyanage Software Engineer Mobile: *+94724423048* Email: hars...@wso2.com Blog : http://harshanliyanage.blogspot.com/ *WSO2, Inc. :** wso2.com *