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

java.lang.NoClassDefFoundError: Could not initialize class org.apache.pdfbox.pdmodel.font.PDFont

I am using Apache Tika( tika-app 1.17) in wildfly modules. While I start extracting PDF it always throws the error: java.lang.NoClassDefFoundError: Could not initialize class org.apache.pdfbox.pdmodel.font.PDFont For other file extensions it…
Dwai
  • 119
  • 1
  • 15
2
votes
2 answers

Mapped Diagnostic Context (MDC) with SLF4J logging in jboss/wildfly 10 it's cleared

I configured my web app to use an MDC this way: MDC.put("cliente", "TEST"); org.slf4j.MDC.put("cliente2", "TEST2"); Into the javax.ws.rs.core.Application startup class import org.jboss.logging.MDC; @ApplicationPath("/api") public class…
Carlos Laspina
  • 2,013
  • 4
  • 27
  • 44
2
votes
0 answers

JMS 2 MDB on Wildfly 10 with activeMQ

I am migrating JMS2 MDB jboss6 to wildfly10, Invalid settings: Destination is mandatory. I have done configuration on standalone.xml, and getting following error- subscription is durable then subscription name must be specified. 17:00:29,259 ERROR…
Pavan Patidar
  • 363
  • 1
  • 2
  • 10
2
votes
1 answer

Not able to upload file with more than 1MB size in WildFly 10?

I know it may look simple, but I am supposed to upload an XML file which is 12 MB. It doesn't upload onto the server (accessing through domain name www.xyz.com)! but when I login to remote server and access using localhost I am able to upload a file…
Gopi Lal
  • 417
  • 5
  • 23
2
votes
1 answer

Wildfly run timeout altough the server is launched

Here is the configuration I used in order to use test integration in maven : [...] org.wildfly.plugins wildfly-maven-plugin
Antoine O
  • 171
  • 13
2
votes
1 answer

Is it possible to configure a failover for JMS-Bridge to a JMS-Cluster with Wildfly 10?

I have two JMS-Servers which are linked together as a JMS-Cluster in a standalone-full-ha environment. These servers are hosting my JMS-Destinations (let’s call them JMS-Master). Additionally there is a server which is configured as standalone-full…
Stefan Großmann
  • 866
  • 9
  • 20
2
votes
1 answer

Picketlink with WildFly 10

I am trying to use PicketLink in my Java EE 7 application. So far the projects compile without errors. But when I try to deploy the application on WildFly 10 it stops with following exception: Caused by: java.lang.NoClassDefFoundError:…
Georg Leber
  • 3,470
  • 5
  • 40
  • 63
2
votes
0 answers

java SecurityManager denies explicitly allowed permissions on some systems

I am running an application with Drools in a WildFly 10.1.0-Final Application Server. As the code executed by Drools is untrusted, I decided to build a custom sandbox to allow for secure execution. Since no external modules may be added to the…
2
votes
2 answers

Change http port in wildfly maven plugin

I would like to change the default HTTP port using the wildfly-maven-plugin to 8380. Usually, I can do that changing the offset, but this is not working, my changes are ignored and HTTP port continues on 8080. I'm starting wildfly in the same maven…
Dherik
  • 17,757
  • 11
  • 115
  • 164
2
votes
1 answer

unable to resolve class issue with Executing Grrovy Scripts in Java in Wildfly with Camel CDI

Background : I'm invoking a Groovy script using GrrovyShell as this. @GET @Path("/endpoint/{param}") public Response getEndpointService(@PathParam("param") String messageId) { String scriptPath = "/path/to/Grrovyfile.gsh"; Binding binding…
ironwood
  • 8,936
  • 15
  • 65
  • 114
2
votes
1 answer

Using multiple --properties arguments via JBoss CLI

I would like to know, if is possible to run following command (or something like this) with more than one properties file in --properties argument. $JBOSS_HOME/bin/jboss-cli.sh --connect --user=admin --password=admin --properties=init.properties…
Michal Sipek
  • 536
  • 1
  • 6
  • 23
2
votes
1 answer

CamelContext is shutting down while initializing the PooledConnectionFactory

I'm trying to initialise the ActiveMQComponent using org.apache.activemq.pool.PooledConnectionFactor via camel cdi. With the ActiveMQConnectionFactory, this is working fine. I added some logs also and noted that when the PooledConnectionFactory,…
ironwood
  • 8,936
  • 15
  • 65
  • 114
2
votes
1 answer

Dynamically Loading Camel Processor depending on a property in message body or header

I'm working on finding a solution to route a message through a processor dynamically decided at the runtime depending on some attibute on message header or body. Let's say I have two message Processors (eg : Type1RequestProcessor,…
ironwood
  • 8,936
  • 15
  • 65
  • 114
2
votes
0 answers

Wrong encoding after URL decoding on Wildfly 10 with JSF and Omnifaces

I have a simple JEE 7 application, running on Wildfly 10.1.0.Final, with an encoding problem after URL decoding. I am using the org.omnifaces.util.FacesLocal class from Omnifaces 2.6.3 to redirect to another page with additional GET parameters as…
maroswal
  • 96
  • 6
2
votes
0 answers

Birt 4.6 intergration with Wildfly 10.1.0

I want to integrate Birt Report 4.6 engine with Wildfly 10.1.0 I have created the "org.eclipse" module added in the application dependency. and When I try to open the report I get some error. test.rptdesign is in test.war file test.rptdesign
happy
  • 2,550
  • 17
  • 64
  • 109