Provisioning WildFly with Galleon

No doubt the simplest way to install WildFly is by unzipping the zip files from the distribution and run it. On the other hand, if you want to be able to provision, update and customize your WildFly server distribution, keep reading this article we will talk about Galleon! Galleon is the latest tool which you … Read more

Provisioning WildFly 10 with Ansible

Ansible is an innovative IT automation engine that automates cloud provisioning, configuration management, application deployment, intra-service orchestration, and many other IT needs. To manage a server with Ansible, the server needs to have SSH and Python 2.5 or later installed. There’s no need to preinstall an agent or any other software on the host. Ansible … Read more

How to deploy safely an exploded application on JBoss?

Please note that this article has been written for JBoss 5 which had a different deployment scanner implementation. The current version of WildFly / JBoss EAP uses deployment marker files to manage exploded applications. Check this tutorial to learn more: Managing exploded deployments in WildFly Have you ever tried to deploy a large application as … Read more

Configuring JMS Bridge with WildFly

In this article we will learn how to configure a JMS bridges with WildFly so that we can route messages from one destination to another. First of all some basics: the purpose of a JMS bridge is to consume messages from a source JMS destination and send them to a target JMS destination. There are … Read more

Categories JMS

Java Web Start on WildFly / JBoss EAP

This tutorial is an update of How to deploy Java Web Start Applications on JBoss tested on JBoss EAP 6 and WildFly. I have decided to update the older tutorial as a few changes are needed to run Java Web Start applications on newer versions of the application server. First of all, we will create a Web … Read more