When invoking a web service using RestTemplate:- restTemplate.getForObject(“http://www.server.com/api”, Bean[].class)); … the following exception occurs:- Exception in thread “main” org.springframework.web.client.RestClientException: Could
Continue readingAuthor: javavogue
how to use onclick and ontouch listener both for diffrent functionality
There is code for different functionality on onclick and also different functionality for start and stop event of ontouch .
Continue readingHow to Convert Enumeration to Arraylist – Java Example
We can convert enumeration to arraylist in java with the help list() method of Collections. package javaproficeincy; import java.util.Collections; import
Continue readingHow to Send message from one user to other ( chat example) In xmpp
We have knew how to add roster in xmpp server . Now we will send message from one user to other.
Continue readingHow to remove Roster or Friend in xmpp server
In previous post we have learn how to add roster in xmpp. Now we will see xmpp example for remove
Continue readinghow to add roster in xmpp using smack api
In last article we have learn how to login on xmpp server using smack api . Now In this article
Continue readingHow to install Spark IM client in ubuntu
In previous tutorial we have learned how to install openfire . In this tutorial we will learn how to install
Continue readingHow To Install Openfire XMPP Server On Ubuntu
In this tutorial we will see openfire installation steps in ubuntu . In this article we will learn how to
Continue readingData Types In Java
Data Types define the values that can store variables in Java. Java is a statically-typed language . A language is
Continue readingHow Find out duplicate number between 1 to N numbers – Java Program
We have numbers from 1 to n and one number is duplicate. Now we will find out duplicate number in
Continue reading