[Dev] charon-v2.0.0-wso2v4 released to staging

2015-07-18 Thread Prasad Tissera
charon-v2.0.0-wso2v4 released to staging [1]  and verified the fixes.
Please review and move to public.

[1]. http://maven.wso2.org/nexus/content/repositories/orgwso2charon-005/

Regards,
Prasad.

-- 
Prasad Tissera
Software Engineer.
Mobile : +94777223444
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Building WSO2 API Manager 1.9.0 from Source

2015-07-18 Thread rohit
Hello All,

I'm trying to build API Manager from the source code. I have downloaded the
source code from :
https://github.com/wso2/carbon-apimgt/releases/tag/carbon-apimgt-v1.9.0
However I am facing a lot of issues when trying to build the code in
eclipse, a lot of maven issues as a result of which I am unable to proceed
and I am no maven expert. Could anyone please guide me step by step, on how
to build the product from source. I am trying to follow this link : 
https://docs.wso2.com/display/AM190/Building+from+Source, but its not
helping me in any way!
Thanks in advance.



--
View this message in context: 
http://wso2-oxygen-tank.10903.n7.nabble.com/Building-WSO2-API-Manager-1-9-0-from-Source-tp121905.html
Sent from the WSO2 Development mailing list archive at Nabble.com.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Please review and merge PR for IDENTITY-3380

2015-07-18 Thread Indunil Upeksha Rathnayake
Hi,

Please $subject. The PR[1] as the fix for the public JIRA [2].

[1] https://github.com/wso2/carbon-identity/pull/639
[2] https://wso2.org/jira/browse/IDENTITY-3380

Thanks and Regards
-- 
Indunil Upeksha Rathnayake
Software Engineer | WSO2 Inc
Emailindu...@wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Building WSO2 API Manager 1.9.0 from Source

2015-07-18 Thread rohit
Hi harsha,
Thanks for your prompt reply. I'm not pretty sure about my understanding of
patches. Ok here is what I have done. 
I had a requirement of sending an email whenever a user signs up in the API
Store, So what I did was extend the *UserSignUpWorkflowExecutor* class and
also wrote the logic for sending email to the user in my complete method
then depending on whether the status is approved or not I send an email. So
Initially I made a jar file and followed the procedure mentioned in  :
https://docs.wso2.com/display/AM190/Customizing+a+Workflow+Extension
But when I ran API manager, there was an exeption that the DTO class was not
found, which made me realize that in the sample code there was an
SubscriptionWorkflowDTO class that contained details about subscriptions
being created but there was no UserSignUpDTO class available. So Now I have
a sample class that extends the *UserSignUpWorkflowExecutor* class and i
have implemented the same kind of logic implented in
*UserSignUpWSWorkflowExecutor* class with an additional capability of
sending an email.
So in this scenario, will applying a patch do? If so will save me a lot of
time and effort. Can you suggest what should be the best approach



--
View this message in context: 
http://wso2-oxygen-tank.10903.n7.nabble.com/Building-WSO2-API-Manager-1-9-0-from-Source-tp121905p121914.html
Sent from the WSO2 Development mailing list archive at Nabble.com.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [CEP 3.1.0]

2015-07-18 Thread Sriskandarajah Suhothayan
Hi

Can you give more input?
Like what are you trying to do and any exceptions you encountered.

Suho

On Sat, Jul 18, 2015 at 10:05 AM, Nirmal Fernando nir...@wso2.com wrote:

 [Looping few CEP guys]

 On Sat, Jul 18, 2015 at 9:59 AM, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Nirmal,

 I am unable to import TimeStampSiddhiQueue in Siddhi 2.2.x. What could be
 the possible reason?

 Thanks
 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836




 --

 Thanks  regards,
 Nirmal

 Associate Technical Lead - Data Technologies Team, WSO2 Inc.
 Mobile: +94715779733
 Blog: http://nirmalfdo.blogspot.com/





-- 

*S. Suhothayan*
Technical Lead  Team Lead of WSO2 Complex Event Processor
 *WSO2 Inc. *http://wso2.com
* http://wso2.com/*
lean . enterprise . middleware


*cell: (+94) 779 756 757 | blog: http://suhothayan.blogspot.com/
http://suhothayan.blogspot.com/twitter: http://twitter.com/suhothayan
http://twitter.com/suhothayan | linked-in:
http://lk.linkedin.com/in/suhothayan http://lk.linkedin.com/in/suhothayan*
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Building WSO2 API Manager 1.9.0 from Source

2015-07-18 Thread Harsha Kumara
I think you can put this to the lib folder as suggest in the wiki page.
Since you are not doing any modification to the existing component. You no
need to patch.

On Sat, Jul 18, 2015 at 6:36 PM, rohit rohitab...@gmail.com wrote:

 Hi harsha,
 Thanks for your prompt reply. I'm not pretty sure about my understanding of
 patches. Ok here is what I have done.
 I had a requirement of sending an email whenever a user signs up in the API
 Store, So what I did was extend the *UserSignUpWorkflowExecutor* class and
 also wrote the logic for sending email to the user in my complete method
 then depending on whether the status is approved or not I send an email. So
 Initially I made a jar file and followed the procedure mentioned in  :
 https://docs.wso2.com/display/AM190/Customizing+a+Workflow+Extension
 But when I ran API manager, there was an exeption that the DTO class was
 not
 found, which made me realize that in the sample code there was an
 SubscriptionWorkflowDTO class that contained details about subscriptions
 being created but there was no UserSignUpDTO class available. So Now I have
 a sample class that extends the *UserSignUpWorkflowExecutor* class and i
 have implemented the same kind of logic implented in
 *UserSignUpWSWorkflowExecutor* class with an additional capability of
 sending an email.
 So in this scenario, will applying a patch do? If so will save me a lot of
 time and effort. Can you suggest what should be the best approach



 --
 View this message in context:
 http://wso2-oxygen-tank.10903.n7.nabble.com/Building-WSO2-API-Manager-1-9-0-from-Source-tp121905p121914.html
 Sent from the WSO2 Development mailing list archive at Nabble.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


Re: [Dev] [ES] UX team feedback on social UI

2015-07-18 Thread Udara Rathnayake
Hi Jerad,


On Sat, Jul 18, 2015 at 8:41 PM, Jerad Rutnam je...@wso2.com wrote:

 Hi Udara,

 I think something like this would be nice if it's for the asset.

