In this blog, I have put articles about how to set up a system and development environment to share my experience. I hope anyone to faces any issues in their work or project could get some answers from my blog. To be honest, I have many things I want to share many things, I just keep it in my bookmark. Hopefully, I could put together all of my articles into this blog and share it with you.
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
Wednesday, February 5, 2020
Create JAX-RS (Restful Web service) with Wildfly and Secure Restful Web Service
From my point of view, RESTful web service is light weight web service and very flexible if you compare with SOAP web service. But the cons of the RESTful web service is the communication format is specify in certain format when you compare to the SOAP Web Service. In this post we will create and apply secure scheme as we have use for JAX-WS (SSL/HTTPS, user and password) to secure our RESTful web service. Java EE provide very ease to create RESTful Web service. Read more
Subscribe to:
Posts (Atom)
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
-
Once you have created report on the report studio. You are going to need to deploy your report into the server or application. In this post,...
-
In this post, I demonstrate how to set up Postgresql 12 master / slave stream (by Write Ahead Log) replication server. By utilizing this fea...
-
This post, I demonstrate concurrency management in Wildfly. Wildfly provides concurrency management as JAVA EE specification. It will allow ...