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

Wildfly 8.1 - set system property without standalone.xml

To overcome the issue described here, I have a requirement to set a system property, com.sun.jersey.server.impl.cdi.lookupExtensionInBeanManager=true Due to environment constraints, I can not use standalone.xml or the web interface in WildFly 8.1…
rennX
  • 25
  • 2
  • 6
2
votes
1 answer

@Remote JNDI Communication: Wildfly to JBoss AS 5.1.0.GA

Architecture: Windows Client -> Wildfly JAX-RS Services -> JBoss 5.1.0.GA legacy system. I am getting a java.lang.ClassCastException: javax.naming.Reference cannot be cast to com.interfaces.GroupBookingManagerRemote when communicating here between…
DarrenD
  • 43
  • 6
2
votes
1 answer

javaee module class-loading and static variables

Consider the following: support.jar public class SupportUtil{ private static Map myResources; void init(){ initResources(); } } Then i have 2 independent war applications conneting remotely to another ejb module within…
maress
  • 3,533
  • 1
  • 19
  • 37
2
votes
1 answer

Wildfly deployment hook/event

Is there a way to create deployment hooks on Wildfly? I need to be mailed after all deployments made in my server. Doesn't matter if the deployment is OK or not.
Hernã Saldanha
  • 300
  • 2
  • 10
2
votes
3 answers

Standalone example on jberet (jsr352)

Is there anyway to use jberet as standalone module to execute Batch Jobs? All the time getting samples on using along with WildFly. Surprised to see it looks for container to load implementations while trying some samples. Any insights on why/why…
Nageswara Rao
  • 954
  • 1
  • 10
  • 32
2
votes
1 answer

Cannot login using Wildfly security domain

I am migrating from glassfish 4 to wildfly 8.1 Problem is in login using security domain of Wilfly. I cannot find solution for hours. here is my standalone-full.xml security domain configuration:
jakentus
  • 896
  • 12
  • 22
2
votes
1 answer

wildfly have a ever running process run in the background

I'm making a html5/js game that will have online capabilities for my backend I've decided to use a wildfly server. The client will communicate with the server via web sockets. I intended for my wildfly server to also be in charge of game logic…
zidsal
  • 577
  • 1
  • 7
  • 30
2
votes
1 answer

How to print all the HTTP/REST requests those hit the Wildfly

If I hit Wildfly with 100 requests it will print both InBound and OutBound messages in server.log Where are if I hit 1000 requests, around 5% of requests are getting 'Connection refused' and not printing in server.log So please let me know if there…
2
votes
1 answer

Custom jndi object factory in wildfly 8 for CDI

I am trying to achieve injecting a jndi resource using CDI for wildfly 8. For this purpose i want to use a custom jnidfactory as developed in https://github.com/juanlmelo/mongo-jndi-plugin/ The problem is due to my limited knowledge in wildfly, I…
suro
  • 21
  • 3
2
votes
2 answers

Wildfly - using an enum in an embeddable bean

i want to use an enum in an entity bean. But the enum is in an embedded object. There is the code: @Entity @Table(name = "entity_foo") public class EntityFoo implements Serializable { @Embedded private EmbeddedFoo embeddedFoo; public…
sylo
  • 207
  • 3
  • 16
2
votes
1 answer

Wildfly 8.1.0 Final and Netbeans 8.0: WildFly Application Server Start Failed. HTTP Connector port 8080 is already in use

U have updated Wildfly from 8.0.0 FINAL to 8.1.0 FINAL. When I am trying to run the application in Netbeans 8.0, it fails starting and the following message is shown: WildFly Application Server Start Failed. HTTP Connector port 8080 is already in…
TomS
  • 1,159
  • 2
  • 17
  • 35
2
votes
2 answers

Overview of camel endpoints?

I have deployed my camel integration projects (WAR) on a JBoss Wildfly application server. I was wondering if there is a way to see what endpoints are available and what the URL's are? In a similiar way as i can log into the administration console…
KasperF
  • 332
  • 1
  • 4
  • 14
2
votes
0 answers

Prevent XML Entity Expansion in RestEasy

I was testing WildFly 8.1 across XXE vulnerability and I've found pretty annoying thing. JAXB by default uses secure parsing and respect entityExpansionLimit property (default to 64k). Since it works in Spring MVC in RestEasy it's being ignored (no…
Jakub Kubrynski
  • 13,724
  • 6
  • 60
  • 85
2
votes
1 answer

Enable hibernate search in wildfly

I need use the hibernate search 4.5 in my EJB project, I deploying the project in Wildfly 8.0. but the import sentence not work. somebody can tell me how to enable the hibernate search in wildfly?
Jericob
  • 1,947
  • 2
  • 14
  • 16
2
votes
2 answers

Nashorn class not found in WildFly

I need to access an internal class from nashorn inside a web application running in WildFly. The following code is working fine in my machine: public class NashornTest { public static void main(String[] args) throws ClassNotFoundException { …
Chico Sokol
  • 1,254
  • 3
  • 16
  • 24