Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Andrzejek on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NEWBE question on Cannot view XML input using XSL style sheet. 1

Status
Not open for further replies.

caerdydd

Programmer
Mar 2, 2004
35
GB
hi all,
Quick questions probably as i have the error message that a semi colon is expected and an error occurs in processing my resource file. The message also retrieves the first URL line as to where the problem is occuring.

<FL:smarttaglist xmlns:FL="urn:schemas-microsoft-com:smarttags:list">
<FL:name>Related Data</FL:name>
<FL:description>Shows Data</FL:description>
<FL:updateable>false</FL:updateable>
<FL:updatefrequency>10080</FL:updatefrequency>
<FL:autoupdate>true</FL:autoupdate>
<FL:smarttag type="urn:schemas-microsoft-com:eek:ffice:smarttags#States">
<FL:caption>Insitutional Shareholder Data</FL:caption>
<FL:terms>
<FL:termlist>"Sports", "Hsitory" </FL:termlist>
</FL:terms>
<FL:actions>
<FL:action id="Sports">
<FL:caption>My Sports</FL:caption>
<FL:url>" </FL:action>
<FL:action id="Info">
<FL:caption>More Info</FL:caption>
<FL:url> </FL:action>
</FL:actions>
</FL:smarttag>
</FL:smarttaglist>

Can anyone tell me how to resolve this one. Apologies i am new to XML and still learning
Best Regards
 
& char is illegal i think, try replacing it with, '&amp'

Code:
<FL:url>"[URL unfurl="true"]http://session.rservices.com/data/IcomServer?component=institutions&amproot=Soccer"</FL:url>[/URL]

andy
 
Andy
Thanks for the reply but still the same error. When i change the website to something more direct like for example it works but not when i have the full url that i need.
any ideas
cheers
 
o sorry, its meant to be &amp; try this

Code:
<FL:url>"[URL unfurl="true"]http://session.rservices.com/data/IcomServer?component=institutions&amp;root=Soccer"</FL:url>[/URL]

andy
 
Thanks Andy for the response it works now, much appreciated.
Cheers
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top