I have a Java back-end that produces updates from an input by user of the program. T
his gets saved to an XML file that is saved in the directory the server has access to.
So, from the program I can read the feed by setting the url as localhost/rssfile.xml.
However, when trying to pull the information and update the feed aggregator by using the same address. It wont let me connect.
I think it may be an address issue, however, I am unsure if this is a wise approach.
resolved… needed to use 127.0.0.1 instead of localhost.