Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using JAXB to create XML file from a result set.

I have created java/ /class files using the xsd with the help of xjc utiliy. Now I am trying to create the xml file using the Marshaller. In the XML file I do not see the xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" attribute with the root tag.

public class JAXBConstructor
 {  
  public void generateXMLDocument(File xmlDocument){
   try 
      {
         JAXBContext  jaxbContext = JAXBContext.newInstance("com");                 
         Marshaller marshaller = jaxbContext.createMarshaller();    
         marshaller.setProperty(Marshaller.JAXB_FRAGMENT, true); 
         marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); 
         com.ObjectFactory factory = new com.ObjectFactory();
         USERTASKSImpl  userTasks =(USERTASKSImpl)(factory.createUSERTASKS());         
         USERTASKTypeImpl userTaskType = (USERTASKTypeImpl)(factory.createUSERTASKSTypeUSERTASKType());         
         userTaskType.setName("zmannan");
         userTaskType.setCode("G5023920");
         java.util.List userTaskList=userTasks.getUSERTASK();         
         userTaskList.add(userTaskType);         
         marshaller.marshal(userTasks, new FileOutputStream("User_Task.xml"));
}

Output of the code : This does not contain the XMLSchema value -

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<USER_TASKS xmlns="http://schemas.jpmchase.net/Recertification">
    <USER_TASK>
        <Code>G5023920</Code>
        <Name>zmannan</Name>
    </USER_TASK>
</USER_TASKS>

Please help how can I add the schema-instance value in the root tag.

share|improve this question
1  
The namespace is not in the output because there's no need for it. Why do you want it there? – skaffman May 18 '10 at 11:20
@skaffman - I see this in xsd but not in XML file created. I sent this xml to other application and they validate it against the same xsd. It may create problems for them. – Anurag May 18 '10 at 11:42
1  
The xsi schema is only required on the schema document, not the XML documents themselves. It should cause them no problems. – skaffman May 18 '10 at 12:31
1  
@skaffman : The issue is resolved by adding JAXB_SCHEMA_LOCATION to the marshaller. Thanks for you help. – Anurag May 19 '10 at 12:27
1  
Anurag: as a friendly reminder, can you please post an answer to the question yourself and then accept that answer so that we can close this question? Also, you need to accept answers to previous questions if they fix your problem. – Zecas May 30 '12 at 16:04
show 1 more comment

closed as too localized by Kev Sep 9 '12 at 13:21

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.