Questions tagged [wildfly-8]

WildFly 8 is a release in a series of JBoss open-source application server offerings and an implementation of the Java Enterprise Edition 7 Platform specifications.

About

WildFly 8 was the first release of JBoss open-source application server offerings to bear the brand "WildFly". WildFly 8 is designed to be an exceptionally fast, lightweight and powerful implementation of the Java Enterprise Edition 7 Platform specifications. The state-of-the-art architecture built on the Modular Service Container enables services on-demand when your application requires them.

Links

1036 questions
2
votes
0 answers

Active Directory scanning and role mapping

I am running JBPM in JBoss Wildfly 8 and this is configured to use Active Directory Authentication. The configuration is as follows:
Neeraj Pandey
  • 121
  • 1
  • 6
2
votes
0 answers

Wildfly - Failed to auto release data source connection to pool after session closed

As we know in jboss 6 if the code not handled with closing DB connection then the application server will close it and throws a warning message which will occur immediately after the transaction session closed, but this option is not available by…
Jeevanantham
  • 984
  • 3
  • 19
  • 48
2
votes
2 answers

Not able to open JBoss "Welcome Page" and Console

I have been working on IBM WebSphere Application Server, and wanted to learn JBoss. I have installed JBoss properly, but not able to open the “Welcome Page” & Console. Need you help here. Actually I connect to a server – let say, ABC from my…
user3772505
  • 75
  • 1
  • 9
2
votes
1 answer

Arquillian remote test on Wildfly

I'm new to Arquillian and I have some problems with the remote testing. I'm trying to remote test on Wildfly using Arquillian. My Wildfly instance can be reached on port 8180 but it's runing on a local virtual machine on internal port 8080. I have…
ElArbi
  • 1,145
  • 3
  • 13
  • 22
2
votes
2 answers

Stateless EJB implements interface injection failed

Wildfly 8.2.0 I have a Stateless EJB and an interface. @Local @Stateless public class Bean implements IBean{ ... } @Local public interface IBean { ... } But I get a WELD Error. If Bean doesn't implement the interface there is no errors. According…
Tony
  • 2,266
  • 4
  • 33
  • 54
2
votes
0 answers

How to use tag
in in standalone.xml?

I am trying to configure a JMS cluster in wildfly. I've got the queue to work, but I read about an interesting property in the docs: .address: Each cluster connection only applies to messages sent to an address that starts with this value. Note:…
JSBach
  • 4,679
  • 8
  • 51
  • 98
2
votes
0 answers

Hibernate @Formula generates additional table when loading collection in Hibernate 4.0.1

We have a Country table, which references StateRegion table: @Entity @Table(name="MDM_COUNTRY") public class Country extends AuditedEntity { private Set stateRegions; @OneToMany(fetch = FetchType.EAGER) …
Alex K.
  • 3,294
  • 4
  • 29
  • 41
2
votes
0 answers

WildFly 8.1 do not accept datasource configured at web.xml

I have a JAVA EE 7 project that use WildFly 9.0.2 Final release as an application server and I had configured the datasource using the tag at web.xml it works fine, but when I use WildFly 8.1 it does not work anymore. the relevant part of the…
danillosl
  • 519
  • 3
  • 7
  • 13
2
votes
1 answer

Wildfly 9.0.2 + H2 database (jdbc:h2:file not showing tables)

So, my first example using Wildfly 9.0.2 and I have deployed one webapp with the settings: context: app-estoque-ws-server-wildfly src/main/resources/META-INF -> import.sql -> persistence.xml WebContent/WEB-INF ->…
aelkz
  • 1,786
  • 1
  • 24
  • 26
2
votes
0 answers

How does Wildfly perform Session replication?

The main problem is I am unable to implement session replication in a two node cluster and in a domain configuration (master + slave). There are no errors whatsover in the logs but that's for another question. Right now; Researching lead me to these…
Basit Anwer
  • 6,742
  • 7
  • 45
  • 88
2
votes
2 answers

Deploying Wildfly EJB via mvn wildfly:deploy not putting jar into local repo. Ejb client can't see ejb dependency

I'm trying to run an example from "Java EE 7 Development with Wildfly". First I've deployed ticket-agency-ejb itself via mvn wildfly:deploy, but it didn't install the jar into local repo, so I did mvn install even though it isn't mentioned in the…
Nazerke
  • 2,098
  • 7
  • 37
  • 57
2
votes
1 answer

running multiple instance of wildfly8.2 server using port offset not working properly

I need to run multiple instance of wildfly server on the same IP with different port offset. I have followed all steps as given in wildfly guide. Here is what i did. Firstly i created standalone2 for new instance I copied /wildflyhome/standalone to…
kirti
  • 4,499
  • 4
  • 31
  • 60
2
votes
2 answers

webapp in ManagementRealm on Wildfly

I'm writing an administration webapp to be deployed on Wildfly. It's gonna be used by the same users that have access to the Administration Console (http://localhost:9990/). It would be great if I could just declare that my app should use HTTP…
rzymek
  • 9,064
  • 2
  • 45
  • 59
2
votes
1 answer

Deploying on wildfly produces "Unable to acquire lock after 15 seconds" exception

I am working with wildfly and i am getting "Unable to acquire lock after 15 seconds" exception. I don't know why am getting this exception.I tried with wildfly 8,9 and 10 as well. Here is the decription of exception thanks. 17:30:56,743 ERROR…
Nagendra V
  • 137
  • 2
  • 3
  • 13
2
votes
1 answer

How to avoid appending -Djboss.node.name value to JSESSIONID

We migrated our application from JBoss 5.1.0 GA to WildFly 8.2.0. I observed that the value of "-Djboss.node.name"(node1) is appending to the JSESSIONID cookie which is causing major problem in my application. In my application we have a…
Sreenath Reddy
  • 390
  • 8
  • 29