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

Creating security domain using wildfly-maven-plugin has no effect

I found this which uses /subsystem in its command, so I tried it with a different subsystem command (I use one to create a security domain), it builds successfully, but has no effect in standalone.xml.
2
votes
1 answer

wildfly 8.2 Read properties files inside ear

I need to read a properties file located inside an ear. In jboss 5.1 I put the file in the root of the ear and it works, but in wildfly it doesn´t. In wildfly, I managed to read the property file outside the ear according to…
2
votes
0 answers

java.util.ServiceConfigurationError: javax.servlet.ServletContainerInitializer: Provider org.omnifaces.ApplicationInitializer not found

My problem probably looks like duplicate of this question. (But I don't consider the answer posted there as its solution) ie. when Omnifaces-2.1 dependency is added into my application's POM, then the Arquillian-Drone testing on Wildfly 8.2.0.Final…
2
votes
1 answer

How do I set java:comp/DefaultDataSource in WildFly?

According to the JEE spec, there should be a default data source provided to applications using java:comp/DefaultDataSource. WildFly out of the box will provide that data source as per the spec. What I can't seem to find is a way of changing the…
Archimedes Trajano
  • 35,625
  • 19
  • 175
  • 265
2
votes
0 answers

Injecting custom env-entry values into EJBs on WildFly

I am currently migrating my maven ear from glassfish 4 to wildfly 8.2. The problem i am facing right now is accessing the custom env-entry values specified in the ejb-jar.xml. In my ejb package i have in the META-INF folder following…
perotom
  • 851
  • 13
  • 33
2
votes
2 answers

Where to save data in a Wildfly web application

So far I had saved files in the database. I want to go the other way and save media files in the filesystem. What is the appropriate place to do so and not risking to lose the media file in case of new deployment/update of the application? I'm…
feder
  • 1,849
  • 2
  • 25
  • 43
2
votes
1 answer

Remove war/ear from all servers configured in domain mode of wildfly with curl script

Below cmd only removes from server group but it doesnt remove from Content Repository. I want to remove war and deploy a fresh one. curl --digest -D - http://username:pwd@localhost:9990/management --header "Content-Type: application/json" -d…
happy
  • 2,550
  • 17
  • 64
  • 109
2
votes
1 answer

WAR class access another class from other WAR

I a Jboss Wildfly 8.2 instance I have a webapp ROOT.war and another OTHER.war and I need that the class OtherXYZ.class that is inside OTHER.war be able to access RootXYZ.class. I've read somewhere that this might be possible using EAR but I don't…
thiagoh
  • 7,098
  • 8
  • 51
  • 77
2
votes
1 answer

How to deploy WildFly datasource with Arquillian?

I tried to deploy my datasource as follows: @Deployment(name = "test", order=2) static WebArchive createDeployment() { ShrinkWrap.createFromZipFile(WebArchive, new File("target/test.war")).addAsWebInfResource(new…
2
votes
1 answer

spring project deployment with wild fly

I have a java application which is developed in Spring 4, hibernate 4 and java 8. I deploying it in wildfly 8.4 using Eclipse Luna. But it is not deploying. When I am trying to access the application it is saying "forbidden" on the screen. Then, I…
user3035305
  • 285
  • 1
  • 9
  • 17
2
votes
1 answer

Arquillian test running in local server instead of running in remote Wildfly Server

I am trying to test my appliation with arquillian framework. So I configirued pom and arquillian.xml to run my test case in wildfly remote container.Even i given remote address in arquillian.xml, the test case is running in local wildfly server. I…
Sri
  • 75
  • 1
  • 2
  • 11
2
votes
1 answer

Switch Mojarra to MyFaces in WildFly

Why Wildfly uses Mojarra instead of MyFaces? In JSF-Comparison: MyFaces vs. Mojarra one of the main conclusions is Apache MyFaces performs lifecycle runs a lot faster than Mojarra, no matter which state saving mechanism is used.…
rozero
  • 149
  • 3
  • 15
2
votes
2 answers

What is module-alias tag in jboss-deployment-structure.xml in Wildfly ? and usage of this tag?

can anyone explain me the usage of module-alias tag in boss-deployment-structure.xml in Wildfly ? and with an example scenario. Thanks in Advance.
Raj Kumar Samala
  • 561
  • 12
  • 31
2
votes
1 answer

Installing Apache MyFaces 2 on WildFly 8.2.0

I want to add apache myfaces 2.2.7 in WildFly 8.2.0 and use it as default implementation. Can anybode please let me know where can I found installer jar for apache myfaces ? I am following the link…
Atul
  • 1,560
  • 5
  • 30
  • 75
2
votes
2 answers

How can I specify complex Maven configuration options on the command line?

For example, I want to use the Wildfly deploy plugin, as outlined here: http://docs.jboss.org/wildfly/plugins/maven/latest/deploy-artifact-mojo.html To deploy, I would use a command like mvn wildfly:deploy -Dfilename=my.ear. But let's say I want to…
jordanpg
  • 6,386
  • 4
  • 46
  • 70