[JBoss JIRA] (GTNMAVEN-32) I miss catalina.sh script compiling Gatein 3.2.0.GA + tomcat6 with download included
by Luca Stancapiano (JIRA)
Luca Stancapiano created GTNMAVEN-32:
----------------------------------------
Summary: I miss catalina.sh script compiling Gatein 3.2.0.GA + tomcat6 with download included
Key: GTNMAVEN-32
URL: https://issues.jboss.org/browse/GTNMAVEN-32
Project: GateIn Maven
Issue Type: Bug
Components: packager
Environment: Gatein 3.2.0.GA, maven 3.0.3, mac osx, tomcat6
Reporter: Luca Stancapiano
If I launch the install through the command:
mvn install -DskipTests -Ppkg-tomcat,download -Dexo.projects.directory.dependencies=/.....
it creates the tomcat directory in: /packaging/tomcat/pkg/target/tomcat
but in the 'bin' directory I have only:
$ ls
gatein-dev.bat gatein-dev.sh gatein.bat gatein.sh
starting ./gatein.sh start I get:
$ ./gatein.sh start
./gatein.sh: line 49: .../packaging/tomcat/pkg/target/tomcat/bin/catalina.sh: No such file or directory
./gatein.sh: line 49: exec: .../packaging/tomcat/pkg/target/tomcat/bin/catalina.sh: cannot execute: No such file or directory
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 9 months
[JBoss JIRA] Created: (GTNWSRP-235) It's not possible to create two consumers with different name in clustered environment
by Michal Vanco (JIRA)
It's not possible to create two consumers with different name in clustered environment
--------------------------------------------------------------------------------------
Key: GTNWSRP-235
URL: https://issues.jboss.org/browse/GTNWSRP-235
Project: GateIn WSRP
Issue Type: Bug
Affects Versions: 2.0.0-GA
Environment: 2 EPP 5.1.1 DEV01 instances in cluster + loadbalancer as producer
1 local EPP5.1.1 DEV01 instance as consumer
Reporter: Michal Vanco
Assignee: Chris Laprun
Fix For: 2.0.1-GA
Attachments: wsrp-cluster-names.txt
Exact steps to reproduce:
- start clustered environment with loadbalancer as producer
- register consumer with name 'test1'
- delete consumer
- register consumer with name 'test2' -> error:
org.chromattic.api.DuplicateNameException: Attempt to insert context EntityContext[state=ObjectStatus[status=TRANSIENT],mapper=EntityMapper[class=class org.gatein.portal.wsrp.state.producer.registrations.mapping.ConsumerMapping,typeName=wsrp:consumer]] as an existing child with name mvanco-laptop_WSRP_v1_version child of node /wsrp:consumersandgroups
(log from producer attached)
Note: I have also applied patched gatein wsrp jar (for epp5.1.1 CR1) with the same result.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 9 months
[JBoss JIRA] Created: (GTNWSRP-237) Potential NPE in org.gatein.portal.wsrp.structure.MOPConsumerStructureProvider
by Minh Hoang TO (JIRA)
Potential NPE in org.gatein.portal.wsrp.structure.MOPConsumerStructureProvider
------------------------------------------------------------------------------
Key: GTNWSRP-237
URL: https://issues.jboss.org/browse/GTNWSRP-237
Project: GateIn WSRP
Issue Type: Bug
Reporter: Minh Hoang TO
Assignee: Chris Laprun
{code}
public void addWindow(String windowName, String uuid)
{
// add suffix in case we have several windows with the same name in the page
if (childrenWindows.containsKey(windowName))
{
if (windowName.endsWith("|"))
{
windowName += "|";
}
else
{
windowName += windowName + " |";
}
}
childrenWindows.put(windowName, uuid);
}
{code}
There is NPE at windowName.endsWith("|") in case saved page contains two non-titled portlet windows referring to the same portlet object.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
12 years, 9 months