I've tried switching to an RSS feed to see if I have better luck making contact, but it gets the 404 error as well. I'm stuck. Is there a way to debug HttpProxy on the server side? Here's the code from my latest test.
Code:
DataSource newsFeed = new DataSource("http://rss.slashdot.org/Slashdot/slashdot");
newsFeed.setRecordXPath("//default:item");
DataSourceField name = new DataSourceField("name", FieldType.TEXT);
DataSourceField link = new DataSourceField("link", FieldType.LINK);
newsFeed.setFields(name, link);
ListGrid grid = new ListGrid();
grid.setID("newsViewer");
grid.setDataSource(newsFeed);
grid.setAutoFetchData(true);
grid.setWidth100();
grid.setHeight("100%");
addChild(grid);
Comment