I am designing a search feature in flash. The data was originally supposed to be in an xml file, but since the data is going to be over 10,000 lines long, I decided to throw it in a sql database first. I have a perl script that queries the database and spits out the results in an xml file which, in turn, flash reads and displays. I am accessing the script through http in flash.
It works well on my local machine, but as soon as I try and use it on the internet, it chokes. It never finishes loading or even finds the xml file.
here is my xml load (not the actual url):
Any ideas why it would load locally but not over the internet?
It works well on my local machine, but as soon as I try and use it on the internet, it chokes. It never finishes loading or even finds the xml file.
here is my xml load (not the actual url):
Code:
list.load("[URL unfurl="true"]http://123.456.789.012/cgi-bin/xml/search.pl?fname="+fnameSearch+"&lname="+lnameSearch);[/URL]
Any ideas why it would load locally but not over the internet?