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
0 answers

Calling @Asynchronous metod from library on Wildfly Linux

I've encounter some problem while applying a small library to send email using wildfly email resource Idea with library is to provide singleton providing asynchronous method to send emails. in short service looks like @Singleton public class…
T.G
  • 1,913
  • 1
  • 16
  • 29
0
votes
2 answers

JMS + WildFly 8.2.0 - Reading from remote jms queue

I'm trying to read messages from a remote jms queue located on remote server, also on WildFly 8.2.0. The remote queue name defined on remote server is "java:jboss/exported/jms/queue/grinderRemote". I defined a queue on the read server with the same…
0
votes
0 answers

Form based JAAS Authentication Logout in Wildfly 8.10.Final

I login to my web application using form based JAAS authentication. I use the following code to log out from that application. session.invalidate(); But, log out is not working correctly. Please can anyone help me to do the logout task. I have…
Ampm
  • 27
  • 1
  • 7
0
votes
1 answer

Wildfly 8 - Multiple EAR - ClassCastException

I've been trying to fix an issue for some time now. I have two EAR files being deployed to Wildfly 8.1.0 with the same EJB.jar and the same JPA.jar, but with seperate EJB.jars for 'Scheduling' A.K.A running the different functions within the EJBs.…
ballBreaker
  • 722
  • 1
  • 10
  • 29
0
votes
2 answers

arquillian, wildfly change datasource to mysql - error missing/unsatisfied dependencies

i have working arquillian tests that use default h2/mem data base. now i want to switch to my sql. I first copied mysql-connector-java-5.1.33-bin.jar to standalone/deployments. The log confirmed proper deployment. I also tried to setup the mysql…
dermoritz
  • 12,519
  • 25
  • 97
  • 185
0
votes
1 answer

CDI on Socket Wildfly or SE

I need to make a Server socket in a web application that listen for Asterisk AGI requests but i need to enable CDI injection in the socket, don't know how to do that. Today i already have this socket working very well, the problem is i can't inject…
Kennedy Oliveira
  • 2,141
  • 2
  • 20
  • 25
0
votes
1 answer

JBPM 6 web application set up

I am going to develop an web application in JBPM 6.1 using wildfly 8.1 final. But when I deploy my web application in jboss server , it gives following error. 15:49:29,967 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed…
Ampm
  • 27
  • 1
  • 7
0
votes
1 answer

HornetQ JMSXGroupID property clobbered to _HQ_GROUP_ID using wildfly 8

Is is possible to change the _HQ_GROUP_ID name value in HornetQ? I am using Wildfly 8 and the default HornetQ JMS system. I have configured a bridge to interface a local hornet queue to a remote ActiceMQ queue. When sending a message with…
0
votes
1 answer

Unable to deploy ear which uses Hibernate 3.6 on Wildfly8.1

I have been trying to deploy an application which uses Hibernate 3.6, on Wildfly8.1. My application is an EAR, which consists of a war and ejb.jar. After trying out several other things, I found this solution which seemed…
0
votes
1 answer

PrettyFaces not working under WildFly

I use PrettyFaces to URL-rewriting, I used Glassfish 4 as application server and I was managing well the urls with prettyfaces, but after migration of server to WildFly 8.0 I can not get the page using its id defined in pretty-config.xml (I can get…
SSouhaieb
  • 248
  • 5
  • 16
0
votes
1 answer

Wildfly clustering with VirtualBox

I am using VirtualBox on a WINDOWS7 as host of two DEBIAN7.7 guests, deb1 and deb2. Each guest can comunicate with the other one. Using one guest browser I can see the Wildfly istance welcome page that's running on the other guest. I run each…
Francesco
  • 1,742
  • 5
  • 44
  • 78
0
votes
2 answers

icefaces 4.0 + wildfly 8.2 final + Maven scope provided not working

Im trying to use icefaces 4.0 and the latest version of wildfly. But is not working here is my code: and i am working with jdk 8 pom.xml
nsanchezb
  • 1
  • 3
0
votes
1 answer

Can't deploy kitchensink example

I have wildfly 8.2.0.Final installed and I'm using eclipse with jboss developer studio plugin. From the jboss central side within eclipse I started the sample kitchensink. When I try to deploy via 'mvn clean install jboss-as:deploy' I'm getting the…
Michael K.
  • 1,738
  • 2
  • 17
  • 35
0
votes
1 answer

Error starting camel subsystem in Wildfly 8.2.0.Final

I get the following exception in my standalone/log/server.log when I use the instructions in (http://blog.eisele.net/2014/12/wildfly-camel-subsystem-for-wildfly-integrates-javaee-getting-started.html) to use the Camel subsystem in Wildfly…
Raylite3
  • 837
  • 2
  • 11
  • 22
0
votes
0 answers

Wildfly OneToOne Don't insert automatic the dependency

I have two classes mapped like @Entity @Table public class UsuarioEntity implements Entidade{ private Long codigo; private String login; private String senha; private Date …