Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #19770 > unrolled thread

How to convert Map to xml based on Schema.

Started byMausam <mausamhere@gmail.com>
First post2012-11-16 22:52 -0800
Last post2012-11-20 20:52 +0100
Articles 11 — 5 participants

Back to article view | Back to comp.lang.java.programmer


Contents

  How to convert Map to xml based on Schema. Mausam <mausamhere@gmail.com> - 2012-11-16 22:52 -0800
    Re: How to convert Map to xml based on Schema. Roedy Green <see_website@mindprod.com.invalid> - 2012-11-17 00:48 -0800
      Re: How to convert Map to xml based on Schema. Mausam <mausamhere@gmail.com> - 2012-11-17 20:14 -0800
        Re: How to convert Map to xml based on Schema. Roedy Green <see_website@mindprod.com.invalid> - 2012-11-18 07:02 -0800
    Re: How to convert Map to xml based on Schema. Arne Vajhøj <arne@vajhoej.dk> - 2012-11-18 16:15 -0500
      Re: How to convert Map to xml based on Schema. Arne Vajhøj <arne@vajhoej.dk> - 2012-11-18 21:42 -0500
        Re: How to convert Map to xml based on Schema. Mausam <mausamhere@gmail.com> - 2012-11-19 02:22 -0800
          Re: How to convert Map to xml based on Schema. Arne Vajhøj <arne@vajhoej.dk> - 2012-11-19 09:37 -0500
    Re: How to convert Map to xml based on Schema. Arved Sandstrom <asandstrom2@eastlink.ca> - 2012-11-19 06:59 -0400
      Re: How to convert Map to xml based on Schema. Mausam <mausamhere@gmail.com> - 2012-11-19 22:26 -0800
    Re: How to convert Map to xml based on Schema. Stuart <DerTopper@web.de> - 2012-11-20 20:52 +0100

#19770 — How to convert Map to xml based on Schema.

FromMausam <mausamhere@gmail.com>
Date2012-11-16 22:52 -0800
SubjectHow to convert Map to xml based on Schema.
Message-ID<7e1a4b59-0c97-40ca-af6e-22277f62b469@googlegroups.com>
Hello,

I have a Map (it can be nested map, containing of maps) and a schema. Keys in Map represent element/attribute name of the schema and an entry in Map will be at same depth as an element defined in schema

I need help in generating xml from the map as per the schema provided, without generating new files (as e.g Jaxb would require) Sample schema/map provided below 

e.g Map = [dept=[deptno="10",dname="ABC",loc="XYZ",emps=[[empno=1000,ename="Albert"],[empno=2000,ename="John"]]]] and schema will be

e.g Schema
<?xml version="1.0" encoding="windows-1252" ?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
  <xsd:element name="depts">
    <xsd:complexType>
      <xsd:sequence>
        <xsd:element name="dept" maxOccurs="unbounded">
          <xsd:complexType>
            <xsd:sequence>
              <xsd:element name="deptno" type="xsd:string"/><!-- This simple element e.g can be attribute in some schema-->
              <xsd:element name="dname" type="xsd:string"/>
              <xsd:element name="emps" maxOccurs="unbounded" minOccurs="0">
                <xsd:complexType>
                  <xsd:sequence>
                    <xsd:element name="empno" type="xsd:string"/>
                    <xsd:element name="ename" type="xsd:string"/>
                  </xsd:sequence>
                </xsd:complexType>
              </xsd:element>
            </xsd:sequence>
          </xsd:complexType>
        </xsd:element>
      </xsd:sequence>
    </xsd:complexType>
  </xsd:element>
</xsd:schema>

-Many thanks

[toc] | [next] | [standalone]


#19771

FromRoedy Green <see_website@mindprod.com.invalid>
Date2012-11-17 00:48 -0800
Message-ID<6rjea89htdn154gf2f9qja6ecj8lplr0ar@4ax.com>
In reply to#19770
On Fri, 16 Nov 2012 22:52:46 -0800 (PST), Mausam
<mausamhere@gmail.com> wrote, quoted or indirectly quoted someone who
said :

