Archive

Archive for June, 2009

Develope & deploy a simple web service

June 6th, 2009

In this article, a web service is created without IDE and is deployed into Glassfish server in the form of war file. The purpose of doing so is to gain more independence when deploying services.
Meanwhile, a client is built using NetBeans IDE’s benefits to achieve fast development. The client can be distributed and run on the computer equipped with JVM.

The files related to this article can be found in this zip file (all.zip).

Read more…

web service , , , , , ,

Hello world!

June 5th, 2009

Hi, this is Jin Li, welcome to my blog. In this blog, I will deliver some experience on programming and other interesting gadgets. Let me try my new plug-in for displaying codes.

  1. /* HelloWorld.java */
  2. public class HelloWorld {
  3.   public static void main(String arg[]) {
  4.      System.out.println("Hello, World!");
  5.   }
  6. }

dairy