JAXB Example
Hi All,
I am trying to run the unmarshal-read example using xjc, which is explained inJava architecture for XML Binding http://java.sun.com/developer/technicalArticles/WebServices/jaxb/index.html#binsch
Using the following command javac test/jaxb/*.java test/jaxb/impl/*.java
am getting all the four interfaces
And when I compile UsingJAXBTest1.java I get below mentioned classe
Collection.class
BookType.class
ObjectFactory.class
Collection$Books.class
BookType$Authors.class
BookType$Promotion.class and
UsingJAXBTest1.class
But when I run UsingJAXBTest1, am getting following error:
javax.xml.bind.JAXBException: "test.jaxb" doesn't contain ObjectFactory.class or jaxb.index
Am using JAXB2.2
Can anyone help me out.. Thanks in Advance
Thanks
Shruthi