>
>I have a Map (it can be nested map, 
containing of maps) and a schema. Keys in Map represent
element/attribute name of the schema and an entry in Map will be at
same depth as an element defined in schema

Presuming you can chase/span/visit nodes of  your MAP tree and build a
parse tree in RAM, element by element see
http://mindprod.com/jgloss/xml.html#WRITING 
for how to get a linear stream of XML text out of it.

You might want to read up on the visitor pattern so that each node can
convert itself.

see http://mindprod.com/jgloss/visitor.html
-- 
Roedy Green Canadian Mind Products http://mindprod.com
Types of Garbage Collection:
()In Canada, the government sends men to your house every every week
  to take away your garbage. Hoarders are free to hang onto things 
  they don't really need.
()In third world countries, it is up to you to take your own garbage away.
()Java's garbage collection system is analogous to a garbage removal
  system where every hour, workers scan your house for junk mail, the
  contents of waste baskets, carpet lint, toenail clippings and anything 
  else they are absolutely sure you don't want to keep.
()C++'s system for disposing of unreferenced objects is similar to India's,
  with the strange feature that undiscarded garbage becomes invisible but
  still stinks.

[toc] | [prev] | [next] | [standalone]


#19780

FromMausam <mausamhere@gmail.com>
Date2012-11-17 20:14 -0800
Message-ID<bcf80d56-5761-431c-9b7a-fc3f11d6253e@googlegroups.com>
In reply to#19771
Thanks Roedy, 

What I understand is build a model from XSD, and then loop the map for all the data and populate the model from data in Map.

Was wondering if there is a better/efficient way to do it, or existing API to do that, so that I do not have to reinvent the wheel.

-

On Saturday, November 17, 2012 2:18:48 PM UTC+5:30, Roedy Green wrote:
> On Fri, 16 Nov 2012 22:52:46 -0800 (PST), Mausam
> 
> <mausamhere@gmail.com> wrote, quoted or indirectly quoted someone who
> 
> said :
> 
> 
> 
> >
> 
> >I have a Map (it can be nested map, 
> 
> containing of maps) and a schema. Keys in Map represent
> 
> element/attribute name of the schema and an entry in Map will be at
> 
> same depth as an element defined in schema
> 
> 
> 
> Presuming you can chase/span/visit nodes of  your MAP tree and build a
> 
> parse tree in RAM, element by element see
> 
> http://mindprod.com/jgloss/xml.html#WRITING 
> 
> for how to get a linear stream of XML text out of it.
> 
> 
> 
> You might want to read up on the visitor pattern so that each node can
> 
> convert itself.
> 
> 
> 
> see http://mindprod.com/jgloss/visitor.html
> 
> -- 
> 
> Roedy Green Canadian Mind Products http://mindprod.com
> 
> Types of Garbage Collection:
> 
> ()In Canada, the government sends men to your house every every week
> 
>   to take away your garbage. Hoarders are free to hang onto things 
> 
>   they don't really need.
> 
> ()In third world countries, it is up to you to take your own garbage away.
> 
> ()Java's garbage collection system is analogous to a garbage removal
> 
>   system where every hour, workers scan your house for junk mail, the
> 
>   contents of waste baskets, carpet lint, toenail clippings and anything 
> 
>   else they are absolutely sure you don't want to keep.
> 
> ()C++'s system for disposing of unreferenced objects is similar to India's,
> 
>   with the strange feature that undiscarded garbage becomes invisible but
> 
>   still stinks.

[toc] | [prev] | [next] | [standalone]


#19783

FromRoedy Green <see_website@mindprod.com.invalid>
Date2012-11-18 07:02 -0800
Message-ID<qutha8h7brjtq2ogga0le5pvqtjhl7g22a@4ax.com>
In reply to#19780
On Sat, 17 Nov 2012 20:14:10 -0800 (PST), Mausam
<mausamhere@gmail.com> wrote, quoted or indirectly quoted someone who
said :

