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
0
votes
1 answer

Failed to start wildfly 8.0, Message CHARACTERS, expected START_ELEMENT or END_ELEMENT

We are migrating JBoss 5.1 to WildFly 8.2. Here I tried by developing a sample application using JBoss 5.1 and trying to deploy the same on WildFly 8.2.The project is deployed successfully in 5.1 and failed in WildFly 8.2, it is created…
Sreenath Reddy
  • 390
  • 8
  • 29
0
votes
1 answer

How to control order of deployment (EJB first and then MBeans deployment) in Wildfly 8.2.0 AS

I am migrating an EAR application containing MBeans from JBoss 6 AS to Wildfly 8.2.0 AS. In my EAR application, MBeans depend on EJB before initialization. In JBoss 6 AS, @DependsOn annotation used in MBean maintained the sequence of the deployment…
sridhar
  • 1,117
  • 5
  • 31
  • 59
0
votes
1 answer

Merging a removed jpa entity saves it back to database

In an JSF (Primefaces) application I have the following entity: @Entity @Table(name = "shop_tree") @Inheritance(strategy = InheritanceType.SINGLE_TABLE) @DiscriminatorColumn(name = "itemType", discriminatorType = …
Lasrik
  • 589
  • 1
  • 8
  • 22
0
votes
2 answers

How to disable logging application logs in server.log file in Wildfly 8.2.0

I am migrating my application from JBoss 6 AS to Wildfly 8.2.0 AS. I could achieve creating application logs as expected but standalone/log/server.log file is also getting filled with application logs.I am using standalone-full-ha.xml configuration.…
sridhar
  • 1,117
  • 5
  • 31
  • 59
0
votes
0 answers

Why database modifications not affecting the data source in WildFly 8.2.0?

I have configured JAAS(Form based authentication) for my WildFly server. JAAS is working and I am able to login to my web site with username and password. If I add new user record to database, which configured in data source, I am not able to login…
Sri
  • 75
  • 1
  • 2
  • 11
0
votes
0 answers

A Bug in WildFly8 when testing with Arquillian

Unfortunately it is a bug in Wildfly 8.* https://issues.jboss.org/browse/WFLY-3396 which has been fixed in 9 version. Is there any workaround for Wildfly 8.2?
0
votes
2 answers

what is good configuration of arquillian-drone-graphene functional testing?

I could not find a good configuration for JEE7 web application functional testing using arquillian-drone-graphene. Note: I can run CDI and EJB tests in Arquillian test suite; they work fine. My POM.xml is as follows:
0
votes
1 answer

How to invoke MBeans from command prompt in Wildfly 8.2.0

I have below queries. Is there any way to access JBoss MBeans in EAP 6 (wildfly 8.2.0) through Command Line like twiddle in EAP 5 (JBoss 6 AS) ? Whether JBoss EAP 6 has any command line tool (like twiddle.sh) to invoke custom MBeans ? Please help.…
sridhar
  • 1,117
  • 5
  • 31
  • 59
0
votes
1 answer

Wildfly access file in standalone/lib

i´m currently writing a web-application, which shall fetch some websites, crawl them for information and send these informations to my email. Now i´m thinking about, how to make the application configurable. I don´t want to set my email-adress in…
goblingift
  • 409
  • 4
  • 19
0
votes
0 answers

Twiddle Standalone not working

We are using Twiddle standalone https://developer.jboss.org/people/arnoldjohansson/blog/2012/04/14/twiddle-standalone for JMX Monitoring in Wildfly 8.2.As per the readme instructions,We have downloaded the zip file provided in the link…
Sunayana
  • 13
  • 1
  • 6
0
votes
1 answer

JMX Monitoring using jboss-cli

We have an application which used JBoss 4.2.3.GA and we are migrating it to WildFly 8.2. In the old implementation, the JMX monitoring was done using twiddle. Since twiddle doesn't exist in WildFly, we are using the JBoss CLI for JMX monitoring. Is…
Sunayana
  • 13
  • 1
  • 6
0
votes
1 answer

Eclipse + Wildfly + Maven EAR project, is it possible to have files update without redeploy?

I'm working on my first JavaEE/JSF project. It's currently set up with maven so that several jars and a war are deployed inside an EAR container. I spent a lot of time trying to get some kind of hot/autoredeploy type setup going a few weeks ago but…
lmerry213
  • 409
  • 6
  • 16
0
votes
1 answer

JSF 2.2 ViewDeclarationLanguage createComponent passes attributes as String?

I am trying to write a JSF custom component that dynamically chooses creates and renders an existing composite component. So far everthing is working fine except for passing attributes to the composite. This is my custom component class (error…
Lasrik
  • 589
  • 1
  • 8
  • 22
0
votes
1 answer

Getting java.lang.ClassFormatError: Duplicate method name&signature in class file when implementing PERTHIS aspectJ implementation in Wildfly 8

I am using AspectJ as AOP API in my EAR project. The project contains EJBs and MBeans and running on Wildfly 8.2.0 application server. In AspectJ, there is an aspect association - perthis which I am trying to implement in my project. This aspect…
sridhar
  • 1,117
  • 5
  • 31
  • 59
0
votes
0 answers

NameNotFoundException when trying to create a JMX message

I have singleton class that has a JMXContext and a Queue injected into it. @Singleton @Startup @SuppressWarnings("unused") public class MyTask extends Thread { @Inject private JMSContext mJmsContext; @Resource(lookup =…
Dobbo
  • 1,188
  • 3
  • 16
  • 27