Re: [Carbon-dev] Optimizing Maven build script to make Carbon build faster and reliable.

2011-03-06 Thread Waruna Ranasinghe
On Sun, Mar 6, 2011 at 12:07 PM, Sameera Jayasoma same...@wso2.com wrote:

 Some more..

3) Merge Stratos trunk with the Carbon trunk - *Waruna*


3) Merge Stratos trunk with the Carbon trunk - *Waruna*
Progress update:

   - Merged Stratos components with Carbon components
   - Merged Stratos features with Carbon features
   - Merged the following products
  - BAM
  - BPS
  - BRS
  - CEP
  - G-Reg
  - GS


Thanks,
Waruna



 4) Incremental build support - *Harshana*
 5) Maven Exclusions - *Sameera*

 Please add, if I missed anything. Please update on the progress about these
 assigned tasks.

 Thanks,
 Sameera.


 On Sun, Mar 6, 2011 at 12:04 PM, Sameera Jayasoma same...@wso2.comwrote:

 We have came up with following tasks to achieve $Subject.

 1) Upload artifacts generated in the dependencies and orbit projects. *
 Pradeep/SupunM*
 2) Separate out Code generation from all the UI bundles in Core and
 Components projects - Pradeep

 --
 Sameera Jayasoma
 Technical Lead and Product Manager, WSO2 Carbon

 WSO2, Inc. (http://wso2.com)
 email: same...@wso2.com
 blog: http://tech.jayasoma.org

 Lean . Enterprise . Middleware




 --
 Sameera Jayasoma
 Technical Lead and Product Manager, WSO2 Carbon

 WSO2, Inc. (http://wso2.com)
 email: same...@wso2.com
 blog: http://tech.jayasoma.org

 Lean . Enterprise . Middleware

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




-- 
-
Waruna Ranasinghe
Senior Software Engineer, WSO2

Mobile: +94 724 318285
BLOG: http://warunapw.blogspot.com

www.wso2.com - Lean . Enterprise . Middleware
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Event Multi tenant support

2011-03-06 Thread Amila Suriarachchi
On Mon, Feb 28, 2011 at 12:43 PM, Danushka Menikkumbura
danus...@wso2.comwrote:

 That was not for topics but for queues.


 What is the approach for queues?


 Prefixing with domain name


This it self won't make Qpid component Multi tenant. you need to do
following as well.

1. Authenticate the users with the tenant domain. Current implementation
only check the user name and pass word. And also
now you can get the user realm from the user realm service directly.
2. Get the tenant aware registry using tenant Id for authorization.

thanks,
Amila.



 Danushka


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


Re: [Carbon-dev] LDAP integration to Carbon core

2011-03-06 Thread Hasini Gunasinghe
On Sun, Mar 6, 2011 at 1:06 PM, Afkham Azeez az...@wso2.com wrote:

 Have you tested this with Stratos?

Not with a complete Stratos setup.
How I tested this was: installing multi tenancy feature to IS using
necessary stratos components built from stratos branch.

Do we need to do any LDAP initialization when the tenant
 ConfigurationContext is created?

Sorry, at the moment I  do not have an idea what is tenant
ConfiguratioContext.

But, as I understood your question, if you use embedded-ldap server in
carbon core, you do not have to initialize LDAP since it is started with
carbon server.
If you use an external LDAP, then you need to start up a LDAP server and
point the user-mgt.xml to that.



 On Sun, Mar 6, 2011 at 11:45 AM, Hasini Gunasinghe has...@wso2.comwrote:



 On Sat, Mar 5, 2011 at 11:13 PM, Amila Jayasekara ami...@wso2.comwrote:

 Hi Azeez,

 Please find answers inline.

 Thanks
 AmilaJ

 On Fri, Mar 4, 2011 at 5:59 PM, Afkham Azeez az...@wso2.com wrote:
 Can somebody briefly explain what were the changes that were carried out
 to
 Carbon core to make this work? Where these ports can be defined

 The apacheds server code is wrapped as an OSGi bundle in
 orbit/apacheds component. org.wso2.carbon.ldap.server is the component
 which is responsible for managing LDAP server. It starts, stops LDAP
 server, in addition it also does partition management.

 Hi,


 This component
 starts before user core in carbon.


 Can I please know how have we specified that this component starts before
 user-core?

 The LDAP server specific configurations reside in a file called
 embedded-ldap.xml in repository/conf (In EmbeddedLDAP configuration
 segment). You can change parameters like, ports, connection passwords
 in this file. In addition to LDAP server specific configurations, it
 also has KDC specific configurations.

 ,what the following messages mean etc.

 Log messages starting with org.apache.directory.server.ldap.LdapServer
 are coming from apacheds implementation.
 LDAP server needs a schema to construct the initial LDAP tree
 structure. The default schema for the LDAP server is located at
 repository/data as a zip file (is-default-schema.zip). Thus when we
 start server for the first time apacheds component will extract this
 zip file and create a schema directory. In addition, when we start
 embedded LDAP for the first time it creates a default partition. The
 default partition name and other properties are read from the
 embedded-ldap.xml configuration file (DefaultPartition). The latter
 messages you see in the log are relevant to above actions.

 How MT ins handled

 I assume MT=Multi-tenancy.


 Hasini: Please explain how MT is handled with embedded-ldap.


 We have two ways that we can make LDAP user-store multi-tenanted.

 1. Creating a new partition (i.e new directory tree) for each tenant. This
 is specific to embedded-apacheds because here we use their API.
 2. Creating a new context ('ou' by default) under same directory tree, for
 each tenant. This is generic because here we use JNDI and hence, not coupled
 with any LDAP server implementation.

 We can use any of the above methods with embedded-ldap comes in core. But
 we can only use the second method above with an external LDAP.

 Let me briefly describe implementation details of two methods.

 1st Method:
 i. In tenant-mgt.xml we specify HybridLDAPTenantManager as the
 tenant manager which is initialized when the user-core starts. (at
 DefaultRealmService.)
ii. At the start of ldap.server component, we register an
 implementation of LDAPTenantManager in OSGi registry, through which managing
 partitions of tenants happens.
   iii. HybridLDAPTenantManager uses a reference of an above registered
 LDAPTenantManager service, to handle tenant mgt with LDAP.
   iv. Users and groups of a particular tenant is stored inside its
 partition.
   v. In stratos-tenant-mgt component, tenant specific user-mgt.xml is
 stored in registry/JDBC database which is used to map the tenant to specific
 partition.

 I have included a class diagram and a screenshot related to this 
 herehttp://hasini-gunasinghe.blogspot.com/2011/01/tenant-management-in-wso2-carbon-with.html
 .

 2nd Method:
i. In tenant-mgt.xml we specify CommonHybridLDAPTenantManager as the
 tenant manager which is initialized when the user-core starts.
   ii. Users and groups of a particular tenant is stored under its context.
  iii. In stratos-tenant-mgt component, tenant specific user-mgt.xml is
 stored in registry/JDBC database which is used to map the tenant to specific
 context.

 Common remarks regarding both the methods:
 1. Hybrid approach is used where mapping between tenant and the
 user-mgt.xml, and other meta-data is stored in JDBC database.
 2. Class names used for tenant manager at each scenario is not that clear.
 We may need to rename them.

 Thanks,
 Hasini.





 etc. Sorry, I wasn't
  following the entire conversation.
  [2011-03-05 07:24:03,001]  INFO
  

[Carbon-dev] WSO2 Carbon Continuous Build has FAILED /home/carbon/stratos/carbon/products/greg

2011-03-06 Thread WSO2 Builder
[INFO] snapshot org.wso2.carbon:org.wso2.carbon.account.mgt.ui:1.1.0-SNAPSHOT: 
checking for updates from com.springsource.repository.bundles.external
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 
http://repository.springsource.com/maven/bundles/external/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external)
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 

[Carbon-dev] WSO2 Carbon Continuous Build has FAILED /home/carbon/stratos/carbon/products/is

2011-03-06 Thread WSO2 Builder
[INFO] snapshot org.wso2.carbon:org.wso2.carbon.account.mgt.ui:1.1.0-SNAPSHOT: 
checking for updates from com.springsource.repository.bundles.external
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 
http://repository.springsource.com/maven/bundles/external/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external)
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 

[Carbon-dev] WSO2 Carbon Continuous Build has FAILED /home/carbon/stratos/carbon/products/appserver

2011-03-06 Thread WSO2 Builder
[INFO] snapshot org.wso2.carbon:org.wso2.carbon.account.mgt.ui:1.1.0-SNAPSHOT: 
checking for updates from com.springsource.repository.bundles.external
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 
http://repository.springsource.com/maven/bundles/external/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external)
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 

[Carbon-dev] WSO2 Carbon Continuous Build has FAILED /home/carbon/stratos/carbon/products/gs

2011-03-06 Thread WSO2 Builder
[INFO] snapshot org.wso2.carbon:org.wso2.carbon.account.mgt.ui:1.1.0-SNAPSHOT: 
checking for updates from com.springsource.repository.bundles.external
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 
http://repository.springsource.com/maven/bundles/external/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external)
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 

[Carbon-dev] WSO2 Carbon Continuous Build has FAILED /home/carbon/stratos/carbon/products/ms

2011-03-06 Thread WSO2 Builder
[INFO] snapshot org.wso2.carbon:org.wso2.carbon.account.mgt.ui:1.1.0-SNAPSHOT: 
checking for updates from com.springsource.repository.bundles.external
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 
http://repository.springsource.com/maven/bundles/external/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external)
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 

[Carbon-dev] WSO2 Carbon Continuous Build has FAILED /home/carbon/stratos/carbon/products/bam

2011-03-06 Thread WSO2 Builder
[INFO] snapshot org.wso2.carbon:org.wso2.carbon.account.mgt.ui:1.1.0-SNAPSHOT: 
checking for updates from com.springsource.repository.bundles.external
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 
http://repository.springsource.com/maven/bundles/external/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external)
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 

[Carbon-dev] WSO2 Carbon Continuous Build has FAILED /home/carbon/stratos/carbon/products/bps

2011-03-06 Thread WSO2 Builder
[INFO] snapshot org.wso2.carbon:org.wso2.carbon.account.mgt.ui:1.1.0-SNAPSHOT: 
checking for updates from com.springsource.repository.bundles.external
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 
http://repository.springsource.com/maven/bundles/external/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external)
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 

[Carbon-dev] WSO2 Carbon Continuous Build has FAILED /home/carbon/stratos/carbon/products/brs

2011-03-06 Thread WSO2 Builder
[INFO] snapshot org.wso2.carbon:org.wso2.carbon.account.mgt.ui:1.1.0-SNAPSHOT: 
checking for updates from com.springsource.repository.bundles.external
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 
http://repository.springsource.com/maven/bundles/external/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external)
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 

[Carbon-dev] WSO2 Carbon Continuous Build has FAILED /home/carbon/stratos/carbon/products/cep

2011-03-06 Thread WSO2 Builder
[INFO] snapshot org.wso2.carbon:org.wso2.carbon.account.mgt.ui:1.1.0-SNAPSHOT: 
checking for updates from com.springsource.repository.bundles.external
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 
http://repository.springsource.com/maven/bundles/external/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external)
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 

[Carbon-dev] WSO2 Carbon Continuous Build has FAILED /home/carbon/stratos/carbon/products/mb

2011-03-06 Thread WSO2 Builder
[INFO] snapshot org.wso2.carbon:org.wso2.carbon.account.mgt.ui:1.1.0-SNAPSHOT: 
checking for updates from com.springsource.repository.bundles.external
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 
http://repository.springsource.com/maven/bundles/external/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.pom
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:pom:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external)
Downloading: 
http://people.apache.org/repo/m2-snapshot-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository m2-snapshot-repository 
(http://people.apache.org/repo/m2-snapshot-repository)
Downloading: 
http://dist.wso2.org/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-repository (http://dist.wso2.org/maven2)
Downloading: 
http://tomcat.apache.org/dev/dist/m2-repository/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository tomcat-repository (http://tomcat.apache.org/dev/dist/m2-repository)
Downloading: 
http://ws.zones.apache.org/repository2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository ws-zones-repository (http://ws.zones.apache.org/repository2)
Downloading: 
http://dist.wso2.org/snapshots/maven2/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository wso2-maven2-snapshot-repository 
(http://dist.wso2.org/snapshots/maven2)
Downloading: 
http://repository.springsource.com/maven/bundles/release/org/wso2/carbon/org.wso2.carbon.account.mgt.ui/1.1.0-SNAPSHOT/org.wso2.carbon.account.mgt.ui-1.1.0-SNAPSHOT.jar
[INFO] Unable to find resource 
'org.wso2.carbon:org.wso2.carbon.account.mgt.ui:jar:1.1.0-SNAPSHOT' in 
repository com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release)
Downloading: 

[Carbon-dev] WSO2 Carbon Continuous Build was SUCCESSFUL

2011-03-06 Thread WSO2 Builder
Caused by: org.apache.maven.artifact.resolver.ArtifactNotFoundException: Unable 
to download the artifact from any repository

Try downloading the file manually from the project website.

Then, install it using the command: 
mvn install:install-file -DgroupId=org.wso2.ms 
-DartifactId=org.wso2.ms.styles.feature -Dversion=2.3.0-SNAPSHOT 
-Dpackaging=zip -Dfile=/path/to/file

Alternatively, if you host your own repository you can deploy the file there: 
mvn deploy:deploy-file -DgroupId=org.wso2.ms 
-DartifactId=org.wso2.ms.styles.feature -Dversion=2.3.0-SNAPSHOT 
-Dpackaging=zip -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]


  org.wso2.ms:org.wso2.ms.styles.feature:zip:2.3.0-SNAPSHOT

from the specified remote repositories:
  com.springsource.repository.bundles.release 
(http://repository.springsource.com/maven/bundles/release),
  com.springsource.repository.bundles.external 
(http://repository.springsource.com/maven/bundles/external),
  wso2-maven2-snapshot-repository (http://dist.wso2.org/snapshots/maven2),
  central (http://repo1.maven.org/maven2),
  wso2-maven2-repository (http://dist.wso2.org/maven2)


at 
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:228)
at 
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:90)
at 
org.wso2.maven.p2.generate.utils.MavenUtils.getResolvedArtifact(MavenUtils.java:39)
... 21 more
Caused by: org.apache.maven.wagon.ResourceDoesNotExistException: Unable to 
download the artifact from any repository
at 
org.apache.maven.artifact.manager.DefaultWagonManager.getArtifact(DefaultWagonManager.java:349)
at 
org.apache.maven.artifact.resolver.DefaultArtifactResolver.resolve(DefaultArtifactResolver.java:216)
... 23 more
[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] ERROR

Unable to download the artifact from any repository
[INFO] 
[INFO] For more information, run Maven with the -e switch
[INFO] 
[INFO] Total time: 2 minutes 11 seconds
[INFO] Finished at: Sun Mar 06 18:21:17 IST 2011
[INFO] Final Memory: 28M/1237M
[INFO] 
cp: cannot stat `target/p2-repo': No such file or directory
2011-03-06_18-17-22
Carbon  packs are available at : 
http://10.100.1.43/~carbon/releases/carbon/3.2.0/latest/
tail -n50 $STRATOS_SRC_HOME/build.log
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] New carbon component for issue tracking

2011-03-06 Thread Sameera Jayasoma
Ajith developed an error reporting component recently. May be you can
reuse it. Ajith please confirm.

Thanks,
Sameera.

On Sunday, March 6, 2011, Hasini Yatawatte hasi...@wso2.com wrote:



   
   
   
   

 Hi devs,These days I am working on a new carbon
 component for tracking issues. The main objective of this is to allow
 users of our products to report issues to JIRA and retrieve status of
 issues reported through the product itself.



 The design of the component is as shown
 in the following diagram. FE sends a request to report an issue to BE
 where the BE connects to the issue tracking system via an adapter
 implementation. Currently I have implemented the adapter  to  JIRA
 only. I am hoping to implement it to support Bugzilla as well in the
 future.







   
   
   
   

 The features of this component are as
 follows.Multiple JIRA multiple user
   scenario
   Users can add multiple JIRA account
   details (eg: private, public, support etc) and corresponding
   credentials which are stored inside an embedded registry.
   Credentials are validated before storing and there is an option 
 to
   edit them after wards as well. Hence when creating an issue 
 user is
   not required to provide credentials again, rather its just a 
 matter
   of  selecting the JIRA account from a drop down list.Reporting 
 issues.
- Users can report issues to
   multiple JIRA accounts.
- Unlike creating issues from
   JIRA interface directly, here user need not to specify operating
   environment details. Rather they are automatically captured from the
   BE.
   - Issues are assigned to project
   lead automatically.Retrieving issues
  Users can view issues reported by
   him/her self for a selected JIRA account.



   
   
   
   

 What I have done so far  -  Implementation comes as 5
   modules


   


   
   
   
   

    1. Issue tracking adapter API
 Adapter implementation for
   JIRA
   Back end component consisting
   admin service
   Front end component
   common component to provide
   utility methods and common 
 functionalities.



   
   
   
- Component is listed under Tools
   menu as follows.
     - FE and BE functionality of
   handling multiple JIRA accounts, validating credentials, putting and
   getting them as registry resources are done. - FE and BE 
 functionality for
   reporting issues from multiple accounts is done. - Retrieving 
 issues reported by an
   user is done.



   
   
   
   

 To Dos :Handling attachments when
   reporting an issue.
   Displaying issues in a paginated
   manner.Applying a user based permission model to resources 
 stored in registry.
    Any comments on this are highly appreciated.

 Thanks,
 Best Regards,

 --
 Hasini Randika Yatawatte,
 Software Engineer.
 WSO2 Inc.


-- 
Sameera Jayasoma
Technical Lead and Product Manager, WSO2 Carbon

WSO2, Inc. (http://wso2.com)
email: same...@wso2.com
blog: http://tech.jayasoma.org

Lean . Enterprise . Middleware
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] gadget problem in ShoppingCart in Carbon Studio

2011-03-06 Thread Manisha Gayathri
On Sun, Feb 27, 2011 at 7:18 PM, Xue-Feng Yang just4l...@yahoo.com wrote:

 Hi All,

 Hi Xue Feng,


 I would like to renew the following gadget problem in ShoppingCart in
 Carbon Studio.

 After deployed

 /registry/resource/_system/config/repository/gadget-server/gadgets/
 ProductsChart.xml


Just now noticed that the Gadget URL that you are specifying here is not
correct I guess.
According to the shopping cart sample, they get deployed in the following
URL.
   /_system/config/repository/dashboards/gadgets/ProductList.xml
Therefore you have to specify the URL below as the gadget URL

/registry/resource/_system/config/repository/dashboards/gadgets/ProductList.xml

And also I can assure you that I have tested all these in a fresh machine.

During that testing round, we found a few of the flaws in documentation. We
will do the necessary corrections and additions before the next release
happens.
Thanks for pointing out and we appreciate your patience too.

For the moment, I have started blogging about trying out the shopping cart
sample with Carbon Studio.
It describes all the scenarios end to end.
You can go through [1] and see. If you have any doubts, feel free to comment
or just raise it at carbon-dev.

[1]. http://manisha-eleperuma.blogspot.com/

Regards,
Manisha


 I can see gadget Quantity in Stock, but there is no content in gadget.
 The error message on the gadget server is

 [2011-02-25 22:49:20,125] ERROR
 {org.wso2.carbon.registry.resource.servlets.ResourceServlet} -  Could not
 get the resource content. Path is not specified.

 and on data server, the error message is

 [2011-02-25 22:51:31,656] ERROR -  Cannot find service  operation for
 /services/ShoppingCartDS/getAllProducts?nocache=1298645466311
 org.apache.axis2.AxisFault: Cannot find service  operation for
 /services/ShoppingCartDS/getAllProducts?nocache=1298645466311

 Thanks,

 Xue-Feng



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


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


Re: [Carbon-dev] gadget problem in ShoppingCart in Carbon Studio

2011-03-06 Thread Xue-Feng Yang




- Forwarded Message 
From: Xue-Feng Yang just4l...@yahoo.com
To: Manisha Gayathri mani...@wso2.com
Sent: Sun, March 6, 2011 10:54:14 PM
Subject: Re: [Carbon-dev] gadget problem in ShoppingCart in Carbon Studio


Hi Manisha,

Late reply is also welcomed.

I was talking about ProductsChart.xml, but you answer is about ProductList.xml. 
They should be the same. However, If you read my message carefully, you should 
find there were no problems in the deployment of gadgets. Actually, the second 
error message stated that the gadget was in the right position, but it couldn't 
find the data service:

and on data server, the error message is

[2011-02-25 22:51:31,656] ERROR -  Cannot find service  operation for 
/services/ShoppingCartDS/getAllProducts?nocache=1298645466311
org.apache.axis2.AxisFault: Cannot find service  operation for 
/services/ShoppingCartDS/getAllProducts?nocache=1298645466311

By the way, I checked the service by tryIt. It was there.

Thanks,

Xue-Feng
  





From: Manisha Gayathri mani...@wso2.com
To: carbon-dev@wso2.org
Cc: Xue-Feng Yang just4l...@yahoo.com
Sent: Sun, March 6, 2011 10:13:37 PM
Subject: Re: [Carbon-dev] gadget problem in ShoppingCart in Carbon Studio




On Sun, Feb 27, 2011 at 7:18 PM, Xue-Feng Yang just4l...@yahoo.com wrote:

Hi All,


Hi Xue Feng,
 

I would like to renew the following gadget problem in ShoppingCart in Carbon 
Studio. 


After  deployed


/registry/resource/_system/config/repository/gadget-server/gadgets/ 
ProductsChart.xml
 
Just now noticed that the Gadget URL that you are specifying here is not 
correct 
I guess. 

According to the shopping cart sample, they get deployed in the following URL. 
   /_system/config/repository/dashboards/gadgets/ProductList.xml
Therefore you have to specify the URL below as the gadget URL
   
/registry/resource/_system/config/repository/dashboards/gadgets/ProductList.xml

And also I can assure you that I have tested all these in a fresh machine. 

During that testing round, we found a few of the flaws in documentation. We 
will 
do the necessary corrections and additions before the next release happens. 

Thanks for pointing out and we appreciate your patience too. 

For the moment, I have started blogging about trying out the shopping cart 
sample with Carbon Studio.
It describes all the scenarios end to end. 
You can go through [1] and see. If you have any doubts, feel free to comment or 
just raise it at carbon-dev. 


[1]. http://manisha-eleperuma.blogspot.com/ 

Regards,
Manisha



I can see gadget Quantity in Stock, but there is no content in gadget. The 
error message on the gadget server is


[2011-02-25 22:49:20,125] ERROR 
{org.wso2.carbon.registry.resource.servlets.ResourceServlet} -  Could not get 
the resource content. Path is not specified.


and on data server, the error message  is  
[2011-02-25 22:51:31,656] ERROR -  Cannot find service  operation for 
/services/ShoppingCartDS/getAllProducts?nocache=1298645466311
org.apache.axis2.AxisFault: Cannot find service  operation for 
/services/ShoppingCartDS/getAllProducts?nocache=1298645466311


Thanks,


Xue-Feng



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



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


[Carbon-dev] Repeatedly printed info log in G-Reg server console

2011-03-06 Thread Janaka Ranabahu
Hi,

After I start the G-Reg server and logged in to it, the following info log
is printed repeatedly. Any thoughts about this? Note that this is a local
build with the latest revision.

[2011-03-06 20:41:51,126]  INFO
{org.wso2.carbon.core.services.util.CarbonAuthenticationUtil} -  'admin'
logged in at [2011-03-06 20:41:51,0126] from IP address 0:0:0:0:0:0:0:1
[2011-03-06 20:41:51,356]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@8b718af1 received
from null session
[2011-03-06 20:41:51,364]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@8f1e1d39 received
from null session
[2011-03-06 20:41:57,931]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@8f317742 received
from null session
[2011-03-06 20:42:03,918]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@cc849b7e received
from null session
[2011-03-06 20:42:09,960]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@b25c2915 received
from null session
[2011-03-06 20:42:27,944]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@cbd2d50a received
from null session
[2011-03-06 20:42:29,232]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@a3b45e15 received
from null session
[2011-03-06 20:42:29,253]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@bae1d324 received
from null session
[2011-03-06 20:42:29,898]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@922314da received
from null session
[2011-03-06 20:42:29,924]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@b6618eeb received
from null session
[2011-03-06 20:42:29,930]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@94a0b1bf received
from null session
[2011-03-06 20:42:29,968]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@c9f2de2f received
from null session
[2011-03-06 20:42:30,558]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@9a628abc received
from null session
[2011-03-06 20:42:30,571]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@830835e3 received
from null session
[2011-03-06 20:42:31,003]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@8cfe7de2 received
from null session
[2011-03-06 20:42:31,012]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@7b39393f received
from null session
[2011-03-06 20:42:31,021]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@c4c16f9f received
from null session
[2011-03-06 20:42:31,027]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@9f3fb4b3 received
from null session
[2011-03-06 20:42:31,068]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@c98efee5 received
from null session
[2011-03-06 20:42:31,086]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@90736348 received
from null session
[2011-03-06 20:42:31,093]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message
org.apache.directory.shared.ldap.message.UnbindRequestImpl@980cef7b received
from null session
[2011-03-06 20:42:31,098]  INFO
{org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
the message

Re: [Carbon-dev] Repeatedly printed info log in G-Reg server console

2011-03-06 Thread Manisha Gayathri
On Sun, Mar 6, 2011 at 8:55 PM, Janaka Ranabahu jan...@wso2.com wrote:

 Hi,

 After I start the G-Reg server and logged in to it, the following info log
 is printed repeatedly. Any thoughts about this? Note that this is a local
 build with the latest revision.

 [2011-03-06 20:41:51,126]  INFO
 {org.wso2.carbon.core.services.util.CarbonAuthenticationUtil} -  'admin'
 logged in at [2011-03-06 20:41:51,0126] from IP address 0:0:0:0:0:0:0:1
 [2011-03-06 20:41:51,356]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@8b718af1received 
 from null session
 [2011-03-06 20:41:51,364]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@8f1e1d39received 
 from null session
 [2011-03-06 20:41:57,931]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@8f317742received 
 from null session
 [2011-03-06 20:42:03,918]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@cc849b7ereceived 
 from null session
 [2011-03-06 20:42:09,960]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@b25c2915received 
 from null session
 [2011-03-06 20:42:27,944]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@cbd2d50areceived 
 from null session
 [2011-03-06 20:42:29,232]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@a3b45e15received 
 from null session
 [2011-03-06 20:42:29,253]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@bae1d324received 
 from null session
 [2011-03-06 20:42:29,898]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@922314dareceived 
 from null session
 [2011-03-06 20:42:29,924]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@b6618eebreceived 
 from null session
 [2011-03-06 20:42:29,930]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@94a0b1bfreceived 
 from null session
 [2011-03-06 20:42:29,968]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@c9f2de2freceived 
 from null session
 [2011-03-06 20:42:30,558]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@9a628abcreceived 
 from null session
 [2011-03-06 20:42:30,571]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@830835e3received 
 from null session
 [2011-03-06 20:42:31,003]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@8cfe7de2received 
 from null session
 [2011-03-06 20:42:31,012]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@7b39393freceived 
 from null session
 [2011-03-06 20:42:31,021]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@c4c16f9freceived 
 from null session
 [2011-03-06 20:42:31,027]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@9f3fb4b3received 
 from null session
 [2011-03-06 20:42:31,068]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@c98efee5received 
 from null session
 [2011-03-06 20:42:31,086]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 org.apache.directory.shared.ldap.message.UnbindRequestImpl@90736348received 
 from null session
 [2011-03-06 20:42:31,093]  INFO
 {org.apache.directory.server.ldap.handlers.LdapRequestHandler} -  ignoring
 the message
 

[Carbon-dev] WSO2 Carbon Continuous Build has FAILED

2011-03-06 Thread WSO2 Builder

Fetching external item into 
'products/esb/modules/samples/product/services/FastStockQuoteService/src'
A
products/esb/modules/samples/product/services/FastStockQuoteService/src/samples
A
products/esb/modules/samples/product/services/FastStockQuoteService/src/samples/services
A
products/esb/modules/samples/product/services/FastStockQuoteService/src/samples/services/FastStockQuoteService.java
A
products/esb/modules/samples/product/services/FastStockQuoteService/src/samples/services/PlaceOrder.java
A
products/esb/modules/samples/product/services/FastStockQuoteService/src/samples/services/GetQuoteResponse.java
A
products/esb/modules/samples/product/services/FastStockQuoteService/src/samples/services/GetQuote.java
Updated external to revision 1078489.

Updated to revision 89075.
Path: .
URL: https://svn.wso2.org/repos/wso2/trunk/carbon
Repository Root: https://svn.wso2.org/repos/wso2
Repository UUID: a5903396-d722-0410-b921-86c7d4935375
Revision: 89075
Node Kind: directory
Schedule: normal
Last Changed Author: waruna
Last Changed Rev: 89075
Last Changed Date: 2011-03-06 19:43:45 +0530 (Sun, 06 Mar 2011)

Sun Mar  6 20:54:11 IST 2011
[INFO] 
NOTE: Maven is executing in offline mode. Any artifacts not already in your 
local
repository will be inaccessible.

[INFO] Scanning for projects...
[INFO] 
[ERROR] BUILD FAILURE
[INFO] 
[INFO] Project 'org.wso2.carbon:org.wso2.carbon.ui.menu.general' is duplicated 
in the reactor
[INFO] 
[INFO] For more information, run Maven with the -e switch
[INFO] 
[INFO] Total time: 29 seconds
[INFO] Finished at: Sun Mar 06 20:54:43 IST 2011
[INFO] Final Memory: 205M/1260M
[INFO] 
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


[Carbon-dev] Cannot enable JMS transport listener/sender in wso2appserver-4.0.0

2011-03-06 Thread Kasun Indrasiri
Hi,
$subject. However this works fine in wso2wsas-3.2.0. Any thoughts?

- jms broker : apache-activemq-5.4.2

- /repository/components/lib contains
activeio-core-3.1.2.jar  activemq-core-5.4.2.jar
 geronimo-j2ee-management_1.1_spec-1.0.1.jar
 geronimo-jms_1.1_spec-1.1.1.jar


[2011-03-06 09:32:24,367] ERROR
{org.wso2.carbon.core.transports.AbstractTransportService} -  Error while
initializing the jms listener
java.lang.NoClassDefFoundError: javax/jms/JMSException
at
org.apache.axis2.transport.jms.JMSConnectionFactoryManager.loadConnectionFactoryDefinitions(JMSConnectionFactoryManager.java:58)
at
org.apache.axis2.transport.jms.JMSConnectionFactoryManager.init(JMSConnectionFactoryManager.java:45)
at org.apache.axis2.transport.jms.JMSListener.doInit(JMSListener.java:58)
at
org.apache.axis2.transport.base.AbstractTransportListenerEx.init(AbstractTransportListenerEx.java:62)
at
org.wso2.carbon.core.transports.AbstractTransportService.updateGlobalTransportParameters(AbstractTransportService.java:130)
at
org.wso2.carbon.transport.mgt.TransportAdmin.updateGloballyDefinedInParameters(TransportAdmin.java:445)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at
org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:205)
at
org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver.invokeBusinessLogic(RPCInOnlyMessageReceiver.java:63)
at
org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:110)
at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:178)
at
org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:173)
at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:145)
at
org.wso2.carbon.core.transports.CarbonServlet.doPost(CarbonServlet.java:206)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at
org.eclipse.equinox.http.servlet.internal.ServletRegistration.handleRequest(ServletRegistration.java:90)
at
org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:111)
at
org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:67)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at org.wso2.carbon.bridge.BridgeServlet.service(BridgeServlet.java:156)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
at org.wso2.carbon.server.TomcatServer$1.invoke(TomcatServer.java:314)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
at
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
at
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
at
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
at java.lang.Thread.run(Thread.java:619)
Caused by: java.lang.ClassNotFoundException: javax.jms.JMSException
at
org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:443)
at
org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:405)
at
org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:393)
at
org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:105)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
... 40 more


-- 
Kasun Indrasiri
Senior Software Engineer
WSO2, Inc.; http://wso2.com
lean.enterprise.middleware

cell: +94 71 536 4128
Blog : http://kasunpanorama.blogspot.com/
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] OpenId4Java as a dependency in our SVN

2011-03-06 Thread Dimuthu Leelarathne
Hi,

Openid4java builds on mvn 2.2.0 or above. Shall we upgrade the builder
machine mvn version to 2.2.0 or above?

tx,
dimuthul


On Fri, Mar 4, 2011 at 10:49 PM, Dimuthu Leelarathne dimut...@wso2.comwrote:

 Hi,

 I added the openid4java into dependency. It is wrong if carbon/dependencies
 generates a jar file as openid4java-nodeps-0.9.6-SNAPSHOT.jar. So my idea is
 to change it by appending wso2v1 (I referred what qpid ppl have done)

 We can have one of the two versions.

 1) openid4java-nodeps-0.9.6-wso2v1.jar - orbit bundle would be
 openid4java-nodeps-0.9.6-wso2v1.wso2v1.jar
 2) openid4java-nodeps-0.9.6-SNAPSHOT.wso2v1.jar -
 openid4java-nodeps-0.9.6-SNAPSHOT.wso2v1.wso2v1.jar

 Any objects to option 1 ?

 Thanks,
 dimuthu



 On Fri, Mar 4, 2011 at 3:49 PM, Dimuthu Leelarathne dimut...@wso2.comwrote:

 Hi,

 We need 0.9.6-SNAPSHOT of openid4java to make GApp seamless login to work.

 This is what I am going to do,

 1) Copy the current revision of OpenID into our dependencies available
 here http://openid4java.googlecode.com/svn/trunk/. This is not an svn
 external. It will be a svn copy since we don't want updates. This will also
 checkout the libs directory.

 2) Build openid library and upload it into one of our repos.

 3) Use the timestamped SNAPSHOT in the openid4java orbit project and fix
 the build.

 WDYT ?

 Thanks,
 dimuthu



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


Re: [Carbon-dev] New carbon component for issue tracking

2011-03-06 Thread Afkham Azeez
The component is a bit different. It automatically logs a JIRA if an error
occurs. It may be possible to merge the two components.


On Sun, Mar 6, 2011 at 6:53 PM, Sameera Jayasoma same...@wso2.com wrote:

 Ajith developed an error reporting component recently. May be you can
 reuse it. Ajith please confirm.

 Thanks,
 Sameera.

 On Sunday, March 6, 2011, Hasini Yatawatte hasi...@wso2.com wrote:
 
 
 
 
 
 
 
 
  Hi devs,These days I am working on a new carbon
  component for tracking issues. The main objective of this is to allow
  users of our products to report issues to JIRA and retrieve status of
  issues reported through the product itself.
 
 
 
  The design of the component is as shown
  in the following diagram. FE sends a request to report an issue to BE
  where the BE connects to the issue tracking system via an adapter
  implementation. Currently I have implemented the adapter  to  JIRA
  only. I am hoping to implement it to support Bugzilla as well in the
  future.
 
 
 
 
 
 
 
 
 
 
 
 
  The features of this component are as
  follows.Multiple JIRA multiple user
scenario
Users can add multiple JIRA account
details (eg: private, public, support etc) and
 corresponding
credentials which are stored inside an embedded registry.
Credentials are validated before storing and there is an
 option to
edit them after wards as well. Hence when creating an issue
 user is
not required to provide credentials again, rather its just
 a matter
of  selecting the JIRA account from a drop down
 list.Reporting issues.
 - Users can report issues to
multiple JIRA accounts.
 - Unlike creating issues from
JIRA interface directly, here user need not to specify operating
environment details. Rather they are automatically captured from
 the
BE.
- Issues are assigned to project
lead automatically.Retrieving issues
   Users can view issues reported by
him/her self for a selected JIRA account.
 
 
 
 
 
 
 
 
  What I have done so far  -  Implementation comes as 5
modules
 
 
 
 
 
 
 
 
 
 
 1. Issue tracking adapter API
  Adapter implementation for
JIRA
Back end component consisting
admin service
Front end component
common component to provide
utility methods and common
 functionalities.
 
 
 
 
 
 
 - Component is listed under Tools
menu as follows.
  - FE and BE functionality of
handling multiple JIRA accounts, validating credentials, putting
 and
getting them as registry resources are done. - FE and BE
 functionality for
reporting issues from multiple accounts is done. - Retrieving
 issues reported by an
user is done.
 
 
 
 
 
 
 
 
  To Dos :Handling attachments when
reporting an issue.
Displaying issues in a paginated
manner.Applying a user based permission model to resources
 stored in registry.
 Any comments on this are highly appreciated.
 
  Thanks,
  Best Regards,
 
  --
  Hasini Randika Yatawatte,
  Software Engineer.
  WSO2 Inc.
 

 --
 Sameera Jayasoma
 Technical Lead and Product Manager, WSO2 Carbon

 WSO2, Inc. (http://wso2.com)
 email: same...@wso2.com
 blog: http://tech.jayasoma.org

 Lean . Enterprise . Middleware
 ___
 Carbon-dev mailing list
 Carbon-dev@wso2.org
 http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev




-- 
*Afkham Azeez*
Senior Software Architect  Senior Manager; WSO2, Inc.; http://wso2.com,
*
*
*Member; Apache Software Foundation;
**http://www.apache.org/*http://www.apache.org/
*
email: **az...@wso2.com* az...@wso2.com* cell: +94 77 3320919
blog: **http://blog.afkham.org* http://blog.afkham.org*
twitter: **http://twitter.com/afkham_azeez*http://twitter.com/afkham_azeez
*
linked-in: **http://lk.linkedin.com/in/afkhamazeez*
*
*
*Lean . Enterprise . Middleware*
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] LDAP integration to Carbon core

2011-03-06 Thread Prabath Siriwardana
In the case of Stratos - we do not need to have the embedded LDAP - but it
will be a separate LDAP server. We need to test the OU based tenant
isolation we did with LDAP in Stratos..

Thanks  regards,
-Prabath

On Sun, Mar 6, 2011 at 2:56 PM, Hasini Gunasinghe has...@wso2.com wrote:



 On Sun, Mar 6, 2011 at 1:06 PM, Afkham Azeez az...@wso2.com wrote:

 Have you tested this with Stratos?

 Not with a complete Stratos setup.
 How I tested this was: installing multi tenancy feature to IS using
 necessary stratos components built from stratos branch.

 Do we need to do any LDAP initialization when the tenant
 ConfigurationContext is created?

 Sorry, at the moment I  do not have an idea what is tenant
 ConfiguratioContext.

 But, as I understood your question, if you use embedded-ldap server in
 carbon core, you do not have to initialize LDAP since it is started with
 carbon server.
 If you use an external LDAP, then you need to start up a LDAP server and
 point the user-mgt.xml to that.



 On Sun, Mar 6, 2011 at 11:45 AM, Hasini Gunasinghe has...@wso2.comwrote:



 On Sat, Mar 5, 2011 at 11:13 PM, Amila Jayasekara ami...@wso2.comwrote:

 Hi Azeez,

 Please find answers inline.

 Thanks
 AmilaJ

 On Fri, Mar 4, 2011 at 5:59 PM, Afkham Azeez az...@wso2.com wrote:
 Can somebody briefly explain what were the changes that were carried out
 to
 Carbon core to make this work? Where these ports can be defined

 The apacheds server code is wrapped as an OSGi bundle in
 orbit/apacheds component. org.wso2.carbon.ldap.server is the component
 which is responsible for managing LDAP server. It starts, stops LDAP
 server, in addition it also does partition management.

 Hi,


 This component
 starts before user core in carbon.


 Can I please know how have we specified that this component starts before
 user-core?

 The LDAP server specific configurations reside in a file called
 embedded-ldap.xml in repository/conf (In EmbeddedLDAP configuration
 segment). You can change parameters like, ports, connection passwords
 in this file. In addition to LDAP server specific configurations, it
 also has KDC specific configurations.

 ,what the following messages mean etc.

 Log messages starting with org.apache.directory.server.ldap.LdapServer
 are coming from apacheds implementation.
 LDAP server needs a schema to construct the initial LDAP tree
 structure. The default schema for the LDAP server is located at
 repository/data as a zip file (is-default-schema.zip). Thus when we
 start server for the first time apacheds component will extract this
 zip file and create a schema directory. In addition, when we start
 embedded LDAP for the first time it creates a default partition. The
 default partition name and other properties are read from the
 embedded-ldap.xml configuration file (DefaultPartition). The latter
 messages you see in the log are relevant to above actions.

 How MT ins handled

 I assume MT=Multi-tenancy.


 Hasini: Please explain how MT is handled with embedded-ldap.


 We have two ways that we can make LDAP user-store multi-tenanted.

 1. Creating a new partition (i.e new directory tree) for each tenant.
 This is specific to embedded-apacheds because here we use their API.
 2. Creating a new context ('ou' by default) under same directory tree,
 for each tenant. This is generic because here we use JNDI and hence, not
 coupled with any LDAP server implementation.

 We can use any of the above methods with embedded-ldap comes in core. But
 we can only use the second method above with an external LDAP.

 Let me briefly describe implementation details of two methods.

 1st Method:
 i. In tenant-mgt.xml we specify HybridLDAPTenantManager as the
 tenant manager which is initialized when the user-core starts. (at
 DefaultRealmService.)
ii. At the start of ldap.server component, we register an
 implementation of LDAPTenantManager in OSGi registry, through which managing
 partitions of tenants happens.
   iii. HybridLDAPTenantManager uses a reference of an above registered
 LDAPTenantManager service, to handle tenant mgt with LDAP.
   iv. Users and groups of a particular tenant is stored inside its
 partition.
   v. In stratos-tenant-mgt component, tenant specific user-mgt.xml is
 stored in registry/JDBC database which is used to map the tenant to specific
 partition.

 I have included a class diagram and a screenshot related to this 
 herehttp://hasini-gunasinghe.blogspot.com/2011/01/tenant-management-in-wso2-carbon-with.html
 .

 2nd Method:
i. In tenant-mgt.xml we specify CommonHybridLDAPTenantManager as the
 tenant manager which is initialized when the user-core starts.
   ii. Users and groups of a particular tenant is stored under its
 context.
  iii. In stratos-tenant-mgt component, tenant specific user-mgt.xml is
 stored in registry/JDBC database which is used to map the tenant to specific
 context.

 Common remarks regarding both the methods:
 1. Hybrid approach is used where mapping between tenant and 

Re: [Carbon-dev] LDAP integration to Carbon core

2011-03-06 Thread Afkham Azeez
Is Hasini working on this? Can we start testing this immediately?

On Sun, Mar 6, 2011 at 10:01 PM, Prabath Siriwardana prab...@wso2.comwrote:

 In the case of Stratos - we do not need to have the embedded LDAP - but it
 will be a separate LDAP server. We need to test the OU based tenant
 isolation we did with LDAP in Stratos..

 Thanks  regards,
 -Prabath


 On Sun, Mar 6, 2011 at 2:56 PM, Hasini Gunasinghe has...@wso2.com wrote:



 On Sun, Mar 6, 2011 at 1:06 PM, Afkham Azeez az...@wso2.com wrote:

 Have you tested this with Stratos?

 Not with a complete Stratos setup.
 How I tested this was: installing multi tenancy feature to IS using
 necessary stratos components built from stratos branch.

 Do we need to do any LDAP initialization when the tenant
 ConfigurationContext is created?

 Sorry, at the moment I  do not have an idea what is tenant
 ConfiguratioContext.

 But, as I understood your question, if you use embedded-ldap server in
 carbon core, you do not have to initialize LDAP since it is started with
 carbon server.
 If you use an external LDAP, then you need to start up a LDAP server and
 point the user-mgt.xml to that.



 On Sun, Mar 6, 2011 at 11:45 AM, Hasini Gunasinghe has...@wso2.comwrote:



 On Sat, Mar 5, 2011 at 11:13 PM, Amila Jayasekara ami...@wso2.comwrote:

 Hi Azeez,

 Please find answers inline.

 Thanks
 AmilaJ

 On Fri, Mar 4, 2011 at 5:59 PM, Afkham Azeez az...@wso2.com wrote:
 Can somebody briefly explain what were the changes that were carried
 out to
 Carbon core to make this work? Where these ports can be defined

 The apacheds server code is wrapped as an OSGi bundle in
 orbit/apacheds component. org.wso2.carbon.ldap.server is the component
 which is responsible for managing LDAP server. It starts, stops LDAP
 server, in addition it also does partition management.

 Hi,


 This component
 starts before user core in carbon.


 Can I please know how have we specified that this component starts
 before user-core?

 The LDAP server specific configurations reside in a file called
 embedded-ldap.xml in repository/conf (In EmbeddedLDAP configuration
 segment). You can change parameters like, ports, connection passwords
 in this file. In addition to LDAP server specific configurations, it
 also has KDC specific configurations.

 ,what the following messages mean etc.

 Log messages starting with org.apache.directory.server.ldap.LdapServer
 are coming from apacheds implementation.
 LDAP server needs a schema to construct the initial LDAP tree
 structure. The default schema for the LDAP server is located at
 repository/data as a zip file (is-default-schema.zip). Thus when we
 start server for the first time apacheds component will extract this
 zip file and create a schema directory. In addition, when we start
 embedded LDAP for the first time it creates a default partition. The
 default partition name and other properties are read from the
 embedded-ldap.xml configuration file (DefaultPartition). The latter
 messages you see in the log are relevant to above actions.

 How MT ins handled

 I assume MT=Multi-tenancy.


 Hasini: Please explain how MT is handled with embedded-ldap.


 We have two ways that we can make LDAP user-store multi-tenanted.

 1. Creating a new partition (i.e new directory tree) for each tenant.
 This is specific to embedded-apacheds because here we use their API.
 2. Creating a new context ('ou' by default) under same directory tree,
 for each tenant. This is generic because here we use JNDI and hence, not
 coupled with any LDAP server implementation.

 We can use any of the above methods with embedded-ldap comes in core.
 But we can only use the second method above with an external LDAP.

 Let me briefly describe implementation details of two methods.

 1st Method:
 i. In tenant-mgt.xml we specify HybridLDAPTenantManager as the
 tenant manager which is initialized when the user-core starts. (at
 DefaultRealmService.)
ii. At the start of ldap.server component, we register an
 implementation of LDAPTenantManager in OSGi registry, through which 
 managing
 partitions of tenants happens.
   iii. HybridLDAPTenantManager uses a reference of an above registered
 LDAPTenantManager service, to handle tenant mgt with LDAP.
   iv. Users and groups of a particular tenant is stored inside its
 partition.
   v. In stratos-tenant-mgt component, tenant specific user-mgt.xml is
 stored in registry/JDBC database which is used to map the tenant to 
 specific
 partition.

 I have included a class diagram and a screenshot related to this 
 herehttp://hasini-gunasinghe.blogspot.com/2011/01/tenant-management-in-wso2-carbon-with.html
 .

 2nd Method:
i. In tenant-mgt.xml we specify CommonHybridLDAPTenantManager as
 the tenant manager which is initialized when the user-core starts.
   ii. Users and groups of a particular tenant is stored under its
 context.
  iii. In stratos-tenant-mgt component, tenant specific user-mgt.xml is
 stored in registry/JDBC database which 

Re: [Carbon-dev] OpenId4Java as a dependency in our SVN

2011-03-06 Thread Amila Maha Arachchi
Hi,

I have upgraded the maven version to 2.2.1 in the builder machine. But I
have heard that some versions of maven are not recommended in building
carbon. Is 2.2.1 safe to be used? If so, please recommend a version.

Thanks,
AmilaM.

On Sun, Mar 6, 2011 at 9:19 PM, Dimuthu Leelarathne dimut...@wso2.comwrote:

 Hi,

 Openid4java builds on mvn 2.2.0 or above. Shall we upgrade the builder
 machine mvn version to 2.2.0 or above?

 tx,
 dimuthul



 On Fri, Mar 4, 2011 at 10:49 PM, Dimuthu Leelarathne dimut...@wso2.comwrote:

 Hi,

 I added the openid4java into dependency. It is wrong if
 carbon/dependencies generates a jar file as
 openid4java-nodeps-0.9.6-SNAPSHOT.jar. So my idea is to change it by
 appending wso2v1 (I referred what qpid ppl have done)

 We can have one of the two versions.

 1) openid4java-nodeps-0.9.6-wso2v1.jar - orbit bundle would be
 openid4java-nodeps-0.9.6-wso2v1.wso2v1.jar
 2) openid4java-nodeps-0.9.6-SNAPSHOT.wso2v1.jar -
 openid4java-nodeps-0.9.6-SNAPSHOT.wso2v1.wso2v1.jar

 Any objects to option 1 ?

 Thanks,
 dimuthu



 On Fri, Mar 4, 2011 at 3:49 PM, Dimuthu Leelarathne dimut...@wso2.comwrote:

 Hi,

 We need 0.9.6-SNAPSHOT of openid4java to make GApp seamless login to
 work.

 This is what I am going to do,

 1) Copy the current revision of OpenID into our dependencies available
 here http://openid4java.googlecode.com/svn/trunk/. This is not an svn
 external. It will be a svn copy since we don't want updates. This will also
 checkout the libs directory.

 2) Build openid library and upload it into one of our repos.

 3) Use the timestamped SNAPSHOT in the openid4java orbit project and fix
 the build.

 WDYT ?

 Thanks,
 dimuthu




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


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


Re: [Carbon-dev] OpenId4Java as a dependency in our SVN

2011-03-06 Thread Janaka Ranabahu
Hi Amila,

On Sun, Mar 6, 2011 at 10:18 PM, Amila Maha Arachchi ami...@wso2.comwrote:

 Hi,

 I have upgraded the maven version to 2.2.1 in the builder machine. But I
 have heard that some versions of maven are not recommended in building
 carbon. Is 2.2.1 safe to be used? If so, please recommend a version.


I have been using maven 2.2.1 in my local machine and it seems to be working
fine.

Thanks,
Janaka


 Thanks,
 AmilaM.

 On Sun, Mar 6, 2011 at 9:19 PM, Dimuthu Leelarathne dimut...@wso2.comwrote:

 Hi,

 Openid4java builds on mvn 2.2.0 or above. Shall we upgrade the builder
 machine mvn version to 2.2.0 or above?

 tx,
 dimuthul



 On Fri, Mar 4, 2011 at 10:49 PM, Dimuthu Leelarathne 
 dimut...@wso2.comwrote:

 Hi,

 I added the openid4java into dependency. It is wrong if
 carbon/dependencies generates a jar file as
 openid4java-nodeps-0.9.6-SNAPSHOT.jar. So my idea is to change it by
 appending wso2v1 (I referred what qpid ppl have done)

 We can have one of the two versions.

 1) openid4java-nodeps-0.9.6-wso2v1.jar - orbit bundle would be
 openid4java-nodeps-0.9.6-wso2v1.wso2v1.jar
 2) openid4java-nodeps-0.9.6-SNAPSHOT.wso2v1.jar -
 openid4java-nodeps-0.9.6-SNAPSHOT.wso2v1.wso2v1.jar

 Any objects to option 1 ?

 Thanks,
 dimuthu



 On Fri, Mar 4, 2011 at 3:49 PM, Dimuthu Leelarathne 
 dimut...@wso2.comwrote:

 Hi,

 We need 0.9.6-SNAPSHOT of openid4java to make GApp seamless login to
 work.

 This is what I am going to do,

 1) Copy the current revision of OpenID into our dependencies available
 here http://openid4java.googlecode.com/svn/trunk/. This is not an
 svn  external. It will be a svn copy since we don't want updates. This will
 also checkout the libs directory.

 2) Build openid library and upload it into one of our repos.

 3) Use the timestamped SNAPSHOT in the openid4java orbit project and fix
 the build.

 WDYT ?

 Thanks,
 dimuthu




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



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




-- 
Janaka Ranabahu
Software Engineer
WSO2 Inc.

Mobile +94 718370861
Email : jan...@wso2.com
Blog : janakaranabahu.blogspot.com
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Stratos trunk code is freezed 10.00am 5th March 2011 IST onwards

2011-03-06 Thread Waruna Ranasinghe
Hi all,

I have almost finished the svn restructuring.
Now on, both Carbon and Stratos development should be carried out on Carbon
trunk [2].



[2] - https://svn.wso2.org/repos/wso2/trunk/carbon

Thanks,
Waruna
On Sat, Mar 5, 2011 at 12:35 PM, Waruna Ranasinghe war...@wso2.com wrote:

 Hi devs,

 Please restrain from committing to carbon/products [3], since I'm
 re-structuring the svn directory structure.
 I'll send a notice once I'm done with re-structuring.


 [3] - https://svn.wso2.org/repos/wso2/trunk/carbon/products


 Thanks,
 Waruna


 On Sat, Mar 5, 2011 at 9:46 AM, Waruna Ranasinghe war...@wso2.com wrote:

 Hi all,

 Please note $subject.

 I'm going to move Stratos artifacts [1] to mainstream Carbon trunk [2].
 I will send a notice when this is finished.

 The finalized svn structure is shown below.

 carbon [2]
 |pom.xml
 |
 |core
 |
 |dependencies
 |
 |orbit
 |
 |components
 ||pom.xml
 ||stratos
 |||pom.xml
 |||account-mgt
 ||| ...
 ||
 ||aar-services
 ||admin-mgt
 || ...
 |
 |features
 ||pom.xml
 ||stratos
 |||pom.xml
 |||tenant-mgt
 ||| ...
 ||
 ||admin-mgt
 ||application-deployers
 || ...
 |
 |products
 ||pom.xml
 ||appserver
 |||pom.xml
 |||modules
 ||||distribution
 |||||pom.xml
 |||||product
 |||||| ...
 |||||service
 |||||| ...
 ||||
 ||||features
 |||||pom.xml
 |||||product
 |||||| ...
 |||||service
 |||||| ...
 ||||
 ||||p2-profile-gen
 |||||pom.xml
 |||||product
 |||||| ...
 |||||service
 |||||| ...
 ||||
 ||||styles
 |||||pom.xml
 |||||product
 |||||| ...
 |||||service
 |||||| ...
 ||||
 ||||org.wso2.stratos.appserver.dashboard.ui
 ||||org.wso2.stratos.appserver.deployment
 ||||org.wso2.stratos.appserver.login.ui
 ||
 ||bam
 || ...

 [1] - https://svn.wso2.org/repos/wso2/trunk/stratos
 [2] - https://svn.wso2.org/repos/wso2/trunk/carbon


 Thanks,
 Waruna
 --
 -
 Waruna Ranasinghe
 Senior Software Engineer, WSO2

 Mobile: +94 724 318285
 BLOG: http://warunapw.blogspot.com

 www.wso2.com - Lean . Enterprise . Middleware




 --
 -
 Waruna Ranasinghe
 Senior Software Engineer, WSO2

 Mobile: +94 724 318285
 BLOG: http://warunapw.blogspot.com

 www.wso2.com - Lean . Enterprise . Middleware




-- 
-
Waruna Ranasinghe
Senior Software Engineer, WSO2

Mobile: +94 724 318285
BLOG: http://warunapw.blogspot.com

www.wso2.com - Lean . Enterprise . Middleware
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] [Stratos-dev] Stratos trunk code is freezed 10.00am 5th March 2011 IST onwards

2011-03-06 Thread Amila Maha Arachchi
Hi,

Triggered a new build with a clean repo.

Thanks,
AmilaM.

On Sun, Mar 6, 2011 at 10:28 PM, Waruna Ranasinghe war...@wso2.com wrote:

 Hi all,

 I have almost finished the svn restructuring.
 Now on, both Carbon and Stratos development should be carried out on Carbon
 trunk [2].



 [2] - https://svn.wso2.org/repos/wso2/trunk/carbon

 Thanks,
 Waruna

 On Sat, Mar 5, 2011 at 12:35 PM, Waruna Ranasinghe war...@wso2.comwrote:

 Hi devs,

 Please restrain from committing to carbon/products [3], since I'm
 re-structuring the svn directory structure.
 I'll send a notice once I'm done with re-structuring.


 [3] - https://svn.wso2.org/repos/wso2/trunk/carbon/products


 Thanks,
 Waruna


 On Sat, Mar 5, 2011 at 9:46 AM, Waruna Ranasinghe war...@wso2.comwrote:

 Hi all,

 Please note $subject.

 I'm going to move Stratos artifacts [1] to mainstream Carbon trunk [2].
 I will send a notice when this is finished.

 The finalized svn structure is shown below.

 carbon [2]
 |pom.xml
 |
 |core
 |
 |dependencies
 |
 |orbit
 |
 |components
 ||pom.xml
 ||stratos
 |||pom.xml
 |||account-mgt
 ||| ...
 ||
 ||aar-services
 ||admin-mgt
 || ...
 |
 |features
 ||pom.xml
 ||stratos
 |||pom.xml
 |||tenant-mgt
 ||| ...
 ||
 ||admin-mgt
 ||application-deployers
 || ...
 |
 |products
 ||pom.xml
 ||appserver
 |||pom.xml
 |||modules
 ||||distribution
 |||||pom.xml
 |||||product
 |||||| ...
 |||||service
 |||||| ...
 ||||
 ||||features
 |||||pom.xml
 |||||product
 |||||| ...
 |||||service
 |||||| ...
 ||||
 ||||p2-profile-gen
 |||||pom.xml
 |||||product
 |||||| ...
 |||||service
 |||||| ...
 ||||
 ||||styles
 |||||pom.xml
 |||||product
 |||||| ...
 |||||service
 |||||| ...
 ||||
 ||||org.wso2.stratos.appserver.dashboard.ui
 ||||org.wso2.stratos.appserver.deployment
 ||||org.wso2.stratos.appserver.login.ui
 ||
 ||bam
 || ...

 [1] - https://svn.wso2.org/repos/wso2/trunk/stratos
 [2] - https://svn.wso2.org/repos/wso2/trunk/carbon


 Thanks,
 Waruna
 --
 -
 Waruna Ranasinghe
 Senior Software Engineer, WSO2

 Mobile: +94 724 318285
 BLOG: http://warunapw.blogspot.com

 www.wso2.com - Lean . Enterprise . Middleware




 --
 -
 Waruna Ranasinghe
 Senior Software Engineer, WSO2

 Mobile: +94 724 318285
 BLOG: http://warunapw.blogspot.com

 www.wso2.com - Lean . Enterprise . Middleware




 --
 -
 Waruna Ranasinghe
 Senior Software Engineer, WSO2

 Mobile: +94 724 318285
 BLOG: http://warunapw.blogspot.com

 www.wso2.com - Lean . Enterprise . Middleware

 ___
 Stratos-dev mailing list
 stratos-...@wso2.org
 https://wso2.org/cgi-bin/mailman/listinfo/stratos-dev


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


Re: [Carbon-dev] OpenId4Java as a dependency in our SVN

2011-03-06 Thread Dimuthu Leelarathne
Hi,

On Sun, Mar 6, 2011 at 10:18 PM, Amila Maha Arachchi ami...@wso2.comwrote:

 Hi,

 I have upgraded the maven version to 2.2.1 in the builder machine. But I
 have heard that some versions of maven are not recommended in building
 carbon. Is 2.2.1 safe to be used? If so, please recommend a version.


I am also using mvn 2.2.1.

tx a lot,
dimuthu


 Thanks,
 AmilaM.

 On Sun, Mar 6, 2011 at 9:19 PM, Dimuthu Leelarathne dimut...@wso2.comwrote:

 Hi,

 Openid4java builds on mvn 2.2.0 or above. Shall we upgrade the builder
 machine mvn version to 2.2.0 or above?

 tx,
 dimuthul



 On Fri, Mar 4, 2011 at 10:49 PM, Dimuthu Leelarathne 
 dimut...@wso2.comwrote:

 Hi,

 I added the openid4java into dependency. It is wrong if
 carbon/dependencies generates a jar file as
 openid4java-nodeps-0.9.6-SNAPSHOT.jar. So my idea is to change it by
 appending wso2v1 (I referred what qpid ppl have done)

 We can have one of the two versions.

 1) openid4java-nodeps-0.9.6-wso2v1.jar - orbit bundle would be
 openid4java-nodeps-0.9.6-wso2v1.wso2v1.jar
 2) openid4java-nodeps-0.9.6-SNAPSHOT.wso2v1.jar -
 openid4java-nodeps-0.9.6-SNAPSHOT.wso2v1.wso2v1.jar

 Any objects to option 1 ?

 Thanks,
 dimuthu



 On Fri, Mar 4, 2011 at 3:49 PM, Dimuthu Leelarathne 
 dimut...@wso2.comwrote:

 Hi,

 We need 0.9.6-SNAPSHOT of openid4java to make GApp seamless login to
 work.

 This is what I am going to do,

 1) Copy the current revision of OpenID into our dependencies available
 here http://openid4java.googlecode.com/svn/trunk/. This is not an
 svn  external. It will be a svn copy since we don't want updates. This will
 also checkout the libs directory.

 2) Build openid library and upload it into one of our repos.

 3) Use the timestamped SNAPSHOT in the openid4java orbit project and fix
 the build.

 WDYT ?

 Thanks,
 dimuthu




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



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


Re: [Carbon-dev] LDAP integration to Carbon core

2011-03-06 Thread Thilina Buddhika
On Sun, Mar 6, 2011 at 10:01 PM, Prabath Siriwardana prab...@wso2.comwrote:

 In the case of Stratos - we do not need to have the embedded LDAP - but it
 will be a separate LDAP server. We need to test the OU based tenant
 isolation we did with LDAP in Stratos..


+1.

Also if we are switching to a LDAP based userstore, then we might have to
migrate the existing jdbc based user base to the LDAP server.

Thanks,
Thilina



 Thanks  regards,
 -Prabath


 On Sun, Mar 6, 2011 at 2:56 PM, Hasini Gunasinghe has...@wso2.com wrote:



 On Sun, Mar 6, 2011 at 1:06 PM, Afkham Azeez az...@wso2.com wrote:

 Have you tested this with Stratos?

 Not with a complete Stratos setup.
 How I tested this was: installing multi tenancy feature to IS using
 necessary stratos components built from stratos branch.

 Do we need to do any LDAP initialization when the tenant
 ConfigurationContext is created?

 Sorry, at the moment I  do not have an idea what is tenant
 ConfiguratioContext.

 But, as I understood your question, if you use embedded-ldap server in
 carbon core, you do not have to initialize LDAP since it is started with
 carbon server.
 If you use an external LDAP, then you need to start up a LDAP server and
 point the user-mgt.xml to that.



 On Sun, Mar 6, 2011 at 11:45 AM, Hasini Gunasinghe has...@wso2.comwrote:



 On Sat, Mar 5, 2011 at 11:13 PM, Amila Jayasekara ami...@wso2.comwrote:

 Hi Azeez,

 Please find answers inline.

 Thanks
 AmilaJ

 On Fri, Mar 4, 2011 at 5:59 PM, Afkham Azeez az...@wso2.com wrote:
 Can somebody briefly explain what were the changes that were carried
 out to
 Carbon core to make this work? Where these ports can be defined

 The apacheds server code is wrapped as an OSGi bundle in
 orbit/apacheds component. org.wso2.carbon.ldap.server is the component
 which is responsible for managing LDAP server. It starts, stops LDAP
 server, in addition it also does partition management.

 Hi,


 This component
 starts before user core in carbon.


 Can I please know how have we specified that this component starts
 before user-core?

 The LDAP server specific configurations reside in a file called
 embedded-ldap.xml in repository/conf (In EmbeddedLDAP configuration
 segment). You can change parameters like, ports, connection passwords
 in this file. In addition to LDAP server specific configurations, it
 also has KDC specific configurations.

 ,what the following messages mean etc.

 Log messages starting with org.apache.directory.server.ldap.LdapServer
 are coming from apacheds implementation.
 LDAP server needs a schema to construct the initial LDAP tree
 structure. The default schema for the LDAP server is located at
 repository/data as a zip file (is-default-schema.zip). Thus when we
 start server for the first time apacheds component will extract this
 zip file and create a schema directory. In addition, when we start
 embedded LDAP for the first time it creates a default partition. The
 default partition name and other properties are read from the
 embedded-ldap.xml configuration file (DefaultPartition). The latter
 messages you see in the log are relevant to above actions.

 How MT ins handled

 I assume MT=Multi-tenancy.


 Hasini: Please explain how MT is handled with embedded-ldap.


 We have two ways that we can make LDAP user-store multi-tenanted.

 1. Creating a new partition (i.e new directory tree) for each tenant.
 This is specific to embedded-apacheds because here we use their API.
 2. Creating a new context ('ou' by default) under same directory tree,
 for each tenant. This is generic because here we use JNDI and hence, not
 coupled with any LDAP server implementation.

 We can use any of the above methods with embedded-ldap comes in core.
 But we can only use the second method above with an external LDAP.

 Let me briefly describe implementation details of two methods.

 1st Method:
 i. In tenant-mgt.xml we specify HybridLDAPTenantManager as the
 tenant manager which is initialized when the user-core starts. (at
 DefaultRealmService.)
ii. At the start of ldap.server component, we register an
 implementation of LDAPTenantManager in OSGi registry, through which 
 managing
 partitions of tenants happens.
   iii. HybridLDAPTenantManager uses a reference of an above registered
 LDAPTenantManager service, to handle tenant mgt with LDAP.
   iv. Users and groups of a particular tenant is stored inside its
 partition.
   v. In stratos-tenant-mgt component, tenant specific user-mgt.xml is
 stored in registry/JDBC database which is used to map the tenant to 
 specific
 partition.

 I have included a class diagram and a screenshot related to this 
 herehttp://hasini-gunasinghe.blogspot.com/2011/01/tenant-management-in-wso2-carbon-with.html
 .

 2nd Method:
i. In tenant-mgt.xml we specify CommonHybridLDAPTenantManager as
 the tenant manager which is initialized when the user-core starts.
   ii. Users and groups of a particular tenant is stored under its
 context.
  iii. In 

Re: [Carbon-dev] Optimizing Maven build script to make Carbon build faster and reliable.

2011-03-06 Thread Waruna Ranasinghe
On Sun, Mar 6, 2011 at 12:07 PM, Sameera Jayasoma same...@wso2.com wrote:

 Some more..

 3) Merge Stratos trunk with the Carbon trunk - *Waruna*

3) Merge Stratos trunk with the Carbon trunk - *Waruna*
*
*
Done. Please verify.

Thanks,
Waruna



 4) Incremental build support - *Harshana*
 5) Maven Exclusions - *Sameera*

 Please add, if I missed anything. Please update on the progress about these
 assigned tasks.

 Thanks,
 Sameera.


 On Sun, Mar 6, 2011 at 12:04 PM, Sameera Jayasoma same...@wso2.comwrote:

 We have came up with following tasks to achieve $Subject.

 1) Upload artifacts generated in the dependencies and orbit projects. *
 Pradeep/SupunM*
 2) Separate out Code generation from all the UI bundles in Core and
 Components projects - Pradeep

 --
 Sameera Jayasoma
 Technical Lead and Product Manager, WSO2 Carbon

 WSO2, Inc. (http://wso2.com)
 email: same...@wso2.com
 blog: http://tech.jayasoma.org

 Lean . Enterprise . Middleware




 --
 Sameera Jayasoma
 Technical Lead and Product Manager, WSO2 Carbon

 WSO2, Inc. (http://wso2.com)
 email: same...@wso2.com
 blog: http://tech.jayasoma.org

 Lean . Enterprise . Middleware

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




-- 
-
Waruna Ranasinghe
Senior Software Engineer, WSO2

Mobile: +94 724 318285
BLOG: http://warunapw.blogspot.com

www.wso2.com - Lean . Enterprise . Middleware
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] New carbon component for issue tracking

2011-03-06 Thread Hasini Yatawatte
On Sun, Mar 6, 2011 at 9:52 PM, Afkham Azeez az...@wso2.com wrote:

 The component is a bit different. It automatically logs a JIRA if an error
 occurs. It may be possible to merge the two components.


  Yes we can merge those two components. AFAIK error reporting component
access JIRA directly. We can make it to happen through a common admin
service.




 On Sun, Mar 6, 2011 at 6:53 PM, Sameera Jayasoma same...@wso2.com wrote:

 Ajith developed an error reporting component recently. May be you can
 reuse it. Ajith please confirm.

 Thanks,
 Sameera.

 On Sunday, March 6, 2011, Hasini Yatawatte hasi...@wso2.com wrote:
 
 
 
 
 
 
 
 
  Hi devs,These days I am working on a new carbon
  component for tracking issues. The main objective of this is to allow
  users of our products to report issues to JIRA and retrieve status of
  issues reported through the product itself.
 
 
 
  The design of the component is as shown
  in the following diagram. FE sends a request to report an issue to BE
  where the BE connects to the issue tracking system via an adapter
  implementation. Currently I have implemented the adapter  to  JIRA
  only. I am hoping to implement it to support Bugzilla as well in the
  future.
 
 
 
 
 
 
 
 
 
 
 
 
  The features of this component are as
  follows.Multiple JIRA multiple user
scenario
Users can add multiple JIRA account
details (eg: private, public, support etc) and
 corresponding
credentials which are stored inside an embedded registry.
Credentials are validated before storing and there is an
 option to
edit them after wards as well. Hence when creating an
 issue user is
not required to provide credentials again, rather its just
 a matter
of  selecting the JIRA account from a drop down
 list.Reporting issues.
 - Users can report issues to
multiple JIRA accounts.
 - Unlike creating issues from
JIRA interface directly, here user need not to specify operating
environment details. Rather they are automatically captured from
 the
BE.
- Issues are assigned to project
lead automatically.Retrieving issues
   Users can view issues reported by
him/her self for a selected JIRA account.
 
 
 
 
 
 
 
 
  What I have done so far  -  Implementation comes as 5
modules
 
 
 
 
 
 
 
 
 
 
 1. Issue tracking adapter API
  Adapter implementation for
JIRA
Back end component consisting
admin service
Front end component
common component to provide
utility methods and common
 functionalities.
 
 
 
 
 
 
 - Component is listed under Tools
menu as follows.
  - FE and BE functionality of
handling multiple JIRA accounts, validating credentials, putting
 and
getting them as registry resources are done. - FE and BE
 functionality for
reporting issues from multiple accounts is done. - Retrieving
 issues reported by an
user is done.
 
 
 
 
 
 
 
 
  To Dos :Handling attachments when
reporting an issue.
Displaying issues in a paginated
manner.Applying a user based permission model to resources
 stored in registry.
 Any comments on this are highly appreciated.
 
  Thanks,
  Best Regards,
 
  --
  Hasini Randika Yatawatte,
  Software Engineer.
  WSO2 Inc.
 

 --
 Sameera Jayasoma
 Technical Lead and Product Manager, WSO2 Carbon

 WSO2, Inc. (http://wso2.com)
 email: same...@wso2.com
 blog: http://tech.jayasoma.org

 Lean . Enterprise . Middleware
 ___
 Carbon-dev mailing list
 Carbon-dev@wso2.org
 http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev




 --
 *Afkham Azeez*
 Senior Software Architect  Senior Manager; WSO2, Inc.; http://wso2.com,
 *
 *
 *Member; Apache Software Foundation; 
 **http://www.apache.org/*http://www.apache.org/
 *
 email: **az...@wso2.com* az...@wso2.com* cell: +94 77 3320919
 blog: **http://blog.afkham.org* http://blog.afkham.org*
 twitter: **http://twitter.com/afkham_azeez*http://twitter.com/afkham_azeez
 *
 linked-in: **http://lk.linkedin.com/in/afkhamazeez*
 *
 *
 *Lean . Enterprise . Middleware*


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




-- 
Hasini Randika Yatawatte,
Software Engineer.
WSO2 Inc.
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


[Carbon-dev] WSO2 Carbon Continuous Build has FAILED

2011-03-06 Thread WSO2 Builder
A
products/manager/modules/distribution/service/bam-resources/dashboard/gadgets/latest-in-fault-count-for-endpoint.xml
A
products/manager/modules/distribution/service/bam-resources/dashboard/gadgets/latest-in-fault-count-for-proxy.xml
A
products/manager/modules/distribution/service/bam-resources/dashboard/gadgets/latest-in-average-response-time-for-endpoint.xml
A
products/manager/modules/distribution/service/bam-resources/dashboard/gadgets/latest-in-minimum-response-time-for-proxy.xml
A
products/manager/modules/distribution/service/bam-resources/dashboard/gadgets/latest-in-maximum-response-time-for-endpoint.xml
A
products/manager/modules/distribution/service/bam-resources/dashboard/gadgets/latest-in-maximum-response-time-for-proxy.xml
A
products/manager/modules/distribution/service/bam-resources/dashboard/gadgets/latest-operations-for-activityid.xml
A
products/manager/modules/distribution/service/bam-resources/dashboard/gadgets/activity-service-operation-wedge-chart-of-activity.xml
A
products/manager/modules/distribution/service/bam-resources/dashboard/gadgets/user-logins-and-failures.xml
Updated external to revision 89093.

Updated to revision 89092.
Path: .
URL: https://svn.wso2.org/repos/wso2/trunk/carbon
Repository Root: https://svn.wso2.org/repos/wso2
Repository UUID: a5903396-d722-0410-b921-86c7d4935375
Revision: 89092
Node Kind: directory
Schedule: normal
Last Changed Author: waruna
Last Changed Rev: 89092
Last Changed Date: 2011-03-06 22:17:46 +0530 (Sun, 06 Mar 2011)

Sun Mar  6 22:46:50 IST 2011
[INFO] Scanning for projects...
Downloading: http://repo1.maven.org/maven2/org/apache/apache/8/apache-8.pom
799/?
2008/?
3767/?
6990/?
10798/?
11032/?
14054/?
   
Downloading: http://dist.wso2.org/maven2//org/apache/apache/7/apache-7.pom
1/14K
2/14K
3/14K
5/14K
6/14K
8/14K
9/14K
10/14K
12/14K
13/14K
14/14K
14K downloaded  (apache-7.pom)
[INFO] 
[ERROR] BUILD FAILURE
[INFO] 
[INFO] Project 'org.wso2.carbon:org.wso2.carbon.ui.menu.general' is duplicated 
in the reactor
[INFO] 
[INFO] For more information, run Maven with the -e switch
[INFO] 
[INFO] Total time: 41 seconds
[INFO] Finished at: Sun Mar 06 22:47:31 IST 2011
[INFO] Final Memory: 205M/1256M
[INFO] 
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


[Carbon-dev] Error while building ESB

2011-03-06 Thread Supun Kamburugamuva
Embedded error: System is offline.

Try downloading the file manually from the project website.

Then, install it using the command:
mvn install:install-file -DgroupId=org.wso2.carbon
-DartifactId=org.wso2.carbon.ui.menu.general -Dversion=1.1.0-SNAPSHOT
-Dpackaging=jar -Dfile=/path/to/file

Alternatively, if you host your own repository you can deploy the file there:
mvn deploy:deploy-file -DgroupId=org.wso2.carbon
-DartifactId=org.wso2.carbon.ui.menu.general -Dversion=1.1.0-SNAPSHOT
-Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]


  org.wso2.carbon:org.wso2.carbon.ui.menu.general:jar:1.1.0-SNAPSHOT

Thanks,
-- 
Supun Kamburugamuva
Technical Lead   Product Manager, WSO2 Inc.; http://wso2.com
Member, Apache Software Foundation; http://www.apache.org
WSO2 Inc.;  http://wso2.org
E-mail: su...@wso2.com;  Mobile: +94 77 431 3585
Blog: http://supunk.blogspot.com
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


[Carbon-dev] WSO2 Carbon Continuous Build has FAILED

2011-03-06 Thread WSO2 Builder
Fetching external item into 
'components/governance/org.wso2.carbon.governance.api/src/test/resources/carbon-home'
Updated external to revision 89093.


Fetching external item into 
'components/governance/org.wso2.carbon.governance.api/src/test/resources/user-test'
Updated external to revision 89093.


Fetching external item into 'features/etc'
Updated external to revision 89093.

Updated to revision 89093.
Path: .
URL: https://svn.wso2.org/repos/wso2/trunk/carbon
Repository Root: https://svn.wso2.org/repos/wso2
Repository UUID: a5903396-d722-0410-b921-86c7d4935375
Revision: 89093
Node Kind: directory
Schedule: normal
Last Changed Author: indika
Last Changed Rev: 89093
Last Changed Date: 2011-03-06 22:37:05 +0530 (Sun, 06 Mar 2011)

Sun Mar  6 23:17:11 IST 2011
[INFO] Scanning for projects...
[INFO] 
[ERROR] BUILD FAILURE
[INFO] 
[INFO] Project 'org.wso2.carbon:org.wso2.carbon.ui.menu.general' is duplicated 
in the reactor
[INFO] 
[INFO] For more information, run Maven with the -e switch
[INFO] 
[INFO] Total time: 24 seconds
[INFO] Finished at: Sun Mar 06 23:17:38 IST 2011
[INFO] Final Memory: 206M/1260M
[INFO] 
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Error while building ESB

2011-03-06 Thread Amila Maha Arachchi
Hi Supun,

Now, stratos components are also in carbon trunk components/stratos. And,
when the product is built, service also builds. Check whether stratos is
added as a module in the components' esb profile. I think this might be the
reason for the error.

Waruna was making these changes and there was a mail thread regarding this
(I guess both in stratos and carbon dev lists).

HTH.

Thanks,
AmilaM.

On Sun, Mar 6, 2011 at 11:12 PM, Supun Kamburugamuva su...@wso2.com wrote:

 Embedded error: System is offline.

 Try downloading the file manually from the project website.

 Then, install it using the command:
mvn install:install-file -DgroupId=org.wso2.carbon
 -DartifactId=org.wso2.carbon.ui.menu.general -Dversion=1.1.0-SNAPSHOT
 -Dpackaging=jar -Dfile=/path/to/file

 Alternatively, if you host your own repository you can deploy the file
 there:
mvn deploy:deploy-file -DgroupId=org.wso2.carbon
 -DartifactId=org.wso2.carbon.ui.menu.general -Dversion=1.1.0-SNAPSHOT
 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]


  org.wso2.carbon:org.wso2.carbon.ui.menu.general:jar:1.1.0-SNAPSHOT

 Thanks,
 --
 Supun Kamburugamuva
 Technical Lead   Product Manager, WSO2 Inc.; http://wso2.com
 Member, Apache Software Foundation; http://www.apache.org
 WSO2 Inc.;  http://wso2.org
 E-mail: su...@wso2.com;  Mobile: +94 77 431 3585
 Blog: http://supunk.blogspot.com
 ___
 Carbon-dev mailing list
 Carbon-dev@wso2.org
 http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev

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


Re: [Carbon-dev] Error while building ESB

2011-03-06 Thread Amila Maha Arachchi
BTW, I guess you'll have to svn up components, features and the product to
get these svn structural changes reflected.

Thanks,
AmilaM.

On Sun, Mar 6, 2011 at 11:35 PM, Amila Maha Arachchi ami...@wso2.comwrote:

 Hi Supun,

 Now, stratos components are also in carbon trunk components/stratos. And,
 when the product is built, service also builds. Check whether stratos is
 added as a module in the components' esb profile. I think this might be the
 reason for the error.

 Waruna was making these changes and there was a mail thread regarding this
 (I guess both in stratos and carbon dev lists).

 HTH.

 Thanks,
 AmilaM.


 On Sun, Mar 6, 2011 at 11:12 PM, Supun Kamburugamuva su...@wso2.comwrote:

 Embedded error: System is offline.

 Try downloading the file manually from the project website.

 Then, install it using the command:
mvn install:install-file -DgroupId=org.wso2.carbon
 -DartifactId=org.wso2.carbon.ui.menu.general -Dversion=1.1.0-SNAPSHOT
 -Dpackaging=jar -Dfile=/path/to/file

 Alternatively, if you host your own repository you can deploy the file
 there:
mvn deploy:deploy-file -DgroupId=org.wso2.carbon
 -DartifactId=org.wso2.carbon.ui.menu.general -Dversion=1.1.0-SNAPSHOT
 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]


  org.wso2.carbon:org.wso2.carbon.ui.menu.general:jar:1.1.0-SNAPSHOT

 Thanks,
 --
 Supun Kamburugamuva
 Technical Lead   Product Manager, WSO2 Inc.; http://wso2.com
 Member, Apache Software Foundation; http://www.apache.org
 WSO2 Inc.;  http://wso2.org
 E-mail: su...@wso2.com;  Mobile: +94 77 431 3585
 Blog: http://supunk.blogspot.com
 ___
 Carbon-dev mailing list
 Carbon-dev@wso2.org
 http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev



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


[Carbon-dev] WSO2 Carbon Continuous Build has FAILED

2011-03-06 Thread WSO2 Builder
Fetching external item into 
'components/governance/org.wso2.carbon.governance.api/src/test/resources/carbon-home'
External at revision 89093.


Fetching external item into 
'components/governance/org.wso2.carbon.governance.api/src/test/resources/user-test'
External at revision 89093.


Fetching external item into 'features/etc'
External at revision 89093.

At revision 89093.
Path: .
URL: https://svn.wso2.org/repos/wso2/trunk/carbon
Repository Root: https://svn.wso2.org/repos/wso2
Repository UUID: a5903396-d722-0410-b921-86c7d4935375
Revision: 89093
Node Kind: directory
Schedule: normal
Last Changed Author: indika
Last Changed Rev: 89093
Last Changed Date: 2011-03-06 22:37:05 +0530 (Sun, 06 Mar 2011)

Sun Mar  6 23:45:13 IST 2011
[INFO] Scanning for projects...
[INFO] 
[ERROR] BUILD FAILURE
[INFO] 
[INFO] Project 'org.wso2.carbon:org.wso2.carbon.ui.menu.general' is duplicated 
in the reactor
[INFO] 
[INFO] For more information, run Maven with the -e switch
[INFO] 
[INFO] Total time: 43 seconds
[INFO] Finished at: Sun Mar 06 23:45:56 IST 2011
[INFO] Final Memory: 205M/1260M
[INFO] 
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] LDAP integration to Carbon core

2011-03-06 Thread Amila Jayasekara
On Sat, Mar 5, 2011 at 10:15 PM, Hasini Gunasinghe has...@wso2.com wrote:


 On Sat, Mar 5, 2011 at 11:13 PM, Amila Jayasekara ami...@wso2.com wrote:

 Hi Azeez,

 Please find answers inline.

 Thanks
 AmilaJ

 On Fri, Mar 4, 2011 at 5:59 PM, Afkham Azeez az...@wso2.com wrote:
 Can somebody briefly explain what were the changes that were carried out
 to
 Carbon core to make this work? Where these ports can be defined

 The apacheds server code is wrapped as an OSGi bundle in
 orbit/apacheds component. org.wso2.carbon.ldap.server is the component
 which is responsible for managing LDAP server. It starts, stops LDAP
 server, in addition it also does partition management.

 Hi,


 This component
 starts before user core in carbon.


Can I please know how have we specified that this component starts before
user-core?

Hi Hasini,
Please look at felix plugin configuration in
org.wso2.carbon.ldap.server/pom.xml. The DeployBefore tag suppose to
do this. But i am also having difficulty recalling where we have
defined term UserCore. Will get back to you on this after
investigating further.

Thanks
AmilaJ


 The LDAP server specific configurations reside in a file called
 embedded-ldap.xml in repository/conf (In EmbeddedLDAP configuration
 segment). You can change parameters like, ports, connection passwords
 in this file. In addition to LDAP server specific configurations, it
 also has KDC specific configurations.

 ,what the following messages mean etc.

 Log messages starting with org.apache.directory.server.ldap.LdapServer
 are coming from apacheds implementation.
 LDAP server needs a schema to construct the initial LDAP tree
 structure. The default schema for the LDAP server is located at
 repository/data as a zip file (is-default-schema.zip). Thus when we
 start server for the first time apacheds component will extract this
 zip file and create a schema directory. In addition, when we start
 embedded LDAP for the first time it creates a default partition. The
 default partition name and other properties are read from the
 embedded-ldap.xml configuration file (DefaultPartition). The latter
 messages you see in the log are relevant to above actions.

 How MT ins handled

 I assume MT=Multi-tenancy.


 Hasini: Please explain how MT is handled with embedded-ldap.


 We have two ways that we can make LDAP user-store multi-tenanted.
 1. Creating a new partition (i.e new directory tree) for each tenant. This
 is specific to embedded-apacheds because here we use their API.
 2. Creating a new context ('ou' by default) under same directory tree, for
 each tenant. This is generic because here we use JNDI and hence, not coupled
 with any LDAP server implementation.
 We can use any of the above methods with embedded-ldap comes in core. But we
 can only use the second method above with an external LDAP.
 Let me briefly describe implementation details of two methods.
 1st Method:
     i. In tenant-mgt.xml we specify HybridLDAPTenantManager as the tenant
 manager which is initialized when the user-core starts. (at
 DefaultRealmService.)
    ii. At the start of ldap.server component, we register an implementation
 of LDAPTenantManager in OSGi registry, through which managing partitions of
 tenants happens.
   iii. HybridLDAPTenantManager uses a reference of an above registered
 LDAPTenantManager service, to handle tenant mgt with LDAP.
   iv. Users and groups of a particular tenant is stored inside its
 partition.
   v. In stratos-tenant-mgt component, tenant specific user-mgt.xml is stored
 in registry/JDBC database which is used to map the tenant to specific
 partition.
 I have included a class diagram and a screenshot related to this here.
 2nd Method:
    i. In tenant-mgt.xml we specify CommonHybridLDAPTenantManager as the
 tenant manager which is initialized when the user-core starts.
   ii. Users and groups of a particular tenant is stored under its context.
  iii. In stratos-tenant-mgt component, tenant specific user-mgt.xml is
 stored in registry/JDBC database which is used to map the tenant to specific
 context.
 Common remarks regarding both the methods:
 1. Hybrid approach is used where mapping between tenant and the
 user-mgt.xml, and other meta-data is stored in JDBC database.
 2. Class names used for tenant manager at each scenario is not that clear.
 We may need to rename them.
 Thanks,
 Hasini.




 etc. Sorry, I wasn't
  following the entire conversation.
  [2011-03-05 07:24:03,001]  INFO
  {org.wso2.carbon.ldap.server.DirectoryActivator} -  Starting directory
  service on port 10389
  [2011-03-05 07:24:03,022]  INFO
  {org.apache.directory.server.ldap.LdapServer} -  Added Extended Request
  Handler: 1.3.6.1.4.1.1466.20037
  [2011-03-05 07:24:03,106]  INFO
  {org.apache.directory.server.ldap.LdapServer} -  Added Extended Request
  Handler: 1.3.6.1.4.1.18060.0.1.6
  [2011-03-05 07:24:03,116]  INFO
  {org.apache.directory.server.ldap.LdapServer} -  Successful bind of an
  LDAP
  Service (10389) is completed.
  

Re: [Carbon-dev] Cannot enable JMS transport listener/sender in wso2appserver-4.0.0

2011-03-06 Thread Hiranya Jayathilaka
On Sun, Mar 6, 2011 at 9:10 PM, Kasun Indrasiri ka...@wso2.com wrote:

 Hi,
 $subject. However this works fine in wso2wsas-3.2.0. Any thoughts?

 - jms broker : apache-activemq-5.4.2

 - /repository/components/lib contains
 activeio-core-3.1.2.jar  activemq-core-5.4.2.jar
  geronimo-j2ee-management_1.1_spec-1.0.1.jar
  geronimo-jms_1.1_spec-1.1.1.jar


I think the location where you have to deploy the jars are different in
latest releases. There were some discussions regarding this earlier as well.
Digging into the old mailing list threads might help.

Thanks,
Hiranya





 [2011-03-06 09:32:24,367] ERROR
 {org.wso2.carbon.core.transports.AbstractTransportService} -  Error while
 initializing the jms listener
 java.lang.NoClassDefFoundError: javax/jms/JMSException
  at
 org.apache.axis2.transport.jms.JMSConnectionFactoryManager.loadConnectionFactoryDefinitions(JMSConnectionFactoryManager.java:58)
 at
 org.apache.axis2.transport.jms.JMSConnectionFactoryManager.init(JMSConnectionFactoryManager.java:45)
  at org.apache.axis2.transport.jms.JMSListener.doInit(JMSListener.java:58)
 at
 org.apache.axis2.transport.base.AbstractTransportListenerEx.init(AbstractTransportListenerEx.java:62)
  at
 org.wso2.carbon.core.transports.AbstractTransportService.updateGlobalTransportParameters(AbstractTransportService.java:130)
 at
 org.wso2.carbon.transport.mgt.TransportAdmin.updateGloballyDefinedInParameters(TransportAdmin.java:445)
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:597)
  at
 org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:205)
 at
 org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver.invokeBusinessLogic(RPCInOnlyMessageReceiver.java:63)
  at
 org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:110)
 at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:178)
  at
 org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:173)
 at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:145)
  at
 org.wso2.carbon.core.transports.CarbonServlet.doPost(CarbonServlet.java:206)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at
 org.eclipse.equinox.http.servlet.internal.ServletRegistration.handleRequest(ServletRegistration.java:90)
  at
 org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:111)
 at
 org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:67)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at org.wso2.carbon.bridge.BridgeServlet.service(BridgeServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
  at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
 at
 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
  at
 org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
 at
 org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
  at
 org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
 at org.wso2.carbon.server.TomcatServer$1.invoke(TomcatServer.java:314)
  at
 org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
 at
 org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
  at
 org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
 at
 org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
  at
 org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
 at
 org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
  at
 org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
 at java.lang.Thread.run(Thread.java:619)
 Caused by: java.lang.ClassNotFoundException: javax.jms.JMSException
 at
 org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:443)
  at
 org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:405)
 at
 org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:393)
  at
 org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:105)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
  ... 40 more


 --
 Kasun Indrasiri
 Senior Software Engineer
 WSO2, Inc.; http://wso2.com
 lean.enterprise.middleware

 cell: +94 71 536 4128
 Blog : http://kasunpanorama.blogspot.com/

 

Re: [Carbon-dev] Cannot enable JMS transport listener/sender in wso2appserver-4.0.0

2011-03-06 Thread Charitha Kankanamge
Copy these jars to lib/realm and try.

Regards
Charitha



On Sun, Mar 6, 2011 at 9:10 PM, Kasun Indrasiri ka...@wso2.com wrote:

 Hi,
 $subject. However this works fine in wso2wsas-3.2.0. Any thoughts?

 - jms broker : apache-activemq-5.4.2

 - /repository/components/lib contains
 activeio-core-3.1.2.jar  activemq-core-5.4.2.jar
  geronimo-j2ee-management_1.1_spec-1.0.1.jar
  geronimo-jms_1.1_spec-1.1.1.jar


 [2011-03-06 09:32:24,367] ERROR
 {org.wso2.carbon.core.transports.AbstractTransportService} -  Error while
 initializing the jms listener
 java.lang.NoClassDefFoundError: javax/jms/JMSException
  at
 org.apache.axis2.transport.jms.JMSConnectionFactoryManager.loadConnectionFactoryDefinitions(JMSConnectionFactoryManager.java:58)
 at
 org.apache.axis2.transport.jms.JMSConnectionFactoryManager.init(JMSConnectionFactoryManager.java:45)
  at org.apache.axis2.transport.jms.JMSListener.doInit(JMSListener.java:58)
 at
 org.apache.axis2.transport.base.AbstractTransportListenerEx.init(AbstractTransportListenerEx.java:62)
  at
 org.wso2.carbon.core.transports.AbstractTransportService.updateGlobalTransportParameters(AbstractTransportService.java:130)
 at
 org.wso2.carbon.transport.mgt.TransportAdmin.updateGloballyDefinedInParameters(TransportAdmin.java:445)
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:597)
  at
 org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:205)
 at
 org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver.invokeBusinessLogic(RPCInOnlyMessageReceiver.java:63)
  at
 org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:110)
 at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:178)
  at
 org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:173)
 at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:145)
  at
 org.wso2.carbon.core.transports.CarbonServlet.doPost(CarbonServlet.java:206)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at
 org.eclipse.equinox.http.servlet.internal.ServletRegistration.handleRequest(ServletRegistration.java:90)
  at
 org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:111)
 at
 org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:67)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at org.wso2.carbon.bridge.BridgeServlet.service(BridgeServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
  at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
 at
 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
  at
 org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
 at
 org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
  at
 org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
 at org.wso2.carbon.server.TomcatServer$1.invoke(TomcatServer.java:314)
  at
 org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
 at
 org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
  at
 org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
 at
 org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
  at
 org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
 at
 org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
  at
 org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
 at java.lang.Thread.run(Thread.java:619)
 Caused by: java.lang.ClassNotFoundException: javax.jms.JMSException
 at
 org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:443)
  at
 org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:405)
 at
 org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:393)
  at
 org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:105)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
  ... 40 more


 --
 Kasun Indrasiri
 Senior Software Engineer
 WSO2, Inc.; http://wso2.com
 lean.enterprise.middleware

 cell: +94 71 536 4128
 Blog : http://kasunpanorama.blogspot.com/

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



Re: [Carbon-dev] Cannot enable JMS transport listener/sender in wso2appserver-4.0.0

2011-03-06 Thread Rajika Kumarasiri
Now the JMS jars should be placed in $CARBON_HOME/core/WEB-INF/lib. Copy
only activemq-core and geronimo-j2ee-management_1.0_spec-1.0 jars.
geranomo-jms jars is now by default ship with carbon. lib/relam folder
should not be used because it'll remove shortly. I also wrote some notes
here.

Rajika

On Sun, Mar 6, 2011 at 9:10 PM, Kasun Indrasiri ka...@wso2.com wrote:

 Hi,
 $subject. However this works fine in wso2wsas-3.2.0. Any thoughts?

 - jms broker : apache-activemq-5.4.2

 - /repository/components/lib contains
 activeio-core-3.1.2.jar  activemq-core-5.4.2.jar
  geronimo-j2ee-management_1.1_spec-1.0.1.jar
  geronimo-jms_1.1_spec-1.1.1.jar


 [2011-03-06 09:32:24,367] ERROR
 {org.wso2.carbon.core.transports.AbstractTransportService} -  Error while
 initializing the jms listener
 java.lang.NoClassDefFoundError: javax/jms/JMSException
  at
 org.apache.axis2.transport.jms.JMSConnectionFactoryManager.loadConnectionFactoryDefinitions(JMSConnectionFactoryManager.java:58)
 at
 org.apache.axis2.transport.jms.JMSConnectionFactoryManager.init(JMSConnectionFactoryManager.java:45)
  at org.apache.axis2.transport.jms.JMSListener.doInit(JMSListener.java:58)
 at
 org.apache.axis2.transport.base.AbstractTransportListenerEx.init(AbstractTransportListenerEx.java:62)
  at
 org.wso2.carbon.core.transports.AbstractTransportService.updateGlobalTransportParameters(AbstractTransportService.java:130)
 at
 org.wso2.carbon.transport.mgt.TransportAdmin.updateGloballyDefinedInParameters(TransportAdmin.java:445)
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:597)
  at
 org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:205)
 at
 org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver.invokeBusinessLogic(RPCInOnlyMessageReceiver.java:63)
  at
 org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:110)
 at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:178)
  at
 org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:173)
 at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:145)
  at
 org.wso2.carbon.core.transports.CarbonServlet.doPost(CarbonServlet.java:206)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at
 org.eclipse.equinox.http.servlet.internal.ServletRegistration.handleRequest(ServletRegistration.java:90)
  at
 org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:111)
 at
 org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:67)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at org.wso2.carbon.bridge.BridgeServlet.service(BridgeServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
  at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
 at
 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
  at
 org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
 at
 org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
  at
 org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
 at org.wso2.carbon.server.TomcatServer$1.invoke(TomcatServer.java:314)
  at
 org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
 at
 org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
  at
 org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
 at
 org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
  at
 org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
 at
 org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
  at
 org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
 at java.lang.Thread.run(Thread.java:619)
 Caused by: java.lang.ClassNotFoundException: javax.jms.JMSException
 at
 org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:443)
  at
 org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:405)
 at
 org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:393)
  at
 org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:105)
 at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
  ... 40 more


 --
 Kasun Indrasiri
 Senior Software Engineer
 WSO2, Inc.; http://wso2.com
 lean.enterprise.middleware

 cell: 

Re: [Carbon-dev] Cannot enable JMS transport listener/sender in wso2appserver-4.0.0

2011-03-06 Thread Rajika Kumarasiri
On Mon, Mar 7, 2011 at 7:23 AM, Rajika Kumarasiri raj...@wso2.com wrote:

 Now the JMS jars should be placed in $CARBON_HOME/core/WEB-INF/lib. Copy
 only activemq-core and geronimo-j2ee-management_1.0_spec-1.0 jars.
 geranomo-jms jars is now by default ship with carbon. lib/relam folder
 should not be used because it'll remove shortly. I also wrote some notes
 here.


http://rajikak.blogspot.com/2011/01/configuring-jms-transport-in-wso2-esb.html


 Rajika

 On Sun, Mar 6, 2011 at 9:10 PM, Kasun Indrasiri ka...@wso2.com wrote:

 Hi,
 $subject. However this works fine in wso2wsas-3.2.0. Any thoughts?

 - jms broker : apache-activemq-5.4.2

 - /repository/components/lib contains
 activeio-core-3.1.2.jar  activemq-core-5.4.2.jar
  geronimo-j2ee-management_1.1_spec-1.0.1.jar
  geronimo-jms_1.1_spec-1.1.1.jar


 [2011-03-06 09:32:24,367] ERROR
 {org.wso2.carbon.core.transports.AbstractTransportService} -  Error while
 initializing the jms listener
 java.lang.NoClassDefFoundError: javax/jms/JMSException
  at
 org.apache.axis2.transport.jms.JMSConnectionFactoryManager.loadConnectionFactoryDefinitions(JMSConnectionFactoryManager.java:58)
 at
 org.apache.axis2.transport.jms.JMSConnectionFactoryManager.init(JMSConnectionFactoryManager.java:45)
  at
 org.apache.axis2.transport.jms.JMSListener.doInit(JMSListener.java:58)
 at
 org.apache.axis2.transport.base.AbstractTransportListenerEx.init(AbstractTransportListenerEx.java:62)
  at
 org.wso2.carbon.core.transports.AbstractTransportService.updateGlobalTransportParameters(AbstractTransportService.java:130)
 at
 org.wso2.carbon.transport.mgt.TransportAdmin.updateGloballyDefinedInParameters(TransportAdmin.java:445)
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
 at
 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  at
 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 at java.lang.reflect.Method.invoke(Method.java:597)
  at
 org.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:205)
 at
 org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver.invokeBusinessLogic(RPCInOnlyMessageReceiver.java:63)
  at
 org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:110)
 at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:178)
  at
 org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:173)
 at
 org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:145)
  at
 org.wso2.carbon.core.transports.CarbonServlet.doPost(CarbonServlet.java:206)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at
 org.eclipse.equinox.http.servlet.internal.ServletRegistration.handleRequest(ServletRegistration.java:90)
  at
 org.eclipse.equinox.http.servlet.internal.ProxyServlet.processAlias(ProxyServlet.java:111)
 at
 org.eclipse.equinox.http.servlet.internal.ProxyServlet.service(ProxyServlet.java:67)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at org.wso2.carbon.bridge.BridgeServlet.service(BridgeServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
 at
 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
  at
 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
 at
 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
  at
 org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
 at
 org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
  at
 org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
 at org.wso2.carbon.server.TomcatServer$1.invoke(TomcatServer.java:314)
  at
 org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
 at
 org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
  at
 org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
 at
 org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
  at
 org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
 at
 org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
  at
 org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
 at java.lang.Thread.run(Thread.java:619)
 Caused by: java.lang.ClassNotFoundException: javax.jms.JMSException
 at
 org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:443)
  at
 org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:405)
 at
 org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:393)
  at
 org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:105)
 at 

Re: [Carbon-dev] New carbon component for issue tracking

2011-03-06 Thread Samisa Abeysinghe
On Sun, Mar 6, 2011 at 6:53 PM, Sameera Jayasoma same...@wso2.com wrote:

 Ajith developed an error reporting component recently. May be you can
 reuse it. Ajith please confirm.


Where is that code?

Thanks,
Samisa...

Samisa Abeysinghe
VP Engineering
WSO2 Inc.
http://wso2.com
http://wso2.org
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] New carbon component for issue tracking

2011-03-06 Thread Afkham Azeez
On Mon, Mar 7, 2011 at 7:42 AM, Samisa Abeysinghe sam...@wso2.com wrote:



 On Sun, Mar 6, 2011 at 6:53 PM, Sameera Jayasoma same...@wso2.com wrote:

 Ajith developed an error reporting component recently. May be you can
 reuse it. Ajith please confirm.


 Where is that code?


In some private  SVN location. In the issue tracker configuration, we could
have an option to automatically log JIRAs on errors. This could be how the
two components integrate. In fact, it can be made into a single component.


 Thanks,
 Samisa...

 Samisa Abeysinghe
 VP Engineering
 WSO2 Inc.
 http://wso2.com
 http://wso2.org



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




-- 
*Afkham Azeez*
Senior Software Architect  Senior Manager; WSO2, Inc.; http://wso2.com,
*
*
*Member; Apache Software Foundation;
**http://www.apache.org/*http://www.apache.org/
*
email: **az...@wso2.com* az...@wso2.com* cell: +94 77 3320919
blog: **http://blog.afkham.org* http://blog.afkham.org*
twitter: **http://twitter.com/afkham_azeez*http://twitter.com/afkham_azeez
*
linked-in: **http://lk.linkedin.com/in/afkhamazeez*
*
*
*Lean . Enterprise . Middleware*
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] New carbon component for issue tracking

2011-03-06 Thread Samisa Abeysinghe
On Mon, Mar 7, 2011 at 8:18 AM, Afkham Azeez az...@wso2.com wrote:



 On Mon, Mar 7, 2011 at 7:42 AM, Samisa Abeysinghe sam...@wso2.com wrote:



 On Sun, Mar 6, 2011 at 6:53 PM, Sameera Jayasoma same...@wso2.comwrote:

 Ajith developed an error reporting component recently. May be you can
 reuse it. Ajith please confirm.


 Where is that code?


 In some private  SVN location. In the issue tracker configuration, we could
 have an option to automatically log JIRAs on errors. This could be how the
 two components integrate. In fact, it can be made into a single component.


OK, lets merge then.

Thanks,
Samisa...

Samisa Abeysinghe
VP Engineering
WSO2 Inc.
http://wso2.com
http://wso2.org
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Bundle not getting installed at carbon startup - reason?

2011-03-06 Thread Afkham Azeez
Please make it into an feature. The Equinox dropins handling code seems to
be unstable.


On Sat, Mar 5, 2011 at 7:09 PM, Amila Maha Arachchi ami...@wso2.com wrote:

 Hi devs,

 I am working on a BE component these days. I build these bundle and copy
 the jar to repo/components/dropings and start the carbon server. Then my BE
 service bundle does not get installed. I have to install and start it
 manually via the OSGi console.

 What can be the reason for this behaviour. I think I am missing something.
 What is it?

 Thanks,
 AmilaM.

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




-- 
*Afkham Azeez*
Senior Software Architect  Senior Manager; WSO2, Inc.; http://wso2.com,
*
*
*Member; Apache Software Foundation;
**http://www.apache.org/*http://www.apache.org/
*
email: **az...@wso2.com* az...@wso2.com* cell: +94 77 3320919
blog: **http://blog.afkham.org* http://blog.afkham.org*
twitter: **http://twitter.com/afkham_azeez*http://twitter.com/afkham_azeez
*
linked-in: **http://lk.linkedin.com/in/afkhamazeez*
*
*
*Lean . Enterprise . Middleware*
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] LDAP integration to Carbon core

2011-03-06 Thread Hasini Gunasinghe
On Sun, Mar 6, 2011 at 10:12 PM, Afkham Azeez az...@wso2.com wrote:

 Is Hasini working on this?

I got this to working condition about three weeks before. What is left to do
in this space is moving some hard coded configurations to tenant-mgt.xml.

 Can we start testing this immediately?

Yes, This can be tested with stratos, as it is now.



 On Sun, Mar 6, 2011 at 10:01 PM, Prabath Siriwardana prab...@wso2.comwrote:

 In the case of Stratos - we do not need to have the embedded LDAP - but it
 will be a separate LDAP server. We need to test the OU based tenant
 isolation we did with LDAP in Stratos..

 +1


 Thanks  regards,
 -Prabath


 On Sun, Mar 6, 2011 at 2:56 PM, Hasini Gunasinghe has...@wso2.comwrote:



 On Sun, Mar 6, 2011 at 1:06 PM, Afkham Azeez az...@wso2.com wrote:

 Have you tested this with Stratos?

 Not with a complete Stratos setup.
 How I tested this was: installing multi tenancy feature to IS using
 necessary stratos components built from stratos branch.

 Do we need to do any LDAP initialization when the tenant
 ConfigurationContext is created?

 Sorry, at the moment I  do not have an idea what is tenant
 ConfiguratioContext.

 But, as I understood your question, if you use embedded-ldap server in
 carbon core, you do not have to initialize LDAP since it is started with
 carbon server.
 If you use an external LDAP, then you need to start up a LDAP server and
 point the user-mgt.xml to that.



 On Sun, Mar 6, 2011 at 11:45 AM, Hasini Gunasinghe has...@wso2.comwrote:



 On Sat, Mar 5, 2011 at 11:13 PM, Amila Jayasekara ami...@wso2.comwrote:

 Hi Azeez,

 Please find answers inline.

 Thanks
 AmilaJ

 On Fri, Mar 4, 2011 at 5:59 PM, Afkham Azeez az...@wso2.com wrote:
 Can somebody briefly explain what were the changes that were carried
 out to
 Carbon core to make this work? Where these ports can be defined

 The apacheds server code is wrapped as an OSGi bundle in
 orbit/apacheds component. org.wso2.carbon.ldap.server is the component
 which is responsible for managing LDAP server. It starts, stops LDAP
 server, in addition it also does partition management.

 Hi,


 This component
 starts before user core in carbon.


 Can I please know how have we specified that this component starts
 before user-core?

 The LDAP server specific configurations reside in a file called
 embedded-ldap.xml in repository/conf (In EmbeddedLDAP configuration
 segment). You can change parameters like, ports, connection passwords
 in this file. In addition to LDAP server specific configurations, it
 also has KDC specific configurations.

 ,what the following messages mean etc.

 Log messages starting with org.apache.directory.server.ldap.LdapServer
 are coming from apacheds implementation.
 LDAP server needs a schema to construct the initial LDAP tree
 structure. The default schema for the LDAP server is located at
 repository/data as a zip file (is-default-schema.zip). Thus when we
 start server for the first time apacheds component will extract this
 zip file and create a schema directory. In addition, when we start
 embedded LDAP for the first time it creates a default partition. The
 default partition name and other properties are read from the
 embedded-ldap.xml configuration file (DefaultPartition). The latter
 messages you see in the log are relevant to above actions.

 How MT ins handled

 I assume MT=Multi-tenancy.


 Hasini: Please explain how MT is handled with embedded-ldap.


 We have two ways that we can make LDAP user-store multi-tenanted.

 1. Creating a new partition (i.e new directory tree) for each tenant.
 This is specific to embedded-apacheds because here we use their API.
 2. Creating a new context ('ou' by default) under same directory tree,
 for each tenant. This is generic because here we use JNDI and hence, not
 coupled with any LDAP server implementation.

 We can use any of the above methods with embedded-ldap comes in core.
 But we can only use the second method above with an external LDAP.

 Let me briefly describe implementation details of two methods.

 1st Method:
 i. In tenant-mgt.xml we specify HybridLDAPTenantManager as the
 tenant manager which is initialized when the user-core starts. (at
 DefaultRealmService.)
ii. At the start of ldap.server component, we register an
 implementation of LDAPTenantManager in OSGi registry, through which 
 managing
 partitions of tenants happens.
   iii. HybridLDAPTenantManager uses a reference of an above registered
 LDAPTenantManager service, to handle tenant mgt with LDAP.
   iv. Users and groups of a particular tenant is stored inside its
 partition.
   v. In stratos-tenant-mgt component, tenant specific user-mgt.xml is
 stored in registry/JDBC database which is used to map the tenant to 
 specific
 partition.

 I have included a class diagram and a screenshot related to this 
 herehttp://hasini-gunasinghe.blogspot.com/2011/01/tenant-management-in-wso2-carbon-with.html
 .

 2nd Method:
i. In tenant-mgt.xml we specify 

Re: [Carbon-dev] 27th Feb ESB snapshot build fails due to DB error

2011-03-06 Thread Nirodha Pramod
Hi,

I just downloaded a Greg snapshot build (06-Mar-2011 18:17), but it still
gives the same above issue when trying to start the server up.


[2011-03-07 09:16:27,837] ERROR
{org.wso2.carbon.user.core.util.DatabaseUtil} -  Database Error - Cannot
create PoolableConnectionFactory (Unsupported database file version or
invalid file header in file Old database:
/home/nirodha/Servers/G-reg/wso2greg-4.0.0-SNAPSHOT/repository/database/WSO2CARBON_DB.data.db
- please convert the database to a SQL script and re-create it.
[90048-140])
org.apache.commons.dbcp.SQLNestedException: Cannot create
PoolableConnectionFactory (Unsupported database file version or invalid file
header in file Old database:
/home/nirodha/Servers/G-reg/wso2greg-4.0.0-SNAPSHOT/repository/database/WSO2CARBON_DB.data.db
- please convert the database to a SQL script and re-create it.
[90048-140])
at
org.apache.commons.dbcp.BasicDataSource.createPoolableConnectionFactory(BasicDataSource.java:1549)
at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1388)
at
org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
at
org.wso2.carbon.user.core.claim.dao.ClaimDAO.getDialectCount(ClaimDAO.java:158)
at
org.wso2.carbon.user.core.common.DefaultRealm.populateProfileAndClaimMaps(DefaultRealm.java:278)
at
org.wso2.carbon.user.core.common.DefaultRealm.init(DefaultRealm.java:109)
at
org.wso2.carbon.user.core.common.DefaultRealmService.initializeRealm(DefaultRealmService.java:225)
at
org.wso2.carbon.user.core.common.DefaultRealmService.init(DefaultRealmService.java:104)
at
org.wso2.carbon.user.core.common.DefaultRealmService.init(DefaultRealmService.java:117)
at
org.wso2.carbon.user.core.internal.Activator.startDeploy(Activator.java:51)
at
org.wso2.carbon.user.core.internal.BundleCheckActivator.start(BundleCheckActivator.java:54)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run(BundleContextImpl.java:782)
at java.security.AccessController.doPrivileged(Native Method)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:773)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:754)
at
org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:352)
at
org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:370)
at
org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:1068)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:557)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:464)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:248)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:445)
at
org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:220)
at
org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:330)
Caused by: org.h2.jdbc.JdbcSQLException: Unsupported database file version
or invalid file header in file Old database:
/home/nirodha/Servers/G-reg/wso2greg-4.0.0-SNAPSHOT/repository/database/WSO2CARBON_DB.data.db
- please convert the database to a SQL script and re-create it. [90048-140]


Regards,
Nirodha.


On Fri, Mar 4, 2011 at 12:23 PM, Prabath Siriwardana prab...@wso2.comwrote:

 Thanks a lot AmilaM and Anjana..

 Thanks  regards,
 -Prabath


 On Fri, Mar 4, 2011 at 12:17 PM, Amila Maha Arachchi ami...@wso2.comwrote:

 Hi,

 I had look in to this with Anjana. According to him this was due to a
 wrong h2 version. This seems to be fixed after 27th Feb (date of last
 build). Therefore I triggered a new build in the builder machine WITHOUT
 TESTS (otherwise the QA guys wont get a pack for weeks to test, due to the
 test failures we are having at the moment). Will see the outcome of this
 build.

 Thanks,
 AmilaM.


 On Thu, Mar 3, 2011 at 5:06 PM, Prabath Siriwardana prab...@wso2.comwrote:

 Hi Anjana,

 Can you please have a look.. As per Sumedha - it seems like a DB issue...
 Also this still works fine in the local machine..

 Thanks  regards,
 -Prabath

 On Thu, Mar 3, 2011 at 4:58 PM, Charitha Kankanamge 
 chari...@wso2.comwrote:


 Can someone fix this issue ASAP please? We are unable to test any of the
 pack because of this issue. :(

 Regards
 Charitha

 On Wed, Mar 2, 2011 at 12:35 PM, Tharindu Mathew thari...@wso2.comwrote:

 I also got this error when I tried to start up G-Reg after downloading
 from http://10.100.1.43/~carbon/releases/carbon/3.2.0/latest/


 On Wed, Mar 2, 2011 at 9:29 AM, Charitha Kankanamge chari...@wso2.com
  wrote:

 Hi,
 As I stated in my previous reply, I also got the same error. Note that
 we did not do any changes to H2 Driver or any other. We just 

Re: [Carbon-dev] gadget problem in ShoppingCart in Carbon Studio

2011-03-06 Thread Manisha Gayathri
On Sun, Mar 6, 2011 at 8:39 PM, Xue-Feng Yang just4l...@yahoo.com wrote:



 - Forwarded Message 
 *From:* Xue-Feng Yang just4l...@yahoo.com
 *To:* Manisha Gayathri mani...@wso2.com
 *Sent:* Sun, March 6, 2011 10:54:14 PM
 *Subject:* Re: [Carbon-dev] gadget problem in ShoppingCart in Carbon
 Studio

 Hi Manisha,

 Late reply is also welcomed.

 I was talking about ProductsChart.xml, but you answer is about 
 ProductList.xml.
 They should be the same. However, If you read my message carefully, you
 should find there were no problems in the deployment of gadgets. Actually,
 the second error message stated that the gadget was in the right position,
 but it couldn't find the data service:


Hi Xue-Feng,

Both the ProductList.xml and ProductsChart.xml get deployed in exactly the
same way.
Do you mean that all the other gadgets get populate fine and only this
particular ProdcutsChart.xml gadget does not work properly?

I have noticed that your gadget resource path is
/registry/resource/_system/config/repository/gadget-server/gadgets/
ProductsChart.xml
while the path that the gadget actually get deployed when go through the
steps in the sample is,
/registry/resource/_system/config/repository/dashboards/gadgets/ProductsChart.xml

For the ease of clarification, could you please briefly tell us the steps
that you followed in deploying the gadget? So that we can figure out what
has gone wrong.
Is it the same exact steps that is there in the user guide or in the blog
that I have sent you?

Regards,
Manisha


 and on data server, the error message is
 
 [2011-02-25 22:51:31,656] ERROR -  Cannot find service  operation for
 /services/ShoppingCartDS/getAllProducts?nocache=1298645466311
 org.apache.axis2.AxisFault: Cannot find service  operation for
 /services/ShoppingCartDS/getAllProducts?nocache=1298645466311

 By the way, I checked the service by tryIt. It was there.

 Thanks,

 Xue-Feng



 --
 *From:* Manisha Gayathri mani...@wso2.com
 *To:* carbon-dev@wso2.org
 *Cc:* Xue-Feng Yang just4l...@yahoo.com
 *Sent:* Sun, March 6, 2011 10:13:37 PM
 *Subject:* Re: [Carbon-dev] gadget problem in ShoppingCart in Carbon
 Studio



 On Sun, Feb 27, 2011 at 7:18 PM, Xue-Feng Yang just4l...@yahoo.comwrote:

  Hi All,

 Hi Xue Feng,


  I would like to renew the following gadget problem in ShoppingCart in
 Carbon Studio.

 After deployed

 /registry/resource/_system/config/repository/gadget-server/gadgets/
 ProductsChart.xml


 Just now noticed that the Gadget URL that you are specifying here is not
 correct I guess.
 According to the shopping cart sample, they get deployed in the following
 URL.
/_system/config/repository/dashboards/gadgets/ProductList.xml
 Therefore you have to specify the URL below as the gadget URL

 /registry/resource/_system/config/repository/dashboards/gadgets/ProductList.xml

 And also I can assure you that I have tested all these in a fresh machine.

 During that testing round, we found a few of the flaws in documentation. We
 will do the necessary corrections and additions before the next release
 happens.
 Thanks for pointing out and we appreciate your patience too.

 For the moment, I have started blogging about trying out the shopping cart
 sample with Carbon Studio.
 It describes all the scenarios end to end.
 You can go through [1] and see. If you have any doubts, feel free to
 comment or just raise it at carbon-dev.

 [1]. http://manisha-eleperuma.blogspot.com/

 Regards,
 Manisha


 I can see gadget Quantity in Stock, but there is no content in gadget.
 The error message on the gadget server is

 [2011-02-25 22:49:20,125] ERROR
 {org.wso2.carbon.registry.resource.servlets.ResourceServlet} -  Could not
 get the resource content. Path is not specified.

 and on data server, the error message is

 [2011-02-25 22:51:31,656] ERROR -  Cannot find service  operation for
 /services/ShoppingCartDS/getAllProducts?nocache=1298645466311
 org.apache.axis2.AxisFault: Cannot find service  operation for
 /services/ShoppingCartDS/getAllProducts?nocache=1298645466311

 Thanks,

 Xue-Feng



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





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


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


[Carbon-dev] Error starting Carbon : Class not found: java.net.CarbonInet6AddressImpl

2011-03-06 Thread Dimuthu Leelarathne
Hi,

When I try to start Carbon on the latest build I get the following error.

muthulee@muthulee-laptop:~/work/tcarbon-platform/core/distribution/target/wso2carbon-core-3.2.0-SNAPSHOT/bin$
sh wso2server.sh
Class not found: java.net.CarbonInet6AddressImpl:
check impl.prefix property in your properties file.

I checked impl.prefix and it has not been changed.

-Dimpl.prefix=Carbon \

My java version is 1.6.0_13 and I am on Ubuntu 10.04.

Does anyone know how I can fix this?

Thanks,
Dimuthu
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] New carbon component for issue tracking

2011-03-06 Thread Ajith Vitharana
On Mon, Mar 7, 2011 at 8:20 AM, Samisa Abeysinghe sam...@wso2.com wrote:



 On Mon, Mar 7, 2011 at 8:18 AM, Afkham Azeez az...@wso2.com wrote:



 On Mon, Mar 7, 2011 at 7:42 AM, Samisa Abeysinghe sam...@wso2.comwrote:



 On Sun, Mar 6, 2011 at 6:53 PM, Sameera Jayasoma same...@wso2.comwrote:

 Ajith developed an error reporting component recently. May be you can
 reuse it. Ajith please confirm.


Yes , but is not a manual JIRA creation. If we have logged the  errors
or exception(using log4j) then it will  create issues  automatically.

   Thanks
   Ajithn



 Where is that code?


 In some private  SVN location. In the issue tracker configuration, we
 could have an option to automatically log JIRAs on errors. This could be how
 the two components integrate. In fact, it can be made into a single
 component.


 OK, lets merge then.

 Thanks,
 Samisa...

 Samisa Abeysinghe
 VP Engineering
 WSO2 Inc.
 http://wso2.com
 http://wso2.org



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


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


Re: [Carbon-dev] New carbon component for issue tracking

2011-03-06 Thread Ajith Vitharana
On Mon, Mar 7, 2011 at 8:20 AM, Samisa Abeysinghe sam...@wso2.com wrote:



 On Mon, Mar 7, 2011 at 8:18 AM, Afkham Azeez az...@wso2.com wrote:



 On Mon, Mar 7, 2011 at 7:42 AM, Samisa Abeysinghe sam...@wso2.comwrote:



 On Sun, Mar 6, 2011 at 6:53 PM, Sameera Jayasoma same...@wso2.comwrote:

 Ajith developed an error reporting component recently. May be you can
 reuse it. Ajith please confirm.


 Where is that code?


 In some private  SVN location. In the issue tracker configuration, we
 could have an option to automatically log JIRAs on errors. This could be how
 the two components integrate. In fact, it can be made into a single
 component.


 OK, lets merge then.


  +1 .

 Thanks,
 Samisa...

 Samisa Abeysinghe
 VP Engineering
 WSO2 Inc.
 http://wso2.com
 http://wso2.org



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


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


Re: [Carbon-dev] 27th Feb ESB snapshot build fails due to DB error

2011-03-06 Thread Ishani Ratnayake
Hi,

With the Latest ESB pack (6th March 2011) I get the following and the build
refrain from starting up. ESB Team please have a look.

[2011-03-07 09:54:46,924]  INFO - Main Initializing system...
[2011-03-07 09:54:47,395]  INFO - TomcatCarbonWebappDeployer Deployed Carbon
webapp: StandardEngine[Tomcat].StandardHost[defaulthost].StandardContext[/]
[2011-03-07 09:54:59,699]  INFO - CarbonCoreActivator Starting WSO2
Carbon...
[2011-03-07 09:54:59,702]  INFO - CarbonCoreActivator Operating System :
Linux 2.6.32-25-generic, i386
[2011-03-07 09:54:59,702]  INFO - CarbonCoreActivator Java Home:
/home/ishani/jdk1.6.0_21/jre
[2011-03-07 09:54:59,702]  INFO - CarbonCoreActivator Java Version :
1.6.0_21-ea
[2011-03-07 09:54:59,702]  INFO - CarbonCoreActivator Java VM  :
Java HotSpot(TM) Server VM 17.0-b15,Sun Microsystems Inc.
[2011-03-07 09:54:59,702]  INFO - CarbonCoreActivator Carbon Home  :
/home/ishani/Desktop/wso2esb-4.0.0-SNAPSHOT
[2011-03-07 09:54:59,703]  INFO - CarbonCoreActivator Java Temp Dir:
/home/ishani/Desktop/wso2esb-4.0.0-SNAPSHOT/tmp
[2011-03-07 09:54:59,703]  INFO - CarbonCoreActivator User :
ishani, en-US, Asia/Colombo
[2011-03-07 09:55:07,296]  INFO - LDAPConfigurationBuilder KDC server is
disabled.
[2011-03-07 09:55:07,302]  INFO - DirectoryActivator Initializing Directory
Server with working directory
/home/ishani/Desktop/wso2esb-4.0.0-SNAPSHOT/repository/data/org.wso2.carbon.directory
and port 10389
[2011-03-07 09:55:07,494]  INFO - CarbonSchemaLdifExtractor Schema directory
'/home/ishani/Desktop/wso2esb-4.0.0-SNAPSHOT/repository/data/org.wso2.carbon.directory/schema'
does NOT exist: extracted state set to false.
[2011-03-07 09:55:09,977]  INFO - CarbonSchemaLdifExtractor Successfully
extracted schema files to path
/home/ishani/Desktop/wso2esb-4.0.0-SNAPSHOT/repository/data/org.wso2.carbon.directory/schema
using schema zip file
/home/ishani/Desktop/wso2esb-4.0.0-SNAPSHOT/repository/data/is-default-schema.zip
[2011-03-07 09:55:15,364] ERROR - DefaultServerAttribute ERR_04450 The value
{0} is incorrect, it hasnt been added
[2011-03-07 09:55:16,602]  INFO - DirectoryActivator Starting directory
service on port 10389
[2011-03-07 09:55:16,749]  INFO - ApacheLDAPServer LDAP server started.
[2011-03-07 09:55:16,828]  INFO - ApacheDirectoryPartitionManager Partition
created with following attributes, partition id - root, Partition domain -
dc=wso2,dc=org, Partition working directory
/home/ishani/Desktop/wso2esb-4.0.0-SNAPSHOT/repository/data/org.wso2.carbon.directory/root
[2011-03-07 09:55:19,394]  INFO - InputOutputAdaptersComponent There is no
adapters-component.conf.. Using the default configuration
[2011-03-07 09:55:24,528]  INFO - RegistryCoreServiceComponent Registry
Mode: READ-WRITE
[2011-03-07 09:55:25,601]  INFO - GadgetPopulator Successfully populated the
default Dashboards.
[2011-03-07 09:55:26,725]  INFO - GadgetPopulator Successfully populated the
default Gadgets.
[2011-03-07 09:55:29,170] ERROR - QpidServiceImpl
/home/ishani/Desktop/wso2esb-4.0.0-SNAPSHOT/repository/conf/qpid/config.xml
not found
Initialisation Error : File
/home/ishani/Desktop/wso2esb-4.0.0-SNAPSHOT/repository/conf/qpid/etc/config.xml
could not be found. Check the file exists and is readable.
[2011-03-07 09:56:25,245]  WARN - CarbonServerManager Carbon initialization
is delayed due to the following unsatisfied items:
[2011-03-07 09:56:25,247]  WARN - CarbonServerManager Waiting for required
Module: rampart-trust-1.6.0.wso2v1
[2011-03-07 09:56:25,248]  WARN - CarbonServerManager Waiting for required
Module: rampart-core-1.6.0.wso2v1
[2011-03-07 09:56:25,248]  WARN - CarbonServerManager Waiting for required
Module: savan-core-1.0.0-wso2v2
[2011-03-07 09:57:25,245]  WARN - CarbonServerManager Carbon initialization
is delayed due to the following unsatisfied items:
[2011-03-07 09:57:25,246]  WARN - CarbonServerManager Waiting for required
Module: rampart-trust-1.6.0.wso2v1
[2011-03-07 09:57:25,246]  WARN - CarbonServerManager Waiting for required
Module: rampart-core-1.6.0.wso2v1
[2011-03-07 09:57:25,246]  WARN - CarbonServerManager Waiting for required
Module: savan-core-1.0.0-wso2v2
[2011-03-07 09:58:25,245]  WARN - CarbonServerManager Carbon initialization
is delayed due to the following unsatisfied items:
[2011-03-07 09:58:25,246]  WARN - CarbonServerManager Waiting for required
Module: rampart-trust-1.6.0.wso2v1
[2011-03-07 09:58:25,246]  WARN - CarbonServerManager Waiting for required
Module: rampart-core-1.6.0.wso2v1
[2011-03-07 09:58:25,246]  WARN - CarbonServerManager Waiting for required
Module: savan-core-1.0.0-wso2v2
[2011-03-07 09:59:25,246]  WARN - CarbonServerManager Carbon initialization
is delayed due to the following unsatisfied items:
[2011-03-07 09:59:25,246]  WARN - CarbonServerManager Waiting for required
Module: rampart-trust-1.6.0.wso2v1
[2011-03-07 09:59:25,246]  WARN - CarbonServerManager Waiting for required
Module: rampart-core-1.6.0.wso2v1

Re: [Carbon-dev] New carbon component for issue tracking

2011-03-06 Thread Hasini Yatawatte
On Mon, Mar 7, 2011 at 10:01 AM, Ajith Vitharana aji...@wso2.com wrote:



 On Mon, Mar 7, 2011 at 8:20 AM, Samisa Abeysinghe sam...@wso2.com wrote:



 On Mon, Mar 7, 2011 at 8:18 AM, Afkham Azeez az...@wso2.com wrote:



 On Mon, Mar 7, 2011 at 7:42 AM, Samisa Abeysinghe sam...@wso2.comwrote:



 On Sun, Mar 6, 2011 at 6:53 PM, Sameera Jayasoma same...@wso2.comwrote:

 Ajith developed an error reporting component recently. May be you can
 reuse it. Ajith please confirm.


 Where is that code?


 In some private  SVN location. In the issue tracker configuration, we
 could have an option to automatically log JIRAs on errors. This could be how
 the two components integrate. In fact, it can be made into a single
 component.


 OK, lets merge then.

 +1


   +1 .

 Thanks,
 Samisa...

 Samisa Abeysinghe
 VP Engineering
 WSO2 Inc.
 http://wso2.com
 http://wso2.org



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



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




-- 
Hasini Randika Yatawatte,
Software Engineer.
WSO2 Inc.
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] New carbon component for issue tracking

2011-03-06 Thread Hasini Yatawatte
On Mon, Mar 7, 2011 at 8:20 AM, Samisa Abeysinghe sam...@wso2.com wrote:



 On Mon, Mar 7, 2011 at 8:18 AM, Afkham Azeez az...@wso2.com wrote:



 On Mon, Mar 7, 2011 at 7:42 AM, Samisa Abeysinghe sam...@wso2.comwrote:



 On Sun, Mar 6, 2011 at 6:53 PM, Sameera Jayasoma same...@wso2.comwrote:

 Ajith developed an error reporting component recently. May be you can
 reuse it. Ajith please confirm.


 Where is that code?


 In some private  SVN location. In the issue tracker configuration, we
 could have an option to automatically log JIRAs on errors. This could be how
 the two components integrate. In fact, it can be made into a single
 component.


 OK, lets merge then.


+1

 Thanks,
 Samisa...

 Samisa Abeysinghe
 VP Engineering
 WSO2 Inc.
 http://wso2.com
 http://wso2.org



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




-- 
Hasini Randika Yatawatte,
Software Engineer.
WSO2 Inc.
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] WSO2 Carbon Continuous Build has FAILED

2011-03-06 Thread Waruna Ranasinghe
On Sun, Mar 6, 2011 at 11:45 PM, WSO2 Builder buil...@wso2.org wrote:

 Fetching external item into
 'components/governance/org.wso2.carbon.governance.api/src/test/resources/carbon-home'
 External at revision 89093.


 Fetching external item into
 'components/governance/org.wso2.carbon.governance.api/src/test/resources/user-test'
 External at revision 89093.


 Fetching external item into 'features/etc'
 External at revision 89093.

 At revision 89093.
 Path: .
 URL: https://svn.wso2.org/repos/wso2/trunk/carbon
 Repository Root: https://svn.wso2.org/repos/wso2
 Repository UUID: a5903396-d722-0410-b921-86c7d4935375
 Revision: 89093
 Node Kind: directory
 Schedule: normal
 Last Changed Author: indika
 Last Changed Rev: 89093
 Last Changed Date: 2011-03-06 22:37:05 +0530 (Sun, 06 Mar 2011)

 Sun Mar  6 23:45:13 IST 2011
 [INFO] Scanning for projects...
 [INFO]
 
 [ERROR] BUILD FAILURE
 [INFO]
 
 [INFO] Project 'org.wso2.carbon:org.wso2.carbon.ui.menu.general' is
 duplicated in the reactor


This is caused by having two modules in same group id and artifact id.
I have commented out one module as a temporary fix.
Azeez is working on a proper fix.

AmilaM, please trigger a new build.


Thanks,
Waruna



 [INFO]
 
 [INFO] For more information, run Maven with the -e switch
 [INFO]
 
 [INFO] Total time: 43 seconds
 [INFO] Finished at: Sun Mar 06 23:45:56 IST 2011
 [INFO] Final Memory: 205M/1260M
 [INFO]
 
 ___
 Carbon-dev mailing list
 Carbon-dev@wso2.org
 http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev




-- 
-
Waruna Ranasinghe
Senior Software Engineer, WSO2

Mobile: +94 724 318285
BLOG: http://warunapw.blogspot.com

www.wso2.com - Lean . Enterprise . Middleware
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] 27th Feb ESB snapshot build fails due to DB error

2011-03-06 Thread Pavithra Madurangi
Latest IS gives following error at startup.

[2011-03-07 10:31:50,575]  INFO
{org.wso2.carbon.apacheds.impl.ApacheDirectoryPartitionManager} -  Partition
created with following attributes, partition id - root, Partition domain -
dc=wso2,dc=com, Partition working directory
/home/pavithra/Documents/IS/3.2.0/6_3/wso2is-3.2.0-SNAPSHOT/repository/data/org.wso2.carbon.directory/root
[2011-03-07 10:31:51,309] ERROR
{org.wso2.carbon.user.core.util.DatabaseUtil} -  Database Error - Cannot
create PoolableConnectionFactory (Unsupported database file version or
invalid file header in file Old database:
/home/pavithra/Documents/IS/3.2.0/6_3/wso2is-3.2.0-SNAPSHOT/repository/database/WSO2CARBON_DB.data.db
- please convert the database to a SQL script and re-create it.
[90048-140])
org.apache.commons.dbcp.SQLNestedException: Cannot create
PoolableConnectionFactory (Unsupported database file version or invalid file
header in file Old database:
/home/pavithra/Documents/IS/3.2.0/6_3/wso2is-3.2.0-SNAPSHOT/repository/database/WSO2CARBON_DB.data.db
- please convert the database to a SQL script and re-create it.
[90048-140])
at
org.apache.commons.dbcp.BasicDataSource.createPoolableConnectionFactory(BasicDataSource.java:1549)
at
org.apache.commons.dbcp.BasicDataSource.createDataSource(BasicDataSource.java:1388)
at
org.apache.commons.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
at
org.wso2.carbon.user.core.claim.dao.ClaimDAO.getDialectCount(ClaimDAO.java:158)
at
org.wso2.carbon.user.core.common.DefaultRealm.populateProfileAndClaimMaps(DefaultRealm.java:278)
at
org.wso2.carbon.user.core.common.DefaultRealm.init(DefaultRealm.java:109)
at
org.wso2.carbon.user.core.common.DefaultRealmService.initializeRealm(DefaultRealmService.java:225)
at
org.wso2.carbon.user.core.common.DefaultRealmService.init(DefaultRealmService.java:104)
at
org.wso2.carbon.user.core.common.DefaultRealmService.init(DefaultRealmService.java:117)
at
org.wso2.carbon.user.core.internal.Activator.startDeploy(Activator.java:51)
at
org.wso2.carbon.user.core.internal.BundleCheckActivator.start(BundleCheckActivator.java:54)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run(BundleContextImpl.java:782)
at java.security.AccessController.doPrivileged(Native Method)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:773)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:754)
at
org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:352)
at
org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:370)
at
org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:1068)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:557)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:464)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:248)
at
org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:445)
at
org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:220)
at
org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:330)
Caused by: org.h2.jdbc.JdbcSQLException: Unsupported database file version
or invalid file header in file Old database:
/home/pavithra/Documents/IS/3.2.0/6_3/wso2is-3.2.0-SNAPSHOT/repository/database/WSO2CARBON_DB.data.db
- please convert the database to a SQL script and re-create it. [90048-140]
at org.h2.message.DbException.getJdbcSQLException(DbException.java:327)
at org.h2.message.DbException.get(DbException.java:167)
at org.h2.message.DbException.get(DbException.java:144)
at org.h2.engine.Database.open(Database.java:493)
at org.h2.engine.Database.openDatabase(Database.java:207)
at org.h2.engine.Database.init(Database.java:202)
at org.h2.engine.Engine.openSession(Engine.java:56)
at org.h2.engine.Engine.openSession(Engine.java:146)
at org.h2.engine.Engine.getSession(Engine.java:125)
at org.h2.engine.Session.createSession(Session.java:122)
at
org.h2.engine.SessionRemote.connectEmbeddedOrServer(SessionRemote.java:241)
at org.h2.engine.SessionRemote.createSession(SessionRemote.java:219)
at org.h2.jdbc.JdbcConnection.init(JdbcConnection.java:111)
at org.h2.jdbc.JdbcConnection.init(JdbcConnection.java:95)
at org.h2.Driver.connect(Driver.java:73)
at
org.apache.commons.dbcp.DriverConnectionFactory.createConnection(DriverConnectionFactory.java:38)
at
org.apache.commons.dbcp.PoolableConnectionFactory.makeObject(PoolableConnectionFactory.java:582)
at
org.apache.commons.dbcp.BasicDataSource.validateConnectionFactory(BasicDataSource.java:1556)
at

Re: [Carbon-dev] WSO2 Carbon Continuous Build has FAILED

2011-03-06 Thread Amila Maha Arachchi
Hi,

On Mon, Mar 7, 2011 at 10:27 AM, Waruna Ranasinghe war...@wso2.com wrote:



 On Sun, Mar 6, 2011 at 11:45 PM, WSO2 Builder buil...@wso2.org wrote:

 Fetching external item into
 'components/governance/org.wso2.carbon.governance.api/src/test/resources/carbon-home'
 External at revision 89093.


 Fetching external item into
 'components/governance/org.wso2.carbon.governance.api/src/test/resources/user-test'
 External at revision 89093.


 Fetching external item into 'features/etc'
 External at revision 89093.

 At revision 89093.
 Path: .
 URL: https://svn.wso2.org/repos/wso2/trunk/carbon
 Repository Root: https://svn.wso2.org/repos/wso2
 Repository UUID: a5903396-d722-0410-b921-86c7d4935375
 Revision: 89093
 Node Kind: directory
 Schedule: normal
 Last Changed Author: indika
 Last Changed Rev: 89093
 Last Changed Date: 2011-03-06 22:37:05 +0530 (Sun, 06 Mar 2011)

 Sun Mar  6 23:45:13 IST 2011
 [INFO] Scanning for projects...
 [INFO]
 
 [ERROR] BUILD FAILURE
 [INFO]
 
 [INFO] Project 'org.wso2.carbon:org.wso2.carbon.ui.menu.general' is
 duplicated in the reactor


 This is caused by having two modules in same group id and artifact id.
 I have commented out one module as a temporary fix.
 Azeez is working on a proper fix.

 AmilaM, please trigger a new build.


Denis will be taking care of the build for sometime.

Thanks,
AmilaM.



 Thanks,
 Waruna



 [INFO]
 
 [INFO] For more information, run Maven with the -e switch
 [INFO]
 
 [INFO] Total time: 43 seconds
 [INFO] Finished at: Sun Mar 06 23:45:56 IST 2011
 [INFO] Final Memory: 205M/1260M
 [INFO]
 
 ___
 Carbon-dev mailing list
 Carbon-dev@wso2.org
 http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev




 --
 -
 Waruna Ranasinghe
 Senior Software Engineer, WSO2

 Mobile: +94 724 318285
 BLOG: http://warunapw.blogspot.com

 www.wso2.com - Lean . Enterprise . Middleware

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


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


Re: [Carbon-dev] Java class path issue while starting trunk ESB /axis server in windows

2011-03-06 Thread Vijayaratha Vijayasingam
On 5 March 2011 07:08, Afkham Azeez az...@wso2.com wrote:

 What happens if you start it without the Wrapper?

 I started without wrapper.. (# axis2server.bat) Issue is below..

Thanks
-Ratha.
p.s :with wrapper i couldn't find an option there...


 On Fri, Mar 4, 2011 at 3:46 PM, Vijayaratha Vijayasingam 
 rat...@wso2.comwrote:

 Hi,
 I'm getting following error stack when start axis2 server in ESB trunk.
 (Java class path issue)

 Error;

 Starting Sample Axis2 Server ...
 Using AXIS2_HOME:E:\WSO2ES~1.0-S\samples\AXIS2S~1\
 Using JAVA_HOME:   C:\Program Files\Java\jdk1.6.0
 -- Wrapper Started as Console
 Launching a JVM...
 Unable to execute Java command.  The parameter is incorrect. (0x57)
 C:\Program Files\Java\jdk1.6.0\bin\java
 -Djava.endorsed.dirs=../../lib/end
 orsed -Dlog4j.configuration=file:../../lib/log4j.properties
 -Djava.io.tmpdir=../
 ../tmp/sampleServer -Xms128m -Xmx128m
 -Djava.library.path=../../bin/native -cl
 asspath
 %CLASSPATH%;../../lib/wrapper-3.2.3.jar;../../lib;../../repository/conf

 ;../../lib/activation-1.1.jar;../../lib/ant-1.7.0.jar;../../lib/ant-launcher-1.7

 .0.jar;../../lib/ant-nodeps-1.7.0.jar;../../lib/aopalliance-1.0.jar;../../lib/ca

 talina-5.5.23.jar;../../lib/catalina-optional-5.5.23.jar;../../lib/commons-cli-1

 -Ratha.

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




 --
 *Afkham Azeez*
 Senior Software Architect  Senior Manager; WSO2, Inc.; http://wso2.com,
 *
 *
 *Member; Apache Software Foundation; 
 **http://www.apache.org/*http://www.apache.org/
 *
 email: **az...@wso2.com* az...@wso2.com* cell: +94 77 3320919
 blog: **http://blog.afkham.org* http://blog.afkham.org*
 twitter: **http://twitter.com/afkham_azeez*http://twitter.com/afkham_azeez
 *
 linked-in: **http://lk.linkedin.com/in/afkhamazeez*
 *
 *
 *Lean . Enterprise . Middleware*


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


[Carbon-dev] WSO2 Carbon Continuous Build has FAILED

2011-03-06 Thread WSO2 Builder
[INFO] Writing OBR metadata
[INFO] 
[INFO] Building Apache Axis2 - Parent
[INFO]task-segment: [clean, install]
[INFO] 
Downloading: 
http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-remote-resources-plugin/1.1/maven-remote-resources-plugin-1.1.pom
798/?
2209/?
3689/?
7110/?
10613/?
11290/?
   
Downloading: 
http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/14/maven-plugins-14.pom
783/?
2547/?
4451/?
7630/?
10073/?
12537/?
   
Downloading: 
http://repo1.maven.org/maven2/org/apache/maven/maven-parent/13/maven-parent-13.pom
773/?
1989/?
3204/?
7300/?
7825/?
11921/?
12302/?
14395/?
16456/?
20552/?
20590/?
22634/?
   
Downloading: http://repo1.maven.org/maven2/org/apache/apache/6/apache-6.pom
776/?
1994/?
2377/?
4395/?
8491/?
8957/?
11431/?
12796/?
   
Downloading: 
http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-remote-resources-plugin/1.1/maven-remote-resources-plugin-1.1.jar
955/?
1466/?
1979/?
2513/?
3025/?
3089/?
3600/?
4111/?
4535/?
5046/?
5558/?
5981/?
6519/?
7031/?
7455/?
7967/?
8478/?
8902/?
9414/?
9925/?
10349/?
10912/?
11423/?
11905/?
12416/?
12928/?
13410/?
13923/?
14435/?
14859/?
15371/?
15884/?
16308/?
16821/?
17020/?
17044/?
17481/?
17673/?
18254/?
18769/?
19209/?
19731/?
20244/?
20667/?
21176/?
21687/?
22112/?
22622/?
23132/?
23554/?
24064/?
24573/?
24999/?
25517/?
26070/?
26491/?
27096/?
27607/?
28030/?
28615/?
29161/?
29615/?
30138/?
30649/?
31073/?
31586/?
32097/?
32521/?
33032/?
33542/?
33965/?
34411/?
34929/?
35361/?
35948/?
36459/?
36882/?
37490/?
38003/?
38425/?
39009/?
39530/?
40036/?
40627/?
41141/?
41567/?
42078/?
42589/?
43014/?
43525/?
44036/?
44549/?
45061/?
45572/?
46083/?
46595/?
47106/?
47616/?
48128/?
48640/?
49151/?
49663/?
50174/?
50246/?
50758/?
51198/?
51620/?
52130/?
52640/?
53061/?
53643/?
54153/?
54650/?
55303/?
55814/?
56429/?
56938/?
57448/?
57870/?
58380/?
59463/?
61570/?
62064/?
   
Downloading: 
http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/2.3.1/maven-compiler-plugin-2.3.1.pom
818/?
2637/?
4322/?
5908/?
  
Downloading: 
http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-plugins/18/maven-plugins-18.pom
786/?
2459/?
4443/?
7607/?
10085/?
12755/?
13001/?
   
Downloading: 
http://repo1.maven.org/maven2/org/apache/maven/maven-parent/16/maven-parent-16.pom
773/?
2009/?
3120/?
7216/?
8168/?
12264/?
12438/?
14961/?
16950/?
20878/?
23272/?
   
Downloading: 
http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/2.3.1/maven-compiler-plugin-2.3.1.jar
696/?
1208/?
1360/?
1871/?
2433/?
2857/?
3368/?
3880/?
4304/?
4815/?
5327/?
5750/?
6262/?
6774/?
7198/?
7710/?
8221/?
8646/?
9208/?
9719/?
10143/?
10700/?
11212/?
11677/?
12189/?
12701/?
13125/?
13637/?
14148/?
14660/?
15175/?
15686/?
16198/?
16729/?
17177/?
17688/?
18198/?
18710/?
19219/?
19729/?
20240/?
20777/?
21319/?
21830/?
22341/?
22851/?
23258/?
23769/?
24291/?
24714/?
25246/?
25756/?
26214/?
26879/?
27391/?
27814/?
29064/?
29830/?
   
Downloading: 
http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.4.2/maven-surefire-plugin-2.4.2.pom
861/?
3174/?
4385/?
6597/?
  
Downloading: 
http://repo1.maven.org/maven2/org/apache/maven/surefire/surefire/2.4.2/surefire-2.4.2.pom
878/?
2892/?
3575/?
6361/?
6563/?
  
Downloading: 
http://repo1.maven.org/maven2/org/apache/maven/plugins/maven-surefire-plugin/2.4.2/maven-surefire-plugin-2.4.2.jar
778/?
1289/?
1441/?
1953/?
2465/?
2889/?
3400/?
3912/?
4336/?
4874/?
5386/?
5810/?
6322/?
6834/?
7258/?
7770/?
8281/?
8706/?
9217/?
9751/?
10225/?
10736/?
11248/?
11672/?
12183/?
12696/?
13120/?
13632/?
14144/?
14568/?
15079/?
15591/?
16015/?
16526/?
16956/?
17381/?
17893/?
18405/?
19074/?
19585/?
20094/?
20516/?
21798/?
22339/?
   
[INFO] 
[ERROR] FATAL ERROR
[INFO] 
[INFO] The plugin descriptor for the plugin Plugin 
[org.apache.maven.plugins:maven-surefire-plugin] was not found. Please verify 
that the plugin JAR 
/home/carbon/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/2.4.2/maven-surefire-plugin-2.4.2.jar
 is intact.
[INFO] 
[INFO] Trace
java.lang.IllegalStateException: The plugin descriptor for the plugin Plugin 
[org.apache.maven.plugins:maven-surefire-plugin] was not found. Please verify 
that the plugin JAR 
/home/carbon/.m2/repository/org/apache/maven/plugins/maven-surefire-plugin/2.4.2/maven-surefire-plugin-2.4.2.jar
 is intact.
at 
org.apache.maven.plugin.DefaultPluginManager.addPlugin(DefaultPluginManager.java:360)
at 
org.apache.maven.plugin.DefaultPluginManager.verifyVersionedPlugin(DefaultPluginManager.java:224)
 

[Carbon-dev] Error building stratos components

2011-03-06 Thread Supun Kamburugamuva
[INFO] Building WSO2 Stratos - Tenant Managment
[INFO]task-segment: [clean, install]
[INFO] 
[INFO] [clean:clean {execution: default-clean}]
[INFO] Deleting directory
/Users/supun/dev/wso2/trunk/carbon/components/stratos/tenant-mgt/org.wso2.stratos.tenant.mgt/target
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 2 resources
[INFO] 
[ERROR] BUILD ERROR
[INFO] 
[INFO] Failed to resolve artifact.

Missing:
--
1) org.wso2.carbon:org.wso2.carbon.um.ws.api:jar:3.2.0-SNAPSHOT

  Try downloading the file manually from the project website.

  Then, install it using the command:
  mvn install:install-file -DgroupId=org.wso2.carbon
-DartifactId=org.wso2.carbon.um.ws.api -Dversion=3.2.0-SNAPSHOT
-Dpackaging=jar -Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file there:
  mvn deploy:deploy-file -DgroupId=org.wso2.carbon
-DartifactId=org.wso2.carbon.um.ws.api -Dversion=3.2.0-SNAPSHOT
-Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

  Path to dependency:
1) org.wso2.carbon:org.wso2.carbon.tenant.mgt:bundle:1.1.0-SNAPSHOT
2) org.wso2.carbon:org.wso2.carbon.um.ws.api:jar:3.2.0-SNAPSHOT

--
1 required artifact is missing.


-- 
Supun Kamburugamuva
Technical Lead   Product Manager, WSO2 Inc.; http://wso2.com
Member, Apache Software Foundation; http://www.apache.org
WSO2 Inc.;  http://wso2.org
E-mail: su...@wso2.com;  Mobile: +94 77 431 3585
Blog: http://supunk.blogspot.com
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Error building stratos components

2011-03-06 Thread Supun Kamburugamuva
Got it resolved by buidling carbon/components/remote-usermgt/

Thanks,
Supun..

On Mon, Mar 7, 2011 at 11:57 AM, Supun Kamburugamuva su...@wso2.com wrote:
 [INFO] Building WSO2 Stratos - Tenant Managment
 [INFO]    task-segment: [clean, install]
 [INFO] 
 
 [INFO] [clean:clean {execution: default-clean}]
 [INFO] Deleting directory
 /Users/supun/dev/wso2/trunk/carbon/components/stratos/tenant-mgt/org.wso2.stratos.tenant.mgt/target
 [INFO] [resources:resources {execution: default-resources}]
 [INFO] Using 'UTF-8' encoding to copy filtered resources.
 [INFO] Copying 2 resources
 [INFO] 
 
 [ERROR] BUILD ERROR
 [INFO] 
 
 [INFO] Failed to resolve artifact.

 Missing:
 --
 1) org.wso2.carbon:org.wso2.carbon.um.ws.api:jar:3.2.0-SNAPSHOT

  Try downloading the file manually from the project website.

  Then, install it using the command:
      mvn install:install-file -DgroupId=org.wso2.carbon
 -DartifactId=org.wso2.carbon.um.ws.api -Dversion=3.2.0-SNAPSHOT
 -Dpackaging=jar -Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file there:
      mvn deploy:deploy-file -DgroupId=org.wso2.carbon
 -DartifactId=org.wso2.carbon.um.ws.api -Dversion=3.2.0-SNAPSHOT
 -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

  Path to dependency:
        1) org.wso2.carbon:org.wso2.carbon.tenant.mgt:bundle:1.1.0-SNAPSHOT
        2) org.wso2.carbon:org.wso2.carbon.um.ws.api:jar:3.2.0-SNAPSHOT

 --
 1 required artifact is missing.


 --
 Supun Kamburugamuva
 Technical Lead   Product Manager, WSO2 Inc.; http://wso2.com
 Member, Apache Software Foundation; http://www.apache.org
 WSO2 Inc.;  http://wso2.org
 E-mail: su...@wso2.com;  Mobile: +94 77 431 3585
 Blog: http://supunk.blogspot.com




-- 
Supun Kamburugamuva
Technical Lead   Product Manager, WSO2 Inc.; http://wso2.com
Member, Apache Software Foundation; http://www.apache.org
WSO2 Inc.;  http://wso2.org
E-mail: su...@wso2.com;  Mobile: +94 77 431 3585
Blog: http://supunk.blogspot.com
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Java class path issue while starting trunk ESB /axis server in windows

2011-03-06 Thread Afkham Azeez
Below where?

-- Wrapper Started as Console
Launching a JVM...
Unable to execute Java command.  The parameter is incorrect. (0x57)

that means it was started with Wrapper.

On Mon, Mar 7, 2011 at 11:03 AM, Vijayaratha Vijayasingam
rat...@wso2.comwrote:



 On 5 March 2011 07:08, Afkham Azeez az...@wso2.com wrote:

 What happens if you start it without the Wrapper?

 I started without wrapper.. (# axis2server.bat) Issue is below..

 Thanks
 -Ratha.
 p.s :with wrapper i couldn't find an option there...


 On Fri, Mar 4, 2011 at 3:46 PM, Vijayaratha Vijayasingam rat...@wso2.com
  wrote:

 Hi,
 I'm getting following error stack when start axis2 server in ESB trunk.
 (Java class path issue)

 Error;

 Starting Sample Axis2 Server ...
 Using AXIS2_HOME:E:\WSO2ES~1.0-S\samples\AXIS2S~1\
 Using JAVA_HOME:   C:\Program Files\Java\jdk1.6.0
 -- Wrapper Started as Console
 Launching a JVM...
 Unable to execute Java command.  The parameter is incorrect. (0x57)
 C:\Program Files\Java\jdk1.6.0\bin\java
 -Djava.endorsed.dirs=../../lib/end
 orsed -Dlog4j.configuration=file:../../lib/log4j.properties
 -Djava.io.tmpdir=../
 ../tmp/sampleServer -Xms128m -Xmx128m
 -Djava.library.path=../../bin/native -cl
 asspath
 %CLASSPATH%;../../lib/wrapper-3.2.3.jar;../../lib;../../repository/conf

 ;../../lib/activation-1.1.jar;../../lib/ant-1.7.0.jar;../../lib/ant-launcher-1.7

 .0.jar;../../lib/ant-nodeps-1.7.0.jar;../../lib/aopalliance-1.0.jar;../../lib/ca

 talina-5.5.23.jar;../../lib/catalina-optional-5.5.23.jar;../../lib/commons-cli-1

 -Ratha.

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




 --
 *Afkham Azeez*
 Senior Software Architect  Senior Manager; WSO2, Inc.; http://wso2.com,
 *
 *
 *Member; Apache Software Foundation; 
 **http://www.apache.org/*http://www.apache.org/
 *
 email: **az...@wso2.com* az...@wso2.com* cell: +94 77 3320919
 blog: **http://blog.afkham.org* http://blog.afkham.org*
 twitter: **http://twitter.com/afkham_azeez*http://twitter.com/afkham_azeez
 *
 linked-in: **http://lk.linkedin.com/in/afkhamazeez*
 *
 *
 *Lean . Enterprise . Middleware*





-- 
*Afkham Azeez*
Senior Software Architect  Senior Manager; WSO2, Inc.; http://wso2.com,
*
*
*Member; Apache Software Foundation;
**http://www.apache.org/*http://www.apache.org/
*
email: **az...@wso2.com* az...@wso2.com* cell: +94 77 3320919
blog: **http://blog.afkham.org* http://blog.afkham.org*
twitter: **http://twitter.com/afkham_azeez*http://twitter.com/afkham_azeez
*
linked-in: **http://lk.linkedin.com/in/afkhamazeez*
*
*
*Lean . Enterprise . Middleware*
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Tool tip script

2011-03-06 Thread Dinusha Senanayaka
Hi,

I did some modifications to this tag library. When JSP page is using a
common resource bundle, tool tip tag library modified to take that resource
bundle.

To use that in JSP,

carbon:tooltips   image=images/help.gif
key='dataservices.enableboxcarring.help'  /carbon:tooltips
This will take the common resource bundle define in JSP.

If need to  define a resource bundle other than the common bundle use in JSP
page,
carbon:tooltips   image=images/help.gif
resourceBundle='org.wso2.carbon.dataservices.ui.i18n.Resourc'
key='dataservices.task.interval.cannotfound.msg'  /carbon:tooltips

Regards,
Dinusha.


On Sun, Feb 27, 2011 at 2:14 PM, Dinusha Senanayaka dinu...@wso2.comwrote:

 Hi,

 I wrapped the above tool tip Java Script as a Tag  Library and going to add
 as a carbon tag in the Carbon UI Core bundle.

 This is the tld for this tag library.

 tag
 nametooltips/name
 tagclassorg.wso2.carbon.ui.taglibs.TooltipsGenerator/tagclass
 bodycontentJSP/bodycontent
 infoA tag for displaying tool tip/info
 attribute
 nameimage/name
 requiredtrue/required
 rtexprvaluetrue/rtexprvalue
 /attribute
 attribute
 namedescription/name
 requiredfalse/required
 rtexprvaluetrue/rtexprvalue
 /attribute
 attribute
 nameresourceBundle/name
 requiredfalse/required
 rtexprvaluetrue/rtexprvalue
 /attribute
 attribute
 namekey/name
 requiredfalse/required
 rtexprvaluetrue/rtexprvalue
 /attribute
 attribute
 namenoOfWordsPerLine/name
 requiredfalse/required
 rtexprvaluetrue/rtexprvalue
 /attribute
 /tag


 Attributes taken in tag :

- image - this attribute take the image that tool tip should appear
when mouse over it.
- description - this is the tool tip content. This should provide only
when content is taken as user text without taking from resource bundle.
- resourceBundle - resource bundle name. eg:
org.wso2.carbon.dataservices.ui.i18n.Resources. This should provide only
when tool tip content is reading from a resource file.
- key - element in resource file to take tool tip content. eg:
dataservices.enableboxcarring.help. This also provide only when tool tip
content is reading from a resource file.
- noOfWordsPerLine - you can adjust the size of tool tip box  by giving
no of words that should contain in a single line. optional attribute.
default set to 10.


 This is how this tag library can use in a jsp file :

 1. When the tool tip content is taken from a resource bundle .

 carbon:tooltips   image=images/registry_picker.gif
 resourceBundle='org.wso2.carbon.dataservices.ui.i18n.Resources'
 key='dataservices.enableboxcarring.help' ' /carbon:tooltips


 2. When the tool tip content is taken as text input without taking from
 resource file.

 carbon:tooltips image=images/registry_picker.gif description=' This is
 the tool tip body content ' 


 Regards,
 Dinusha.









 On Tue, Feb 22, 2011 at 6:09 PM, Chanaka Jayasena chan...@wso2.comwrote:

 Hi all,

 I created a simple tool tip script to fulfil a requirement to show an
 image as a tool tip. I commit the script to Carbon UI Core bundle. It use
 YUI panel to display the tool tip.

 This is how you can use it in a carbon ui bundle.

 1 - Include following js,css library files which are in the core ui.

 link rel=stylesheet type=text/css
 href=../yui/build/container/assets/skins/sam/container.css

 script type=text/javascript
 src=../yui/build/yahoo-dom-event/yahoo-dom-event.js/script
 script type=text/javascript
 src=../yui/build/container/container-min.js/script
 script type=text/javascript
 src=../yui/build/element/element-min.js/script
 script type=text/javascript src=../admin/js/widgets.js/script


 2 - Define the mouseover event listener.

  a href=# onmouseover=showTooltip(this,'tool tip text') /Mouse Over
 This Text/a

 thanks,
 Chanaka

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



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


[Carbon-dev] Error while building ESB

2011-03-06 Thread Supun Kamburugamuva
!ENTRY org.eclipse.equinox.p2.director.app 4 0 2011-03-07 12:20:46.825
!MESSAGE The installable unit
org.wso2.carbon.logging.mgt.feature.group/3.2.0.SNAPSHOT has not been
found.

P2 fails with the above error while building the ESB.

Thanks,
-- 
Supun Kamburugamuva
Technical Lead   Product Manager, WSO2 Inc.; http://wso2.com
Member, Apache Software Foundation; http://www.apache.org
WSO2 Inc.;  http://wso2.org
E-mail: su...@wso2.com;  Mobile: +94 77 431 3585
Blog: http://supunk.blogspot.com
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev