Testing REST Services with Postman

Postman is a popular tool for testing APIs in a user-friendly graphical environment. You can use Postman to send API requests to any REST API and receive replies. In this article we will learn how to use it to test a JAX-RS Application which exposes CRUD Endpoints Postman in a nutshell Firstly, you need to … Read more

RESTEasy Basic Authentication example

In this tutorial we will demonstrate how to use a BASIC authentication in your REST Services using RESTEasy on the backend and the DefaultHttpClient on the client side.

Please note: this tutorial uses WildFly legacy security framework (Picketbox). If you want to learn how to secure JAX-RS Services using Elytron Security Framework check this article: Securing JAX-RS Services in WildFly applications

Read more