Scott
Forum Replies Created
-
AuthorPosts
-
Eric,
Thanks so much for your reply.
I have gone down the DocumentAssembler direction per your suggestion and am having some success.
I am however having a bit of difficulty with repeating content:
I am getting a error “Repeat: Select returned no data” on the code:
<Repeat Select=”./Parties/Role/Plaintiffs/Names”/>
<Content Select=”./Name”/>,
<EndRepeat/>But very similar code in the same document works fine:
<Repeat Select=”./Attorneys/Attorney”/>
<Content Select=”./Name”/>, Atty Reg #: <Content Select=”./RegNum”/>
<EndRepeat/>My XML Data is as follows:
<?xml version=”1.0″ encoding=”utf-8″?>
<!– edited with XMLSpy v2016 rel. 2 sp1 (x64) (http://www.altova.com) by Scott Snodgrass (Relentless Pursuit, LLC) –>
<Affidavit>
<CourtName>DISTRICT COURT, DENVER COUNTY, COLORADO</CourtName>
<CourtStreet>1437 Bannock Street</CourtStreet>
<CourtCity>Denver</CourtCity>
<CourtState>CO</CourtState>
<CourtZip>80202</CourtZip>
<Party1Title>Plaintiff</Party1Title>
<Party2Title>Defendant</Party2Title>
<Plaintiff>John Q Public</Plaintiff>
<Defendant>Son T Do</Defendant>
<Parties>
<Role>
<Plaintiffs>
<Names>
<Name>John Q Public</Name>
</Names>
<Names>
<Name>Suzy Public</Name>
</Names>
</Plaintiffs>
<Defendants>
<Names>
<Name>Son T Do</Name>
</Names>
</Defendants>
</Role>
</Parties>
<CaseNum/>
<AttorneyFor>Plaintiff</AttorneyFor>
<LawFirm>Gaiennie Law Offices, LLC</LawFirm>
<LawFirmStreet>3801 E Florida Ave., Suite 100</LawFirmStreet>
<LawFirmCity>Denver</LawFirmCity>
<LawFirmState>CO</LawFirmState>
<LawFirmZip>80210</LawFirmZip>
<LawFirmPhone>303 455-5030</LawFirmPhone>
<Attorneys>
<Attorney>
<Name>Meredith A Quinlivan</Name>
<RegNum>38016</RegNum>
</Attorney>
<Attorney>
<Name>Gorgy Alhasoon</Name>
<RegNum>47505</RegNum>
</Attorney>
<Attorney>
<Name>Robert R. Harper</Name>
<RegNum>48454</RegNum>
</Attorney>
<Attorney>
<Name>Amy E Gaiennie</Name>
<RegNum>24561</RegNum>
</Attorney>
</Attorneys>
<Server>Scott Snodgrass</Server>
<ServerCompany>Relentless Pursuit, LLC</ServerCompany>
<ServerStreet>3531 S. Logan St. D-411</ServerStreet>
<ServerCity>Englewood</ServerCity>
<ServerState>CO</ServerState>
<ServerZip>80113</ServerZip>
<ServerPhone>(303) 570-6285</ServerPhone>
<ServiceDate>August 20, 2016</ServiceDate>
<ServiceTime>1:55 PM</ServiceTime>
<ServiceCompany/>
<ServiceStreet>9033 E Louisiana Ave</ServiceStreet>
<ServiceCity>Denver</ServiceCity>
<ServiceState>CO</ServiceState>
<ServiceZip>80247</ServiceZip>
<ServiceCounty>Arapahoe</ServiceCounty>
<ServiceDocuments>
<Document>
<DocName>Summons</DocName>
</Document>
<Document>
<DocName>Complaint</DocName>
</Document>
<Document>
<DocName>Civil Cover Sheet</DocName>
</Document>
</ServiceDocuments>
</Affidavit>Any ideas on what is wrong?
-
AuthorPosts