How to Send Email Using Java Gmail SMTP With SSL In this article, I am going to explaining How to Send Email Using Java Gmail SMTP With SSL. SSL is a secure layer. To send email insecurely, have to use Gmail SSL port to establish a Gmail SMTP connection. In the following, sending an […]
How to send HTML Email Body Using Java Gmail SMTP
OpenIDM Social Google OAuth2 Login
OpenIDM Social Google OAuth2 Login In this article, I am going to show the OpenIDM Social Google OAuth2 Login. In the previous article explained about OpenIDM User Self Service. Here we are showing how to login into OpenIDM by using Google account. Here Google acting as an identity provider to OpenIDM. Nowadays most of […]
Google oAuth2 Provider Details
Google oAuth2 Provider Details In this article, I am going to show Google oAuth2 Provider Details. OAuth 2.0 (Open Authorization), an open protocol for token-based authorization on the internet. The process for obtaining the token is called an authorization flow. OAuth 2.0 provides users with the ability to grant third-party application access to web resources […]
How to alter Cassandra Keyspace
How to alter Cassandra Keyspace In this article, I am going to show How to alter Cassandra Keyspace. ALTER KEYSPACE can be used to alter properties such as the number of replicas and the durable_writes of a KeySpace Syntax ALTER KEYSPACE <identifier> WITH <properties> ALTER KEYSPACE “KeySpace Name” WITH replication = {‘class’: ‘Strategy name’, ‘replication_factor’ […]
How to create Cassandra Keyspace
How to create Cassandra Keyspace In this article, I am going to show How to create Cassandra Keyspace. A keyspace in Cassandra is a namespace that defines data replication on nodes. A cluster contains one keyspace per node. Syntax CREATE KEYSPACE <identifier> WITH <properties> CREATE KEYSPACE “KeySpace Name” WITH replication = {‘class’: ‘Strategy name’, ‘replication_factor’ : […]
Tortoise SVN Client Installation in Windows
Tortoise SVN Client Installation in Windows In this article, I am going to show Tortoise SVN Client Installation in Windows. Tortoise SVN client is an interface to access the SVN server and to commit code into the SVN server. Step 1: Download Tortoise SVN client is free software and we can download it from […]
How to import jar as a project in eclipse
How to install Java De-Compiler
How to install Java De-Compiler Java decompiler is very important to decompile the .class file into a .java file which is plain text file. So In this article, I am going to show how to install Java De-Compiler in windows and Linux/Unix systems. There are 2 ways to install java -decompiler in the systems JD-GUI […]
Apache ActiveMQ Installation Windows
Apache ActiveMQ Installation Windows In this tutorial, I’ll show how to download Apache ActiveMQ, how to installation ActiveMQ in the windows system and how to start and stop ActiveMQ. Apache ActiveMQ Installation Windows What is Apache ActiveMQ Apache ActiveMQ is an open-source message broker written in Java. It offers JMS, REST and WebSocket interfaces. […]