This(like or dislike) is not for a asset(gadget or site) but for a user
review on a asset.


 And i'm not sure where that green icons are showing. I think we can have
 some simple single color like grey and give a low prominence to it. Because
 I believe it's not anything to highlight/prominent. WDYT?

At the moment we use a green colored thumbs up/down image to indicate
whether the logged in user liked or disliked particular user review.

​


 Regards,
 Jerad

 On Sat, Jul 18, 2015 at 7:15 PM, Udara Rathnayake uda...@wso2.com wrote:

 Hi UX team,

 There are two jiras[1][2] reported by QA team. These are more like UI/UX
 improvements hence we are looking for your input.

 I'm +1 to change the thumbs down image color. But I believe we don't need
 to bring complexity by putting a tooltip on these two simple yet self
 expressive icons.

 WDYT?

 [1] https://wso2.org/jira/browse/STORE-826
 [2] https://wso2.org/jira/browse/STORE-803

 Regards,
 UdaraR

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




 --
 *Jerad Rutnam*
 *Software Engineer*

 WSO2 Inc.
 lean | enterprise | middleware
 M : +94 77 959 1609 | E : je...@wso2.com | W : www.wso2.com

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


Re: [Dev] Building WSO2 API Manager 1.9.0 from Source

2015-07-18 Thread Harsha Kumara
Hi Rohit,

You will need java 1.6 and maven 3.0.x version to build the 1.9.0 source. I
think it's a issue with your maven installation. [1] and [2] will be
useful. Most of the time we prefer command line maven build. But you can
use inbuilt maven with IDE. Use correct maven and java version.

[1] -
http://stackoverflow.com/questions/8620127/maven-in-eclipse-step-by-step-installation
[2] -
http://javahowtobyiroshan.blogspot.com/2011/06/how-to-install-maven-in-ubuntu.html

Thanks,
Harsha

On Sat, Jul 18, 2015 at 3:48 PM, rohit rohitab...@gmail.com wrote:

 Hi Roshan,
 Well for starters, thats one of the issues :
 Plugin execution not covered by lifecycle configuration:
 org.apache.felix:maven-scr-plugin:1.7.2:scr (execution:
 generate-scr-scrdescriptor, phase: process-classes) pom.xml
 /org.wso2.carbon.apimgt.usage.clientMaven Project Build Lifecycle
 Mapping
 Problem
 Another one states that :
 maven-remote-resources-plugin (goal process) is ignored by m2e.
  pom.xml
 /org.wso2.carbon.apimgt.usage.publisher line 20 Maven Project Build
 Lifecycle Mapping Problem
 And many more missing artifacts!
 Its just so confusing to build it from source, If can please explain me in
 detail the process, I would be very greatful :)



 --
 View this message in context:
 http://wso2-oxygen-tank.10903.n7.nabble.com/Building-WSO2-API-Manager-1-9-0-from-Source-tp121905p121908.html
 Sent from the WSO2 Development mailing list archive at Nabble.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


Re: [Dev] Building WSO2 API Manager 1.9.0 from Source

2015-07-18 Thread rohit
Hi Roshan,
Well for starters, thats one of the issues : 
Plugin execution not covered by lifecycle configuration:
org.apache.felix:maven-scr-plugin:1.7.2:scr (execution:
generate-scr-scrdescriptor, phase: process-classes) pom.xml
/org.wso2.carbon.apimgt.usage.clientMaven Project Build Lifecycle Mapping
Problem
Another one states that : 
maven-remote-resources-plugin (goal process) is ignored by m2e.   pom.xml
/org.wso2.carbon.apimgt.usage.publisher line 20 Maven Project Build
Lifecycle Mapping Problem
And many more missing artifacts!
Its just so confusing to build it from source, If can please explain me in
detail the process, I would be very greatful :)



--
View this message in context: 
http://wso2-oxygen-tank.10903.n7.nabble.com/Building-WSO2-API-Manager-1-9-0-from-Source-tp121905p121908.html
Sent from the WSO2 Development mailing list archive at Nabble.com.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [ES] UX team feedback on social UI

2015-07-18 Thread Udara Rathnayake
Hi UX team,

There are two jiras[1][2] reported by QA team. These are more like UI/UX
improvements hence we are looking for your input.

I'm +1 to change the thumbs down image color. But I believe we don't need
to bring complexity by putting a tooltip on these two simple yet self
expressive icons.

WDYT?

[1] https://wso2.org/jira/browse/STORE-826
[2] https://wso2.org/jira/browse/STORE-803

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


Re: [Dev] [CEP 3.1.0]

2015-07-18 Thread Pranavan Theivendiram
Hi Suho,

I am trying to write a WindowProcessor for stratos. (Basically it is a
sliding window.)
I am trying to adopt the following class implementation.[1]
[1] -
https://github.com/wso2/siddhi/blob/2.2.x/modules/siddhi-core/src/main/java/org/wso2/siddhi/core/query/processor/window/TimeWindowProcessor.java

The problem that I am facing is that I am unable to import the
TimeStampSiddhiQueue.
What could be the possible reason for this?

Thanks

*T. Pranavan*
*BSc Eng Undergraduate| Department of Computer Science  Engineering
,University of Moratuwa*
*Mobile| *0775136836

On 18 July 2015 at 19:48, Sriskandarajah Suhothayan s...@wso2.com wrote:

 Hi

 Can you give more input?
 Like what are you trying to do and any exceptions you encountered.

 Suho

 On Sat, Jul 18, 2015 at 10:05 AM, Nirmal Fernando nir...@wso2.com wrote:

 [Looping few CEP guys]

 On Sat, Jul 18, 2015 at 9:59 AM, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Nirmal,

 I am unable to import TimeStampSiddhiQueue in Siddhi 2.2.x. What could
 be the possible reason?

 Thanks
 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836




 --

 Thanks  regards,
 Nirmal

 Associate Technical Lead - Data Technologies Team, WSO2 Inc.
 Mobile: +94715779733
 Blog: http://nirmalfdo.blogspot.com/





 --

 *S. Suhothayan*
 Technical Lead  Team Lead of WSO2 Complex Event Processor
  *WSO2 Inc. *http://wso2.com
 * http://wso2.com/*
 lean . enterprise . middleware


 *cell: (+94) 779 756 757 %28%2B94%29%20779%20756%20757 | blog:
 http://suhothayan.blogspot.com/ http://suhothayan.blogspot.com/twitter:
 http://twitter.com/suhothayan http://twitter.com/suhothayan | linked-in:
 http://lk.linkedin.com/in/suhothayan http://lk.linkedin.com/in/suhothayan*

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


