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

URL Rewriting using undertow file handler

I'm currently trying to use an URL rewrite for content I delivered via a file handler from local file system. There doesn't seems to be a documentation and/or functionality for this. I guess I would work fine using a war file (as answered in this…
Robert Heine
  • 1,820
  • 4
  • 29
  • 61
2
votes
1 answer

Why is my local JPA setup not honored if using an EntityManagerFactory from JNDI using Spring?

AuditingEntityListener correctly updates columns marked with @LastModifiedDate, @CreatedDate, @CreatedBy and @LastModifiedBy in dev mode (mvn jetty:run) when I use LocalContainerEntityManagerFactoryBean. However, when I activate prod profile and…
alex
  • 21
  • 1
  • 3
2
votes
0 answers

How can a service MBean depend on singleton stateless session bean using jboss-service.xml in wildfly 8

I am trying to provide a service mbean a singleton stateless session bean by configuring in jboss-service.xmlusing in wildfly AS 8 but getting the below error: ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread)…
sridhar
  • 1,117
  • 5
  • 31
  • 59
2
votes
1 answer

Adding SMTP log handler in Wildly 8.1

I have been through lot of WildFly documentation in past day and so far I have failed to understand how a SMTP Handler could be added to WildFly logging sybsystem. This was very easy when JBoss used log4j but now there are hardly any documentation…
Salman A. Kagzi
  • 3,833
  • 13
  • 45
  • 64
2
votes
1 answer

How to forward request from rest webservice to a servlet

I want to know is there any way to forward servlet request and response from a rest webservice to a servlet.. I have a servlet on remote server from which i am calling webservice to get the request params and then i want it to forward to another…
kirti
  • 4,499
  • 4
  • 31
  • 60
2
votes
2 answers

Wildfly Post_Module&Postgres.jdbc.driver error

i am using Wildfly 8.2 and postgresql 9.4 with java ee 7. I was doing some tutorial about rest services. I have completly no idea what's going wrong, i didn't change anything in .xml but get old error, couse i remeber that i solved similar problem…
user1506541
  • 111
  • 1
  • 6
  • 17
2
votes
1 answer

How to deploy EJB module as a module under MODULES folder in wildfly AS

I have a jar containing EJBs say EJBTest.jar and have deployed it as a module under modules folder along with module.xmlin wildfly application server. In the WAR which is the consumer of EJBs, I have added a reference to the EJB module
sridhar
  • 1,117
  • 5
  • 31
  • 59
2
votes
1 answer

how to configure @localbinding and @remoteBinding in wildfly

We are migrating from JBOSS6 to wildfly8.2 and as wildfly support EJB3.2 and EJB3.2 does not support @LocalBinding / @RemoteBinding ,so how will I do the same in wildfly using standalone.xml / ejb-jar.xml / any other configuration. I tried JBoss:…
hitts
  • 31
  • 1
  • 10
2
votes
1 answer

How to deploy a Java web application with Travis CI to an OpenShift WildFly server?

I want to deploy my web app from GitHub with Travis CI to my WildFly application server on OpenShift. I followed the How to Build and Deploy OpenShift Java Projects using Travis CI tutorial but my index.html page from my Java EE 7 web app does not…
Benny Code
  • 51,456
  • 28
  • 233
  • 198
2
votes
1 answer

JBoss Wildfly JMS client throws Server connection failure error

I am trying to configure JMS cluster in JBoss WildFly and have a client code (actually for JBoss 7) that I want to run and test my configuration. I saw in one of the articles that 'remote://' URL is no longer available in WildFly and hence we…
Paddy
  • 3,472
  • 5
  • 29
  • 48
2
votes
3 answers

How to disable TRACE/TRACK HTTP in JBoss Wildfly?

I want to disable TRACE/TRACK HTTP methods in JBoss wildfly 8.1 at server level and not in web.xml. How do do it?
user3728450
  • 109
  • 2
  • 6
2
votes
0 answers

Bug in WildFly http-remoting

When I access remote EJB, the login credentials are passed into the custom security domain that is set for all EJBs. Here password is received in my custom login module as org.jboss.as.security.remoting.RemotingConnectionCredential@35ddbd0f. But…
Valsaraj Viswanathan
  • 1,473
  • 5
  • 28
  • 51
2
votes
1 answer

wildfly 8.2 start fails on javaagent in vm argument

I am new to wildfly8 and also new for aspectJ. Wildfly 8.2 startup is getting failled if i add javaagent argument in VM argument for aspectjWeaver.jar for LTW(load time weaving) purpose. -javaagent:"D:\Installables\JBOSS-8-Tools\aop\sample aspectJ …
2
votes
1 answer

UserTransaction used by remote clients in WildFly

Is it possible to lookup and use UserTransaction from a remote-client as in AS 4? I followed this document and connected from outside the server: Remote EJB invocations via JNDI - EJB client API or remote-naming project - WildFly 8 - Project…
Valsaraj Viswanathan
  • 1,473
  • 5
  • 28
  • 51
2
votes
1 answer

Cannot inject CDI @SessionScoped in HttpSessionListener

I have a stateful, session scoped (CDI) EJB that holds the info about the user session. @Stateful @SessionScoped public class GestorSesion implements IGestorSesionLocal, Serializable { private final static long serialVersionUID = 1L; private…
SJuan76
  • 24,532
  • 6
  • 47
  • 87