473,394 Members | 2,168 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Urgent! What is wrong with this XML file

K R
Hi,

I have generated this XML from my application. But, when I open this
XML, it is throwing error. Please help me to resolve this.

<?xml version="1.0" encoding="utf-8" ?>
<searchResults>
<totalhits>16916</totalhits>
<searchquery>*</searchquery>
<timetaken>TIME TAKEN</timetaken>
<resultsperpage>10</resultsperpage>
<currentpage>CURRENT PAGE</currentpage>
<totalpages>1692</totalpages>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&CollapseView</reference>
<rank>1</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&ExpandView</reference>
<rank>2</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...C95D08D748256D
BE001F6848/</reference>
<rank>3</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Free Parking on Sundays and Public Holidays</title>
<reference>http://www7.hdb.gov.sg/isoa029p.nsf/...ew/2586B730068
056DC48256F4200126775</reference>
<rank>4</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Free Parking on Sundays and Public Holidays. Free Parking on
Sundays and Public Holidays Free Parking on Sundays and Public Holidays
The Free Parking Scheme on Sundays and Public Holidays will be
implemented at the following coupon parking multi-storey car park with
effect from 7 November 2004 </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&Start=1&Count=30&CollapseView</reference>
<rank>5</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&Start=1&Count=30&ExpandView</reference>
<rank>6</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Press Releases Notice: Click for an overview of the
M...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848/8191c55686c0407a48256f3700049180?OpenDocument</reference>
<rank>7</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Press Releases Notice: Click for an overview of the M....
Press Releases Notice: Click for an overview of the Marriage and
Parenthood Schemes . More under , and . | | | | | Housing &amp;
Development Board Best Viewed with IE 5.0 and above, 800 x 600
resolution HDB HUB, 480 Lorong 6 Toa Payoh, </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&Start=1&Count=30&Collapse=1</reference>
<rank>8</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Press Releases Notice: Click for an overview of the
M...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848/70b762f7dfbedbec48256f4000095dc7?OpenDocument</reference>
<rank>9</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Press Releases Notice: Click for an overview of the M....
Press Releases Notice: Click for an overview of the Marriage and
Parenthood Schemes . More under , and . | | | | | Housing &amp;
Development Board Best Viewed with IE 5.0 and above, 800 x 600
resolution HDB HUB, 480 Lorong 6 Toa Payoh, </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&Start=1&Count=30&Expand=1</reference>
<rank>10</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
</searchResults>

Regards.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
Nov 12 '05 #1
3 1519
It's not valid XML, that's what's wrong with it. & denotes an entity and XML
knows only three entities on its own: &quot; &lt; and &gt;. But your "XML"
contains entities such as &CollapseView or &ExpandView (and it's missing the
; to end those). If those were supposed to be ampersands you need to encode
them.

Jerry

"K R" <kr*********@gmail.com> wrote in message
news:%2****************@TK2MSFTNGP09.phx.gbl...
Hi,

I have generated this XML from my application. But, when I open this
XML, it is throwing error. Please help me to resolve this.

<?xml version="1.0" encoding="utf-8" ?>
<searchResults>
<totalhits>16916</totalhits>
<searchquery>*</searchquery>
<timetaken>TIME TAKEN</timetaken>
<resultsperpage>10</resultsperpage>
<currentpage>CURRENT PAGE</currentpage>
<totalpages>1692</totalpages>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&CollapseView</reference>
<rank>1</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&ExpandView</reference>
<rank>2</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...C95D08D748256D
BE001F6848/</reference>
<rank>3</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Free Parking on Sundays and Public Holidays</title>
<reference>http://www7.hdb.gov.sg/isoa029p.nsf/...ew/2586B730068
056DC48256F4200126775</reference>
<rank>4</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Free Parking on Sundays and Public Holidays. Free Parking on
Sundays and Public Holidays Free Parking on Sundays and Public Holidays
The Free Parking Scheme on Sundays and Public Holidays will be
implemented at the following coupon parking multi-storey car park with
effect from 7 November 2004 </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&Start=1&Count=30&CollapseView</reference>
<rank>5</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&Start=1&Count=30&ExpandView</reference>
<rank>6</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Press Releases Notice: Click for an overview of the
M...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848/8191c55686c0407a48256f3700049180?OpenDocument</reference>
<rank>7</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Press Releases Notice: Click for an overview of the M....
Press Releases Notice: Click for an overview of the Marriage and
Parenthood Schemes . More under , and . | | | | | Housing &amp;
Development Board Best Viewed with IE 5.0 and above, 800 x 600
resolution HDB HUB, 480 Lorong 6 Toa Payoh, </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&Start=1&Count=30&Collapse=1</reference>
<rank>8</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Press Releases Notice: Click for an overview of the
M...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848/70b762f7dfbedbec48256f4000095dc7?OpenDocument</reference>
<rank>9</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Press Releases Notice: Click for an overview of the M....
Press Releases Notice: Click for an overview of the Marriage and
Parenthood Schemes . More under , and . | | | | | Housing &amp;
Development Board Best Viewed with IE 5.0 and above, 800 x 600
resolution HDB HUB, 480 Lorong 6 Toa Payoh, </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&Start=1&Count=30&Expand=1</reference>
<rank>10</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
</searchResults>