>What I understand is build a model from XSD, and then loop the map for all the data and populate the model from data in Map.
>
>Was wondering if there is a better/efficient way to do it, or existing API to do that, so that I do not have to reinvent the wheel.
>

I don't how there could be. Your structure is something you made up.
Why would any API or utility you did not write be able to eat it
directly?

If you have code to chase YOUR tree your ar 90% of the way there.  You
It just walks the tree, calling  convertToXSD for each node.

convertToXSD would implement an interface or abstract class, with code
for most nodes identical.
-- 
Roedy Green Canadian Mind Products http://mindprod.com
Types of Garbage Collection:
()In Canada, the government sends men to your house every every week
  to take away your garbage. Hoarders are free to hang onto things 
  they don't really need.
()In third world countries, it is up to you to take your own garbage away.
()Java's garbage collection system is analogous to a garbage removal
  system where every hour, workers scan your house for junk mail, the
  contents of waste baskets, carpet lint, toenail clippings and anything 
  else they are absolutely sure you don't want to keep.
()C++'s system for disposing of unreferenced objects is similar to India's,
  with the strange feature that undiscarded garbage becomes invisible but
  still stinks.

[toc] | [prev] | [next] | [standalone]


#19792

FromArne Vajhøj <arne@vajhoej.dk>
Date2012-11-18 16:15 -0500
Message-ID<50a94fea$0$292$14726298@news.sunsite.dk>
In reply to#19770
On 11/17/2012 1:52 AM, Mausam wrote:
> I have a Map (it can be nested map, containing of maps) and a schema. Keys in Map represent element/attribute name of the schema and an entry in Map will be at same depth as an element defined in schema
>
> I need help in generating xml from the map as per the schema provided, without generating new files (as e.g Jaxb would require) Sample schema/map provided below
>
> e.g Map = [dept=[deptno="10",dname="ABC",loc="XYZ",emps=[[empno=1000,ename="Albert"],[empno=2000,ename="John"]]]] and schema will be
>
> e.g Schema
> <?xml version="1.0" encoding="windows-1252" ?>
> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
>    <xsd:element name="depts">
>      <xsd:complexType>
>        <xsd:sequence>
>          <xsd:element name="dept" maxOccurs="unbounded">
>            <xsd:complexType>
>              <xsd:sequence>
>                <xsd:element name="deptno" type="xsd:string"/><!-- This simple element e.g can be attribute in some schema-->
>                <xsd:element name="dname" type="xsd:string"/>
>                <xsd:element name="emps" maxOccurs="unbounded" minOccurs="0">
>                  <xsd:complexType>
>                    <xsd:sequence>
>                      <xsd:element name="empno" type="xsd:string"/>
>                      <xsd:element name="ename" type="xsd:string"/>
>                    </xsd:sequence>
>                  </xsd:complexType>
>                </xsd:element>
>              </xsd:sequence>
>            </xsd:complexType>
>          </xsd:element>
>        </xsd:sequence>
>      </xsd:complexType>
>    </xsd:element>
> </xsd:schema>

I would probably:
- generate a Java class from the schema (xjc)
- populate from Map to an instance of that class via recursion
   and reflection
- serialize instance to XML via JAXB

If you have high performance requirements, then you may need
to do some custom coding.

Arne

[toc] | [prev] | [next] | [standalone]


#19801

FromArne Vajhøj <arne@vajhoej.dk>
Date2012-11-18 21:42 -0500
Message-ID<50a99c86$0$281$14726298@news.sunsite.dk>
In reply to#19792
On 11/18/2012 4:15 PM, Arne Vajhøj wrote:
> On 11/17/2012 1:52 AM, Mausam wrote:
>> I have a Map (it can be nested map, containing of maps) and a schema.
>> Keys in Map represent element/attribute name of the schema and an
>> entry in Map will be at same depth as an element defined in schema
>>
>> I need help in generating xml from the map as per the schema provided,
>> without generating new files (as e.g Jaxb would require) Sample
>> schema/map provided below
>>
>> e.g Map =
>> [dept=[deptno="10",dname="ABC",loc="XYZ",emps=[[empno=1000,ename="Albert"],[empno=2000,ename="John"]]]]
>> and schema will be
>>
>> e.g Schema
>> <?xml version="1.0" encoding="windows-1252" ?>
>> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>> elementFormDefault="qualified">
>>    <xsd:element name="depts">
>>      <xsd:complexType>
>>        <xsd:sequence>
>>          <xsd:element name="dept" maxOccurs="unbounded">
>>            <xsd:complexType>
>>              <xsd:sequence>
>>                <xsd:element name="deptno" type="xsd:string"/><!-- This
>> simple element e.g can be attribute in some schema-->
>>                <xsd:element name="dname" type="xsd:string"/>
>>                <xsd:element name="emps" maxOccurs="unbounded"
>> minOccurs="0">
>>                  <xsd:complexType>
>>                    <xsd:sequence>
>>                      <xsd:element name="empno" type="xsd:string"/>
>>                      <xsd:element name="ename" type="xsd:string"/>
>>                    </xsd:sequence>
>>                  </xsd:complexType>
>>                </xsd:element>
>>              </xsd:sequence>
>>            </xsd:complexType>
>>          </xsd:element>
>>        </xsd:sequence>
>>      </xsd:complexType>
>>    </xsd:element>
>> </xsd:schema>
>
> I would probably:
> - generate a Java class from the schema (xjc)
> - populate from Map to an instance of that class via recursion
>    and reflection
> - serialize instance to XML via JAXB
>
> If you have high performance requirements, then you may need
> to do some custom coding.

Demo with Map:

import java.beans.IntrospectionException;
import java.beans.PropertyDescriptor;
import java.lang.reflect.InvocationTargetException;
import java.util.HashMap;
import java.util.Map;

public class AutoMapper {
	private static Object xctor(Object o, String propnam) throws 
IntrospectionException, InstantiationException, IllegalAccessException {
		PropertyDescriptor pd = new PropertyDescriptor(propnam, o.getClass());
		return pd.getPropertyType().newInstance();
	}
	private static void xset(Object o, String propnam, Object val) throws 
IntrospectionException, IllegalArgumentException, 
IllegalAccessException, InvocationTargetException {
		PropertyDescriptor pd = new PropertyDescriptor(propnam, o.getClass());
		pd.getWriteMethod().invoke(o, val);
	}
	@SuppressWarnings("unchecked")
	private static void map(Map<String,Object> m, Object o) throws 
IllegalArgumentException, IntrospectionException, 
IllegalAccessException, InvocationTargetException, InstantiationException {
		for(String key : m.keySet()) {
			Object val = m.get(key);
			if(val instanceof Map) {
				Object o2 = xctor(o, key);
				map((Map<String, Object>) val, o2);
				xset(o, key, o2);
			} else {
				xset(o, key, val);
			}
		}
	}
	public static void main(String[] args) throws Exception {
		Map<String,Object> m2 = new HashMap<String,Object>();
		m2.put("iv", 456);
		m2.put("xv", 123.456);
		Map<String,Object> m = new HashMap<String,Object>();
		m.put("iv", 123);
		m.put("sv", "ABC");
		m.put("cv", m2);
		Data o = new Data();
		System.out.println(m);
		map(m, o);
		System.out.println(o);
	}
}

class Data {
	private int iv;
	private String sv;
	private SubData cv;
	public int getIv() {
		return iv;
	}
	public void setIv(int iv) {
		this.iv = iv;
	}
	public String getSv() {
		return sv;
	}
	public void setSv(String sv) {
		this.sv = sv;
	}
	public SubData getCv() {
		return cv;
	}
	public void setCv(SubData cv) {
		this.cv = cv;
	}
	@Override
	public String toString() {
		return "(iv=" + iv + ",sv=" + sv + ",cv=" + cv + ")";
	}
}

