I have a xml file generated using jaxb. However standalone = yes does not appear in the xml document. Is there a problem.
The code used is
JAXBContext context = JAXBContext.newInstance(object.getClass());
Marshaller marshall = context.createMarshaller();
marshall.setProperty(JAXB_FORMATTED_OUTPUT, true);
marshall.setProperty(Marshaller.JAXB_SCHEMA_LOCATION, schema_location);
marshall.marshal(object, outputstream);