Questions tagged [jboss-eap-6]

For development issues encountered while using Red Hat Jboss EAP 6

JBoss EAP 6 is a Red Hat supported release based on open source JBoss AS 7 (now called WildFly).
JBoss EAP versions 6.0 - 6.3 only support Java 7. Jboss EAP versions 6.4 onward have full Java 8 support
JBoss EAP 6 is Certified for Java EE 6.
Component versions reference: https://access.redhat.com/articles/112673#EAP_6
Click here for free development subscription which allows you to download Red Hat JBoss EAP 6 for development use https://developers.redhat.com/downloads/

551 questions
4
votes
2 answers

ClassNotFoundException on com.sun.jersey.spi.container.servlet.ServletContainer

I am migrating project from jBoss-eap-5.1 to jboss-eap-6.0. I have defined jersey jars in the modules directory of jboss as follows: com |_jersey |_jersey-core |_jersey-client |_jersey-server |_jersey-servlet In my project .pom file i…
mike.tihonchik
  • 6,855
  • 3
  • 32
  • 47
3
votes
1 answer

Override context-param in web.xml in Jboss EAP 6.4 at deployment time

Goal - deploy project war on Jboss EAP 6.4 with new values provided for context-param parameters in web.xml without editing existing war. Current status - war works if i put required web.xml values at the time of build itself. But it fails when I…
Haripriya
  • 822
  • 1
  • 14
  • 27
3
votes
1 answer

Steps to setup distributed transaction management in JBoss

I am trying to implement a distributed transaction (XA) in JBoss EAP 6.2 application server so that multiple datastores can be accessed in a single coordinated atomic transaction. To be more precise, I'd like my transactional service method to write…
Taoufik Mohdit
  • 1,910
  • 3
  • 26
  • 39
3
votes
2 answers

Error page in Spring Boot application with CookieLocaleResolver

I Have a Spring Boot application which has the org.springframework.web.servlet.i18n.CookieLocaleResolver for locale resolver. If there is a invalid language cookie like !en then there will be an exception java.lang.IllegalArgumentException: Locale…
seenukarthi
  • 8,241
  • 10
  • 47
  • 68
3
votes
1 answer

org.jboss.remoting3.ProtocolException: Too many channels open. How to increase channels

I have ejb client to connect jboss 6.4 eap server. I close ejb context every time I make ejb call. Everything works but when there are big amount of requests I got "org.jboss.remoting3.ProtocolException: Too many channels open" …
Bera
  • 673
  • 2
  • 12
  • 31
3
votes
1 answer

Servlet filter not applying to container managed login page

I'm using a Filter to insert anti-clickjacking headers in all my pages - this works correctly, except on the JBoss EAP 6.3 container managed login page, which is one of the more important pages to have it. The filter is not called at all with the…
Evan Knowles
  • 7,426
  • 2
  • 37
  • 71
3
votes
1 answer

Unable to obtain com.sun.faces.flow.FlowDiscoveryCDIExtension. Flows described with javax.faces.flow.builder.FlowDefinition are unavailable

21:39:39,453 SEVERE [javax.enterprise.resource.webcontainer.jsf.application] (Se rverService Thread Pool -- 103) Unable to obtain com.sun.faces.flow.FlowDiscover yCDIExtension from CDI implementation. Flows described with…
binary_assemble
  • 394
  • 3
  • 17
3
votes
2 answers

JBOSS admin console page

My Boss Console is not opening. It is throwing below error. " Unable to redirect. An automatic redirect to the Administration Console is not currently available, this is most likely due to the administration console being exposed over a network…
user3438332
  • 99
  • 3
  • 11
3
votes
1 answer

Where is documented the JBoss EAP runtime dependencies to be added in a maven project?

I am using JBoss EAP 6.1 and Java EE 6. JBoss tools add the JBoss runtime libraries, like org.jboss.resteasy.annotations.cache.NoCache on eclipse, but it fails to compile on maven because maven knows nothing about it. I would like to add all JBoss…
Fagner Brack
  • 2,365
  • 4
  • 33
  • 69
3
votes
2 answers

Loading properties file in jboss eap 6.3

I am new to jboss eap 6.3. I have to load a list of configuration parameters (properties file) into a cache in my application running on jboss eap 6.3. I checked the developers guide from red hat but did not find anything specific. Any pointers will…
DntFrgtDSemiCln
  • 1,259
  • 2
  • 16
  • 35
3
votes
1 answer

JBoss EAP 6.3.0 Application save file to working folder

I am writing a application that will run inside JBoss EAP 6.3.1 on a CentOS 6.5 During this application i have to save a file to the disk and when restarting the application i have to read it back into the application. All this is working. The…
TheMiXeD
  • 125
  • 1
  • 1
  • 7
3
votes
1 answer

JBoss EAP 6 standalone vs domain mode

I am trying to decide whether to use standalone or domain mode in our JBoss EAP 6 environments. We have several JBoss environments running on one machine. What would be the pros and cons? To me, domain model may be an elegant way to manage the…
user1340582
  • 19,151
  • 35
  • 115
  • 171
3
votes
2 answers

WAR in EAR - jboss-deployment-structure.xml ignored

My EAR consists out of an common-jar, an EJB-jar and a WAR. The WAR uses a spring context, so it is dependend on the spring-namespace description files in the META-INF direcotry. My WAR/jboss-deployment-structure.xml contains
Martin Baumgartner
  • 3,524
  • 3
  • 20
  • 31
3
votes
1 answer

JBoss modules cxf jar updating?

I'm using JBOSS EAP 6.2 for deploying the restful web service. The restful web service is using apache cxf, it is taking from jboss eap. Currently its using the jar cxf-api-2.7.7.redhat-1.jar . Is there any way that can I update this jar in the…
Rosh
  • 1,676
  • 4
  • 21
  • 35
3
votes
1 answer

cxf rest service jboss deployment exception

Working on a CXF rest service. This is the interface import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; @Path("/example") @Produces("application/json") public…
Rosh
  • 1,676
  • 4
  • 21
  • 35
1 2
3
36 37