Results 1 to 5 of 5

Thread: HowTo: Map inner XML Attributes

Threaded View

  1. #1

    Post HowTo: Map inner XML Attributes

    Hi,
    I have a XML like this.
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <Record>
    <username>Adish</username>
     <registrants>
        <registrant>
             <entity>
                 <individual>
                       <name>Adish</name>
                        <address>Some Address </address>
                         <city>Some City</city>
                 </individual>
             </entity>
        </registrant>
     </registrants>
              <Check>    
               <individual>
                       <name>Adish</name>
                        <address>Some Address </address>
                         <city>Some City</city>
                 </individual>
             </Check> 
    </Record>
    I have created an Indivisual class but how i will map with XStreamMarshaller

    Any help will be greatly appreciated..

    Thanks
    Last edited by adish1234; Mar 13th, 2009 at 08:17 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •