I am trying to load the package with Jaxrb.
JAXBContext jc = JAXBContext.newInstance("com.abc");
Unmarshaller u = jc.createUnmarshaller();
But during marshalling I am getting an exception as com.abc doesn't contain ObjectFactory.class or jaxb.index
.
In some article I found that you have to design the schema, but not found any article on that.