Thursday Nov 26, 2009

Today I came across 2 different Java frameworks: First one is Play and the other is Simple.

I skimmed through the documentation for Play for a few minutes and then I had to go to my lunch and then I completely forgot about that until I decided to write this blog.Will have to give a try this later.Actually while looking at the Play documentation and some other articles in the recent days, I see a clear trend moving  from Centralised repositories like CVSNT ,SVN to Decentralised versioning control systems like Mercurial,GIT,Bazaar(Bazaar says it supports multiple workflows and there is no reason to choose from CVS or DCVS ) etc.

Now lets talk about Simple.Simple is a small Java framework used to serialize Java objects to XML and deserializes XML back to Java(Not sure if there are any other use cases).The home page says "This framework aids the development of XML systems with minimal effort and reduced errors. It offers full object serialization and deserialization, maintaining each reference encountered."

If you look at the javadocs, you will get a clear idea how the various parts of a Java Class are transformed from Java to XML.

For example look at ElementList .This is how object of Type ArrayList are converted.

    <list class="java.util.ArrayList">
       <entry name="one"/>
       <entry name="two"/>
       <entry name="three"/> 
    </list>

Similarly a Map:

    <map class="java.util.HashMap">
       <entry key="one">value one</entry>
       <entry key="two">value two</entry>
       <entry key="three">value three</entry>
    </map>

If you have worked with Spring, this may not be a new thing to you at all.I found the java docs self explanatory and recommend to go through various classes and annotations so that you will get an idea what features we have in this framework.

To start with you need to know about Serializer and Persister classes.Serializer is the interface used to serialize an object to XML and deserialize an object back from XML to Java and Persister is a concrete implementation class for Serializer.

The 2 processes are pretty simple and straight forward.Lets see how can serialize a java object.

1) Get  a Serializer
Serializer serializer = new Persister();

2)Now play with your class that needs to be serialized, like instantiation and then some operations on it or what ever you want.
MyClass myObj = new MyClass("Some data", "any thing you want");

3)Now create a File object to store the serialized XML file.
File targetFile = new File("MyObject.xml");

4)And finally serialize it.
serializer.write(myObj,targetFile);

After this you will see that the object is serialized to an XML file you specified.Similary for deserialization,all you need to do is :

Serializer serializer = new Persister();
File source = new File("MyObject.xml");
MyClass myObj = serializer.read(MyClass.class, source);

Here are some important annotations that you need to know to transform your Java object to XML

   1. @Root (Will be the class)
   2. @Element
   3. @Attribute

If you want to give your own name to the transformed XML  tags ,you can use "name" attribute of the annotations.
Some times you may want to specify some elements as optional.Then you can use "required=false" attribute of Attribute annotation.

 Other annotations that you will need is to convert the Collection objects like ArrayList,Map etc.Here are a few examples:

@ElementArray
private Address[] addresses;

@ElementMap(entry="property", key="key", attribute=true, inline=true)
   private Map<String, String> map;

There are many other important features that you will need if want to use this.If you want to continue learn more about this framework, then visit the nice tutorial page those guys have put up about this framework.Happy reading.


Thursday Nov 05, 2009

Last Friday while I was creating a web service client application using Glassfish V3 and Netbeans 6.8, I had come across this problem/exception.

SEVERE: Servlet [CoordinatorPortTypeImpl] and Servlet [CompletionCoordinatorPortTypeImpl] have the same url pattern: [/WSATCoordinator]
SEVERE: Exception while deploying the app
java.lang.IllegalStateException: Servlet [CoordinatorPortTypeImpl] and Servlet
[CompletionCoordinatorPortTypeImpl] have the same url pattern:
[/WSATCoordinator]at org.glassfish.apf.AnnotationInfo@15c9b76
       at
com.sun.enterprise.deployment.archivist.Archivist.readAnnotations(Archivist.java:478)
       at
com.sun.enterprise.deployment.archivist.Archivist.readAnnotations(Archivist.java:420)
       at
