Combine two tables in one XML file won't work ! why ?
-
I have two tables and I'm trying to combine them into one XML file . Given this (this is the first table , it's called "Clients") <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE Clients SYSTEM "bank.dtd"> <Clients> <account> <number>323</number> <client> <address> <street>Sliders</street> <city>Tokyo</city> </address> <identity>1212</identity> </client> <client> <address> <street>Jason</street> <city>Paris</city> </address> <identity>1313</identity> </client> <totoalSum>43333</totoalSum> </account> </Clients> I'm trying to add that (this is another table called "guests") <!DOCTYPE guests SYSTEM "travel.dtd"> <guests> <guest> <id>00000001-0</id> <guestDetails> <name>Adam</name> <city>Gan Eden</city> <address>Mango 3</address> <state>Israel</state> </guestDetails> </guest> </guests> to the file . Hence the complete code : <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE Clients SYSTEM "bank.dtd"> <Clients> <account> <number>323</number> <client> <address> <street>Sliders</street> <city>Tokyo</city> </address> <identity>1212</identity> </client> <client> <address> <street>Jason</street> <city>Paris</city> </address> <identity>1313</identity> </client> <totoalSum>43333</totoalSum> </account> </Clients> <!DOCTYPE guests SYSTEM "travel.dtd"> <guests> <guest> <id>00000001-0</id> <guestDetails> <name>Adam</name> <city>Gan Eden</city> <address>Mango 3</address> <state>Israel</state> </guestDetails> </guest> </guests> Won't work , probably because of the line "<!DOCTYPE guests SYSTEM "travel.dtd">" . Any idea how to fix it ? Regards David
-
Answer:
This could be the technical issue... Report it to the service to get things fixed.. Good luck!
Ron at Yahoo! Answers Visit the source
Related Q & A:
- How to Map Two Tables To One Class in Fluent NHibernate?Best solution by stackoverflow.com
- How to combine two scripts into one?Best solution by Super User
- HP printer won't work?Best solution by Yahoo! Answers
- Cruise control won't work?Best solution by Yahoo! Answers
- Why my PSP START button won't work?Best solution by answers.yahoo.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.