Community Updates, August 30 - September 6
by JBoss Community STAGING
===============================================================
Community Updates for August 30 - September 6
===============================================================
You haven't set a status update. Log in and set your status at: https://community-stg.jboss.org.
Your Content
* testing the new list server [https://community-stg.jboss.org/thread/127309]
was viewed 13,100 times and replied to by 3 people
* No Link to Jboss Nukes [https://community-stg.jboss.org/thread/90785]
was viewed 110,740 times and replied to by 3 people
Your Connections - Activity by people you are following
You don't have any connections yet. Find people and connect! [https://community-stg.jboss.org/people/]
Popular Content - The content that is most viewed and participated in
* Re: Jboss7/CXF/Spring [https://community-stg.jboss.org/message/635061#635061]
Tips and tricks - Enhance your Profile
Your profile is your central identity in Community. Your colleagues will go to it to learn about you, understand your expertise, and read content you've written. Make sure it's up to date. At a minimum, you should make sure to:
Upload a photo of yourself and create an avatar. An avatar is a quick thumbnail image of you. Most people use a smaller version of their photo for this but it's also fun to pick another image.
Enter your contact information. This makes sure people can not only email but call or visit in person.
Enter a biography and skills. Tell other people about your background and what you're an expert in.
Tag yourself. Tags are a great, and succinct, way to describe yourself. This also helps Community's search engine find you if someone is looking for an expert.
Not interested in these emails anymore, or want to change how often they come? Update your email preferences by visiting: https://community-stg.jboss.org/user-notification-preferences!input.jspa
12 years, 4 months
[JBoss AS 7 Development] - Duplicate PU
by Cleiton Bonomini
Cleiton Bonomini [https://community.jboss.org/people/bonomini] created the discussion
"Duplicate PU"
To view the discussion, visit: https://community.jboss.org/message/758129#758129
--------------------------------------------------------------
Hi, I have 24 jars with persistence.xml inside, Lots of em got a persistence-unit name as "ems", in AS4.2.3 it's deploying fine. In AS7.x I'm getting this exception:
Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: JBAS011446: Falha ao adicionar o serviþo da unidade de persistência para ems
at org.jboss.as.jpa.processor.PersistenceUnitServiceHandler.deployPersistenceUnit(PersistenceUnitServiceHandler.java:400)
at org.jboss.as.jpa.processor.PersistenceUnitServiceHandler.addPuService(PersistenceUnitServiceHandler.java:267)
at org.jboss.as.jpa.processor.PersistenceUnitServiceHandler.handleEarDeployment(PersistenceUnitServiceHandler.java:207)
at org.jboss.as.jpa.processor.PersistenceUnitServiceHandler.deploy(PersistenceUnitServiceHandler.java:112)
at org.jboss.as.jpa.processor.PersistenceCompleteInstallProcessor.deploy(PersistenceCompleteInstallProcessor.java:48)
at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:116) [jboss-as-server-7.2.0.Alpha1-SNAPSHOT.jar:7.2.0
PS: Falha ao adicionar o serviço da unidade de persistência para EMS is meaning:
Failed to add persistence unit service to "EMS".
AS7x cannot get duplicate pu name?
Thanks in Advance!
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/758129#758129]
Start a new discussion in JBoss AS 7 Development at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
12 years, 4 months
[JBoss AS 7 Development] - Re: JBoss AS 7.1.1.Final Vault HornetQ Windows/Linux
by Doug Martin
Doug Martin [https://community.jboss.org/people/doug.j.martin] created the discussion
"Re: JBoss AS 7.1.1.Final Vault HornetQ Windows/Linux"
To view the discussion, visit: https://community.jboss.org/message/758111#758111
--------------------------------------------------------------
Following are the config snippets I'm currently testing with:
<vault>
<vault-option name="KEYSTORE_URL" value="vault.ks"/>
<vault-option name="KEYSTORE_PASSWORD" value="MASK-XYZ"/>
<vault-option name="KEYSTORE_ALIAS" value="vault"/>
<vault-option name="SALT" value="12345678"/>
<vault-option name="ITERATION_COUNT" value="50"/>
<vault-option name="ENC_FILE_DIR" value="\vault\\"/>
</vault>
...
<netty-acceptor name="netty-ssl-acceptor" socket-binding="messaging">
<param key="ssl-enabled" value="true"/>
<param key="key-store-path" value="server.ks"/>
<param key="key-store-password" value="${VAULT::XXX::password::XYZ}"/>
<param key="trust-store-path" value="server.ts"/>
<param key="trust-store-password" value="${VAULT::XXX::password::XYZ}"/>
</netty-acceptor>
Does anything jump out here are being incorrect?
We have a security audit looming and we certainly aren't going to pass with cleartext passwords in the config file. Any advice would be greatly appreciated.
Thanks,
Doug
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/758111#758111]
Start a new discussion in JBoss AS 7 Development at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
12 years, 4 months
[JBoss AS 7 Development] - EAR jars dependency
by Cleiton Bonomini
Cleiton Bonomini [https://community.jboss.org/people/bonomini] created the discussion
"EAR jars dependency"
To view the discussion, visit: https://community.jboss.org/message/757639#757639
--------------------------------------------------------------
Hello,
I have a huge app, many jars are inside of the EAR's folder, at the root I mean.
So, I'm getting a lot of missing dependencies errors.
The question is: How do I make those jars see each others, and how do I make WAR's jars see those on EAR root?
I have over 100 jars and canno't deploy my app, is there a way to turn deployment.earname a global module, that could be found by ANY WAR/JAR?
Here is part of the LOG:
service jboss.module.service."deployment.MyApp-ByYou-11.8-SNAPSHOT.ear.MyApp-framework-hub-java-11.8.0-SNAPSHOT.jar".main: org.jboss.msc.service.StartException in service jboss.module.service."deployment.MyApp-ByYou-11.8-SNAPSHOT.ear.MyApp-framework-hub-java-11.8.0-SNAPSHOT.jar".main: JBAS018759: Failed to load module: deployment.MyApp-ByYou-11.8-SNAPSHOT.ear.MyApp-framework-hub-java-11.8.0-SNAPSHOT.jar:main
service jboss.module.service."deployment.MyApp-ByYou-11.8-SNAPSHOT.ear.MyApp-framework-ecmpublisher-java-11.8.0-SNAPSHOT.jar".main: org.jboss.msc.service.StartException in service jboss.module.service."deployment.MyApp-ByYou-11.8-SNAPSHOT.ear.MyApp-framework-ecmpublisher-java-11.8.0-SNAPSHOT.jar".main: JBAS018759: Failed to load module: deployment.MyApp-ByYou-11.8-SNAPSHOT.ear.MyApp-framework-ecmpublisher-java-11.8.0-SNAPSHOT.jar:main
service jboss.module.service."deployment.MyApp-ByYou-11.8-SNAPSHOT.ear.MyApp-framework-documentscentral-ws-java-11.8.0-SNAPSHOT.jar".main: org.jboss.msc.service.StartException in service jboss.module.service."deployment.MyApp-ByYou-11.8-SNAPSHOT.ear.MyApp-framework-documentscentral-ws-java-11.8.0-SNAPSHOT.jar".main: JBAS018759: Failed to load module: deployment.MyApp-ByYou-11.8-SNAPSHOT.ear.MyApp-framework-documentscentral-ws-java-11.8.0-SNAPSHOT.jar:main
service jboss.module.service."deployment.MyApp-ByYou-11.8-SNAPSHOT.ear.MyApp-specific-war-11.8.0-SNAPSHOT.war".main: org.jboss.msc.service.StartException in service jboss.module.service."deployment.MyApp-ByYou-11.8-SNAPSHOT.ear.MyApp-specific-war-11.8.0-SNAPSHOT.war".main: JBAS018759: Failed to load module: deployment.MyApp-ByYou-11.8-SNAPSHOT.ear.MyApp-specific-war-11.8.0-SNAPSHOT.war:main
Thanks in advance.
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/757639#757639]
Start a new discussion in JBoss AS 7 Development at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
12 years, 4 months