Wednesday, April 22, 2020

Utilize Postgesql Notification service for asynchronize communication


Messaging service is a feature that is available in PostgreSQL 11. This service has a great benefit to notify change happened in the database once someone modified database. PostgreSQL provides pg_notify to sending message out for subscriber who listening to the queue. Read more

Saturday, April 18, 2020

Setup LDAP server and configure a LDAP Realm on WildFly with secured connection



For Enterprise Application, it is very common to found Application Server and LDAP integration. LDAP provides centralize authentication and authorization for application access. So in this post, I will demonstrate how to setup LDAP server by using Openldap server and Integrate with Wildfly Application Server. For my environment, I have use CentOS 6 to install Open LDAP server. Read more

Saturday, April 4, 2020

Wildfly 10 Logging Service for Specific Application

n this post, I will demonstrate how to configure logging for specific application. Logging is very crucial thing to help to diagnose the status of your application. Wildfly integrate logging system come with the configuration. .Read more

Friday, April 3, 2020

Batch Application and EJB Timer

Batch Processing is one of the common enterprise application. Batch process is compose of set of tasks which is executed periodically without any user interface. Batch processing is know as chunk processing, mostly all the tasks included in the batch are run in the background. Batch is run by scheduler. In this post, I demonstrate how to create batch and EJB timer to run batch job on Wildfly 10 Application server. Read More

Sunday, March 29, 2020

Integrat ActiveMQ with Wildfly 10 And Secure Connection

In previous post, I have posted how to use Messaging Service in Wildfly 10. But I couldn't find the way how to establish SSL to secure connection. In this post I'll show the way to integrate ActiveMQ with Wildfly 10 and establish Secured Connection with Message Broker. I have found that ActiveMQ is very easy to configure for SSL connection. Read more

Saturday, March 21, 2020

Concurrency Management On Wildfly 10 Application Server

This post, I demonstrate concurrency management in Wildfly. Wildfly provides concurrency management as JAVA EE specification. It will allow you to run a synchronized multithread. Multithreading provides proven solutions in enterprise applications. Multithreading has become a part of Java EE and could be managed through the container. Read more

Thursday, February 13, 2020

Utilize Java Messaging Service (JMS) with Wildfly

This is post, I'll demonstrate how to use JMS for asynchronize communication. JMS is different from webservice which is synchronize communication. Widlfy 10 also provide messaging service for integration. JMS provide a robust way of communication and data you communicate could be in various format like text, binary, etc. JAVA EE implementation like wildfly provide messaging service inside by integrating activeMQ. In order to enable JMS in wildfly you need to use standalone-full configuration. In this post I also demonstrate how to send and receive message from remote queue. Read more

Feature Recently

Running Wildfly Application Server in Domain Mode

  Wildfly application server provides two modes of how to run application one wildfly application server. It is very simple if you run your ...

Most Views