Some favorite site feeds aggregated locally: iPhone Development RSS   Adobe Labs RSS   Macrumors RSS

Thursday, April 10, 2008

URLs and Flex

Thursday, April 10, 2008   

I ran into this problem a while back myself, and just now someone else ran into the problem too. Let's say you want to use a URL for something (RSS gathering, a simple link out to another location, etc.)

http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&exc=24&loc=en_us

Now when you compile, you'll get an error.

The reference to entity "exc" must end with the ';' delimiter.

Ian Thomas pointed me in the right direction. The XML parser is trying to expand &exc into an XML entity - since & is the signifier for an XML entity. 

Change the
&
symbols to
&
and you'll be good to go.
 
 Return to the main page
Comments:

There are currently 0 Comments:

 Leave a comment