Submitted by heartin on Mon, 02/17/2014 - 06:03
This page will contain some of the frequently asked questions.
Submitted by heartin on Fri, 02/14/2014 - 07:52
A String is a sequence of characters (e.g. "Hello World").
A String is an object in java, and not a primitive.
Creating Strings
We can create a String object in two ways:
-
Assigning a String literal to a String variable
Submitted by heartin on Wed, 01/29/2014 - 07:09
We will see how to communicate between a server and a client using simple network programming using sockets. You can get started with socket programming. Also, a simple client server program might be needed in many situations; you can just copy paste the basic code below and add to it.
We will create a simple server that accepts a client and sends a string message to the client. Client simply prints the message from server in the console.
Submitted by heartin on Tue, 01/28/2014 - 10:13
Bottom-up web service development components
Important participants in a bottom up SOAP based web service implementation are:
Submitted by heartin on Sat, 01/25/2014 - 20:53
Factory pattern is a design pattern used to create objects. Similar to a car factory that creates different models of cars, an object factory will create different type of objects. The abstract factory pattern provides a way to encapsulate a group of similar or related factories. Hence the abstract factory can be considered as a factory of factories.
Pages