Questions tagged [wildfly-10]

WildFly, formerly known as JBoss AS, is an application server developed by Red Hat. WildFly is written in Java, and implements the Java Platform, Enterprise Edition (Java EE) 7 specification. It runs on multiple platforms. WildFly is free and open-source software, subject to the requirements of the GNU Lesser General Public License (LGPL), version 2.1.

flexible, lightweight, managed application runtime that helps you build applications in java

932 questions
0
votes
1 answer

How to create logging handler in WildFly domain mode?

Creating logging handler is easy in standalone mode through jboss-cli: /subsystem=logging/file-handler=fh1:add(level=INFO, file={"relative-to"=>"jboss.server.log.dir", "path"=>"my-log1.log"}) but when I try to do the same with domain controller…
Maciej Sz
  • 11,151
  • 7
  • 40
  • 56
0
votes
2 answers

Wildfly on OpenShift 3 with path-base routing and accessible console

I have Wildfly 10 running on Openshift Origin 3 in AWS with an elastic ip. I setup a Route in Openshift to map / to the wildfly service. This is working fine. If I go to http://my.ip.address I get the WildFly welcome page. But if I map a different…
Lionel Orellana
  • 490
  • 1
  • 6
  • 12
0
votes
2 answers

Wildfly 10 UnmarshalException in empty date tags in the response

We are migrating our application from Jboss 6 to Wildfly 10, most the web services are running ok, but we are facing a problem with empty date tags in the response from an external web service: java.security.PrivilegedActionException:…
0
votes
1 answer

Service could not find resource (Wildfly 10.0, JAX-RS)

I am learning REST services and face the problem: RestEasy cannot find my resources, even though I've tried various ways to demonstrate them. Exception: Failed to execute: javax.ws.rs.NotFoundException: RESTEASY003210: Could not find resource for…
ryzhman
  • 674
  • 10
  • 22
0
votes
1 answer

Stadlaone-full set up for wildfly

i'm tryin to run an app that runs on jboss EAP , on jboss Wildfly , but i'm having problems with the standalone-full.xml because some services like hornetq aren't available on Wildfly is there a possible way to migrate from eap to wildfly? any help?
0
votes
0 answers

REST POST returns status 405, in wildflyv10

I have my service defined as: @Path("/fileservice") public class FileService { @POST @Path("/path") @Consumes("application/xml") public Response getFilePath(FileRequest fileRequest) { System.out.println("....." + fileRequest.client); …
Ratha
  • 9,434
  • 17
  • 85
  • 163
0
votes
2 answers

how to access the deployed war in wildly v 10?

I have my service as; @Path("/fileservice/") public class FileService { @POST @Path("/{path}/{filename}/{source}/{client}") public Response getFilePath( @PathParam("path") String filePath, @PathParam("filename")…
Ratha
  • 9,434
  • 17
  • 85
  • 163
0
votes
2 answers

WildFly 10 running on Windows with kerberos authentication

I have to configure wildfly 10 to support SSO against Microsoft Active Directory. Server is running at Windows Server 2012 R2. I have tried several configurations and recommendations found by google. Each time I get PBOX00206: Login failure:…
Vlada
  • 559
  • 2
  • 11
  • 27
0
votes
1 answer

Wildfly 10 ClassNotFoundException: org.jboss.logging.appender.DailyRollingFileAppender

I'm using Wildfly 10 in standalone mode, when I start Wildfly, I saw the the error message saying java.lang.ClassNotFoundException: org.jboss.logging.appender.DailyRollingFileAppender from [Module "org.jboss.log4j.logmanager:main" from local module…
Helen
  • 171
  • 16
0
votes
1 answer

wildfly 10 custom login module with client-cert auth not executing

I need to run a custom-login (I really do need a custom implementation) module alongside with client-cert auth on wildfly 10, but the module itself never executes. The same approach was working on a jboss 6. My custom module: public class…
jonfornari
  • 530
  • 1
  • 4
  • 20
0
votes
1 answer

Jboss 7.1.1 Final to WildFly 10 migration - SQL Error: 17003, SQLState: 99999

We have a basic application which inserts data to an Oracle DB using hibernate. The application itself is working on jboss 7.1.1 , java se 7, depends on hibernate 3.5.6. However when we move the application to wildfly 1.0.0 or 9.0.2, java se 8, the…
emrenak
  • 51
  • 7
0
votes
0 answers

Error while deploying to Wildfly 10

When i deployed to wildfly 10 server , i am getting the following error. ERROR [org.jboss.as.controller.management-operation] (DeploymentScanner-threads - 1) WFLYCTL0013: Operation ("full-replace-deployment") failed…
zacharia
  • 1,083
  • 2
  • 10
  • 22
0
votes
1 answer

NoClassDefFound issue while loading EAR application in WildFly 10

I've recently started to work on migrating our huge application which contains a an EAR with 40 plus unique individual EJB jar projects, one Web Application and several Java Model projects which contains utilities and helper classes for the…
Yogendra
  • 331
  • 5
  • 21
0
votes
1 answer

openshift: keep mysql datasource on restart

I was struggling with my webapp (wsesupport) on Openshift with Wildfly 10 and MySQL 5.5. Each time I published from within eclipse, (In server view, right click on wsesupport at Openshift) my project was not deployed, and in the log files I could…
onderbewustzijn
  • 935
  • 7
  • 32
0
votes
1 answer

How to use SLF4J in Wildfly JMS client?

I wrote a simple JMS 2.0 client that is based on the Wildfly 10 JMS client libraries. When using SLF4J I get the following well-known error message: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation…