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

Overriding default servlet-container in Wildfly 8

I have multiple virtual hosts within my Wildfly setup, but I'm unable to get them to use a custom servlet container and they instead all use the default one. I specifically need to do this to customise the session-cookie so that the various sites…
3
votes
1 answer

How to catch FailedLoginException in Picketbox/Undertow on Wildfly 8 to apply CORS

With the help of a ContainerResponseFilter I am able to apply CORS headers to all outgoing Responses, and with an ExceptionMapper I can do the same on all Errors and Exceptions, except for any authentication related Exceptions that…
Koeus
  • 434
  • 1
  • 6
  • 22
3
votes
1 answer

How to avoid email error (550 5.7.1 Command rejected) with Wildfly 8.1

I'm trying to send an email invoked from code. @Stateless public class MailBean { private static Logger LOGGER = Logger.getLogger(MailBean.class); private String EMAIL_REGEX =…
feder
  • 1,849
  • 2
  • 25
  • 43
3
votes
2 answers

WildFly JNDI lookup for local EJB deployed in a WAR

I'm using WildFly 8.1.0 Final release. My application is a JavaEE web app deployed in a WAR (there is no EJB module .ear). I want to programmatically invoke local EJB with his name using JNDI. The EJB are just annotated with @Stateless (there is no…
kwisatz
  • 1,266
  • 3
  • 16
  • 36
3
votes
1 answer

Wildfly 8.1.0 Final / JASPIC: ServerAuthModule.validateRequest() not being called when invoking HttpServletRequest.authenticate()

I am migrating a Glassfish app to Wildfly 8. In Glassfish I was using Jersey, and in Wildfly I am using RESTeasy. I have run into a bit of a problem with the JASPIC implementation in WildFly. In both containers, the SAM (ServerAuthModule) is being…
John Donahue
  • 162
  • 1
  • 8
3
votes
1 answer

inject infinispan cache into wildfly 8.0.0.Final

I'm trying to use infinispan (6.0) from my application deployed in wildfly 8.0.0.Final in standalone configuration (jdk 1.7) but I have some problems with injection. Starting from this post and searching on google I had this sistuation: In…
codadilupo
  • 158
  • 4
  • 13
3
votes
0 answers

Wildfly looking in wrong directory

I recently startet working with JBoss' Wildfly 8.1 and the activiti framework. I created two projects, one with my bpmn.xml file and the classes for the Service Tasks: Process: -src/main/ -impl.java -src/resources/ -diagrams …
billdoor
  • 1,999
  • 4
  • 28
  • 54
3
votes
2 answers

Create a security realm in Wildfly

I want to secure some ejb hosted on my Widlfly AS, so I start creating my security-domain. I don't want to authenticate on ApplicationRealm so I define my security-realm and point it in my security-domain. I want to store credentials in a text file.…
Francesco
  • 1,742
  • 5
  • 44
  • 78
3
votes
5 answers

wildfly registering mysql as a datasource

I have been trying to configure mysql as a datasource in wildfly. I am not sure what i am missing out, i get an error on startup . I have the mysql-connector-java-5.0.8-bin.jar and the module.xml in the folder:…
trooper31
  • 182
  • 1
  • 2
  • 9
3
votes
2 answers

modcluster (Wildfly) is not detecting Advertize from Apache

I am trying to configure WildFly 8.1.0 with mod_cluster. Both WildFly and Apache are running on the same machine. The machine is Ubuntu 12.04 with Apache 2.2.x Apache is set up correctly (I believe). I have tested that the advertise module is…
Chris Ritchie
  • 4,749
  • 2
  • 36
  • 33
3
votes
1 answer

Picketlink not picking my user defined authenticator

I'm trying to implement JSF authentication with PickeLink 2.6.0 (EAR, Wildfly 8.1.0), as shown in the PicketLink 'picketlink-authentication-jsf' quickstart. I provided an authentication marked with the @PicketLink annotation, but Identity.login()…
jpangamarca
  • 713
  • 2
  • 13
  • 33
3
votes
1 answer

I've never seen this error before: Cookie name "ctx:1420m06d05" is a reserved token

I am running an web application on WildFly 8.1.0 and apparently my application is working absolutely fine. However, looking at the log files I noticed a strange exception. I've never seen that exception before. I am using Apache 2.4 as reverse…
humungs
  • 1,144
  • 4
  • 25
  • 44
3
votes
1 answer

Hibernate spatial and PostGIS with WildFly 8

I'm migrating from Glassfish4 to WildFly8 application server and get the following error: Can't convert object of type org.postgresql.util.PGobject I am using Hibernate Spatial and PostGIS. For the Glassfish server I added the postgis jar to the…
user473453
  • 894
  • 2
  • 11
  • 23
3
votes
4 answers

Can a deployment stop itself?

I'm currently searching for a way to stop a deployment on wildfly programmatically. Background: The application does some health checks in its startup phase using an MBean. If the app determines that the environment is not valid because some…
shillner
  • 1,806
  • 15
  • 24
2
votes
0 answers

EJB remote injection can return object by reference

we add to wildfly on section subsystem xmlns="urn:jboss:domain:ejb3:2.0" in-vm-remote-interface-invocation pass-by-value="false" top level deployment with a META-INF/jboss-ejb-client.xml ejb-receivers local-receiver-pass-by-value="false"
John Mick
  • 21
  • 1