I've read the other posts on this and still can't get this to work.
I have a feeds site that I want to use to dynamically create the .xml gallery file.
the result of the page is the error Gallery XML Not found.
<script type="text/javascript" src="svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.galleryURL = "http://feeds.barrett-jackson.com/simple … ellist.xml";
jQuery(document).ready(function () {
SV.simpleviewer.load('sv-container', '900px', '500px', 'transparent', true,
flashvars);
});
</script>
<div id="sv-container"></div>
and the url to the dynamically generated xml
http://feeds.barrett-jackson.com/simple … ellist.xml
and the url to the page
http://www.barrett-jackson.com/test.html
While feed is generated with .NET I do put the
case ".XML":
context.Response.ContentType = "text/xml";
break;
with no luck am I jst missing something??????
Could it be that these are two different servers? That I can't cross boundries from www.barrett-jackson.com to feeds.barrett-jackson.com?