Greetings,
We're using version 8. I must be confused about the HttpProxy. Whenver I set a datasource url to an external datasource, just like in the RSS example, I get a transport 404 error with "(via proxy:" and the name of my server. I've looked through the docs and I don't see any special settings that I need for an outside URL to work. Why can't I use outside URLs for a data source?
We're using version 8. I must be confused about the HttpProxy. Whenver I set a datasource url to an external datasource, just like in the RSS example, I get a transport 404 error with "(via proxy:" and the name of my server. I've looked through the docs and I don't see any special settings that I need for an outside URL to work. Why can't I use outside URLs for a data source?
Code:
isc.DataSource.create({
ID: "newsFeed",
showPrompt:false,
dataURL: "http://www.propertycasualty360.com/?f=rss",
recordXPath: "/channel/item",
dataFormat:"xml",
fields: [
{ name: "pubDate", width:150, type:"date", align:"left" },
{ name: "title", title:"Headline", type:"text", width:500, showHover:true},
{ name: "description", title:"Description", type:"text", width:500, showHover:true},
{ name: "link_content", valueXPath:"guid", type:"text", hidden:true}
]
});
http://vkurapati.highlinedata.com:81/iap/include/isomorphic/HttpProxy), response: {status: -90,
data: "Transport error - HTTP code: 404 for URL..."[166],
httpResponseCode: 404,
transactionNum: 5,
clientContext: Obj,
context: Obj,
startRow: 0,
endRow: 0,
totalRows: 0}
Comment