class SubData {
	private int iv;
	private double xv;
	public int getIv() {
		return iv;
	}
	public void setIv(int iv) {
		this.iv = iv;
	}
	public double getXv() {
		return xv;
	}
	public void setXv(double xv) {
		this.xv = xv;
	}
	@Override
	public String toString() {
		return "(iv=" + iv + ",xv=" + xv + ")";
	}
}

Arne

PS: It looks like you may really need to convert List not Map.

[toc] | [prev] | [next] | [standalone]


#19809

FromMausam <mausamhere@gmail.com>
Date2012-11-19 02:22 -0800
Message-ID<7d2a2881-e3fe-4d24-9f59-47b23041422e@googlegroups.com>
In reply to#19801
Thanks a lot Arne for taking up the time to write code. However we do not want to generate java files everytime we get a different schema. Schema and values are not fixed to one or two datatypes.


On Monday, November 19, 2012 8:12:15 AM UTC+5:30, Arne Vajhøj wrote:
> On 11/18/2012 4:15 PM, Arne Vajh�j wrote:
> 
> > On 11/17/2012 1:52 AM, Mausam wrote:
> 
> >> I have a Map (it can be nested map, containing of maps) and a schema.
> 
> >> Keys in Map represent element/attribute name of the schema and an
> 
> >> entry in Map will be at same depth as an element defined in schema
> 
> >>
> 
> >> I need help in generating xml from the map as per the schema provided,
> 
> >> without generating new files (as e.g Jaxb would require) Sample
> 
> >> schema/map provided below
> 
> >>
> 
> >> e.g Map =
> 
> >> [dept=[deptno="10",dname="ABC",loc="XYZ",emps=[[empno=1000,ename="Albert"],[empno=2000,ename="John"]]]]
> 
> >> and schema will be
> 
> >>
> 
> >> e.g Schema
> 
> >> <?xml version="1.0" encoding="windows-1252" ?>
> 
> >> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
> 
> >> elementFormDefault="qualified">
> 
> >>    <xsd:element name="depts">
> 
> >>      <xsd:complexType>
> 
> >>        <xsd:sequence>
> 
> >>          <xsd:element name="dept" maxOccurs="unbounded">
> 
> >>            <xsd:complexType>
> 
> >>              <xsd:sequence>
> 
> >>                <xsd:element name="deptno" type="xsd:string"/><!-- This
> 
> >> simple element e.g can be attribute in some schema-->
> 
> >>                <xsd:element name="dname" type="xsd:string"/>
> 
> >>                <xsd:element name="emps" maxOccurs="unbounded"
> 
> >> minOccurs="0">
> 
> >>                  <xsd:complexType>
> 
> >>                    <xsd:sequence>
> 
> >>                      <xsd:element name="empno" type="xsd:string"/>
> 
> >>                      <xsd:element name="ename" type="xsd:string"/>
> 
> >>                    </xsd:sequence>
> 
> >>                  </xsd:complexType>
> 
> >>                </xsd:element>
> 
> >>              </xsd:sequence>
> 
> >>            </xsd:complexType>
> 
> >>          </xsd:element>
> 
> >>        </xsd:sequence>
> 
> >>      </xsd:complexType>
> 
> >>    </xsd:element>
> 
> >> </xsd:schema>
> 
> >
> 
> > I would probably:
> 
> > - generate a Java class from the schema (xjc)
> 
> > - populate from Map to an instance of that class via recursion
> 
> >    and reflection
> 
> > - serialize instance to XML via JAXB
> 
> >
> 
> > If you have high performance requirements, then you may need
> 
> > to do some custom coding.
> 
> 
> 
> Demo with Map:
> 
> 
> 
> import java.beans.IntrospectionException;
> 
> import java.beans.PropertyDescriptor;
> 
> import java.lang.reflect.InvocationTargetException;
> 
> import java.util.HashMap;
> 
> import java.util.Map;
> 
> 
> 
> public class AutoMapper {
> 
> 	private static Object xctor(Object o, String propnam) throws 
> 
> IntrospectionException, InstantiationException, IllegalAccessException {
> 
> 		PropertyDescriptor pd = new PropertyDescriptor(propnam, o.getClass());
> 
> 		return pd.getPropertyType().newInstance();
> 
> 	}
> 
> 	private static void xset(Object o, String propnam, Object val) throws 
> 
> IntrospectionException, IllegalArgumentException, 
> 
> IllegalAccessException, InvocationTargetException {
> 
> 		PropertyDescriptor pd = new PropertyDescriptor(propnam, o.getClass());
> 
> 		pd.getWriteMethod().invoke(o, val);
> 
> 	}
> 
> 	@SuppressWarnings("unchecked")
> 
> 	private static void map(Map<String,Object> m, Object o) throws 
> 
> IllegalArgumentException, IntrospectionException, 
> 
> IllegalAccessException, InvocationTargetException, InstantiationException {
> 
> 		for(String key : m.keySet()) {
> 
> 			Object val = m.get(key);
> 
> 			if(val instanceof Map) {
> 
> 				Object o2 = xctor(o, key);
> 
> 				map((Map<String, Object>) val, o2);
> 
> 				xset(o, key, o2);
> 
> 			} else {
> 
> 				xset(o, key, val);
> 
> 			}
> 
> 		}
> 
> 	}
> 
> 	public static void main(String[] args) throws Exception {
> 
> 		Map<String,Object> m2 = new HashMap<String,Object>();
> 
> 		m2.put("iv", 456);
> 
> 		m2.put("xv", 123.456);
> 
> 		Map<String,Object> m = new HashMap<String,Object>();
> 
> 		m.put("iv", 123);
> 
> 		m.put("sv", "ABC");
> 
> 		m.put("cv", m2);
> 
> 		Data o = new Data();
> 
> 		System.out.println(m);
> 
> 		map(m, o);
> 
> 		System.out.println(o);
> 
> 	}
> 
> }
> 
> 
> 
> class Data {
> 
> 	private int iv;
> 
> 	private String sv;
> 
> 	private SubData cv;
> 
> 	public int getIv() {
> 
> 		return iv;
> 
> 	}
> 
> 	public void setIv(int iv) {
> 
> 		this.iv = iv;
> 
> 	}
> 
> 	public String getSv() {
> 
> 		return sv;
> 
> 	}
> 
> 	public void setSv(String sv) {
> 
> 		this.sv = sv;
> 
> 	}
> 
> 	public SubData getCv() {
> 
> 		return cv;
> 
> 	}
> 
> 	public void setCv(SubData cv) {
> 
> 		this.cv = cv;
> 
> 	}
> 
> 	@Override
> 
> 	public String toString() {
> 
> 		return "(iv=" + iv + ",sv=" + sv + ",cv=" + cv + ")";
> 
> 	}
> 
> }
> 
> 
> 
> class SubData {
> 
> 	private int iv;
> 
> 	private double xv;
> 
> 	public int getIv() {
> 
> 		return iv;
> 
> 	}
> 
> 	public void setIv(int iv) {
> 
> 		this.iv = iv;
> 
> 	}
> 
> 	public double getXv() {
> 
> 		return xv;
> 
> 	}
> 
> 	public void setXv(double xv) {
> 
> 		this.xv = xv;
> 
> 	}
> 
> 	@Override
> 
> 	public String toString() {
> 
> 		return "(iv=" + iv + ",xv=" + xv + ")";
> 
> 	}
> 
> }
> 
> 
> 
> Arne
> 
> 
> 
> PS: It looks like you may really need to convert List not Map.

