I am using the koExternalTemplateEngine to load external templates.
This works fine when the template is located in the same site or served from another site on the same server.
However when I try to reference a template on a remote server it doesn't work. I get http 200 ok but with a status code of 0 (there is nothing in the Response and no html).
A code example is below:
<script src="Content/Scripts/ko/lib/koExternalTemplateEngine_all.js"></script>
<script>infuser.defaults.templateSuffix = ".tmpl.html";
infuser.defaults.templateUrl = "http://www.anotherServer.com/koTemplates";</script>
<div data-bind="template: { name: 'koTemplate1' }"></div>
Is it possible to reference a template on a remote server and if so what am I missing?