Regards.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 12 '05 #2
Hi KR

You have URLs in your document containing Query Strings, where name value
pairs are encoded as name=value&name=value...

As Jerry says, you need to escape ampersand characters as &amp;

Nigel

"K R" wrote:
Hi,

I have generated this XML from my application. But, when I open this
XML, it is throwing error. Please help me to resolve this.

<?xml version="1.0" encoding="utf-8" ?>
<searchResults>
<totalhits>16916</totalhits>
<searchquery>*</searchquery>
<timetaken>TIME TAKEN</timetaken>
<resultsperpage>10</resultsperpage>
<currentpage>CURRENT PAGE</currentpage>
<totalpages>1692</totalpages>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&CollapseView</reference>
<rank>1</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&ExpandView</reference>
<rank>2</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...C95D08D748256D
BE001F6848/</reference>
<rank>3</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Free Parking on Sundays and Public Holidays</title>
<reference>http://www7.hdb.gov.sg/isoa029p.nsf/...ew/2586B730068
056DC48256F4200126775</reference>
<rank>4</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Free Parking on Sundays and Public Holidays. Free Parking on
Sundays and Public Holidays Free Parking on Sundays and Public Holidays
The Free Parking Scheme on Sundays and Public Holidays will be
implemented at the following coupon parking multi-storey car park with
effect from 7 November 2004 </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&Start=1&Count=30&CollapseView</reference>
<rank>5</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&Start=1&Count=30&ExpandView</reference>
<rank>6</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Press Releases Notice: Click for an overview of the
M...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848/8191c55686c0407a48256f3700049180?OpenDocument</reference>
<rank>7</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Press Releases Notice: Click for an overview of the M....
Press Releases Notice: Click for an overview of the Marriage and
Parenthood Schemes . More under , and . | | | | | Housing &
Development Board Best Viewed with IE 5.0 and above, 800 x 600
resolution HDB HUB, 480 Lorong 6 Toa Payoh, </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&Start=1&Count=30&Collapse=1</reference>
<rank>8</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
<content>
<title>Press Releases Notice: Click for an overview of the
M...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848/70b762f7dfbedbec48256f4000095dc7?OpenDocument</reference>
<rank>9</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Press Releases Notice: Click for an overview of the M....
Press Releases Notice: Click for an overview of the Marriage and
Parenthood Schemes . More under , and . | | | | | Housing &
Development Board Best Viewed with IE 5.0 and above, 800 x 600
resolution HDB HUB, 480 Lorong 6 Toa Payoh, </summary>
</content>
<content>
<title>Web Title...</title>
<reference>http://www7.hdb.gov.sg/isoa032p.nsf/...c95d08d748256d
be001f6848?OpenView&Start=1&Count=30&Expand=1</reference>
<rank>10</rank>
<weight>96.00</weight>
<date>04 Nov 2004</date>
<summary>Web Title.... Web Title . </summary>
</content>
</searchResults>

Regards.

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Nov 12 '05 #3
K R wrote:
I have generated this XML from my application.
Never generate XML by hands. Always use XML API such as XmlTextWriter.
But, when I open this
XML, it is throwing error. Please help me to resolve this.


& must be esacaped as &amp; in XML.

--
Oleg Tkachenko [XML MVP]
http://blog.tkachenko.com
Nov 12 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Heros | last post by:
I had losed my serial key for .net Visual Studio Professional, DVD ROM with the trial version, 60 days, and need urgent to use it to install .net Visual Basic. Please, its urgent. Thanks.
5
by: VbUser25 | last post by:
hi i need urgent responses.. i have some 15 checkboxex on a form... i want to 1st check the no. of checkboxes that are checked?? and then loop it that many times adn insert the quantities the...
9
by: Stefan Bauer | last post by:
Hi NG, we've got a very urgent problem... :( We are importing data with the LOAD utility. The input DATE field data is in the format DDMMYYYY (for days) and MMYYYY (for months). The target...
28
by: Tamir Khason | last post by:
Follwing the struct: public struct TpSomeMsgRep { public uint SomeId;
4
by: EricJ | last post by:
the click event of a picturebox gives an e As System.EventArgs but this e dousnt contain xy coordinates of the click (and yes i need those :/) Private Sub picSchade_Click(ByVal sender As...
7
by: deepagulati | last post by:
Hi, I need an urgent help from you. When we dynamically genrate any list box (Select Box) it shows one default value as selected. Is there any way that we can deselect that value. I...
3
by: N. Spiker | last post by:
I am attempting to receive a single TCP packet with some text ending with carriage return and line feed characters. When the text is send and the packet has the urgent flag set, the text read from...
0
by: prannoy | last post by:
Please help me.. It is urgent. I developed the interface of my project on mathematics using a 256 colour driver (bgi256v2.bgi) which i got from the internet. But when i finished designing the...
1
by: rajesh.us.it.recruiter | last post by:
Hi Guys/Partners, We have a URGENT Requirement for Perl Programmer with H1 visa in India/US for one of our prestigious Client. Location : New Jersey Requirements : Should be very strong in...
7
by: Cirene | last post by:
I used to use the Web Deployment Project with my VS2005 projects. Now I've fully upgraded to VS2008. Do I have to download a new version of the Web Deployment Project? If so where can I find...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.