com.sun.enterprise.deployment.archivist.WebArchivist.postAnnotationProcess(WebArchivist.java:309)
       at
com.sun.enterprise.deployment.archivist.WebArchivist.postAnnotationProcess(WebArchivist.java:81)
       at
com.sun.enterprise.deployment.archivist.Archivist.readRestDeploymentDescriptors(Archivist.java:397)
       at
com.sun.enterprise.deployment.archivist.Archivist.readDeploymentDescriptors(Archivist.java:373)
       at com.sun.enterprise.deployment.archivist.Archivist.open(Archivist.java:238)
       at com.sun.enterprise.deployment.archivist.Archivist.open(Archivist.java:247)
       at com.sun.enterprise.deployment.archivist.Archivist.open(Archivist.java:208)
       at
com.sun.enterprise.deployment.archivist.ApplicationFactory.openArchive(ApplicationFactory.java:148)
       at ...

Actually I wanted to use some subclass of WebServiceFeature in my client program,but netbeans wrongly imported internal api classes instead of actual classes like com.sun.xml.internal.ws.developer.BindingTypeFeature instead of com.sun.xml.ws.developer.BindingTypeFeature.(This was due to metro has apis that are not in api package, nor are separated from the big implementation bundle)

So  I started renaming the wrongly imported classes to actual classes,but Netbeans editor showed classpath problems. So in order to overcome the problem, I added webservices-osgi.jar to netbeans clients projects compile time  libraries.Then when I tried to deploy the application, GF V3 throwed the above exception.

I reported this to Fabian and he told me this problem was because we have the WS-AT servlet code in webservices-osgi.jar and that is clashing with the WS-AT servlet that already comes with glassfish and this may be resolved in the next releases of Metro.

So for now the workaround is to add webservices-osgi.jar to the projects compile time libraries with out packaging them to the final war file that we deploy as shown below.

Note: The package check box is not selected .

Even then if problem persists , clean your project and then run.

Wednesday Nov 04, 2009

If you are working on a project and you have some web services involved in your application, at some stage during your project time frame , you may want to see how they perform.

Here is a link I just found and want to share with others who would like to do some  performance testing for  their web services.I haven't completely gone through it, but will check it once I get some time later today.




Saturday Oct 31, 2009

Recently my Favourite actor Chiranjeevi came to the office I used to work earlier to collect funds for flood relief(Last month we had floods in South India which made some thousands home less in the states of Andhra Pradesh and Karnataka). I asked my old colleague to share some photos he had of the visit.Then he kept the photos in a folder and shared them  in his php server and gave me the link to view the photos.

But I wanted to download all the files he shared. So I thought of searching in the google for a for a suitable program that could help me to get the files.Luckily there was a newsletter from zdnetasia in my inbox the same day about how to use wget to mirror a website locally.

Its a single line of command in my ubuntu notebook that did the job:

$ wget -rkp -l6 -np -nH -N http://example.com/

Refer to man page of wget to know what each option does if you really care or visit this link see the original post.

Friday Aug 21, 2009

Some times in our day to day work, we talk about cache.We know that cache is the temporary memory area where data (may be retrieved from a remote server miles away from you or a database ) is stored for easy and fast retrieval.One good example is web cache where typically a proxy server or  a browser stores data from a remote web server in its own allocated memory space and tries to re-use it the second time the same resource is accessed with out taking the pain of contacting the remote resource and getting the same set of data and presenting to the user.Again here conditions apply.Some sort of mechanism should be in place so as to make sure that the data presented to the user is not stale.

In some cases when an application we use become sluggish or not performing well we try to see if there is a way to change the memory settings of the program.We do that and done.We now see that the performance increases and we are happy with it.

