Cloudrail – Java
This section gives an introduction on how to use CloudRail's Java SDK. Setup The easiest way to install is via Maven. It suffices to add the following to your pom.xml file −…
This section gives an introduction on how to use CloudRail's Java SDK. Setup The easiest way to install is via Maven. It suffices to add the following to your pom.xml file −…
This section gives an introduction on how to use CloudRail's Android SDK. Setup The easiest way to install is via Maven. If you are using Android Studio with Gradle, it…
CloudRail is an API integration solution that speeds up the process of integrating third-party APIs into an application and maintaining them. It does so by providing libraries for multiple platforms…
Using HttpClient, we can perform Multipart upload, i.e., we can upload larger objects in smaller parts. In this chapter, we demonstrate the multipart upload in HTTP client by uploading a…
Using Secure Socket Layer, you can establish a secured connection between the client and server. It helps to safeguard sensitive information such as credit card numbers, usernames, passwords, pins, etc.…
A multi-threaded program contains two or more parts that can run concurrently and each part can handle a different task at the same time making optimal use of the available…
Cookies are text files stored on the client computer and they are kept for various information tracking purpose. HttpClient provides support for cookies you can create and manage cookies. Creating…
Using the HttpClient library you can send a request or, login to a form by passing parameters. Follow the steps given below to login to a form. Step 1 -…
In this chapter, we will learn how to create a HttpRequest authenticated using username and password and tunnel it through a proxy to a target host, using an example. Step…
A Proxy server is an intermediary server between the client and the internet. Proxy servers offer the following basic functionalities − Firewall and network data filteringNetwork connection sharingData caching Using…