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
3
votes
3 answers

Ordering of REST end points in JAX RS

I have two REST end points, one to delete some data to all employees,and another to delete data for a specific employee by employee ID. These are the two methods : @Path("/{empId}/data") @DELETE public Response deleteEmpDataa(@PathParam("empId")…
Vinoth Kumar C M
  • 10,378
  • 28
  • 89
  • 130
3
votes
1 answer

How does a Standalone Java client obtain a Wildfly Initial Context?

I can't find a simple example of code for a Java standalone client obtaining a valid InitialContext from WildFly. Does it exist? I gave up on Glassfish 4 because Oracal will never fix its JMS problem (the real reason I need WildFly's Context. Now…
George
  • 509
  • 2
  • 9
  • 25
3
votes
1 answer

War deployment fails only on remote server, weld.weldclassIntrospector is missing .beanmanager

I've deployed a war successfully on a local server running on localhost. However when I deploy the WAR to my remote AWS instance, the server starts up correctly, however undeploys my WAR several seconds after startup. Following startup, I recover…
Ian F.
  • 43
  • 7
3
votes
1 answer

Avoid duplicate tasks in ManagedScheduledExecutorService

I'm developing a Java EE 7 application on wildfly 8.2 and need to run a periodic background task. I inject an executor service and schedule a task, this part is working fine: @Resource private ManagedScheduledExecutorService…
Lasrik
  • 589
  • 1
  • 8
  • 22
3
votes
1 answer

Can't get Remote EJB to work with EJB Client API on Wildfly

I'm currently struggling with getting remote EJB invocation to work on wildfly (8.x and 9.x). In detail it's about remote invocation from a standalone client application (not from another app server) using the EJB Client API approach. The remote…
shillner
  • 1,806
  • 15
  • 24
3
votes
3 answers

Using Wildfly modules instead of wildfly-X-client-bom dependencies

I have two Wildfly servers. Server A connects to JMS topics and EJB's on Server B. They are both Wildfly 8.2.0.Final. The client (a .war) on Server A has these maven dependencies: org.wildfly
Jon Onstott
  • 13,499
  • 16
  • 80
  • 133
3
votes
0 answers

SSO logout on session timeout

When http session is invalidated explicitly, the following security session listener is invoked: SingleSignOnAuthenticationMechanism#SessionInvalidationListener A user gets new JSESSIONIDSSO cookie in a response. Everything works fine. But when…
Alexandr
  • 9,213
  • 12
  • 62
  • 102
3
votes
2 answers

Java ee interface conditional inject

I have the following interface: public interface ResultEvaluationInterface { public void evaluateResults(Event e); } and I want to inject in my class depending on my Event.type different classes with the same implementation. Something like…
perotom
  • 851
  • 13
  • 33
3
votes
2 answers

Timer restoring error in WildFly 8.2

After upgrading to WildFly 8.2 from JBoss 5.1, I got next error logs. At the same time - all works. 2015-07-13 18:28:35,201 EJB default - 2 ERROR [org.jboss.as.ejb3] JBAS014129: Could not restore timer from…
Rustam
  • 1,397
  • 1
  • 13
  • 17
3
votes
2 answers

CDI transaction management

I am working on a migration project from JBoss Seam to CDI. Following is the technology stack : 1)WildFly 8.2.0 (CDI 1.2 with Weld as CDI provider) 2)JSF 2.2 3)JPA 2 We are using container managed JTA transactions :
Atul
  • 1,560
  • 5
  • 30
  • 75
3
votes
2 answers

Cannot create springSessionRepositoryFilter while connecting Spring Session and Redis

The following is the configuration that worked for me, I have created spring-data-redis.xml and included it into applicationContext.xml
3
votes
2 answers

With jul-to-slf4j WildFly logs unformatted messages

Our application runs in WildFly, but we use custom logging, so in jboss-deployment-structure.xml there are these lines: We use SLF4j with Logback backend, so project…
user319799
3
votes
1 answer

Why WildFly throws an Exception in Intellij IDEA's debug mode while the run mode works perfectly well?

I decided to learn how to debug Java EE apps. I have a simple JSF/EJB/JPA app which I deploy and run via Intellij IDEA. That means that I have a so called Run/Debug configuration where I had specified an artifact to deploy(a war file) an…
Ivan
  • 1,320
  • 16
  • 26
3
votes
0 answers

Could not create proxy factory for org.jboss.security.acl.ACLEntryImpl

I have a war archive which I want to deploy but I get an exception claiming about a missing class (org.hibernate.proxy.HibernateProxy). I don't understand why I get this exception, because the hibernate core is part of the WildFly 8.2.0 Final. How…
CSchulz
  • 10,882
  • 11
  • 60
  • 114
3
votes
1 answer

Arquillian: Attempted to register the same Observer, ServerSetupObserver multiple times

I am trying to configure arquillian with wildfly but am the following Getting error in the process of running test: java.lang.RuntimeException: Could not create new instance of class org.jboss.arquillian.test.impl.EventTestRunnerAdaptor at…
bavon
  • 151
  • 2
  • 14