But when some one asks you to implement caching as a part of your work or in a job interview, how well can you do it?Are you equipped with the algorithms's and terminology associated with it? If answer is NO, I would like you to refer to this blog entry that describes the terminology like  Cache Miss, Cache Invalidation, Storage Cost, Replacement Policy etc , the algorithms and criteria that can be used or to be kept in mind while implementing your own version of Cache.I really liked the way its presented in a conversational style between a Java Programmer and an Interviewer.Read it.Enjoy.

Tuesday Aug 18, 2009

After using facebook for so many days, I wanted to try what it takes to write a facebook application.After googling for some time, I found a variety of ways I could actually start creating one.

One Simple and easy one I found is Zembly. Zembly is offered as PaaS( Platform as a Service) to create social applications using various platforms like Facebook ,Orkut etc.Again as a proud employee of Sun Microsystems I want to boast that Zembly is a really cool product from my company.

Now I started creating a sample application following the documentation and wiki pages from Zembly and found that it was very simple to setup and create your application using wizard driven environment at Zembly.The most useful part of documentation to me is series of Videos that are hosted at the site.If you can't wait to read all the documentation I recommend watching the video and following them , you are almost done with creating your application.

One best thing about Zembly is you don't need any seperate IDE to create your application.All you need is a browser with Java plugin enabled in the browser for the built-in editor to help you with auto code-completion and syntax checking.

Although it is simple to create and setup your facebook application, since zembly is template based you may need to do a bit of work to customise the application according to your needs and one good thing is you have a very good reference for the functions you need to use to do various operations on facebook and other social platforms in Zembly.You can even test drive your application from the site and see how it works and then make the application public once you are done with it.I feel writing more about would be a duplication effort.So if are like me and want to get a feel of creating your own social application go ahead and start using Zembly.

Wednesday May 13, 2009

Today I have to run some tests on various machines and have to post the results to a common directory in another machine.Since most of the machines are accessed through command line,I dont have any GUI to copy and paste.

Again making a zip file to the directory and then ftp it to target macine and then unzipping it , looked odd.So I googled out to find a simple way and found the below command to copy an entire directory in a single go:

tar -cf - <dir-to-be-copied> | ssh <user-name>@<target-machine> "cd target_dir; tar -xf -"

Now it asks for the user password and once you key in the password and hit enter, its done!!!

The above command copies the whole directory to the target machine. But this needs the machine has ssh setup on it.

Friday Apr 24, 2009

This Summer I had to go to my native place for some reason and I went home with my office laptop so that I can work remotely.After I reached home and tried to check my emails and some internal Sun sites, I could not connect to my VPN using Cisco VPN Client .So I immediately reached my PC Support guys and they could not help either.So I tried  googling for the problem,tweaked some settings in Symantec Endpoint Protection before getting to this link.This link has a very good desciption with nice screenshots.If you have also faced problem like me,you go ahead and visit this site.

After a quick restart, now I am able to connect to VPN and browse our local intranet sites.

In Summary(or for some reason the above link is broken) this worked for me,

  1. Start Menu
  2. Network
  3. Click on Network Sharing
  4. Click on Manage Networks in the new window opened
  5. Right Click on Cisco Adapter and click on Diaognise.
  6. Reset the Network adapter
  7. Now it says there is limited connectivity.Ignore it and restart the machine.
  8. Now try connecting to VPN.Thats all.Now you are connected.
  9. If you still unable to connect,Click here and search for the problem ;-).

Thursday Apr 09, 2009

Well, I have been thinking to blog for so many days, but could not start it for some reason.So finally thought of giving some time to blog this day as I have completed one year working at Sun.Overall it's very good working in such a nice company ,nice people and very good technologies to work on.After all, we (Sun) fuel the internet, made Java and a beautiful world around.Thanks to everyone who are part of it.

So who am I and what am I doing at Sun?

I am here working out of Bangalore,India for project Metro, web services stack from Sun and previously I used to work for a start up in another beautiful city and my home town Vizag for more than 3 years.My areas of interest include servlets,jsp,vxml and finally webservices , my area of work.

Hope I would continue blogging and thanks everyone for reading my first blog.