users@jaxb.java.net

cant marshal hashmap

From: Meir Yanovich <meiry_at_fts-soft.com>
Date: Wed, 15 Nov 2006 11:03:40 +0200

 Hello all
 im trying for several days to run jaxb on complex type that is class
that extends hashmap
 With no lock . I followed this tutorial
http://weblogs.java.net/blog/kohsuke/archive/2005/04/xmladapter_in_j.htm
l
But still im getting marshal error regarding with this class :
This is the class I have that causing the problem:

public class MyHash extends Hashtable{
        
        public void add(String k,Object v){
                super.put(k,v);
        }
         
}


What is the right adaptor I need to write so that I could un/marshal it
?

Please help
Thanks allot