Re: [Dev] Building WSO2 API Manager 1.9.0 from Source

2015-07-18 Thread Roshan Wijesena
Hi Rohith,

What are the maven errors?

Regards
Roshan.

On Sat, Jul 18, 2015 at 2:46 PM, rohit rohitab...@gmail.com wrote:

 Hello All,

 I'm trying to build API Manager from the source code. I have downloaded the
 source code from :
 https://github.com/wso2/carbon-apimgt/releases/tag/carbon-apimgt-v1.9.0
 However I am facing a lot of issues when trying to build the code in
 eclipse, a lot of maven issues as a result of which I am unable to proceed
 and I am no maven expert. Could anyone please guide me step by step, on how
 to build the product from source. I am trying to follow this link :
 https://docs.wso2.com/display/AM190/Building+from+Source, but its not
 helping me in any way!
 Thanks in advance.



 --
 View this message in context:
 http://wso2-oxygen-tank.10903.n7.nabble.com/Building-WSO2-API-Manager-1-9-0-from-Source-tp121905.html
 Sent from the WSO2 Development mailing list archive at Nabble.com.
 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




-- 
Roshan Wijesena.
Senior Software Engineer-WSO2 Inc.
Mobile: *+94719154640*
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] Building WSO2 API Manager 1.9.0 from Source

2015-07-18 Thread Harsha Kumara
Document in [1] will be helpful. Yeap it's better to use 1.6 and maven
3.0.x. Please check your maven installation again.

And if you do change for a existing component, it's nor mandatory to build
the product from source. You can apply it as a patch[2].

[1] - https://docs.wso2.com/display/Carbon420/Installation+Prerequisites
[2] - https://docs.wso2.com/display/Carbon420/Applying+a+Patch+to+the+Kernel

Thanks,
Harsha

On Sat, Jul 18, 2015 at 5:16 PM, rohit rohitab...@gmail.com wrote:

 Hi harsha,
 I'm currently using java 1.7 and maven 3.2.1. So you mean to say that I
 need
 to use java 1.6 and maven 3.0.x?
 Also are there any documentations related to building from source code, I
 am
 saying this because I have made some changes to the source code and need to
 build it and later on add some of the mentioned workflows in the
 documentation to the product. thanks




 --
 View this message in context:
 http://wso2-oxygen-tank.10903.n7.nabble.com/Building-WSO2-API-Manager-1-9-0-from-Source-tp121905p121910.html
 Sent from the WSO2 Development mailing list archive at Nabble.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


[Dev] [AF] Problem with building CAR files in jenkins with custom repo location

2015-07-18 Thread Danushka Fernando
Hi All

Currently I am working on [1]. While working on it I faced $subject.

In AF we are using jenkins as the default build server and for each tenant
we point to a custom repository (maven repository) location so all tenant
artifacts are installed their own repository. But when I build the
Resources Project with these settings it install the artifacts to the basic
.m2 folder of the afpuppet user (owner of the jenkins process). I guess
this is a bug in some plugin we developed. Can some one shed some light on
this since I am stuck on this.


[1] [Architecture] [AF] Adding CAR application type to App Factory

Thanks  Regards
Danushka Fernando
Senior Software Engineer
WSO2 inc. http://wso2.com/
Mobile : +94716332729
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Architecture] WSO2 Data Analytics Server 3.0.0 Beta Released!

2015-07-18 Thread Praneesha Chandrasiri
We can put a note in the doc to mention that we need to have a source of
data as a prerequisite for the gadget generation wizard, and link it to the
page where content on creating streams is documented.

On Mon, Jul 13, 2015 at 8:33 AM, Dunith Dhanushka dun...@wso2.com wrote:

 Hi Manoj,

 What we meant by the term 'datasource' is any object that provides data
 for the visualization gadget. According to the dashboard context there are
 two datasources types, DAL tables and event streams.
 I agree with that  the wording 'datasource' is already associated with
 Carbon datasources and quite misleading in the dashboard's context.
 Probably we can rename it to something else and add some context sensitive
 help text to guide users.

 Thanks,
 Dunith

 On Sat, Jul 11, 2015 at 2:46 AM, Gimantha Bandara giman...@wso2.com
 wrote:

 [Adding Dunith]

 On Sat, Jul 11, 2015 at 2:44 AM, Manoj Kumara ma...@wso2.com wrote:

 Hi Gimantha,

 Previously I thought its related to the datasouces we are define instead
 of the streams we create. Anyway I think the 'datasource' term is bit
 misleading WDYT ?

 Thanks for the support.

 Regards,
 Manoj


 *Manoj Kumara |* Senior Software Engineer
  Inc. *| **lean. enterprise. middleware.*
 #20, Palm Grove, Colombo 03, Sri Lanka
 *Mobile:* +94 713 448188 *|** Work:* +94 112 145345


 On Fri, Jul 10, 2015 at 3:25 PM, Gimantha Bandara giman...@wso2.com
 wrote:

 Hi Manoj,

 Can you check if you can see the tables through message console in
 management console under Interactive Analytics?

 On Sat, Jul 11, 2015 at 1:43 AM, Manoj Kumara ma...@wso2.com wrote:

 Hi Gokul,

 I tried create a gadget but it dose not show the available datasouces.
 Reported a issue [2].

 [1]
 https://docs.wso2.com/display/DAS300/Adding+Gadgets+to+a+Layout#AddingGadgetstoaLayout-Selectingadatasource
 [2] https://wso2.org/jira/browse/BAM-2094

 Regards,
 Manoj


 *Manoj Kumara |* Senior Software Engineer
  Inc. *| **lean. enterprise. middleware.*
 #20, Palm Grove, Colombo 03, Sri Lanka
 *Mobile:* +94 713 448188 *|** Work:* +94 112 145345


 On Wed, Jul 8, 2015 at 10:10 AM, Gokul Balakrishnan go...@wso2.com
 wrote:

 Hi all,

 The WSO2 DAS team is pleased to announce the beta release of WSO2 DAS
 3.0.0. The distribution is available for download here
 https://svn.wso2.org/repos/wso2/people/inosh/wso2das-3.0.0-BETA.zip
 .

 The release includes the following bug fixes, improvements, and tasks:

 Bug Fixes