[toc] | [prev] | [next] | [standalone]


#19813

FromArne Vajhøj <arne@vajhoej.dk>
Date2012-11-19 09:37 -0500
Message-ID<50aa4430$0$292$14726298@news.sunsite.dk>
In reply to#19809
On 11/19/2012 5:22 AM, Mausam wrote:
> Thanks a lot Arne for taking up the time to write code. However we do
> not want to generate java files everytime we get a different schema.
> Schema and values are not fixed to one or two datatypes.

There are nothing in the concept that limits it to
one or two data types (actually the example used three!).

And it is not clear why it is a bigger problem to add
a class file compiled from Java generated from schema
than to add the schema. In both cases you some code.

Arne

[toc] | [prev] | [next] | [standalone]


#19810

FromArved Sandstrom <asandstrom2@eastlink.ca>
Date2012-11-19 06:59 -0400
Message-ID<7ioqs.49297$c16.19500@newsfe10.iad>
In reply to#19770
On 11/17/2012 02:52 AM, Mausam wrote:
> Hello,
>
> I have a Map (it can be nested map, containing of maps) and a schema. Keys in Map represent element/attribute name of the schema and an entry in Map will be at same depth as an element defined in schema
>
> I need help in generating xml from the map as per the schema provided, without generating new files (as e.g Jaxb would require) Sample schema/map provided below
>
> e.g Map = [dept=[deptno="10",dname="ABC",loc="XYZ",emps=[[empno=1000,ename="Albert"],[empno=2000,ename="John"]]]] and schema will be
>
> e.g Schema
> <?xml version="1.0" encoding="windows-1252" ?>
> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
>    <xsd:element name="depts">
>      <xsd:complexType>
>        <xsd:sequence>
>          <xsd:element name="dept" maxOccurs="unbounded">
>            <xsd:complexType>
>              <xsd:sequence>
>                <xsd:element name="deptno" type="xsd:string"/><!-- This simple element e.g can be attribute in some schema-->
>                <xsd:element name="dname" type="xsd:string"/>
>                <xsd:element name="emps" maxOccurs="unbounded" minOccurs="0">
>                  <xsd:complexType>
>                    <xsd:sequence>
>                      <xsd:element name="empno" type="xsd:string"/>
>                      <xsd:element name="ename" type="xsd:string"/>
>                    </xsd:sequence>
>                  </xsd:complexType>
>                </xsd:element>
>              </xsd:sequence>
>            </xsd:complexType>
>          </xsd:element>
>        </xsd:sequence>
>      </xsd:complexType>
>    </xsd:element>
> </xsd:schema>
>
> -Many thanks
>
One question I have is, how and when is the generation supposed to occur?

