Hi,
 
I have one doubt,
 
Will castor be able to extract datas from these type xml
 
<?xml version="1.0" encoding="UTF-8"?>
<students>
<student name="babu" major="computer">maths,physics,electornics</student>
<student name="manuel" major="chemistry">maths,physics</student>
</students>
 
if able to extract means, how we have to give mappings considering there are prefined java objects already like the following classes
 
ex.
    class Students {
        ArrayList _students  = new ArrayList();
        ......
   }
  
   class Student {
        String name = new String();
        String major = new String();
        String otherpapers = new String();
        ......
  }
 
 
Thanks,
Venkatesh
 

__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

Reply via email to