Posts tagged REST (2)
What’s New in Jakarta REST 3.1 in Jakarta EE 10?
Published on 28 Nov 2022
by Luqman Saeed
Topics:
REST,
JakartaEE,
Payara Cloud,
Jakarta EE
|
0 Comments
The Representational State Transfer or RESTful architecture is a stateless, HTTP based communication standard for modern applications. It was originally proposed by Dr. Roy Fielding in hisPhD thesis. It has, over the years, become the default, programming language-agnostic means of enabling machine-to-machine communication. An application written in the Django framework in Python can have REST resources that are consumed by another application written in Java with Jakarta EE. Similarly, a Jakarta EE application can create resources that can be consumed by a C# application.
Payara Server と NetBeans による RESTful Web サービスの作成
Published on 20 May 2020
by Kenji Hasunuma
Topics:
REST,
NetBeans,
Japanese language
|
0 Comments
Create a RESTful Web Service with Payara Server 5.194 & NetBeans
Published on 10 Feb 2020
by Andrew Pielage
Topics:
Demo,
REST,
NetBeans
|
3 Comments
Did You Know? Asynchronous REST Requests and Responses with Java EE and MicroProfile
Published on 04 Jan 2019
by Ondro Mihályi
Topics:
Java EE,
REST,
MicroProfile
|
2 Comments
Java EE 8 fully supports asynchronous handling of REST requests and responses, on both client and server side. This is useful to optimize throughput of an application or even when adopting reactive principles. MicroProfile type-safe REST client API also supports this concept to allow you to call REST services asynchronously with a much more straightforward way with plain Java interfaces.
Troubleshooting your Java EE Applications - Part 2
Published on 29 Dec 2018
by Gaurav Gupta
Topics:
Microservices,
REST,
MicroProfile
|
0 Comments
In the previous blog of this series, we learned different ways to troubleshoot Java EE application. This blog will continue to focus on different ways and techniques to catch potential issues in the early stages and how to find the root cause of application performance issues.
See Our Latest Webinar Based on the 184 Release
Published on 01 Dec 2018
by Jadon Ortlepp
Topics:
Payara Micro,
REST,
Healthcheck,
Payara Server,
New Releases
|
0 Comments
Payara Platform on Microsoft Azure: Accessing SQL Databases
Published on 16 Oct 2018
by Steve Millidge
Topics:
Payara Micro,
Microservices,
REST,
Microsoft Azure
|
0 Comments
Microsoft Azure provides fully managed Cloud SQL databases for use by your Azure hosted cloud services. Payara® Micro is built to be the best runtime for Cloud Native Java EE and MicroProfile applications. Here’s how to rapidly create a REST web service that retrieves data from an Azure SQL Database and returns it as JSON.
OpenID Connect in the Payara Platform 5.183
Published on 20 Sep 2018
by Gaurav Gupta
Topics:
REST,
Security,
Payara Server
|
21 Comments
Consuming a REST Service
Published on 07 Sep 2018
by Arjan Tijms
Topics:
REST,
Payara Server
|
0 Comments
A REST Service in Java EE can be created using JAX-RS. The contents of such service can be consumed using ordinary HTTP requests to a URL. URLs are typically kept simple and have a logical pattern, so it's easy to type them manually in e.g. a browser. This is different from SOAP, which essentially uses HTTP as well, but is designed to be rather complex and therefor making it not so easy to quickly test something in a browser.
Securing a REST Service
Published on 05 Sep 2018
by Arjan Tijms
Topics:
REST,
Security
|
1 Comment
If you're building a REST service, then that REST service will expose some kind of data or will allow some kind of interactions with a server. For instance, consider a Facebook REST service that allows you to retrieve your chat history. Naturally you don't want just anyone looking at that history, hence the need for security.