Re: [Carbon-dev] [Carbon-commits] [Carbon] svn commit r118821 - trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider

2012-01-11 Thread Senaka Fernando
Hi Amila,

Just wondering why the method getSAML2Attribute() accepts the same
parameter twice? Is this different in other places, or can't we get rid of
one parameter?

Thanks,
Senaka.

On Wed, Jan 11, 2012 at 1:28 PM, Afkham Azeez  wrote:

> Please remove the year from the license header.
>
> Also, do you think it is a good idea to add a test case for this fix?
>
>
> On Wed, Jan 11, 2012 at 12:14 PM,  wrote:
>
>> Author: amilaj
>> Date: Tue Jan 10 22:44:40 2012
>> New Revision: 118821
>> URL: http://wso2.org/svn/browse/wso2?view=rev&revision=118821
>>
>> Log:
>> Fixing issue CARBON-10878. Made attribute statement use claim URI instead
>> of name
>>
>> Modified:
>>
>> trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java
>>
>> Modified:
>> trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java
>> URL:
>> http://wso2.org/svn/browse/wso2/trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java?rev=118821&r1=118820&r2=118821&view=diff
>>
>> ==
>> ---
>> trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java
>>(original)
>> +++
>> trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java
>>Tue Jan 10 22:44:40 2012
>> @@ -1,20 +1,20 @@
>> -/*
>> -*  Copyright (c) 2005-2010, WSO2 Inc. (http://www.wso2.org) All Rights
>> Reserved.
>> -*
>> -*  WSO2 Inc. licenses this file to you under the Apache License,
>> -*  Version 2.0 (the "License"); you may not use this file except
>> -*  in compliance with the License.
>> -*  You may obtain a copy of the License at
>> -*
>> -*http://www.apache.org/licenses/LICENSE-2.0
>> -*
>> -* Unless required by applicable law or agreed to in writing,
>> -* software distributed under the License is distributed on an
>> -* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
>> -* KIND, either express or implied.  See the License for the
>> -* specific language governing permissions and limitations
>> -* under the License.
>> -*/
>> +/*
>> +*  Copyright (c) 2005-2010, WSO2 Inc. (http://www.wso2.org) All Rights
>> Reserved.
>> +*
>> +*  WSO2 Inc. licenses this file to you under the Apache License,
>> +*  Version 2.0 (the "License"); you may not use this file except
>> +*  in compliance with the License.
>> +*  You may obtain a copy of the License at
>> +*
>> +*http://www.apache.org/licenses/LICENSE-2.0
>> +*
>> +* Unless required by applicable law or agreed to in writing,
>> +* software distributed under the License is distributed on an
>> +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
>> +* KIND, either express or implied.  See the License for the
>> +* specific language governing permissions and limitations
>> +* under the License.
>> +*/
>>  package org.wso2.carbon.identity.provider;
>>
>>  import org.apache.axiom.om.OMElement;
>> @@ -236,8 +236,7 @@
>> claimData.setValue(mapValues.get(claimData.getUri()));
>> if (claimData.getValue() != null) {
>> if
>> (RahasConstants.TOK_TYPE_SAML_20.equals(rahasData.getTokenType())) {
>> -saml2Attribute =
>> getSAML2Attribute(supportedClaims.get(claimData.getUri())
>> -.getDisplayTag(), claimData.getValue(),
>> claimData.getUri());
>> +saml2Attribute =
>> getSAML2Attribute(claimData.getUri(), claimData.getValue(),
>> claimData.getUri());
>> callback.addAttributes(saml2Attribute);
>> } else {
>> attribute = new
>> SAMLAttribute(supportedClaims.get(claimData.getUri())
>> ___
>> Carbon-commits mailing list
>> carbon-comm...@wso2.org
>> https://wso2.org/cgi-bin/mailman/listinfo/carbon-commits
>>
>
>
>
> --
> *Afkham Azeez*
> Director of Architecture; WSO2, Inc.; http://wso2.com
> Member; Apache Software Foundation; http://www.apache.org/
> * **
> email: **az...@wso2.com* * cell: +94 77 3320919
> blog: **http://blog.afkham.org* *
> twitter: **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
>
>


-- 
*Senaka Fernando*
Product Manager - WSO2 Governance Registry;
Associate Technical Lead; WSO2 Inc.; http://wso2.com*
Member; Apache Software Foundation; ht

Re: [Carbon-dev] [Carbon-commits] [Carbon] svn commit r118821 - trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider

2012-01-11 Thread Amila Jayasekara
On Wed, Jan 11, 2012 at 1:28 PM, Afkham Azeez  wrote:
> Please remove the year from the license header.

Will do.

>
> Also, do you think it is a good idea to add a test case for this fix?

To reproduce this issue we need to have a hosted service in ESB or AS
(secured with SAML policy) and IS. Is it possible to start 2 types of
servers within an integration test ?

>
>
> On Wed, Jan 11, 2012 at 12:14 PM,  wrote:
>>
>> Author: amilaj
>> Date: Tue Jan 10 22:44:40 2012
>> New Revision: 118821
>> URL: http://wso2.org/svn/browse/wso2?view=rev&revision=118821
>>
>> Log:
>> Fixing issue CARBON-10878. Made attribute statement use claim URI instead
>> of name
>>
>> Modified:
>>
>> trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java
>>
>> Modified:
>> trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java
>> URL:
>> http://wso2.org/svn/browse/wso2/trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java?rev=118821&r1=118820&r2=118821&view=diff
>>
>> ==
>> ---
>> trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java
>>    (original)
>> +++
>> trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java
>>    Tue Jan 10 22:44:40 2012
>> @@ -1,20 +1,20 @@
>> -/*
>> -*  Copyright (c) 2005-2010, WSO2 Inc. (http://www.wso2.org) All Rights
>> Reserved.
>> -*
>> -*  WSO2 Inc. licenses this file to you under the Apache License,
>> -*  Version 2.0 (the "License"); you may not use this file except
>> -*  in compliance with the License.
>> -*  You may obtain a copy of the License at
>> -*
>> -*    http://www.apache.org/licenses/LICENSE-2.0
>> -*
>> -* Unless required by applicable law or agreed to in writing,
>> -* software distributed under the License is distributed on an
>> -* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
>> -* KIND, either express or implied.  See the License for the
>> -* specific language governing permissions and limitations
>> -* under the License.
>> -*/
>> +/*
>> +*  Copyright (c) 2005-2010, WSO2 Inc. (http://www.wso2.org) All Rights
>> Reserved.
>> +*
>> +*  WSO2 Inc. licenses this file to you under the Apache License,
>> +*  Version 2.0 (the "License"); you may not use this file except
>> +*  in compliance with the License.
>> +*  You may obtain a copy of the License at
>> +*
>> +*    http://www.apache.org/licenses/LICENSE-2.0
>> +*
>> +* Unless required by applicable law or agreed to in writing,
>> +* software distributed under the License is distributed on an
>> +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
>> +* KIND, either express or implied.  See the License for the
>> +* specific language governing permissions and limitations
>> +* under the License.
>> +*/
>>  package org.wso2.carbon.identity.provider;
>>
>>  import org.apache.axiom.om.OMElement;
>> @@ -236,8 +236,7 @@
>>                 claimData.setValue(mapValues.get(claimData.getUri()));
>>                 if (claimData.getValue() != null) {
>>                     if
>> (RahasConstants.TOK_TYPE_SAML_20.equals(rahasData.getTokenType())) {
>> -                        saml2Attribute =
>> getSAML2Attribute(supportedClaims.get(claimData.getUri())
>> -                                .getDisplayTag(), claimData.getValue(),
>> claimData.getUri());
>> +                        saml2Attribute =
>> getSAML2Attribute(claimData.getUri(), claimData.getValue(),
>> claimData.getUri());
>>                         callback.addAttributes(saml2Attribute);
>>                     } else {
>>                         attribute = new
>> SAMLAttribute(supportedClaims.get(claimData.getUri())
>> ___
>> Carbon-commits mailing list
>> carbon-comm...@wso2.org
>> https://wso2.org/cgi-bin/mailman/listinfo/carbon-commits
>
>
>
>
> --
> Afkham Azeez
> Director of Architecture; WSO2, Inc.; http://wso2.com
> Member; Apache Software Foundation; http://www.apache.org/
>
> email: az...@wso2.com cell: +94 77 3320919
> blog: http://blog.afkham.org
> twitter: http://twitter.com/afkham_azeez
> linked-in: http://lk.linkedin.com/in/afkhamazeez
>
> Lean . Enterprise . Middleware
>



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


Re: [Carbon-dev] [Carbon-commits] [Carbon] svn commit r118821 - trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider

2012-01-11 Thread Amila Jayasekara
On Wed, Jan 11, 2012 at 1:51 PM, Senaka Fernando  wrote:
> Hi Amila,
>
> Just wondering why the method getSAML2Attribute() accepts the same parameter
> twice? Is this different in other places, or can't we get rid of one
> parameter?

Method is used more than once in the code. Thus the parameter values
can be different.

Thanks
AmilaJ

>
> Thanks,
> Senaka.
>
> On Wed, Jan 11, 2012 at 1:28 PM, Afkham Azeez  wrote:
>>
>> Please remove the year from the license header.
>>
>> Also, do you think it is a good idea to add a test case for this fix?
>>
>>
>> On Wed, Jan 11, 2012 at 12:14 PM,  wrote:
>>>
>>> Author: amilaj
>>> Date: Tue Jan 10 22:44:40 2012
>>> New Revision: 118821
>>> URL: http://wso2.org/svn/browse/wso2?view=rev&revision=118821
>>>
>>> Log:
>>> Fixing issue CARBON-10878. Made attribute statement use claim URI instead
>>> of name
>>>
>>> Modified:
>>>
>>> trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java
>>>
>>> Modified:
>>> trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java
>>> URL:
>>> http://wso2.org/svn/browse/wso2/trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java?rev=118821&r1=118820&r2=118821&view=diff
>>>
>>> ==
>>> ---
>>> trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java
>>>    (original)
>>> +++
>>> trunk/carbon/components/identity/org.wso2.carbon.identity.provider/src/main/java/org/wso2/carbon/identity/provider/AttributeCallbackHandler.java
>>>    Tue Jan 10 22:44:40 2012
>>> @@ -1,20 +1,20 @@
>>> -/*
>>> -*  Copyright (c) 2005-2010, WSO2 Inc. (http://www.wso2.org) All Rights
>>> Reserved.
>>> -*
>>> -*  WSO2 Inc. licenses this file to you under the Apache License,
>>> -*  Version 2.0 (the "License"); you may not use this file except
>>> -*  in compliance with the License.
>>> -*  You may obtain a copy of the License at
>>> -*
>>> -*    http://www.apache.org/licenses/LICENSE-2.0
>>> -*
>>> -* Unless required by applicable law or agreed to in writing,
>>> -* software distributed under the License is distributed on an
>>> -* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
>>> -* KIND, either express or implied.  See the License for the
>>> -* specific language governing permissions and limitations
>>> -* under the License.
>>> -*/
>>> +/*
>>> +*  Copyright (c) 2005-2010, WSO2 Inc. (http://www.wso2.org) All Rights
>>> Reserved.
>>> +*
>>> +*  WSO2 Inc. licenses this file to you under the Apache License,
>>> +*  Version 2.0 (the "License"); you may not use this file except
>>> +*  in compliance with the License.
>>> +*  You may obtain a copy of the License at
>>> +*
>>> +*    http://www.apache.org/licenses/LICENSE-2.0
>>> +*
>>> +* Unless required by applicable law or agreed to in writing,
>>> +* software distributed under the License is distributed on an
>>> +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
>>> +* KIND, either express or implied.  See the License for the
>>> +* specific language governing permissions and limitations
>>> +* under the License.
>>> +*/
>>>  package org.wso2.carbon.identity.provider;
>>>
>>>  import org.apache.axiom.om.OMElement;
>>> @@ -236,8 +236,7 @@
>>>                 claimData.setValue(mapValues.get(claimData.getUri()));
>>>                 if (claimData.getValue() != null) {
>>>                     if
>>> (RahasConstants.TOK_TYPE_SAML_20.equals(rahasData.getTokenType())) {
>>> -                        saml2Attribute =
>>> getSAML2Attribute(supportedClaims.get(claimData.getUri())
>>> -                                .getDisplayTag(), claimData.getValue(),
>>> claimData.getUri());
>>> +                        saml2Attribute =
>>> getSAML2Attribute(claimData.getUri(), claimData.getValue(),
>>> claimData.getUri());
>>>                         callback.addAttributes(saml2Attribute);
>>>                     } else {
>>>                         attribute = new
>>> SAMLAttribute(supportedClaims.get(claimData.getUri())
>>> ___
>>> Carbon-commits mailing list
>>> carbon-comm...@wso2.org
>>> https://wso2.org/cgi-bin/mailman/listinfo/carbon-commits
>>
>>
>>
>>
>> --
>> Afkham Azeez
>> Director of Architecture; WSO2, Inc.; http://wso2.com
>> Member; Apache Software Foundation; http://www.apache.org/
>>
>> email: az...@wso2.com cell: +94 77 3320919
>> blog: http://blog.afkham.org
>> twitter: 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/listinf

Re: [Carbon-dev] [Carbon-commits] [Carbon] svn commit r118822 - in trunk/carbon/components/governance: org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/common org.wso2.carbo

2012-01-11 Thread Janaka Ranabahu
Hi Azeez,

Yes we need to add a test case to cover this. Currently we do not have any
test cases that covers the functionality of Configurable Governance
Artifacts. Therefore we will add a test case to cover all these aspects.

Thanks,
Janaka

On Wed, Jan 11, 2012 at 1:27 PM, Afkham Azeez  wrote:

> Do we need to add a test case for this fix?
>
> On Wed, Jan 11, 2012 at 12:29 PM,  wrote:
>
>> Author: janaka
>> Date: Tue Jan 10 22:59:31 2012
>> New Revision: 118822
>> URL: http://wso2.org/svn/browse/wso2?view=rev&revision=118822
>>
>> Log:
>> Adding fix for CARBON-11906
>>
>>
>> Modified:
>>
>> trunk/carbon/components/governance/org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/common/GovernanceArtifactManager.java
>>
>> trunk/carbon/components/governance/org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/common/dataobjects/GovernanceArtifact.java
>>
>> trunk/carbon/components/governance/org.wso2.carbon.governance.generic/src/main/java/org/wso2/carbon/governance/generic/services/ManageGenericArtifactService.java
>>
>> Modified:
>> trunk/carbon/components/governance/org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/common/GovernanceArtifactManager.java
>> URL:
>> http://wso2.org/svn/browse/wso2/trunk/carbon/components/governance/org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/common/GovernanceArtifactManager.java?rev=118822&r1=118821&r2=118822&view=diff
>>
>> ==
>> ---
>> trunk/carbon/components/governance/org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/common/GovernanceArtifactManager.java
>>(original)
>> +++
>> trunk/carbon/components/governance/org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/common/GovernanceArtifactManager.java
>>Tue Jan 10 22:59:31 2012
>> @@ -143,7 +143,8 @@
>> pathExpression, artifact);
>> if (registry.resourceExists(path)) {
>> Resource oldResource = registry.get(path);
>> -resource.setProperties(new
>> Properties(oldResource.getProperties()));
>> +Properties properties = (Properties)
>> oldResource.getProperties().clone();
>> +resource.setProperties(properties);
>> String oldContent;
>> Object content = oldResource.getContent();
>> if (content instanceof String) {
>>
>> Modified:
>> trunk/carbon/components/governance/org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/common/dataobjects/GovernanceArtifact.java
>> URL:
>> http://wso2.org/svn/browse/wso2/trunk/carbon/components/governance/org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/common/dataobjects/GovernanceArtifact.java?rev=118822&r1=118821&r2=118822&view=diff
>>
>> ==
>> ---
>> trunk/carbon/components/governance/org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/common/dataobjects/GovernanceArtifact.java
>>   (original)
>> +++
>> trunk/carbon/components/governance/org.wso2.carbon.governance.api/src/main/java/org/wso2/carbon/governance/api/common/dataobjects/GovernanceArtifact.java
>>   Tue Jan 10 22:59:31 2012
>> @@ -222,6 +222,10 @@
>> public void attachLifecycle(String name) throws GovernanceException {
>> String lifecycleName = getLifecycleName();
>> try {
>> +if(name == null){
>> +GovernanceUtils.removeAspect(path, name, registry);
>> +return;
>> +}
>> if (!name.equals(lifecycleName)) {
>> if (lifecycleName != null) {
>> GovernanceUtils.removeAspect(path, lifecycleName,
>> registry);
>>
>> Modified:
>> trunk/carbon/components/governance/org.wso2.carbon.governance.generic/src/main/java/org/wso2/carbon/governance/generic/services/ManageGenericArtifactService.java
>> URL:
>> http://wso2.org/svn/browse/wso2/trunk/carbon/components/governance/org.wso2.carbon.governance.generic/src/main/java/org/wso2/carbon/governance/generic/services/ManageGenericArtifactService.java?rev=118822&r1=118821&r2=118822&view=diff
>>
>> ==
>> ---
>> trunk/carbon/components/governance/org.wso2.carbon.governance.generic/src/main/java/org/wso2/carbon/governance/generic/services/ManageGenericArtifactService.java
>>   (original)
>> +++
>> trunk/carbon/components/governance/org.wso2.carbon.governance.generic/src/main/java/org/wso2/carbon/governance/generic/services/ManageGenericArtifactService.java
>>   Tue Jan 10 22:59:31 2012
>> @@ -217,9 +217,7 @@
>> }
>> if (lifecycleAttribute != null) {
>> String lifecycle =
>> artifact.getAttribute(lifecycleAttribute);
>> -if 

[Carbon-dev] Need to patch Axiom

2012-01-11 Thread Amila Jayasekara
Hi All,

In-order to fix [1] we need to patch Axiom. But currently we are not
maintaining an Axiom local branch.
How should we proceed with this ?

The relevant Axiom issue is in [2] and the fix for the issue is in
Axiom-1.2.3-SNAPSHOT.

Thanks
AmilaJ

[1] https://wso2.org/jira/browse/CARBON-11163
[2] https://issues.apache.org/jira/browse/AXIOM-386

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


[Carbon-dev] Exception at login after sometime in G-Reg trunk packs

2012-01-11 Thread Janaka Ranabahu
Hi All,

I have noticed the following exception from a trunk G-Reg pack. This
happened when I tried to refresh a page after about 1 hour. Any idea about
the cause for this issue.

[2012-01-11 13:01:10,492]  INFO
{org.wso2.carbon.core.services.util.CarbonAuthenticationUtil} -  'admin'
logged in at [2012-01-11 13:01:10,0492] from IP address 10.200.2.99
Jan 11, 2012 2:04:31 PM org.apache.catalina.core.ApplicationDispatcher
invoke
SEVERE: Servlet.service() for servlet bridgeservlet threw exception
org.apache.jasper.JasperException: Unable to compile class for JSP

An error occurred at line: 68 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.GetAsStringTag cannot be resolved to a type

An error occurred at line: 68 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.GetAsStringTag cannot be resolved to a type

An error occurred at line: 68 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.GetAsStringTag cannot be resolved to a type

An error occurred at line: 144 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 144 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 144 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 160 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 160 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 160 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 163 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 163 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 163 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 166 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 166 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 166 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 169 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 169 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 169 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 172 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 172 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 172 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 182 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 182 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 182 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at line: 187 in the jsp file: /admin/layout/template.jsp
Generated servlet error:
org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type

An error occurred at l

Re: [Carbon-dev] Exception at login after sometime in G-Reg trunk packs

2012-01-11 Thread Janaka Ranabahu
Hi

BTW The pack I had was somewhat old one(maybe 2 weeks). Im in the process
of building a new pack. Will let you know if the issue exists in latest
pack too.

Thanks,
Janaka

On Wed, Jan 11, 2012 at 2:49 PM, Janaka Ranabahu  wrote:

> Hi All,
>
> I have noticed the following exception from a trunk G-Reg pack. This
> happened when I tried to refresh a page after about 1 hour. Any idea about
> the cause for this issue.
>
> [2012-01-11 13:01:10,492]  INFO
> {org.wso2.carbon.core.services.util.CarbonAuthenticationUtil} -  'admin'
> logged in at [2012-01-11 13:01:10,0492] from IP address 10.200.2.99
> Jan 11, 2012 2:04:31 PM org.apache.catalina.core.ApplicationDispatcher
> invoke
> SEVERE: Servlet.service() for servlet bridgeservlet threw exception
> org.apache.jasper.JasperException: Unable to compile class for JSP
>
> An error occurred at line: 68 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.GetAsStringTag cannot be resolved to a type
>
> An error occurred at line: 68 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.GetAsStringTag cannot be resolved to a type
>
> An error occurred at line: 68 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.GetAsStringTag cannot be resolved to a type
>
> An error occurred at line: 144 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 144 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 144 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 160 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 160 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 160 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 163 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 163 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 163 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 166 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 166 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 166 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 169 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 169 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 169 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 172 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 172 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 172 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 182 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 182 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.Inser

Re: [Carbon-dev] Exception at login after sometime in G-Reg trunk packs

2012-01-11 Thread Sumedha Rubasinghe
Are you getting the same error for all subsequent logins?
If so, what happen when you restart the server & login back?
What is the page your trying to refresh.
By looking @ the stacktrace, I could not find any particular JSP tag being
faulty.

/sumedha

On Wed, Jan 11, 2012 at 2:49 PM, Janaka Ranabahu  wrote:

> Hi All,
>
> I have noticed the following exception from a trunk G-Reg pack. This
> happened when I tried to refresh a page after about 1 hour. Any idea about
> the cause for this issue.
>
> [2012-01-11 13:01:10,492]  INFO
> {org.wso2.carbon.core.services.util.CarbonAuthenticationUtil} -  'admin'
> logged in at [2012-01-11 13:01:10,0492] from IP address 10.200.2.99
> Jan 11, 2012 2:04:31 PM org.apache.catalina.core.ApplicationDispatcher
> invoke
> SEVERE: Servlet.service() for servlet bridgeservlet threw exception
> org.apache.jasper.JasperException: Unable to compile class for JSP
>
> An error occurred at line: 68 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.GetAsStringTag cannot be resolved to a type
>
> An error occurred at line: 68 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.GetAsStringTag cannot be resolved to a type
>
> An error occurred at line: 68 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.GetAsStringTag cannot be resolved to a type
>
> An error occurred at line: 144 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 144 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 144 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 160 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 160 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 160 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 163 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 163 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 163 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 166 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 166 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 166 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 169 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 169 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 169 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 172 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 172 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 172 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 182 in the jsp file: /admin/layout/template.jsp
> Generated servlet error:
> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a type
>
> An error occurred at line: 182 in the jsp file: /admin/layou

Re: [Carbon-dev] Moving Jar Signing of Products in to a separate Profile

2012-01-11 Thread Harshana Martin
Hi All,

Made the necessary changes to the service module of following products.

1. AS
2. ESB
3. G-Reg
4. BRS

Now the Jar Signing is skipped unless you activate it using mvn  *
-Dprofile=signJar* command.

Thanks and Regards,
Harshana

On Wed, Jan 11, 2012 at 12:46 PM, Afkham Azeez  wrote:

>
>
> On Wed, Jan 11, 2012 at 12:42 PM, Amila Jayasekara wrote:
>
>> On Wed, Jan 11, 2012 at 12:00 PM, Afkham Azeez  wrote:
>> > +1. this will reduce the product build time by about 60%. Sanjaya, in
>> our
>> > Stratos setup script, by default,  let's do the jar signing, using the
>> > private key in the carbon.jks by default. Let's make the keystore a
>> > configurable parameter so that a different one can be used during setup.
>>
>> Are we planning to disable security policy enforcement also ?
>> Otherwise we will not be able to start stratos packs after a build.
>>
>
> We will build Stratos packs, run the setup script & then start the packs.
> The script will sign the jars. We also have the option of running the build
> with the signJars profile, which will work as it works today.
>
>
>> Thanks
>> AmilaJ
>>
>> >
>> > On Wed, Jan 11, 2012 at 11:54 AM, Harshana Martin 
>> wrote:
>> >>
>> >> Hi All,
>> >>
>> >> As per offline discussion had with Azeez and Shankar, we are planning
>> to
>> >> move Jar Signing process to a separate maven profile in order to
>> improve the
>> >> Carbon Build time.
>> >>
>> >> Idea is to avoid Jar signing for normal builds since it consumes lot of
>> >> time and it is not required for normal users. if someone wants it,
>> they can
>> >> use the maven profile.
>> >>
>> >> Thanks and Regards,
>> >> Harshana
>> >> --
>> >> Harshana Martin
>> >> Software Engineer
>> >> WSO2 Inc.
>> >> Web:http://wso2.com
>> >>   http://wso2.org
>> >>
>> >> Mobile: +94 716062650
>> >> Blog: http://harshana05.blogspot.com
>> >> Profile: https://www.google.com/profiles/harshana05
>> >> Twitter: http://twitter.com/harshana05
>> >>
>> >>
>> >> ___
>> >> Carbon-dev mailing list
>> >> Carbon-dev@wso2.org
>> >> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>> >>
>> >
>> >
>> >
>> > --
>> > Afkham Azeez
>> > Director of Architecture; WSO2, Inc.; http://wso2.com
>> > Member; Apache Software Foundation; http://www.apache.org/
>> >
>> > email: az...@wso2.com cell: +94 77 3320919
>> > blog: http://blog.afkham.org
>> > twitter: 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
>> >
>>
>>
>>
>> --
>> Mobile : +94773330538
>> ___
>> Carbon-dev mailing list
>> Carbon-dev@wso2.org
>> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>>
>
>
>
> --
> *Afkham Azeez*
> Director of Architecture; WSO2, Inc.; http://wso2.com
> Member; Apache Software Foundation; http://www.apache.org/
> * **
> email: **az...@wso2.com* * cell: +94 77 3320919
> blog: **http://blog.afkham.org* *
> twitter: **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
>
>


-- 
Harshana Martin
Software Engineer
WSO2 Inc.
Web:http://wso2.com
  http://wso2.org

Mobile: +94 716062650
Blog: http://harshana05.blogspot.com
Profile: https://www.google.com/profiles/harshana05
Twitter: http://twitter.com/harshana05
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Exception at login after sometime in G-Reg trunk packs

2012-01-11 Thread Janaka Ranabahu
Hi Sumedha,

I did not try that. My first thought was that this might be some error in
my local pack. So I started building a new pack. I sent the mail to find
out whether anyone else had experienced the same thing.

Also note that I was using a pack which was there in the
product-->distribution-->target folder. And because of the current build,
it has been deleted. [?]
So what I'll do it to try and reproduce this in my latest build and will
update the thread with the status of it.

Thanks,
Janaka

On Wed, Jan 11, 2012 at 3:02 PM, Sumedha Rubasinghe wrote:

> Are you getting the same error for all subsequent logins?
> If so, what happen when you restart the server & login back?
> What is the page your trying to refresh.
> By looking @ the stacktrace, I could not find any particular JSP tag being
> faulty.
>
> /sumedha
>
> On Wed, Jan 11, 2012 at 2:49 PM, Janaka Ranabahu  wrote:
>
>> Hi All,
>>
>> I have noticed the following exception from a trunk G-Reg pack. This
>> happened when I tried to refresh a page after about 1 hour. Any idea about
>> the cause for this issue.
>>
>> [2012-01-11 13:01:10,492]  INFO
>> {org.wso2.carbon.core.services.util.CarbonAuthenticationUtil} -  'admin'
>> logged in at [2012-01-11 13:01:10,0492] from IP address 10.200.2.99
>> Jan 11, 2012 2:04:31 PM org.apache.catalina.core.ApplicationDispatcher
>> invoke
>> SEVERE: Servlet.service() for servlet bridgeservlet threw exception
>> org.apache.jasper.JasperException: Unable to compile class for JSP
>>
>> An error occurred at line: 68 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.GetAsStringTag cannot be resolved to a type
>>
>> An error occurred at line: 68 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.GetAsStringTag cannot be resolved to a type
>>
>> An error occurred at line: 68 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.GetAsStringTag cannot be resolved to a type
>>
>> An error occurred at line: 144 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 144 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 144 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 160 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 160 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 160 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 163 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 163 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 163 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 166 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 166 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 166 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 169 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 169 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 169 in the jsp file: /admin/layout/template.jsp
>> Generated servlet error:
>> org.apache.tiles.jsp.taglib.InsertAttributeTag cannot be resolved to a
>> type
>>
>> An error occurred at line: 172 in the jsp file: /admin/layout/template.jsp
>> Gener

[Carbon-dev] [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #92 has FAILED (2 tests failed, 1 failures were new). Change made by amani and dimuthul.

2012-01-11 Thread Bamboo

---
WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #92 failed.
---
Code has been updated by amani, dimuthul.
2/7769 tests failed, 1 failure was new.

http://builder4.us1.wso2.org:/bamboo/browse/WSO2CARBONTUNK-WSO2CARBONPLATFORMTRUNK-92/


--
Failing Jobs
--
  - WSO2 Carbon Trunk Build Process (Default Stage): 2 of 7769 tests failed.


--
Code Changes
--
amani (118797):

>Applying a patch for the fix STRATOS-1981 (Fix provided by ajanthan 
>balachandiran).
>

dimuthul (118796):

>Applyaing Ashansa's patch to fix Stratos-1705
>
>

amani (118798):

>Applying a patch for the fix STRATOS-1478 (Fix provided by ajanthan 
>balachandiran).
>



--
Tests
--
New Test Failures (1)
   - ServerAdminTestCase: Retrieve server info
Existing Test Failures (1)
   - SchemaTest: Add schema

--
This message is automatically generated by Atlassian Bamboo___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #92 has FAILED (2 tests failed, 1 failures were new). Change made by amani and dimuthul.

2012-01-11 Thread Amani Soysa
I am looking into this

On Wed, Jan 11, 2012 at 3:23 PM, Bamboo  wrote:

>  [image: Failed]  WSO2 Carbon 
> Trunk› WSO2
> Carbon - Platform 
> Trunk›
> #92
> failed
>
> Code has been updated by 
> amani,
> dimuthul 
> .
>
> *2/7769* tests failed.
>   Failing 
> Jobs
> Job Duration Tests[image: Failed]  WSO2 Carbon Trunk Build 
> Process
>  (Default
> Stage)  303 minutes  2 of 7769 failed  
> Logs|
> Artifacts
>  Code
> Changes
>   View
> full change 
> details
> amani 
> Applying a patch for the fix 
> STRATOS-1478(Fix
>  provided by ajanthan balachandiran).
>  118798amani
> Applying a patch for the fix 
> STRATOS-1981(Fix
>  provided by ajanthan balachandiran).
>  118797
> dimuthul
> Applyaing Ashansa's patch to fix Stratos-1705
>
>  118796 
> Tests
>   View
> full test 
> details
>1
> New Test Failures  Test Job ServerAdminTestCase 
> testRetrieveServerInfo
>   WSO2
> Carbon Trunk Build 
> Process
>1
> Existing Test Failures  Test Job SchemaTest 
> testAddSchema
>   WSO2
> Carbon Trunk Build 
> Process
>  View
> Online
> | Add 
> Comments
>
> This message was sent by Atlassian 
> Bamboo
> .
>
> If you wish to stop receiving these emails edit your user 
> profileor
>  notify
> your 
> administrator
> .
>
> ___
> 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] [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #92 has FAILED (2 tests failed, 1 failures were new). Change made by amani and dimuthul.

2012-01-11 Thread Dimuthu Leelarathne
Hi all,

We looked at this. None of commits mentioned by Bamboo is in carbon core.
Perhaps this is a intermittent test failure. I am not getting this test
failure with local build. Does anyone else get this error?

thanks,
dimuthul

On Wed, Jan 11, 2012 at 3:50 PM, Amani Soysa  wrote:

> I am looking into this
>
> On Wed, Jan 11, 2012 at 3:23 PM, Bamboo  wrote:
>
>>  [image: Failed]  WSO2 Carbon 
>> Trunk› WSO2
>> Carbon - Platform 
>> Trunk›
>> #92
>> failed
>>
>> Code has been updated by 
>> amani,
>> dimuthul
>> .
>>
>> *2/7769* tests failed.
>>   Failing 
>> Jobs
>> Job
>> Duration Tests[image: Failed]  WSO2 Carbon Trunk Build 
>> Process
>>  (Default
>> Stage)  303 minutes  2 of 7769 failed  
>> Logs|
>> Artifacts
>>  Code
>> Changes
>>   View
>> full change 
>> details
>> amani 
>> Applying a patch for the fix 
>> STRATOS-1478(Fix
>>  provided by ajanthan balachandiran).
>>  118798
>> amani
>> Applying a patch for the fix 
>> STRATOS-1981(Fix
>>  provided by ajanthan balachandiran).
>>  118797
>> dimuthul
>> Applyaing Ashansa's patch to fix Stratos-1705
>>
>>  118796 
>> Tests
>>   View
>> full test 
>> details
>>1
>> New Test Failures   Test Job ServerAdminTestCase
>> testRetrieveServerInfo
>>   WSO2
>> Carbon Trunk Build 
>> Process
>>1
>> Existing Test Failures   Test Job SchemaTest 
>> testAddSchema
>>   WSO2
>> Carbon Trunk Build 
>> Process
>>  View
>> Online
>> | Add 
>> Comments
>>
>> This message was sent by Atlassian 
>> Bamboo
>> .
>>
>> If you wish to stop receiving these emails edit your user 
>> profileor
>>  notify
>> your 
>> administrator
>> .
>>
>> ___
>> 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
>
>


-- 
Dimuthu Leelarathne
Technical Lead

WSO2, Inc. (http://wso2.com)
email: dimut...@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] Need to patch Axiom

2012-01-11 Thread Thilina Buddhika
Hi AmilaJ,

Shall we check whether there will be an Axiom release before next Carbon
major release?

Thanks,
Thilina

On Wed, Jan 11, 2012 at 2:45 PM, Amila Jayasekara  wrote:

> Hi All,
>
> In-order to fix [1] we need to patch Axiom. But currently we are not
> maintaining an Axiom local branch.
> How should we proceed with this ?
>
> The relevant Axiom issue is in [2] and the fix for the issue is in
> Axiom-1.2.3-SNAPSHOT.
>
> Thanks
> AmilaJ
>
> [1] https://wso2.org/jira/browse/CARBON-11163
> [2] https://issues.apache.org/jira/browse/AXIOM-386
>
> --
> Mobile : +94773330538
> ___
> Carbon-dev mailing list
> Carbon-dev@wso2.org
> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>



-- 
Thilina Buddhika
Associate Technical Lead
WSO2 Inc. ; http://wso2.com
lean . enterprise . middleware

phone : +94 77 44 88 727
blog : http://blog.thilinamb.com
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Need to patch Axiom

2012-01-11 Thread Amila Jayasekara
On Wed, Jan 11, 2012 at 5:08 PM, Thilina Buddhika  wrote:
> Hi AmilaJ,
>
> Shall we check whether there will be an Axiom release before next Carbon
> major release?

Will do.

Thanks
AmilaJ

>
> Thanks,
> Thilina
>
> On Wed, Jan 11, 2012 at 2:45 PM, Amila Jayasekara  wrote:
>>
>> Hi All,
>>
>> In-order to fix [1] we need to patch Axiom. But currently we are not
>> maintaining an Axiom local branch.
>> How should we proceed with this ?
>>
>> The relevant Axiom issue is in [2] and the fix for the issue is in
>> Axiom-1.2.3-SNAPSHOT.
>>
>> Thanks
>> AmilaJ
>>
>> [1] https://wso2.org/jira/browse/CARBON-11163
>> [2] https://issues.apache.org/jira/browse/AXIOM-386
>>
>> --
>> Mobile : +94773330538
>> ___
>> Carbon-dev mailing list
>> Carbon-dev@wso2.org
>> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>
>
>
>
> --
> Thilina Buddhika
> Associate Technical Lead
> WSO2 Inc. ; http://wso2.com
> lean . enterprise . middleware
>
> phone : +94 77 44 88 727
> blog : http://blog.thilinamb.com
>
> ___
> Carbon-dev mailing list
> Carbon-dev@wso2.org
> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>



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


Re: [Carbon-dev] Module version updates for root and dependency pom in trunk

2012-01-11 Thread Amila Jayasekara
Versions are updated and committed to trunk.

Thanks
AmilaJ

On Wed, Jan 11, 2012 at 9:43 AM, Thilini Ishaka  wrote:
>
>
> On Wed, Jan 11, 2012 at 9:21 AM, Amila Jayasekara  wrote:
>>
>> On Tue, Jan 10, 2012 at 3:34 PM, Thilini Ishaka  wrote:
>> > Hi,
>> >
>> > Carbon root pom and dependency pom need version updates for wss4j,
>> > rampart
>> > and synapse modules.
>> > Need to be corrected as;
>> >
>> > wss4j         1.5.11-wso2v3
>> > rampart      1.6.1-wso2v3
>> > synapse     2.1.0-wso2v5
>> >
>> >
>> > root pom (currently)
>> > 
>> > 1.5.11-wso2v1
>> > 1.6.1-wso2v2
>> > 2.1.0-wso2v2
>> >
>> >
>> > dependency pom (currently)
>> > 
>> >
>> > wss4j         1.5.11-wso2v1
>> > rampart      1.6.1-wso2v2
>> > synapse     2.1.0-wso2v4
>>
>> Guess we also need to change relevant orbit versions also
>> (rampart.osgi.version, orbit.version.wss4j) ?
>
> Yes.
>>
>> Shall i proceed with the change ? (people need to build dependencies
>> and orbit again)
>
> +1
>>
>>
>> Thanks
>> AmilaJ
>>
>> >
>> > Thanks
>> > --
>> > Regards
>> >
>> > Thilini Ishaka
>> > WSO2 Inc
>> >
>> >
>> > ___
>> > Carbon-dev mailing list
>> > Carbon-dev@wso2.org
>> > http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>> >
>>
>>
>>
>> --
>> Mobile : +94773330538
>> ___
>> Carbon-dev mailing list
>> Carbon-dev@wso2.org
>> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>
>
>
>
> --
> Regards
>
> Thilini Ishaka
> WSO2 Inc
>
>
> ___
> Carbon-dev mailing list
> Carbon-dev@wso2.org
> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>



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


[Carbon-dev] Automation Tests for Mounting

2012-01-11 Thread Senaka Fernando
Hi Krishantha,

We need to discuss this sometime this week. We have some issues related to
mounting, and we need to write automation tests for those as well as
several other aspects. I'd like to explain a nearly similar model which I
have used to test caching. But mounting is a little complicated since it
involves multiple instances of servers, and also reconfiguring some config
files and all.

Thanks,
Senaka.

-- 
*Senaka Fernando*
Product Manager - WSO2 Governance Registry;
Associate Technical Lead; WSO2 Inc.; http://wso2.com*
Member; Apache Software Foundation; http://apache.org

E-mail: senaka AT wso2.com
**P: +1 408 754 7388; ext: 51736*; *M: +94 77 322 1818
Linked-In: http://linkedin.com/in/senakafernando

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


[Carbon-dev] Removing forked-off OpenId4J Code

2012-01-11 Thread Dimuthu Leelarathne
Hi all,

I am planning to remove the forked off OpenId4J code and use the released
0.9.6 OpenID4J library.

Please shout if any concerns.

thanks,
dimuthu

-- 
Dimuthu Leelarathne
Technical Lead

WSO2, Inc. (http://wso2.com)
email: dimut...@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] [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #92 has FAILED (2 tests failed, 1 failures were new). Change made by amani and dimuthul.

2012-01-11 Thread Afkham Azeez
ServerAdminTestCase failure is intermittent. But SchemaTest failure was
introduced by a commit. It was fixed, but I don't know why it is still
failing.

On Wed, Jan 11, 2012 at 4:33 PM, Dimuthu Leelarathne wrote:

> Hi all,
>
> We looked at this. None of commits mentioned by Bamboo is in carbon core.
> Perhaps this is a intermittent test failure. I am not getting this test
> failure with local build. Does anyone else get this error?
>
> thanks,
> dimuthul
>
>
> On Wed, Jan 11, 2012 at 3:50 PM, Amani Soysa  wrote:
>
>> I am looking into this
>>
>> On Wed, Jan 11, 2012 at 3:23 PM, Bamboo  wrote:
>>
>>>  [image: Failed]  WSO2 Carbon 
>>> Trunk› WSO2
>>> Carbon - Platform 
>>> Trunk›
>>> #92
>>> failed
>>>
>>> Code has been updated by 
>>> amani,
>>> dimuthul
>>> .
>>>
>>> *2/7769* tests failed.
>>>   Failing 
>>> Jobs
>>> Job
>>> Duration Tests[image: Failed]  WSO2 Carbon Trunk Build 
>>> Process
>>>  (Default
>>> Stage)  303 minutes  2 of 7769 failed  
>>> Logs|
>>> Artifacts
>>>  Code
>>> Changes
>>>   View
>>> full change 
>>> details
>>> amani 
>>> Applying a patch for the fix 
>>> STRATOS-1478(Fix
>>>  provided by ajanthan balachandiran).
>>>  118798
>>> amani
>>> Applying a patch for the fix 
>>> STRATOS-1981(Fix
>>>  provided by ajanthan balachandiran).
>>>  118797
>>> dimuthul
>>> Applyaing Ashansa's patch to fix Stratos-1705
>>>
>>>  118796 
>>> Tests
>>>   View
>>> full test 
>>> details
>>>1
>>> New Test Failures   Test Job ServerAdminTestCase
>>> testRetrieveServerInfo
>>>   WSO2
>>> Carbon Trunk Build 
>>> Process
>>>1
>>> Existing Test Failures   Test Job SchemaTest 
>>> testAddSchema
>>>   WSO2
>>> Carbon Trunk Build 
>>> Process
>>>  View
>>> Online
>>> | Add 
>>> Comments
>>>
>>> This message was sent by Atlassian 
>>> Bamboo
>>> .
>>>
>>> If you wish to stop receiving these emails edit your user 
>>> profileor
>>>  notify
>>> your 
>>> administrator
>>> .
>>>
>>> ___
>>> 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
>>
>>
>
>
> --
> Dimuthu Leelarathne
> Technical Lead
>
> WSO2, Inc. (http://wso2.com)
> email: dimut...@wso2.com
>
> Lean . Enterprise . Middleware
>
>
> ___
> Carbon-dev mailing list
> Carbon-dev@wso2.org
> http://mail.wso2.org/cgi-bin/mailman/l

[Carbon-dev] [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #93 was SUCCESSFUL (with 7768 tests). Change made by 19 authors.

2012-01-11 Thread Bamboo

---
WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #93 was successful.
---
Code has been updated by denis, rajika, harshana, amilaj, dimuthul, lalaji, 
pradeeban, asela, janaka, eranda, tharindu, isuru, sanjeewa, prabatha, amani, 
waruna, amila, rathav, buddhikac.
7768 tests in total.

http://builder4.us1.wso2.org:/bamboo/browse/WSO2CARBONTUNK-WSO2CARBONPLATFORMTRUNK-93/


--
Code Changes
--
rajika (118841):

>Updated the agent admin service.

amilaj (118833):

>Removed year from copyright header

rathav (118814):

>removing unwanted module..



--
Tests
--
Fixed Tests (2)
   - SchemaTest: Add schema
   - ServerAdminTestCase: Retrieve server info

--
This message is automatically generated by Atlassian Bamboo___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


[Carbon-dev] [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #95 has FAILED. Change made by harshana and waruna.

2012-01-11 Thread Bamboo

---
WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #95 failed.
---
Code has been updated by harshana, waruna.
No failed tests found, a possible compilation error.

http://builder4.us1.wso2.org:/bamboo/browse/WSO2CARBONTUNK-WSO2CARBONPLATFORMTRUNK-95/


--
Failing Jobs
--
  - WSO2 Carbon Trunk Build Process (Default Stage): 7753 tests passed.


--
Code Changes
--
harshana (118870):

>Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT

waruna (118869):

>Fix for CARBON-12130, Migration to TestNG, Thanks Keheliya for the patch



--
This message is automatically generated by Atlassian Bamboo___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #95 has FAILED. Change made by harshana and waruna.

2012-01-11 Thread Harshana Martin
Please ignore this for the moment. I have manually stopped the process till
platform version update
completes.

Thanks.
/Harshana

On Wed, Jan 11, 2012 at 10:27 PM, Bamboo  wrote:

>  [image: Failed]  WSO2 Carbon 
> Trunk› WSO2
> Carbon - Platform 
> Trunk›
> #95
> failed
>
> Code has been updated by 
> harshana,
> waruna .
>
> No failed tests found, a possible compilation error.
>Failing 
> Jobs
> Job
> Duration Tests[image: Failed]  WSO2 Carbon Trunk Build 
> Process
>  (Default
> Stage)  3 minutes  7753 passed  
> Logs|
> Artifacts
>  Code
> Changes
>   View
> full change 
> details
> harshana 
> Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT  118870
> waruna
> Fix for 
> CARBON-12130,
> Migration to TestNG, Thanks Keheliya for the patch  118869 View 
> Online
> | Add 
> Comments
>
> This message was sent by Atlassian 
> Bamboo
> .
>
> If you wish to stop receiving these emails edit your user 
> profileor
>  notify
> your 
> administrator
> .
>
> ___
> Carbon-dev mailing list
> Carbon-dev@wso2.org
> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>
>


-- 
Harshana Martin
Software Engineer
WSO2 Inc.
Web:http://wso2.com
  http://wso2.org

Mobile: +94 716062650
Blog: http://harshana05.blogspot.com
Profile: https://www.google.com/profiles/harshana05
Twitter: http://twitter.com/harshana05
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Automation Tests for Mounting

2012-01-11 Thread Krishantha Samaraweera
+1, We have already configured test framework to setup product platform
with registry mounts and run test against the mounted product setup in
bamboo machine (only five products yet). But we don't have specific tests
for registry mounts. Normally we run governance API test on the setup. Lets
discuss this tomorrow.

Thanks,
Krishantha.

On Wed, Jan 11, 2012 at 6:13 PM, Senaka Fernando  wrote:

> Hi Krishantha,
>
> We need to discuss this sometime this week. We have some issues related to
> mounting, and we need to write automation tests for those as well as
> several other aspects. I'd like to explain a nearly similar model which I
> have used to test caching. But mounting is a little complicated since it
> involves multiple instances of servers, and also reconfiguring some config
> files and all.
>
> Thanks,
> Senaka.
>
> --
> *Senaka Fernando*
> Product Manager - WSO2 Governance Registry;
> Associate Technical Lead; WSO2 Inc.; http://wso2.com*
> Member; Apache Software Foundation; http://apache.org
>
> E-mail: senaka AT wso2.com
> **P: +1 408 754 7388; ext: 51736*; *M: +94 77 322 1818
> Linked-In: http://linkedin.com/in/senakafernando
>
> *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] Issue with the version of Maven-eclipse-plugin when using under manager

2012-01-11 Thread Nirmal Fernando
Hi All,

On Mon, Jan 9, 2012 at 5:39 AM, Nirmal Fernando  wrote:
> Hi Amila,
>
> On Sun, Jan 8, 2012 at 5:30 PM, Amila Maha Arachchi  wrote:
>> Hi Nirmal,
>>
>> Is it the only place affected by this?

Further analysis shown the same error in following:

commons-vfs2
axis2-transport-all
org.wso2.governance.styles
org.wso2.stratos.governance.styles
org.wso2.brs.styles
org.wso2.stratos.brs.styles
org.wso2.mb.styles
org.wso2.stratos.mb.styles
org.wso2.bam.styles
org.wso2.stratos.bam.styles
org.wso2.cep.styles
org.wso2.stratos.cep.styles
org.wso2.esb.styles
org.wso2.stratos.esb.styles

Shouldn't it better to fix this as I suggested earlier (by downgrading
maven-eclipse-plugin only at the relevant place)?

Thanks.

>
> This is the place I came across, there might be few other places too.
>
>>
>> Regards,
>> AmilaM.
>>
>> On Sun, Jan 8, 2012 at 1:20 PM, Nirmal Fernando  wrote:
>>>
>>> Hi,
>>>
>>> I tried to run 'mvn eclipse:eclipse' under 'products/manager', it
>>> failed with "Request to merge when 'filtering' is not identical."
>>> error.
>>>
>>> Seems like this was caused by a change in the maven-eclipse-plugin
>>> itself [1]. As suggested at [1], I could successfully build with
>>> maven-eclipse-plugin 2.6.
>>>
>>> The better way would be downgrade the maven-eclipse-plugin at
>>> 'modules/styles/service/pom.xml'.
>>>
>>> I could create a JIRA and provide a patch if this is okay.
>>>
>>>
>>> [1] http://forums.atlassian.com/thread.jspa?threadID=34952
>>>
>>>
>>> Thanks.
>>>
>>> --
>>>
>>> regards,
>>> Nirmal
>>>
>>> Software Engineer, WSO2 Inc.
>>> mobile: +94715779733
>>> ___
>>> Carbon-dev mailing list
>>> Carbon-dev@wso2.org
>>> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>>
>>
>>
>>
>> --
>> Amila Maharachchi
>> Senior Software Engineer; WSO2, Inc.; http://wso2.com
>>
>> Blog: http://maharachchi.blogspot.com
>> Mobile: +94719371446
>>
>>
>>
>> ___
>> Carbon-dev mailing list
>> Carbon-dev@wso2.org
>> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>>
>
>
>
> --
>
> regards,
> Nirmal
>
> Software Engineer, WSO2 Inc.
> mobile: +94715779733



-- 

regards,
Nirmal

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


Re: [Carbon-dev] Carbon trunk is still 3.2.0-SNAPSHOT

2012-01-11 Thread Harshana Martin
Hi All,

On Mon, Jan 9, 2012 at 9:25 AM, Harshana Martin  wrote:

> Hi Azeez,
>
> On Mon, Jan 9, 2012 at 6:59 AM, Afkham Azeez  wrote:
>
>> Harshana,
>> Can you globally change the Carbon version please? Let's do this before
>> we unfreeze SVN.
>>
>
> Sure.. Will do the necessary changes.
>

I have upgraded the version of the Carbon trunk to 4.0.0-SNAPSHOT.

Bamboo has picked up the changes and a build is in progress.

Thanks and Regards,
/Harshana

>
> Thanks and Regards,
> Harshana
>
>>
>> On Mon, Jan 9, 2012 at 6:33 AM, Samisa Abeysinghe wrote:
>>
>>> When are we changing this?
>>>
>>> Needless to say this is badly broken. It got to be 4.0.0-SNAPSHOT
>>>
>>> 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*
>> Director of Architecture; WSO2, Inc.; http://wso2.com
>> Member; Apache Software Foundation; http://www.apache.org/
>> * **
>> email: **az...@wso2.com* * cell: +94 77 3320919
>> blog: **http://blog.afkham.org* *
>> twitter: **http://twitter.com/afkham_azeez*
>> *
>> linked-in: **http://lk.linkedin.com/in/afkhamazeez*
>> *
>> *
>> *Lean . Enterprise . Middleware*
>>
>>
>
>
> --
> Harshana Martin
> Software Engineer
> WSO2 Inc.
> Web:http://wso2.com
>   http://wso2.org
>
> Mobile: +94 716062650
> Blog: http://harshana05.blogspot.com
> Profile: https://www.google.com/profiles/harshana05
> Twitter: http://twitter.com/harshana05
>
>


-- 
Harshana Martin
Software Engineer
WSO2 Inc.
Web:http://wso2.com
  http://wso2.org

Mobile: +94 716062650
Blog: http://harshana05.blogspot.com
Profile: https://www.google.com/profiles/harshana05
Twitter: http://twitter.com/harshana05
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Issue with the version of Maven-eclipse-plugin when using under manager

2012-01-11 Thread Sameera Jayasoma
+1.

Thanks,
Sameera.

On Wednesday, January 11, 2012, Nirmal Fernando  wrote:
> Hi All,
>
> On Mon, Jan 9, 2012 at 5:39 AM, Nirmal Fernando  wrote:
>> Hi Amila,
>>
>> On Sun, Jan 8, 2012 at 5:30 PM, Amila Maha Arachchi 
wrote:
>>> Hi Nirmal,
>>>
>>> Is it the only place affected by this?
>
> Further analysis shown the same error in following:
>
> commons-vfs2
> axis2-transport-all
> org.wso2.governance.styles
> org.wso2.stratos.governance.styles
> org.wso2.brs.styles
> org.wso2.stratos.brs.styles
> org.wso2.mb.styles
> org.wso2.stratos.mb.styles
> org.wso2.bam.styles
> org.wso2.stratos.bam.styles
> org.wso2.cep.styles
> org.wso2.stratos.cep.styles
> org.wso2.esb.styles
> org.wso2.stratos.esb.styles
>
> Shouldn't it better to fix this as I suggested earlier (by downgrading
> maven-eclipse-plugin only at the relevant place)?
>
> Thanks.
>
>>
>> This is the place I came across, there might be few other places too.
>>
>>>
>>> Regards,
>>> AmilaM.
>>>
>>> On Sun, Jan 8, 2012 at 1:20 PM, Nirmal Fernando  wrote:

 Hi,

 I tried to run 'mvn eclipse:eclipse' under 'products/manager', it
 failed with "Request to merge when 'filtering' is not identical."
 error.

 Seems like this was caused by a change in the maven-eclipse-plugin
 itself [1]. As suggested at [1], I could successfully build with
 maven-eclipse-plugin 2.6.

 The better way would be downgrade the maven-eclipse-plugin at
 'modules/styles/service/pom.xml'.

 I could create a JIRA and provide a patch if this is okay.


 [1] http://forums.atlassian.com/thread.jspa?threadID=34952


 Thanks.

 --

 regards,
 Nirmal

 Software Engineer, WSO2 Inc.
 mobile: +94715779733
 ___
 Carbon-dev mailing list
 Carbon-dev@wso2.org
 http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>>>
>>>
>>>
>>>
>>> --
>>> Amila Maharachchi
>>> Senior Software Engineer; WSO2, Inc.; http://wso2.com
>>>
>>> Blog: http://maharachchi.blogspot.com
>>> Mobile: +94719371446
>>>
>>>
>>>
>>> ___
>>> Carbon-dev mailing list
>>> Carbon-dev@wso2.org
>>> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>>>
>>
>>
>>
>> --
>>
>> regards,
>> Nirmal
>>
>> Software Engineer, WSO2 Inc.
>> mobile: +94715779733
>
>
>
> --
>
> regards,
> Nirmal
>
> Software Engineer, WSO2 Inc.
> mobile: +94715779733
> ___
> Carbon-dev mailing list
> Carbon-dev@wso2.org
> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>

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


[Carbon-dev] Carbon Trunk Version upgraded to 4.0.0-SNAPSHOT

2012-01-11 Thread Harshana Martin
Hi All,

Please note $Subject and all your component developments and test
implementations should refer the new version.

Thanks and Regards,
Harshana
-- 
Harshana Martin
Software Engineer
WSO2 Inc.
Web:http://wso2.com
  http://wso2.org

Mobile: +94 716062650
Blog: http://harshana05.blogspot.com
Profile: https://www.google.com/profiles/harshana05
Twitter: http://twitter.com/harshana05
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


[Carbon-dev] [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #96 has FAILED (9 tests failed). Change made by harshana.

2012-01-11 Thread Bamboo

---
WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #96 failed.
---
Code has been updated by harshana.
9/7692 tests failed.

http://builder4.us1.wso2.org:/bamboo/browse/WSO2CARBONTUNK-WSO2CARBONPLATFORMTRUNK-96/


--
Failing Jobs
--
  - WSO2 Carbon Trunk Build Process (Default Stage): 9 of 7692 tests failed.


--
Code Changes
--
harshana (118871):

>Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT

harshana (118872):

>Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT

harshana (118873):

>Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT



--
Tests
--
New Test Failures (9)
   - ASTestServerManager: Start server
   - BAMTestServerManager: Start server
   - CarbonTestServerManager: Start server
   - BRSTestServerManager: Start server
   - BRSTestServerManager: Start server
   - CEPTestServerManager: Start server
   - DSSTestServerManager: Start server
   - ISTestServerManager: Start server
   - MSTestServerManager: Start server

--
This message is automatically generated by Atlassian Bamboo___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


[Carbon-dev] [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #97 has FAILED (9 tests failed, no failures were new). Change made by harshana and senaka.

2012-01-11 Thread Bamboo

---
WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #97 failed.
---
Code has been updated by harshana, senaka.
9/7692 tests failed, no failures were new.

http://builder4.us1.wso2.org:/bamboo/browse/WSO2CARBONTUNK-WSO2CARBONPLATFORMTRUNK-97/


--
Failing Jobs
--
  - WSO2 Carbon Trunk Build Process (Default Stage): 9 of 7692 tests failed.


--
Code Changes
--
senaka (118874):

>Fixing JIRA Issue CARBON-11805. The integration tests will be added after we 
>have discussed on the best approach to test mounting aspects.

harshana (118876):

>Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT

harshana (118878):

>Upgrading the Carbon Trunk properties to 4.0.0-SNAPSHOT



--
Tests
--
Existing Test Failures (9)
   - ASTestServerManager: Start server
   - BAMTestServerManager: Start server
   - CarbonTestServerManager: Start server
   - BRSTestServerManager: Start server
   - BRSTestServerManager: Start server
   - CEPTestServerManager: Start server
   - DSSTestServerManager: Start server
   - ISTestServerManager: Start server
   - MSTestServerManager: Start server

--
This message is automatically generated by Atlassian Bamboo___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


[Carbon-dev] Fwd: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #97 has FAILED (9 tests failed, no failures were new). Change made by harshana and senaka.

2012-01-11 Thread Srinath Perera
Harshana,

I am not sure, but does changing carbon trunk properties lead to the
build failure .. problem is test looking for a pack that is not there?

--Srinath

-- Forwarded message --
From: Bamboo 
Date: Thu, Jan 12, 2012 at 6:19 AM
Subject: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk >
#97 has FAILED (9 tests failed, no failures were new). Change made by
harshana and senaka.
To: srin...@wso2.com


 [image: Failed]  WSO2 Carbon
Trunk›
WSO2
Carbon - Platform
Trunk›
#97
failed

Code has been updated by
harshana,
senaka .

*9/7692* tests failed.
  Failing 
Jobs
Job Duration Tests[image: Failed]  WSO2 Carbon Trunk Build
Process
(Default
Stage)  171 minutes  9 of 7692 failed
Logs|
Artifacts
Code
Changes
 View
all 4 code 
changes
harshana 
Upgrading the Carbon Trunk properties to 4.0.0-SNAPSHOT  118878
harshana
Removed dependencies declared in distribution modules in order to avoid
build handing during the dependency report generation of maven site plugin
118877
harshana
Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT  118876   1 more
changes…
Tests
 View
full test 
details
  9
Existing Test Failures  Test Job ASTestServerManager
startServer
 WSO2
Carbon Trunk Build
Process
BAMTestServerManager
startServer
 WSO2
Carbon Trunk Build
Process
CarbonTestServerManager
startServer
 WSO2
Carbon Trunk Build
Process
BRSTestServerManager
startServer
 WSO2
Carbon Trunk Build
Process
BRSTestServerManager
startServer
 WSO2
Carbon Trunk Build
Process
CEPTestServerManager
startServer
 WSO2
Carbon Trunk Build
Process
DSSTestServerManager
startServer
 WSO2
Carbon Trunk Build
Process
ISTestServerManager
startServer
 WSO2
Carbon Trunk Build
Process
MSTestServerManager
startServer

Re: [Carbon-dev] Fwd: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #97 has FAILED (9 tests failed, no failures were new). Change made by harshana and senaka.

2012-01-11 Thread Prabath Abeysekera
Carbon core p2 profile generation failed for me as carbon.product metadata
file in core/p2-profile-generation still points to the version
3.2.0-SNAPSHOT. Not sure whether that has any impact on this.

On Thu, Jan 12, 2012 at 6:39 AM, Srinath Perera  wrote:

> Harshana,
>
> I am not sure, but does changing carbon trunk properties lead to the
> build failure .. problem is test looking for a pack that is not there?
>
> --Srinath
>
>
> -- Forwarded message --
> From: Bamboo 
> Date: Thu, Jan 12, 2012 at 6:19 AM
> Subject: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk >
> #97 has FAILED (9 tests failed, no failures were new). Change made by
> harshana and senaka.
> To: srin...@wso2.com
>
>
>  [image: Failed]  WSO2 Carbon 
> Trunk› WSO2
> Carbon - Platform 
> Trunk›
> #97
> failed
>
> Code has been updated by 
> harshana,
> senaka .
>
> *9/7692* tests failed.
>Failing 
> Jobs
> Job
> Duration Tests[image: Failed]  WSO2 Carbon Trunk Build 
> Process
>  (Default
> Stage)  171 minutes  9 of 7692 failed  
> Logs|
> Artifacts
>  Code
> Changes
>   View
> all 4 code 
> changes
> harshana 
> Upgrading the Carbon Trunk properties to 4.0.0-SNAPSHOT  118878
> harshana 
> Removed dependencies declared in distribution modules in order to avoid
> build handing during the dependency report generation of maven site plugin
> 118877
> harshana
> Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT  118876   1 more
> changes…
> Tests
>   View
> full test 
> details
>9
> Existing Test Failures   Test Job ASTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process
> BAMTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process
> CarbonTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process
> BRSTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process
> BRSTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process
> CEPTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process
> DSSTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process

Re: [Carbon-dev] Fwd: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #97 has FAILED (9 tests failed, no failures were new). Change made by harshana and senaka.

2012-01-11 Thread Afkham Azeez
Yeah, due to the version change, the packs are not created. So,  server
startup fails.

--
Afkham Azeez
Sent from my phone
On Jan 12, 2012 8:32 AM, "Prabath Abeysekera"  wrote:

> Carbon core p2 profile generation failed for me as carbon.product metadata
> file in core/p2-profile-generation still points to the version
> 3.2.0-SNAPSHOT. Not sure whether that has any impact on this.
>
> On Thu, Jan 12, 2012 at 6:39 AM, Srinath Perera  wrote:
>
>> Harshana,
>>
>> I am not sure, but does changing carbon trunk properties lead to the
>> build failure .. problem is test looking for a pack that is not there?
>>
>> --Srinath
>>
>>
>> -- Forwarded message --
>> From: Bamboo 
>> Date: Thu, Jan 12, 2012 at 6:19 AM
>> Subject: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk
>> > #97 has FAILED (9 tests failed, no failures were new). Change made by
>> harshana and senaka.
>> To: srin...@wso2.com
>>
>>
>>  [image: Failed]  WSO2 Carbon 
>> Trunk› WSO2
>> Carbon - Platform 
>> Trunk›
>> #97
>> failed
>>
>> Code has been updated by 
>> harshana,
>> senaka .
>>
>> *9/7692* tests failed.
>>Failing 
>> Jobs
>> Job
>> Duration Tests[image: Failed]  WSO2 Carbon Trunk Build 
>> Process
>>  (Default
>> Stage)  171 minutes  9 of 7692 failed  
>> Logs|
>> Artifacts
>>  Code
>> Changes
>>   View
>> all 4 code 
>> changes
>> harshana
>> Upgrading the Carbon Trunk properties to 4.0.0-SNAPSHOT  118878
>> harshana
>> Removed dependencies declared in distribution modules in order to avoid
>> build handing during the dependency report generation of maven site plugin
>> 118877
>> harshana
>> Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT  118876   1 more
>> changes…
>> Tests
>>   View
>> full test 
>> details
>>9
>> Existing Test Failures   Test Job ASTestServerManager 
>> startServer
>>   WSO2
>> Carbon Trunk Build 
>> Process
>> BAMTestServerManager 
>> startServer
>>   WSO2
>> Carbon Trunk Build 
>> Process
>> CarbonTestServerManager 
>> startServer
>>   WSO2
>> Carbon Trunk Build 
>> Process
>> BRSTestServerManager 
>> startServer
>>   WSO2
>> Carbon Trunk Build 
>> Process
>> BRSTestServerManager 
>> startServer
>>   WSO2
>> Carbon Trunk Build 
>> Process
>> CEPTestServerManager 
>> startServer
>>   WSO2
>> Carbon Trunk Build 
>> Process

Re: [Carbon-dev] [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #95 has FAILED. Change made by harshana and waruna.

2012-01-11 Thread Srinath Perera
please make sure you turn it back when you have finished.
--Srinath

On Wed, Jan 11, 2012 at 10:30 PM, Harshana Martin  wrote:

> Please ignore this for the moment. I have manually stopped the process
> till platform version update
> completes.
>
> Thanks.
> /Harshana
>
> On Wed, Jan 11, 2012 at 10:27 PM, Bamboo  wrote:
>
>>  [image: Failed]  WSO2 Carbon 
>> Trunk› WSO2
>> Carbon - Platform 
>> Trunk›
>> #95
>> failed
>>
>> Code has been updated by 
>> harshana,
>> waruna .
>>
>> No failed tests found, a possible compilation error.
>>Failing 
>> Jobs
>> Job
>> Duration Tests[image: Failed]  WSO2 Carbon Trunk Build 
>> Process
>>  (Default
>> Stage)  3 minutes  7753 passed  
>> Logs|
>> Artifacts
>>  Code
>> Changes
>>   View
>> full change 
>> details
>> harshana
>> Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT  118870
>> waruna
>> Fix for 
>> CARBON-12130,
>> Migration to TestNG, Thanks Keheliya for the patch  118869 View
>> Online
>> | Add 
>> Comments
>>
>> This message was sent by Atlassian 
>> Bamboo
>> .
>>
>> If you wish to stop receiving these emails edit your user 
>> profileor
>>  notify
>> your 
>> administrator
>> .
>>
>> ___
>> Carbon-dev mailing list
>> Carbon-dev@wso2.org
>> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>>
>>
>
>
> --
> Harshana Martin
> Software Engineer
> WSO2 Inc.
> Web:http://wso2.com
>   http://wso2.org
>
> Mobile: +94 716062650
> Blog: http://harshana05.blogspot.com
> Profile: https://www.google.com/profiles/harshana05
> Twitter: http://twitter.com/harshana05
>
>
> ___
> Carbon-dev mailing list
> Carbon-dev@wso2.org
> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>
>


-- 

Srinath Perera, Ph.D.
   http://www.cs.indiana.edu/~hperera/
   http://srinathsview.blogspot.com/
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


[Carbon-dev] Configure a DS as a subscriber to a topic in ActiveMQ

2012-01-11 Thread Jorge Infante Osorio
Hi folks.

 

How I can $subject in AS 4.1.2? 

 

Saludos,

Ing. Jorge Infante Osorio.

J´Dpto Soluciones SOA.

CDAE.

Fac. 5.

UCI.

 




Fin a la injusticia, LIBERTAD AHORA A NUESTROS CINCO COMPATRIOTAS QUE SE 
ENCUENTRAN INJUSTAMENTE EN PRISIONES DE LOS EEUU!
http://www.antiterroristas.cu
http://justiciaparaloscinco.wordpress.com

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


Re: [Carbon-dev] Configure a DS as a subscriber to a topic in ActiveMQ

2012-01-11 Thread Dinusha Senanayaka
Hi Jorge,

2012/1/12 Jorge Infante Osorio 

> Hi folks.
>
> ** **
>
> How I can $subject in AS 4.1.2?
>

Follow the same steps provided in article [1] .
[1].
http://wso2.org/library/articles/2012/01/configuring-jms-transport-in-wso2-business-process-server-bps

Regards,
Dinusha.

> 
>
> ** **
>
> Saludos,
>
> Ing. Jorge Infante Osorio.
>
> J´Dpto Soluciones SOA.
>
> CDAE.
>
> Fac. 5.
>
> UCI.
>
> ** **
>
>   
>
>
> ___
> 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] Configure a DS as a subscriber to a topic in ActiveMQ

2012-01-11 Thread Jorge Infante Osorio
Hi Dinusha. I do it like in [1] but I don´t know if I miss something, I want
to subscribe several DS to a single topic in ActiveMQ, how I can configure
that?.

 

 

Like in [1] I do the steps from 1 to 5 of “Configure to Communicate WSO2 BPS
with Active MQ”,  with the AS in my case. 

 

In this moment I need to know how to specified the subscription of a DS to a
topic, create by a proxy service,  in ActiveMQ.

 

Saludos,

Ing. Jorge Infante Osorio.

J´Dpto Soluciones SOA.

CDAE.

Fac. 5.

UCI.

 

De: carbon-dev-boun...@wso2.org [mailto:carbon-dev-boun...@wso2.org] En
nombre de Dinusha Senanayaka
Enviado el: jueves, 12 de enero de 2012 0:44
Para: carbon-dev@wso2.org
Asunto: Re: [Carbon-dev] Configure a DS as a subscriber to a topic in
ActiveMQ

 

Hi Jorge,

2012/1/12 Jorge Infante Osorio 

Hi folks.

 

How I can $subject in AS 4.1.2? 


Follow the same steps provided in article [1] .
[1].
http://wso2.org/library/articles/2012/01/configuring-jms-transport-in-wso2-b
usiness-process-server-bps 

Regards,
Dinusha.

 

Saludos,

Ing. Jorge Infante Osorio.

J´Dpto Soluciones SOA.

CDAE.

Fac. 5.

UCI.

 

 

  

   

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

   




Fin a la injusticia, LIBERTAD AHORA A NUESTROS CINCO COMPATRIOTAS QUE SE 
ENCUENTRAN INJUSTAMENTE EN PRISIONES DE LOS EEUU!
http://www.antiterroristas.cu
http://justiciaparaloscinco.wordpress.com

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


Re: [Carbon-dev] Fwd: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #97 has FAILED (9 tests failed, no failures were new). Change made by harshana and senaka.

2012-01-11 Thread Harshana Martin
On Thu, Jan 12, 2012 at 6:39 AM, Srinath Perera  wrote:

> Harshana,
>
> I am not sure, but does changing carbon trunk properties lead to the
> build failure .. problem is test looking for a pack that is not there?
>

Yes. Since I haven't changed the p2 maven plugins property file during the
version upgrade, packs are not generated and it leads to these failures.

Will rectify this ASAP!

Sorry for the inconvenience caused.

Thanks and Regards,
Harshana

>
> --Srinath
>
>
> -- Forwarded message --
> From: Bamboo 
> Date: Thu, Jan 12, 2012 at 6:19 AM
> Subject: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk >
> #97 has FAILED (9 tests failed, no failures were new). Change made by
> harshana and senaka.
> To: srin...@wso2.com
>
>
>  [image: Failed]  WSO2 Carbon 
> Trunk› WSO2
> Carbon - Platform 
> Trunk›
> #97
> failed
>
> Code has been updated by 
> harshana,
> senaka .
>
> *9/7692* tests failed.
>Failing 
> Jobs
> Job
> Duration Tests[image: Failed]  WSO2 Carbon Trunk Build 
> Process
>  (Default
> Stage)  171 minutes  9 of 7692 failed  
> Logs|
> Artifacts
>  Code
> Changes
>   View
> all 4 code 
> changes
> harshana 
> Upgrading the Carbon Trunk properties to 4.0.0-SNAPSHOT  118878
> harshana 
> Removed dependencies declared in distribution modules in order to avoid
> build handing during the dependency report generation of maven site plugin
> 118877
> harshana
> Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT  118876   1 more
> changes…
> Tests
>   View
> full test 
> details
>9
> Existing Test Failures   Test Job ASTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process
> BAMTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process
> CarbonTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process
> BRSTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process
> BRSTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process
> CEPTestServerManager 
> startServer
>   WSO2
> Carbon Trunk Build 
> Process
> DSSTestServerManager 
> startServer
>   WSO2
> Carbon 

Re: [Carbon-dev] Fwd: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #97 has FAILED (9 tests failed, no failures were new). Change made by harshana and senaka.

2012-01-11 Thread Sanjaya Vithanagama
Hi Harshana,

At the same time please note that
$CARBON_HOME/components/mediators/target-mediator/pom.xml still has
3.2.0-SNAPSHOT as the parent's version. We'll need to update that also.

Thanks and regards,
SanjayaV.


On Thu, Jan 12, 2012 at 12:04 PM, Harshana Martin  wrote:

>
>
> On Thu, Jan 12, 2012 at 6:39 AM, Srinath Perera  wrote:
>
>> Harshana,
>>
>> I am not sure, but does changing carbon trunk properties lead to the
>> build failure .. problem is test looking for a pack that is not there?
>>
>
> Yes. Since I haven't changed the p2 maven plugins property file during the
> version upgrade, packs are not generated and it leads to these failures.
>
> Will rectify this ASAP!
>
> Sorry for the inconvenience caused.
>
> Thanks and Regards,
> Harshana
>
>>
>> --Srinath
>>
>>
>> -- Forwarded message --
>> From: Bamboo 
>> Date: Thu, Jan 12, 2012 at 6:19 AM
>> Subject: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk
>> > #97 has FAILED (9 tests failed, no failures were new). Change made by
>> harshana and senaka.
>> To: srin...@wso2.com
>>
>>
>>  [image: Failed]  WSO2 Carbon 
>> Trunk› WSO2
>> Carbon - Platform 
>> Trunk›
>> #97
>> failed
>>
>> Code has been updated by 
>> harshana,
>> senaka .
>>
>> *9/7692* tests failed.
>>Failing 
>> Jobs
>> Job
>> Duration Tests[image: Failed]  WSO2 Carbon Trunk Build 
>> Process
>>  (Default
>> Stage)  171 minutes  9 of 7692 failed  
>> Logs|
>> Artifacts
>>  Code
>> Changes
>>   View
>> all 4 code 
>> changes
>> harshana
>> Upgrading the Carbon Trunk properties to 4.0.0-SNAPSHOT  118878
>> harshana
>> Removed dependencies declared in distribution modules in order to avoid
>> build handing during the dependency report generation of maven site plugin
>> 118877
>> harshana
>> Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT  118876   1 more
>> changes…
>> Tests
>>   View
>> full test 
>> details
>>9
>> Existing Test Failures   Test Job ASTestServerManager 
>> startServer
>>   WSO2
>> Carbon Trunk Build 
>> Process
>> BAMTestServerManager 
>> startServer
>>   WSO2
>> Carbon Trunk Build 
>> Process
>> CarbonTestServerManager 
>> startServer
>>   WSO2
>> Carbon Trunk Build 
>> Process
>> BRSTestServerManager 
>> startServer
>>   WSO2
>> Carbon Trunk Build 
>> Process
>> BRSTestServerManager 
>> startServer
>>   WSO2
>> Carbon Trunk Build 
>> Process
>> CEPTestServerManager 
>> startServer

Re: [Carbon-dev] Fwd: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #97 has FAILED (9 tests failed, no failures were new). Change made by harshana and senaka.

2012-01-11 Thread Harshana Martin
Hi Sanjaya,

On Thu, Jan 12, 2012 at 12:14 PM, Sanjaya Vithanagama wrote:

> Hi Harshana,
>
> At the same time please note that
> $CARBON_HOME/components/mediators/target-mediator/pom.xml still has
> 3.2.0-SNAPSHOT as the parent's version. We'll need to update that also.
>

Thanks for the pointer. Will do that change as well.

Best Regards,
Harshana

>
> Thanks and regards,
> SanjayaV.
>
>
> On Thu, Jan 12, 2012 at 12:04 PM, Harshana Martin wrote:
>
>>
>>
>> On Thu, Jan 12, 2012 at 6:39 AM, Srinath Perera  wrote:
>>
>>> Harshana,
>>>
>>> I am not sure, but does changing carbon trunk properties lead to the
>>> build failure .. problem is test looking for a pack that is not there?
>>>
>>
>> Yes. Since I haven't changed the p2 maven plugins property file during
>> the version upgrade, packs are not generated and it leads to these failures.
>>
>> Will rectify this ASAP!
>>
>> Sorry for the inconvenience caused.
>>
>> Thanks and Regards,
>> Harshana
>>
>>>
>>> --Srinath
>>>
>>>
>>> -- Forwarded message --
>>> From: Bamboo 
>>> Date: Thu, Jan 12, 2012 at 6:19 AM
>>> Subject: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk
>>> > #97 has FAILED (9 tests failed, no failures were new). Change made by
>>> harshana and senaka.
>>> To: srin...@wso2.com
>>>
>>>
>>>  [image: Failed]  WSO2 Carbon 
>>> Trunk› WSO2
>>> Carbon - Platform 
>>> Trunk›
>>> #97
>>> failed
>>>
>>> Code has been updated by 
>>> harshana,
>>> senaka .
>>>
>>> *9/7692* tests failed.
>>>Failing 
>>> Jobs
>>> Job
>>> Duration Tests[image: Failed]  WSO2 Carbon Trunk Build 
>>> Process
>>>  (Default
>>> Stage)  171 minutes  9 of 7692 failed  
>>> Logs|
>>> Artifacts
>>>  Code
>>> Changes
>>>   View
>>> all 4 code 
>>> changes
>>> harshana
>>> Upgrading the Carbon Trunk properties to 4.0.0-SNAPSHOT  118878
>>> harshana
>>> Removed dependencies declared in distribution modules in order to avoid
>>> build handing during the dependency report generation of maven site plugin
>>> 118877
>>> harshana
>>> Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT  118876   1 more
>>> changes…
>>> Tests
>>>   View
>>> full test 
>>> details
>>>9
>>> Existing Test Failures   Test Job ASTestServerManager 
>>> startServer
>>>   WSO2
>>> Carbon Trunk Build 
>>> Process
>>> BAMTestServerManager 
>>> startServer
>>>   WSO2
>>> Carbon Trunk Build 
>>> Process
>>> CarbonTestServerManager 
>>> startServer
>>>   WSO2
>>> Carbon Trunk Build 
>>> Process
>>> BRSTestServerManager 
>>> startServer
>>>   WSO2
>>> Carbon Trunk Build 
>>> Process
>>> BRSTestServerManager 
>>> startServer

[Carbon-dev] [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #98 has FAILED (9 tests failed, no failures were new). Change made by prabatha.

2012-01-11 Thread Bamboo

---
WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #98 failed.
---
Code has been updated by prabatha.
9/7692 tests failed, no failures were new.

http://builder4.us1.wso2.org:/bamboo/browse/WSO2CARBONTUNK-WSO2CARBONPLATFORMTRUNK-98/


--
Failing Jobs
--
  - WSO2 Carbon Trunk Build Process (Default Stage): 9 of 7692 tests failed.


--
Code Changes
--
prabatha (118879):

>adding an entry to copy multitenancy-packages.xml to be included in startos 
>dss distribution



--
Tests
--
Existing Test Failures (9)
   - ASTestServerManager: Start server
   - BAMTestServerManager: Start server
   - CarbonTestServerManager: Start server
   - BRSTestServerManager: Start server
   - BRSTestServerManager: Start server
   - CEPTestServerManager: Start server
   - DSSTestServerManager: Start server
   - ISTestServerManager: Start server
   - MSTestServerManager: Start server

--
This message is automatically generated by Atlassian Bamboo___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Fwd: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk > #97 has FAILED (9 tests failed, no failures were new). Change made by harshana and senaka.

2012-01-11 Thread Harshana Martin
On Thu, Jan 12, 2012 at 12:14 PM, Sanjaya Vithanagama wrote:

> Hi Harshana,
>
> At the same time please note that
> $CARBON_HOME/components/mediators/target-mediator/pom.xml still has
> 3.2.0-SNAPSHOT as the parent's version. We'll need to update that also.
>

Done!

Thanks and Regards,
Harshana

>
> Thanks and regards,
> SanjayaV.
>
>
> On Thu, Jan 12, 2012 at 12:04 PM, Harshana Martin wrote:
>
>>
>>
>> On Thu, Jan 12, 2012 at 6:39 AM, Srinath Perera  wrote:
>>
>>> Harshana,
>>>
>>> I am not sure, but does changing carbon trunk properties lead to the
>>> build failure .. problem is test looking for a pack that is not there?
>>>
>>
>> Yes. Since I haven't changed the p2 maven plugins property file during
>> the version upgrade, packs are not generated and it leads to these failures.
>>
>> Will rectify this ASAP!
>>
>> Sorry for the inconvenience caused.
>>
>> Thanks and Regards,
>> Harshana
>>
>>>
>>> --Srinath
>>>
>>>
>>> -- Forwarded message --
>>> From: Bamboo 
>>> Date: Thu, Jan 12, 2012 at 6:19 AM
>>> Subject: [Bamboo-Build] WSO2 Carbon Trunk > WSO2 Carbon - Platform Trunk
>>> > #97 has FAILED (9 tests failed, no failures were new). Change made by
>>> harshana and senaka.
>>> To: srin...@wso2.com
>>>
>>>
>>>  [image: Failed]  WSO2 Carbon 
>>> Trunk› WSO2
>>> Carbon - Platform 
>>> Trunk›
>>> #97
>>> failed
>>>
>>> Code has been updated by 
>>> harshana,
>>> senaka .
>>>
>>> *9/7692* tests failed.
>>>Failing 
>>> Jobs
>>> Job
>>> Duration Tests[image: Failed]  WSO2 Carbon Trunk Build 
>>> Process
>>>  (Default
>>> Stage)  171 minutes  9 of 7692 failed  
>>> Logs|
>>> Artifacts
>>>  Code
>>> Changes
>>>   View
>>> all 4 code 
>>> changes
>>> harshana
>>> Upgrading the Carbon Trunk properties to 4.0.0-SNAPSHOT  118878
>>> harshana
>>> Removed dependencies declared in distribution modules in order to avoid
>>> build handing during the dependency report generation of maven site plugin
>>> 118877
>>> harshana
>>> Upgrading the Carbon Trunk version to 4.0.0-SNAPSHOT  118876   1 more
>>> changes…
>>> Tests
>>>   View
>>> full test 
>>> details
>>>9
>>> Existing Test Failures   Test Job ASTestServerManager 
>>> startServer
>>>   WSO2
>>> Carbon Trunk Build 
>>> Process
>>> BAMTestServerManager 
>>> startServer
>>>   WSO2
>>> Carbon Trunk Build 
>>> Process
>>> CarbonTestServerManager 
>>> startServer
>>>   WSO2
>>> Carbon Trunk Build 
>>> Process
>>> BRSTestServerManager 
>>> startServer
>>>   WSO2
>>> Carbon Trunk Build 
>>> Process
>>> BRSTestServerManager 
>>> startServer
>>>   WSO

[Carbon-dev] Adding for JSPs for 3.2.4

2012-01-11 Thread Tharindu Mathew
Hi,

Can we get $subject?

AFAIU, it is not related to jaggery, and I believe it is already done... We
need it to design some UIs to monitor a large amount of server nodes...

-- 
Regards,

Tharindu

blog: http://mackiemathew.com/
M: +9459908
___
Carbon-dev mailing list
Carbon-dev@wso2.org
http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev


Re: [Carbon-dev] Adding for JSPs for 3.2.4

2012-01-11 Thread Lalaji Sureshika
Hi Tharindu,

We have committed  tag implementation into trunk only.We haven't
committed those modifications to 3.2.0 branch yet.Hence  tag
implementation is not still available to use with 3.2.4.
I'll add those modifications to branch and let you know once it's finished.

Thanks;

On Thu, Jan 12, 2012 at 11:32 AM, Tharindu Mathew  wrote:

> Hi,
>
> Can we get $subject?
>
> AFAIU, it is not related to jaggery, and I believe it is already done...
> We need it to design some UIs to monitor a large amount of server nodes...
>
> --
> Regards,
>
> Tharindu
>
> blog: http://mackiemathew.com/
> M: +9459908
>
>
> ___
> Carbon-dev mailing list
> Carbon-dev@wso2.org
> http://mail.wso2.org/cgi-bin/mailman/listinfo/carbon-dev
>
>


-- 
Lalaji Sureshika

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