SecurityError: Error #2147: when loading images from xml path why?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • luke14free
    New Member
    • Apr 2007
    • 79

    #1

    SecurityError: Error #2147: when loading images from xml path why?

    Hello,
    I'm coding a file for my home page using flex. I'm getting horrible errors when trying to get img source from an xml file:

    SecurityError: Error #2147: Forbidden protocol in the URL
    http://www.talentdream .com/prj/-744961848/1665601556.jpg

    Feel free also to take a look to my xml provider:
    http://www.talentdream .com/cgi-bin/last.py

    Honestly I can't figure out why, my swf is online, I've even adde
    initialize="{Se curity.loadPoli cyFile('http://www.talentdream .com/crossdomain.xml ')}"

    To my Application tag
    Any hints?
  • luke14free
    New Member
    • Apr 2007
    • 79

    #2
    Problem solved!

    python, while generating playlist was adding some kind of unsupported char near "http".
    I had to change in my xml provider

    Code:
    print "<media>"
    print sqllite_media
    print "</media>"
    to

    Code:
    print "<media>"+sqllite_media+"</media>"
    Bye,
    Luke

    Comment

    Working...