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

How to have a configurable @WebServiceRef(wsdlLocation

I am having a maven build and project with a webservice client that will be deployed on a wildfly server. In my Client EJB, I have the following @Stateless public class MyClientEJB { @WebServiceRef(wsdlLocation =…
Nova Guy
  • 505
  • 2
  • 9
  • 16
0
votes
2 answers

migrate from JBOSS AS6 to wild fly

I know its a very high level question, but it will be very much help full if somebody can help me to kick start the migration. So please provide some links or use full hints to start with it. Also if somebody knows about delta changes between JBOSS…
hitts
  • 31
  • 1
  • 10
0
votes
0 answers

EJB invocations from a remote server instance

I have created two EARs a1.ear and a2.ear. These two EARs are deployed on WildFly server S1 and S2. S1 and S2 servers are on different machines having different IP addresses. Wildfly server S1 => a1.ear, a2.ear Wildfly server S2 => a1.ear,…
emeh
  • 823
  • 1
  • 7
  • 21
0
votes
2 answers

How to configure Wildfly JMS connection factory and destination

I have migrated recently from Glassfish 4 to Wildfly 8.1 I have configured JMS Connection Factory and Destination in Glassfish as: connection factory------------------------------ jndi name: emailConnectionFactory resource type:…
jakentus
  • 896
  • 12
  • 22
0
votes
2 answers

Calling KieScanner throws ClassNotFoundException

I have several Drools projects and would like to be able to dynamically load rules changes. The projects all work fine until I tried to add KieScanner to them. I followed the directions here:…
whomer
  • 575
  • 9
  • 21
0
votes
0 answers

jsf 2 @managedProperty never set in wildfly 8

Working on a mockup using this bean @ManagedBean(name="login") @SessionScoped public class LoginBean { private String login ; private String pwd ; public String getLogin() { return login; } public void setLogin(String login) { this.login =…
0
votes
1 answer

remote deployment to wildfly using cargo fails

I am trying to deploy an application to a remote wildfly 8.1.0.Final using the cargo maven plugin and it fails with error Operation failed: Could not connect to remote://10.0.0.165:9990 in 5000ms. The application is the default application…
0
votes
1 answer

java.lang.IllegalStateException: WELD-000340: A request must be associated with the context in order to load the known conversations

I'm getting the following exception on accessing an XHTML page on WildFly 8.1.0 final. 00:46:41,859 SEVERE [javax.enterprise.resource.webcontainer.jsf.application] (default task-26) Error Rendering View[/Test.xhtml]: java.lang.IllegalStateException:…
Tiny
  • 27,221
  • 105
  • 339
  • 599
0
votes
2 answers

wildfly-8.1.0.Final Failed instantiate InitialContextFactory

im getting following Error **ERROR:** 2014-10-07 16:33:46,692 ERROR [stderr] (default task-1) javax.naming.NamingException: JBAS011843: **Failed instantiate** **InitialContextFactory org.jboss.naming.remote.client.InitialContextFactory** from…
Shankar S
  • 133
  • 1
  • 5
  • 15
0
votes
2 answers

JavaFX embedded deploy in web page using wildfly

I already read a lot of stuff about deployment of JavaFX but it was not possible for me to deploy my JavaFX application, embedded in a web page (web project), onto my wildly AS successfully. Links I read: JavaFX - can it really be deployed in a…
milius
  • 93
  • 2
  • 5
0
votes
1 answer

How to use maven library not Jboss library

How can I do to use the maven dependency library instead of the Jboss library? I have the following dependencies in my pom.xml file: 2.2.8-02 ...
John Alexander Betts
  • 4,718
  • 8
  • 47
  • 72
0
votes
1 answer

a4j:repeat changes behaviour?

I have a strange effect with a4j:repeat when using rich:toolbar in RichFaces. In my little example I just place a couple of icons on the toolbar. If I do it manually, they are all separately placed into .... But if let them generate by a…
Socrates
  • 8,724
  • 25
  • 66
  • 113
0
votes
1 answer

Creating virtual hosts in Wildfly/Undertow programmatically

I am building an application (deployed on Wildfly) that needs to create virtual-hosts based on how customers signup for the service. For e.g. the default application/service runs on a host called main.exampledomain.com. When customer A signs up for…
GPN
  • 53
  • 1
  • 7
0
votes
1 answer

jars in ear do not reference classes in other packaged jars in Wildfly 8.1

I am new to Wildfly and wanted to upgrade our current JBoss 5.1 server to Wildfly 8.1. I have an application that contains 1 war and many jars which are on the class path for that war. This ear deploys on JBoss 5.1 with no issue but on Wildfly 8.1 I…
Chuck L
  • 1,026
  • 10
  • 23
0
votes
1 answer

Using JNDI to configure EJBs: NameNotFoundException

I have the following structure MyProject.ear (module name) MyProjectEar |----- lib |----- META-INF |----- MyProject.war |----- MyProject.jar (module name) MyProject At MyProject.jar I have several EJBs, including a…
SJuan76
  • 24,532
  • 6
  • 47
  • 87