- [BAM-1962 https://wso2.org/jira/browse/BAM-1962] - License
issue in org.wso2.carbon.analytics.message.tracer.handler.feature
- [BAM-2033 https://wso2.org/jira/browse/BAM-2033] - Graceful
Shutdown and Graceful Restart not working
- [BAM-2034 https://wso2.org/jira/browse/BAM-2034] - WSO2 DAS
doesnt work properly when started with an offset
- [BAM-2035 https://wso2.org/jira/browse/BAM-2035] - Event
Stream simulator doesn't work and throwing 
 java.lang.ClassCastException in
console
- [BAM-2036 https://wso2.org/jira/browse/BAM-2036] - Date and
other fields are showing as null in application and system logs
- [BAM-2037 https://wso2.org/jira/browse/BAM-2037] - Cannot
login to the Dashboard when server start with offset
- [BAM-2038 https://wso2.org/jira/browse/BAM-2038] - Table
Name, By Date Range, By Query fields are getting moved when select 
 the By
Facet values
- [BAM-2043 https://wso2.org/jira/browse/BAM-2043] - Need to
change the deployment directory folder structure
- [BAM-2045 https://wso2.org/jira/browse/BAM-2045] - NPE when
starting Gadget generation wizard
- [BAM-2046 https://wso2.org/jira/browse/BAM-2046] - Persist
attribute ticks are not retain in the UI
- [BAM-2047 https://wso2.org/jira/browse/BAM-2047] - Unused
folders inside dep/server folder
- [BAM-2050 https://wso2.org/jira/browse/BAM-2050] - Unable to
start two DAS instances in the same machine with offset
- [BAM-2053 https://wso2.org/jira/browse/BAM-2053] - [UI] Data
purging lands browser on blank page
- [BAM-2054 https://wso2.org/jira/browse/BAM-2054] - Purging
Data Failed with OutOfMemoryError
- [BAM-2055 https://wso2.org/jira/browse/BAM-2055] -
[Intermittent] Purging fails with BatchUpdateException on MySQL
- [BAM-2056 https://wso2.org/jira/browse/BAM-2056] - [UI]
Adding JMX Server profile fails
- [BAM-2057 https://wso2.org/jira/browse/BAM-2057] - Cannot
update the Analytic Script information, when added a wrong cron job 
 value
- [BAM-2058 https://wso2.org/jira/browse/BAM-2058] - Spark
script was not deployed when included in CAR
- [BAM-2060 https://wso2.org/jira/browse/BAM-2060] - Cannot
retrieve table data by giving 'from' 'to' time-stamp
- [BAM-2065 https://wso2.org/jira/browse/BAM-2065] - Event
Tracer does not work properly
- [BAM-2068 https://wso2.org/jira/browse/BAM-2068] - New
Dashboard pages get duplicate content as the first page
- [BAM-2071 

Re: [Dev] [ES] UX team feedback on social UI

2015-07-18 Thread Jerad Rutnam
Hi Udara,

I think something like this would be nice if it's for the asset.
And i'm not sure where that green icons are showing. I think we can have
some simple single color like grey and give a low prominence to it. Because
I believe it's not anything to highlight/prominent. WDYT?

Regards,
Jerad

On Sat, Jul 18, 2015 at 7:15 PM, Udara Rathnayake uda...@wso2.com wrote:

 Hi UX team,

 There are two jiras[1][2] reported by QA team. These are more like UI/UX
 improvements hence we are looking for your input.

 I'm +1 to change the thumbs down image color. But I believe we don't need
 to bring complexity by putting a tooltip on these two simple yet self
 expressive icons.

 WDYT?

 [1] https://wso2.org/jira/browse/STORE-826
 [2] https://wso2.org/jira/browse/STORE-803

 Regards,
 UdaraR

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




-- 
*Jerad Rutnam*
*Software Engineer*

WSO2 Inc.
lean | enterprise | middleware
M : +94 77 959 1609 | E : je...@wso2.com | W : www.wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Building WSO2 API Manager 1.9.0 from Source

2015-07-18 Thread rohit
Hi harsha,
I'm currently using java 1.7 and maven 3.2.1. So you mean to say that I need
to use java 1.6 and maven 3.0.x?
Also are there any documentations related to building from source code, I am
saying this because I have made some changes to the source code and need to
build it and later on add some of the mentioned workflows in the
documentation to the product. thanks 




--
View this message in context: 
http://wso2-oxygen-tank.10903.n7.nabble.com/Building-WSO2-API-Manager-1-9-0-from-Source-tp121905p121910.html
Sent from the WSO2 Development mailing list archive at Nabble.com.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [CEP 3.1.0]

2015-07-18 Thread Pranavan Theivendiram
Hi Suho,

Looks like a problem with the siddhi core version that stratos is using
right. ? ( 2.0 vs 2.2 )

Thanks

*T. Pranavan*
*BSc Eng Undergraduate| Department of Computer Science  Engineering
,University of Moratuwa*
*Mobile| *0775136836

On 18 July 2015 at 20:26, Pranavan Theivendiram pranavan...@cse.mrt.ac.lk
wrote:

 Hi Suho,

 I am trying to write a WindowProcessor for stratos. (Basically it is a
 sliding window.)
 I am trying to adopt the following class implementation.[1]
 [1] -
 https://github.com/wso2/siddhi/blob/2.2.x/modules/siddhi-core/src/main/java/org/wso2/siddhi/core/query/processor/window/TimeWindowProcessor.java

 The problem that I am facing is that I am unable to import the
 TimeStampSiddhiQueue.
 What could be the possible reason for this?

 Thanks

 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836

 On 18 July 2015 at 19:48, Sriskandarajah Suhothayan s...@wso2.com wrote:

 Hi

 Can you give more input?
 Like what are you trying to do and any exceptions you encountered.

 Suho

 On Sat, Jul 18, 2015 at 10:05 AM, Nirmal Fernando nir...@wso2.com
 wrote:

 [Looping few CEP guys]

 On Sat, Jul 18, 2015 at 9:59 AM, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Nirmal,

 I am unable to import TimeStampSiddhiQueue in Siddhi 2.2.x. What could
 be the possible reason?

 Thanks
 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836




 --

 Thanks  regards,
 Nirmal

 Associate Technical Lead - Data Technologies Team, WSO2 Inc.
 Mobile: +94715779733
 Blog: http://nirmalfdo.blogspot.com/





 --

 *S. Suhothayan*
 Technical Lead  Team Lead of WSO2 Complex Event Processor
  *WSO2 Inc. *http://wso2.com
 * http://wso2.com/*
 lean . enterprise . middleware


 *cell: (+94) 779 756 757 %28%2B94%29%20779%20756%20757 | blog:
 http://suhothayan.blogspot.com/ http://suhothayan.blogspot.com/twitter:
 http://twitter.com/suhothayan http://twitter.com/suhothayan | linked-in:
 http://lk.linkedin.com/in/suhothayan http://lk.linkedin.com/in/suhothayan*



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


Re: [Dev] [CEP 3.1.0]

2015-07-18 Thread Sriskandarajah Suhothayan
Can you check the version of siddhi thats used in stratos.
Then we can help you to find the correct source

Suho

On Sat, Jul 18, 2015 at 8:51 PM, Pranavan Theivendiram 
pranavan...@cse.mrt.ac.lk wrote:

 Hi Suho,

 Looks like a problem with the siddhi core version that stratos is using
 right. ? ( 2.0 vs 2.2 )

 Thanks

 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836

 On 18 July 2015 at 20:26, Pranavan Theivendiram pranavan...@cse.mrt.ac.lk
  wrote:

 Hi Suho,

 I am trying to write a WindowProcessor for stratos. (Basically it is a
 sliding window.)
 I am trying to adopt the following class implementation.[1]
 [1] -
 https://github.com/wso2/siddhi/blob/2.2.x/modules/siddhi-core/src/main/java/org/wso2/siddhi/core/query/processor/window/TimeWindowProcessor.java

 The problem that I am facing is that I am unable to import the
 TimeStampSiddhiQueue.
 What could be the possible reason for this?

 Thanks

 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836

 On 18 July 2015 at 19:48, Sriskandarajah Suhothayan s...@wso2.com
 wrote:

 Hi

 Can you give more input?
 Like what are you trying to do and any exceptions you encountered.

 Suho

 On Sat, Jul 18, 2015 at 10:05 AM, Nirmal Fernando nir...@wso2.com
 wrote:

 [Looping few CEP guys]

 On Sat, Jul 18, 2015 at 9:59 AM, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Nirmal,

 I am unable to import TimeStampSiddhiQueue in Siddhi 2.2.x. What could
 be the possible reason?

 Thanks
 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836




 --

 Thanks  regards,
 Nirmal

 Associate Technical Lead - Data Technologies Team, WSO2 Inc.
 Mobile: +94715779733
 Blog: http://nirmalfdo.blogspot.com/





 --

 *S. Suhothayan*
 Technical Lead  Team Lead of WSO2 Complex Event Processor
  *WSO2 Inc. *http://wso2.com
 * http://wso2.com/*
 lean . enterprise . middleware


 *cell: (+94) 779 756 757 %28%2B94%29%20779%20756%20757 | blog:
 http://suhothayan.blogspot.com/ http://suhothayan.blogspot.com/twitter:
 http://twitter.com/suhothayan http://twitter.com/suhothayan | linked-in:
 http://lk.linkedin.com/in/suhothayan http://lk.linkedin.com/in/suhothayan*






-- 

*S. Suhothayan*
Technical Lead  Team Lead of WSO2 Complex Event Processor
 *WSO2 Inc. *http://wso2.com
* http://wso2.com/*
lean . enterprise . middleware


*cell: (+94) 779 756 757 | blog: http://suhothayan.blogspot.com/
http://suhothayan.blogspot.com/twitter: http://twitter.com/suhothayan
http://twitter.com/suhothayan | linked-in:
http://lk.linkedin.com/in/suhothayan http://lk.linkedin.com/in/suhothayan*
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Building WSO2 API Manager 1.9.0 from Source

2015-07-18 Thread Harsha Kumara
Hi Rohit,

If you made some changes to a component, you will need to build it and
place in patches directory. You no need of building the product, but just
build the component that you made the change and add it as a patch.

Thanks,
Harsha
On Sat, Jul 18, 2015 at 11:37 PM, Rohit Abraham rohitab...@gmail.com
wrote:

 Hi harsha,
 I did make a jar file of the class that extends the UserSignUpWorkflowExecutor
 but when i ran API Manager after that it said the DTO Class could not be
 found and that happens because there is no default UserSignUpDTO in the API
 Manager implementation that contains user sign up details. So in such a
 case I need to make changes to source code itself and build that right?
 Or is there any better approach to the problem?
 Thanks in advance!

 On Sat, Jul 18, 2015 at 8:18 PM, Harsha Kumara hars...@wso2.com wrote:

 I think you can put this to the lib folder as suggest in the wiki page.
 Since you are not doing any modification to the existing component. You no
 need to patch.

 On Sat, Jul 18, 2015 at 6:36 PM, rohit rohitab...@gmail.com wrote:

 Hi harsha,
 Thanks for your prompt reply. I'm not pretty sure about my understanding
 of
 patches. Ok here is what I have done.
 I had a requirement of sending an email whenever a user signs up in the
 API
 Store, So what I did was extend the *UserSignUpWorkflowExecutor* class
 and
 also wrote the logic for sending email to the user in my complete method
 then depending on whether the status is approved or not I send an email.
 So
 Initially I made a jar file and followed the procedure mentioned in  :
 https://docs.wso2.com/display/AM190/Customizing+a+Workflow+Extension
 But when I ran API manager, there was an exeption that the DTO class was
 not
 found, which made me realize that in the sample code there was an
 SubscriptionWorkflowDTO class that contained details about subscriptions
 being created but there was no UserSignUpDTO class available. So Now I
 have
 a sample class that extends the *UserSignUpWorkflowExecutor* class and i
 have implemented the same kind of logic implented in
 *UserSignUpWSWorkflowExecutor* class with an additional capability of
 sending an email.
 So in this scenario, will applying a patch do? If so will save me a lot
 of
 time and effort. Can you suggest what should be the best approach



 --
 View this message in context:
 http://wso2-oxygen-tank.10903.n7.nabble.com/Building-WSO2-API-Manager-1-9-0-from-Source-tp121905p121914.html
 Sent from the WSO2 Development mailing list archive at Nabble.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





-- 
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


Re: [Dev] [CEP 3.1.0]

2015-07-18 Thread Pranavan Theivendiram
Hi Suho,

The version is 2.0.0-wso2v5. (In Stratos CEP extension)

Thanks

*T. Pranavan*
*BSc Eng Undergraduate| Department of Computer Science  Engineering
,University of Moratuwa*
*Mobile| *0775136836

On 18 July 2015 at 21:32, Sriskandarajah Suhothayan s...@wso2.com wrote:

 Can you check the version of siddhi thats used in stratos.
 Then we can help you to find the correct source

 Suho

 On Sat, Jul 18, 2015 at 8:51 PM, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Suho,

 Looks like a problem with the siddhi core version that stratos is using
 right. ? ( 2.0 vs 2.2 )

 Thanks

 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836

 On 18 July 2015 at 20:26, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Suho,

 I am trying to write a WindowProcessor for stratos. (Basically it is a
 sliding window.)
 I am trying to adopt the following class implementation.[1]
 [1] -
 https://github.com/wso2/siddhi/blob/2.2.x/modules/siddhi-core/src/main/java/org/wso2/siddhi/core/query/processor/window/TimeWindowProcessor.java

 The problem that I am facing is that I am unable to import the
 TimeStampSiddhiQueue.
 What could be the possible reason for this?

 Thanks

 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836

 On 18 July 2015 at 19:48, Sriskandarajah Suhothayan s...@wso2.com
 wrote:

 Hi

 Can you give more input?
 Like what are you trying to do and any exceptions you encountered.

 Suho

 On Sat, Jul 18, 2015 at 10:05 AM, Nirmal Fernando nir...@wso2.com
 wrote:

 [Looping few CEP guys]

 On Sat, Jul 18, 2015 at 9:59 AM, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Nirmal,

 I am unable to import TimeStampSiddhiQueue in Siddhi 2.2.x. What
 could be the possible reason?

 Thanks
 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836




 --

 Thanks  regards,
 Nirmal

 Associate Technical Lead - Data Technologies Team, WSO2 Inc.
 Mobile: +94715779733
 Blog: http://nirmalfdo.blogspot.com/





 --

 *S. Suhothayan*
 Technical Lead  Team Lead of WSO2 Complex Event Processor
  *WSO2 Inc. *http://wso2.com
 * http://wso2.com/*
 lean . enterprise . middleware


 *cell: (+94) 779 756 757 %28%2B94%29%20779%20756%20757 | blog:
 http://suhothayan.blogspot.com/ http://suhothayan.blogspot.com/twitter:
 http://twitter.com/suhothayan http://twitter.com/suhothayan | linked-in:
 http://lk.linkedin.com/in/suhothayan 
 http://lk.linkedin.com/in/suhothayan*






 --

 *S. Suhothayan*
 Technical Lead  Team Lead of WSO2 Complex Event Processor
  *WSO2 Inc. *http://wso2.com
 * http://wso2.com/*
 lean . enterprise . middleware


 *cell: (+94) 779 756 757 %28%2B94%29%20779%20756%20757 | blog:
 http://suhothayan.blogspot.com/ http://suhothayan.blogspot.com/twitter:
 http://twitter.com/suhothayan http://twitter.com/suhothayan | linked-in:
 http://lk.linkedin.com/in/suhothayan http://lk.linkedin.com/in/suhothayan*

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


Re: [Dev] [CEP 3.1.0]

2015-07-18 Thread Sriskandarajah Suhothayan
Please create the extension from the source build from
https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/dependencies/commons/siddhi/2.0.0-wso2v5/

Suho

On Sat, Jul 18, 2015 at 9:38 PM, Pranavan Theivendiram 
pranavan...@cse.mrt.ac.lk wrote:

 Hi Suho,

 The version is 2.0.0-wso2v5. (In Stratos CEP extension)

 Thanks

 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836

 On 18 July 2015 at 21:32, Sriskandarajah Suhothayan s...@wso2.com wrote:

 Can you check the version of siddhi thats used in stratos.
 Then we can help you to find the correct source

 Suho

 On Sat, Jul 18, 2015 at 8:51 PM, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Suho,

 Looks like a problem with the siddhi core version that stratos is using
 right. ? ( 2.0 vs 2.2 )

 Thanks

 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836

 On 18 July 2015 at 20:26, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Suho,

 I am trying to write a WindowProcessor for stratos. (Basically it is a
 sliding window.)
 I am trying to adopt the following class implementation.[1]
 [1] -
 https://github.com/wso2/siddhi/blob/2.2.x/modules/siddhi-core/src/main/java/org/wso2/siddhi/core/query/processor/window/TimeWindowProcessor.java

 The problem that I am facing is that I am unable to import the
 TimeStampSiddhiQueue.
 What could be the possible reason for this?

 Thanks

 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836

 On 18 July 2015 at 19:48, Sriskandarajah Suhothayan s...@wso2.com
 wrote:

 Hi

 Can you give more input?
 Like what are you trying to do and any exceptions you encountered.

 Suho

 On Sat, Jul 18, 2015 at 10:05 AM, Nirmal Fernando nir...@wso2.com
 wrote:

 [Looping few CEP guys]

 On Sat, Jul 18, 2015 at 9:59 AM, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Nirmal,

 I am unable to import TimeStampSiddhiQueue in Siddhi 2.2.x. What
 could be the possible reason?

 Thanks
 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836




 --

 Thanks  regards,
 Nirmal

 Associate Technical Lead - Data Technologies Team, WSO2 Inc.
 Mobile: +94715779733
 Blog: http://nirmalfdo.blogspot.com/





 --

 *S. Suhothayan*
 Technical Lead  Team Lead of WSO2 Complex Event Processor
  *WSO2 Inc. *http://wso2.com
 * http://wso2.com/*
 lean . enterprise . middleware


 *cell: (+94) 779 756 757 %28%2B94%29%20779%20756%20757 | blog:
 http://suhothayan.blogspot.com/ http://suhothayan.blogspot.com/twitter:
 http://twitter.com/suhothayan http://twitter.com/suhothayan | linked-in:
 http://lk.linkedin.com/in/suhothayan 
 http://lk.linkedin.com/in/suhothayan*






 --

 *S. Suhothayan*
 Technical Lead  Team Lead of WSO2 Complex Event Processor
  *WSO2 Inc. *http://wso2.com
 * http://wso2.com/*
 lean . enterprise . middleware


 *cell: (+94) 779 756 757 %28%2B94%29%20779%20756%20757 | blog:
 http://suhothayan.blogspot.com/ http://suhothayan.blogspot.com/twitter:
 http://twitter.com/suhothayan http://twitter.com/suhothayan | linked-in:
 http://lk.linkedin.com/in/suhothayan http://lk.linkedin.com/in/suhothayan*





-- 

*S. Suhothayan*
Technical Lead  Team Lead of WSO2 Complex Event Processor
 *WSO2 Inc. *http://wso2.com
* http://wso2.com/*
lean . enterprise . middleware


*cell: (+94) 779 756 757 | blog: http://suhothayan.blogspot.com/
http://suhothayan.blogspot.com/twitter: http://twitter.com/suhothayan
http://twitter.com/suhothayan | linked-in:
http://lk.linkedin.com/in/suhothayan http://lk.linkedin.com/in/suhothayan*
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [CEP 3.1.0]

2015-07-18 Thread Pranavan Theivendiram
Thanks suho.

*T. Pranavan*
*BSc Eng Undergraduate| Department of Computer Science  Engineering
,University of Moratuwa*
*Mobile| *0775136836

On 18 July 2015 at 22:23, Sriskandarajah Suhothayan s...@wso2.com wrote:

 Please create the extension from the source build from

 https://svn.wso2.org/repos/wso2/carbon/platform/branches/turing/dependencies/commons/siddhi/2.0.0-wso2v5/

 Suho

 On Sat, Jul 18, 2015 at 9:38 PM, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Suho,

 The version is 2.0.0-wso2v5. (In Stratos CEP extension)

 Thanks

 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836

 On 18 July 2015 at 21:32, Sriskandarajah Suhothayan s...@wso2.com
 wrote:

 Can you check the version of siddhi thats used in stratos.
 Then we can help you to find the correct source

 Suho

 On Sat, Jul 18, 2015 at 8:51 PM, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Suho,

 Looks like a problem with the siddhi core version that stratos is using
 right. ? ( 2.0 vs 2.2 )

 Thanks

 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836

 On 18 July 2015 at 20:26, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Suho,

 I am trying to write a WindowProcessor for stratos. (Basically it is a
 sliding window.)
 I am trying to adopt the following class implementation.[1]
 [1] -
 https://github.com/wso2/siddhi/blob/2.2.x/modules/siddhi-core/src/main/java/org/wso2/siddhi/core/query/processor/window/TimeWindowProcessor.java

 The problem that I am facing is that I am unable to import the
 TimeStampSiddhiQueue.
 What could be the possible reason for this?

 Thanks

 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science  Engineering
 ,University of Moratuwa*
 *Mobile| *0775136836

 On 18 July 2015 at 19:48, Sriskandarajah Suhothayan s...@wso2.com
 wrote:

 Hi

 Can you give more input?
 Like what are you trying to do and any exceptions you encountered.

 Suho

 On Sat, Jul 18, 2015 at 10:05 AM, Nirmal Fernando nir...@wso2.com
 wrote:

 [Looping few CEP guys]

 On Sat, Jul 18, 2015 at 9:59 AM, Pranavan Theivendiram 
 pranavan...@cse.mrt.ac.lk wrote:

 Hi Nirmal,

 I am unable to import TimeStampSiddhiQueue in Siddhi 2.2.x. What
 could be the possible reason?

 Thanks
 *T. Pranavan*
 *BSc Eng Undergraduate| Department of Computer Science 
 Engineering ,University of Moratuwa*
 *Mobile| *0775136836




 --

 Thanks  regards,
 Nirmal

 Associate Technical Lead - Data Technologies Team, WSO2 Inc.
 Mobile: +94715779733
 Blog: http://nirmalfdo.blogspot.com/





 --

 *S. Suhothayan*
 Technical Lead  Team Lead of WSO2 Complex Event Processor
  *WSO2 Inc. *http://wso2.com
 * http://wso2.com/*
 lean . enterprise . middleware


 *cell: (+94) 779 756 757 %28%2B94%29%20779%20756%20757 | blog:
 http://suhothayan.blogspot.com/ http://suhothayan.blogspot.com/twitter:
 http://twitter.com/suhothayan http://twitter.com/suhothayan | 
 linked-in:
 http://lk.linkedin.com/in/suhothayan 
 http://lk.linkedin.com/in/suhothayan*






 --

 *S. Suhothayan*
 Technical Lead  Team Lead of WSO2 Complex Event Processor
  *WSO2 Inc. *http://wso2.com
 * http://wso2.com/*
 lean . enterprise . middleware


 *cell: (+94) 779 756 757 %28%2B94%29%20779%20756%20757 | blog:
 http://suhothayan.blogspot.com/ http://suhothayan.blogspot.com/twitter:
 http://twitter.com/suhothayan http://twitter.com/suhothayan | linked-in:
 http://lk.linkedin.com/in/suhothayan http://lk.linkedin.com/in/suhothayan*





 --

 *S. Suhothayan*
 Technical Lead  Team Lead of WSO2 Complex Event Processor
  *WSO2 Inc. *http://wso2.com
 * http://wso2.com/*
 lean . enterprise . middleware


 *cell: (+94) 779 756 757 %28%2B94%29%20779%20756%20757 | blog:
 http://suhothayan.blogspot.com/ http://suhothayan.blogspot.com/twitter:
 http://twitter.com/suhothayan http://twitter.com/suhothayan | linked-in:
 http://lk.linkedin.com/in/suhothayan http://lk.linkedin.com/in/suhothayan*

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


Re: [Dev] Can't login as tenant in publisher

2015-07-18 Thread Tanya Madurapperuma
Hi Shazni,

We introduced the useTenantKey attribute because of recent changes of IS
components.Please refer [1] for more details.

[1] https://wso2.org/jira/browse/STORE-454

Thanks,
Tanya

On Fri, Jul 17, 2015 at 10:42 PM, Udara Rathnayake uda...@wso2.com wrote:

 Hi Lalaji/Dhanuka/Harsha,

 Have you guys tried out tenant scenarios with the new extension model?
 Asking this to narrow down possible issues since we haven't encounted this
 issue within ES pack.

 Regards,
 UdaraR

 On Sat, Jul 18, 2015 at 5:33 AM, Shazni Nazeer sha...@wso2.com wrote:

 Hi Sameera,

 Thanks for the response. The problem in concern is to have the ability to
 login into tenants in the default pack. Setting useTenantKey true
 manually also solves the problem of inability to login to tenants (But
 not the issue of inability to login to publisher after an unsuccessful
 attempt, needing a restart) Therefore, appreciate if this could be
 incorporated into es-feature by default, so that either the above mentioned 
 useTenantKey attribute set
 to true or with your above mentioned work around.

 Shazni Nazeer
 Mob : +94 37331
 LinkedIn : http://lk.linkedin.com/in/shazninazeer
 Blog : http://shazninazeer.blogspot.com

 On Fri, Jul 17, 2015 at 9:12 PM, Sameera Medagammaddegedara 
 samee...@wso2.com wrote:

 Hi Shazni,

 As a temporary work around please set the active authentication method
 to basic in order to continue with development and QA. You can do this by:

 1. Edit the publisher.json and change activeMethod to basic [1]
 2. Edit the store.json and change activeMethod to basic [2]

 *Reference*
 [1]
 https://github.com/wso2/carbon-store/blob/master/apps/publisher/config/publisher.json#L50
 [2]
 https://github.com/wso2/carbon-store/blob/master/apps/store/config/store.json#L27

 On Fri, Jul 17, 2015 at 10:34 AM, Shazni Nazeer sha...@wso2.com wrote:

 Hi ES-team,

 In G-Reg publisher default pack, we are unable to login as a tenant. We
 get the exception shown in [3] in the console. And subsequently it's not
 possible to login to publisher by any means unless restarting the server.
 This turned out be due to useTenantKey attribute in
 repository/deployment/server/jaggeryapps/publisher/config/publisher.json
 and repository/deployment/server/jaggeryapps/store/config/store.json in
 publisher and store respectively being false. Unable to login into
 publisher and store as tenants in default pack is an issue for us. Further,
 after a failed attempt to login as a tenant, needing a restart is also an
 issue [1]

 Appreciate we could get this resolved so that a tenant can login in the
 default pack?

 [1] https://wso2.org/jira/browse/STORE-922

 [2] https://wso2.org/jira/browse/REGISTRY-2687

 [3]

 org.opensaml.xml.validation.ValidationException: Signature did not
 validate against the credential's key
 at
 org.opensaml.xml.signature.SignatureValidator.validate(SignatureValidator.java:78)
 at
 org.jaggeryjs.modules.sso.common.util.Util.validateSignature(Util.java:290)
 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
 at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
 at java.lang.reflect.Method.invoke(Method.java:606)
 at org.mozilla.javascript.MemberBox.invoke(MemberBox.java:126)
 at
 org.mozilla.javascript.NativeJavaMethod.call(NativeJavaMethod.java:225)
 at org.mozilla.javascript.optimizer.OptRuntime.callN(OptRuntime.java:52)
 at
 org.jaggeryjs.rhino.sso.scripts.c0._c_anonymous_3(sso/scripts/sso.client.js:55)
 at
 org.jaggeryjs.rhino.sso.scripts.c0.call(sso/scripts/sso.client.js)
 at org.mozilla.javascript.optimizer.OptRuntime.call2(OptRuntime.java:42)
 at
 org.jaggeryjs.rhino.publisher.controllers.c2._c_anonymous_1(/publisher/controllers/acs.jag:68)
 at
 org.jaggeryjs.rhino.publisher.controllers.c2.call(/publisher/controllers/acs.jag)
 at org.mozilla.javascript.optimizer.OptRuntime.call0(OptRuntime.java:23)
 at
 org.jaggeryjs.rhino.publisher.controllers.c2._c_script_0(/publisher/controllers/acs.jag:20)
 at
 org.jaggeryjs.rhino.publisher.controllers.c2.call(/publisher/controllers/acs.jag)
 at
 org.mozilla.javascript.ContextFactory.doTopCall(ContextFactory.java:394)
 at
 org.mozilla.javascript.ScriptRuntime.doTopCall(ScriptRuntime.java:3091)
 at
 org.jaggeryjs.rhino.publisher.controllers.c2.call(/publisher/controllers/acs.jag)
 at
 org.jaggeryjs.rhino.publisher.controllers.c2.exec(/publisher/controllers/acs.jag)
 at
 org.jaggeryjs.scriptengine.engine.RhinoEngine.execScript(RhinoEngine.java:567)
 at
 org.jaggeryjs.scriptengine.engine.RhinoEngine.exec(RhinoEngine.java:273)
 at
 org.jaggeryjs.jaggery.core.manager.WebAppManager.exec(WebAppManager.java:587)
 at
 org.jaggeryjs.jaggery.core.manager.WebAppManager.execute(WebAppManager.java:507)
 at
 org.jaggeryjs.jaggery.core.JaggeryServlet.doPost(JaggeryServlet.java:29)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:646)
 at 

[Dev] [BAM] Minimom Memory for BAM

2015-07-18 Thread Ayyoob Hamza
Hi,
We are working on pushing sensor data into the BAM. Suddenly bam
summarisation stopped working after a while, however still the sensor
events are being pushed into Cassandra. I just wanted to know, if the
number of data points increases then does it requires more of a reasonable
amount of memory(RAM) to summarise. is that the default behaviour of BAM ?.
If that is the case, what is the minimum requirement for the memory needed
for an instance to be run on a production environment.

Or wanted to know having a machine more than the pre requisite[1] is
sufficient ?

https://docs.wso2.com/display/BAM250/Installation+Prerequisites

Thanks,
*Ayyoob Hamza*
*Software Engineer*
WSO2 Inc.; http://wso2.com
email: ayy...@wso2.com cell: +94 77 1681010 %2B94%2077%207779495
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] charon-v2.0.0-wso2v4 released to staging

2015-07-18 Thread KasunG Gajasinghe
Hi Prasad,

Released the repo.

Thanks.

On Sat, Jul 18, 2015 at 1:18 PM, Prasad Tissera pras...@wso2.com wrote:

 charon-v2.0.0-wso2v4 released to staging [1]  and verified the fixes.
 Please review and move to public.

 [1]. http://maven.wso2.org/nexus/content/repositories/orgwso2charon-005/

 Regards,
 Prasad.

 --
 Prasad Tissera
 Software Engineer.
 Mobile : +94777223444




-- 

*Kasun Gajasinghe*Senior Software Engineer, WSO2 Inc.
email: kasung AT spamfree wso2.com
linked-in: http://lk.linkedin.com/in/gajasinghe
blog: http://kasunbg.org
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev