Questions tagged [jboss7.x]

Version 7 of the JBoss Application Server

JBoss Application Server 7 is a Java EE 6 implementation. Read more about JBoss AS 7 here.

3567 questions
1
vote
1 answer

LazyInitializationException with active transaction and connection open

I know this has been asked many times (already cheched most of the post here and in other sites), but I dont get to solve my problem. My setup is: jpa 2 + hibernate 4 + spring 4 + primefaces + jboss eap 7 The problem: I got a lazy collection into…
Camilo Casadiego
  • 907
  • 3
  • 9
  • 33
1
vote
3 answers

org.hibernate.exception.SQLGrammarException: hibernate will not join column

I have a problem with hibernate... I have tried all things to solve this past two days and I have no more ideas... I have a Mysql 5.0 database and made classes from entities. Two of…
xXxJAVAxXx
  • 15
  • 1
  • 1
  • 6
1
vote
1 answer

Java keystore load works the first time, throws an error the second

I am using Jboss eap 6.2, and jdk 1.7.0_60 I am loading a keystore like so (Groovy code) def keyStore = KeyStore.getInstance( 'PKCS12' ) new File("/opt/test/test.private.key.p12").withInputStream { keyStore.load( it, 'myPassword'.toCharArray()…
Mason
  • 33
  • 2
  • 6
1
vote
2 answers

$Proxy0 (Unknown Source) jboss

I'm facing some problem using JBoss 7 here, i don't know why, but after i do the lookup i try to send a collection to my server and then turn the xml files into DB data. But, as soon as the lookup is made and i try to send the collections i receive…
1
vote
1 answer

How can I expose JBoss AS 7 server logs so that they are visible and available on the web page to download?

I am basically looking to expose JBOSS AS 7 server logs. I need to make sure that the logs are downloadable.
gvar
  • 29
  • 1
  • 1
  • 6
1
vote
2 answers

Jboss6EAP java.lang.NoSuchMethodError: org.springframework.beans.factory.config.ConfigurableListableBeanFactory.registerResolvableDependency

I am moving a simple web application from Jboss 4.3 to Jboss 6 EAP (Jboss AS 7.2). However, I am unable to deploy the war because of the error 07:43:17,773 ERROR [org.springframework.web.context.ContextLoader] (ServerService Thread Pool -- 63)…
Chris
  • 129
  • 2
  • 8
1
vote
1 answer

How to deploy Spring 4 web application in Wildfly 8.1

I am developing a spring 4 based web applciation, that is divided into two modules; one the service (jar) and the other is the web application. The web war will contain the service jar and other library dependencies within it. The application works…
vvra
  • 2,832
  • 5
  • 38
  • 82
1
vote
2 answers

use same datasource from already started server

I have configured jBoss 7.1.1 final for datasource and used it in spring by JNDI. Everything is working fine , datasource is up and JMS queue is setup. Now I have to run a batch which will fetch records from DB and put it in JMS(already started…
rishi
  • 1,792
  • 5
  • 31
  • 63
1
vote
1 answer

CDI Cross container injection

We have trouble finding the correct way of injecting a SessionBean from another container. Lets say we have two ear-files earA and earB and an shared jar: earA @Stateless public class MyBean implements BeanInterface{...} earB @Stateless public…
mathiasbn
  • 881
  • 11
  • 21
1
vote
1 answer

jar as jboss module: dependencies

I have a question about JBoss modules dependencies vs war dependencies. I have an app.war; its webinf/lib directory contains a myLib.jar only. In this configuration everything works fine. Now I have to move mylib.jar outside the war, so I put it…
anto
  • 55
  • 1
  • 3
1
vote
0 answers

spring security context was not invalidated when server restart

i am having peculiar issue with spring security context while my server restart happens, it is not invalidated , and this is still persisted during auto login. Scenario 1 :- when user normally login (no autologin) then my SPRING_SECURITY_CONTEXT…
pappu_kutty
  • 2,378
  • 8
  • 49
  • 93
1
vote
1 answer

Cluster with Infinispan Server 7.0 and Embedded in JBoss AS7

I'm having issues clustering Infinispan (via JGroups) across different servers. When I try this kind of cluster: cache-container configured in subsystem config on Infinispan 7 standalone server 1 (based on Wildfly) cache-container configured in…
sparty02
  • 566
  • 1
  • 6
  • 13
1
vote
1 answer

Jbpm6.1.0 console not working - Failed to start service jboss.deployment.unit.“jbpm-console.war”.WeldService:

I'm getting below error while starting the jboss the server. Just i installed the JBPM 6.1.0 and trying to start the server and deployment also getting fail. Please advise... 2014-09-16 12:16:54,008 ERROR …
openquestion
  • 933
  • 1
  • 7
  • 6
1
vote
0 answers

Getting java.lang.NoSuchMethodError: javax.faces.component.UIComponent.getPassThroughAttributes(Z)Ljava/util/Map;

Initially the application was working with JSF 2.1 jars but now as i added JSF 2.2 jars to respective modules in JBoss 7.1 it shows java.lang.NoSuchMethodError: javax.faces.component.UIComponent.getPassThroughAttributes(Z)Ljava/util/Map; As i kept…
psi
  • 269
  • 2
  • 13
1
vote
1 answer

How to check SSL is enabled or not in Jboss AS 7

Does anybody know how to check SSL is enabled or disabled in Jboss AS7? I just follow this guide https://docs.jboss.org/author/display/AS71/SSL+setup+guide to setup SSL, now I want to know any ways (script or java) to check SSL status after…
user1525949
  • 211
  • 1
  • 3
  • 10