IOW, what is the environment?

And where did the Map come from? If, as you replied to Arne, your schema 
can change, what process is responsible for creating new Maps that are 
relevant for updated schemas? Such a map, after all, should be a Java 
analog of an XML instance for the target schema, you don't need the 
schema at that point to generate a valid XML.

AHS

[toc] | [prev] | [next] | [standalone]


#19825

FromMausam <mausamhere@gmail.com>
Date2012-11-19 22:26 -0800
Message-ID<d477c24f-6167-4704-854a-e4004acd374d@googlegroups.com>
In reply to#19810
On Monday, November 19, 2012 4:29:15 PM UTC+5:30, Arved Sandstrom wrote:
> On 11/17/2012 02:52 AM, Mausam wrote:
> 
> > Hello,
> 
> >
> 
> > I have a Map (it can be nested map, containing of maps) and a schema. Keys in Map represent element/attribute name of the schema and an entry in Map will be at same depth as an element defined in schema
> 
> >
> 
> > I need help in generating xml from the map as per the schema provided, without generating new files (as e.g Jaxb would require) Sample schema/map provided below
> 
> >
> 
> > e.g Map = [dept=[deptno="10",dname="ABC",loc="XYZ",emps=[[empno=1000,ename="Albert"],[empno=2000,ename="John"]]]] and schema will be
> 
> >
> 
> > e.g Schema
> 
> > <?xml version="1.0" encoding="windows-1252" ?>
> 
> > <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
> 
> >    <xsd:element name="depts">
> 
> >      <xsd:complexType>
> 
> >        <xsd:sequence>
> 
> >          <xsd:element name="dept" maxOccurs="unbounded">
> 
> >            <xsd:complexType>
> 
> >              <xsd:sequence>
> 
> >                <xsd:element name="deptno" type="xsd:string"/><!-- This simple element e.g can be attribute in some schema-->
> 
> >                <xsd:element name="dname" type="xsd:string"/>
> 
> >                <xsd:element name="emps" maxOccurs="unbounded" minOccurs="0">
> 
> >                  <xsd:complexType>
> 
> >                    <xsd:sequence>
> 
> >                      <xsd:element name="empno" type="xsd:string"/>
> 
> >                      <xsd:element name="ename" type="xsd:string"/>
> 
> >                    </xsd:sequence>
> 
> >                  </xsd:complexType>
> 
> >                </xsd:element>
> 
> >              </xsd:sequence>
> 
> >            </xsd:complexType>
> 
> >          </xsd:element>
> 
> >        </xsd:sequence>
> 
> >      </xsd:complexType>
> 
> >    </xsd:element>
> 
> > </xsd:schema>
> 
> >
> 
> > -Many thanks
> 
> >
> 
> One question I have is, how and when is the generation supposed to occur?
> 
> 
> 
> IOW, what is the environment?
> 
> 
> 
> And where did the Map come from? If, as you replied to Arne, your schema 
> 
> can change, what process is responsible for creating new Maps that are 
> 
> relevant for updated schemas?

There is an upstream process that does that. 

 Such a map, after all, should be a Java 
> 
> analog of an XML instance for the target schema,

You are correct. The map is Java analog of an XML Instance of the target schema. And I don't need a schema at this point but for two reasons:

1) Map does not tell me if an single Entry is either an attribute in XML or Simple element.

2) Map does not tell me the order of siblings (e.g sequence)

 you don't need the 
> 
> schema at that point to generate a valid XML.
> 
> 
> 
> AHS

[toc] | [prev] | [next] | [standalone]


#19829

FromStuart <DerTopper@web.de>
Date2012-11-20 20:52 +0100
Message-ID<k8gn1h$elt$1@dont-email.me>
In reply to#19770
Am 11/17/12 7:52 AM, schrieb Mausam:
> Hello,
>
> I have a Map (it can be nested map, containing of maps) and a schema. Keys in Map represent element/attribute name of the schema and an entry in Map will be at same depth as an element defined in schema
>
> I need help in generating xml from the map as per the schema provided, without generating new files (as e.g Jaxb would require) Sample schema/map provided below
>
> e.g Map = [dept=[deptno="10",dname="ABC",loc="XYZ",emps=[[empno=1000,ename="Albert"],[empno=2000,ename="John"]]]] and schema will be
>
> e.g Schema
> <?xml version="1.0" encoding="windows-1252" ?>
> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
>    <xsd:element name="depts">
>      <xsd:complexType>
>        <xsd:sequence>
>          <xsd:element name="dept" maxOccurs="unbounded">
>            <xsd:complexType>
>              <xsd:sequence>
>                <xsd:element name="deptno" type="xsd:string"/><!-- This simple element e.g can be attribute in some schema-->
>                <xsd:element name="dname" type="xsd:string"/>
>                <xsd:element name="emps" maxOccurs="unbounded" minOccurs="0">
>                  <xsd:complexType>
>                    <xsd:sequence>
>                      <xsd:element name="empno" type="xsd:string"/>
>                      <xsd:element name="ename" type="xsd:string"/>
>                    </xsd:sequence>
>                  </xsd:complexType>
>                </xsd:element>
>              </xsd:sequence>
>            </xsd:complexType>
>          </xsd:element>
>        </xsd:sequence>
>      </xsd:complexType>
>    </xsd:element>
> </xsd:schema>
>
> -Many thanks
>

Try this: http://codeviewer.org/view/code:2c08 (sorry, but code posted 
on usenet looks really ugly). Note that this code can only handle a 
schema that looks like the one you have provided (no support for 
xsd:choice, schema must be in Russian Doll format, no proper quoting of 
special characters like <>" which are not allowed in XML string).

Regards,
Stuart

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.java.programmer


csiph-web