XML files

Hi to all,I have created some xml files from a jsp file. However I cannot reach to xml from browser when I type http://llocalhost/something.xml . I have done these to create a RSS feed. Now I cannot find a URL to subscribe. Could you please help? thanks
[281 byte] By [akifhsnddsa] at [2007-11-26 15:50:10]
# 1
Do you call llocalhost? If yes - there is an extra 'l'. If not, do you have a URL mapping to map this .xml to the .jsp in the correct webapp context?Mike
bellyrippera at 2007-7-8 22:09:48 > top of Java-index,Java Essentials,New To Java...
# 2
jsp is for rendering/presenting data, not creating XML fileselaborate on what you're doing, doesn't sound right to me
CarrieHunta at 2007-7-8 22:09:48 > top of Java-index,Java Essentials,New To Java...
# 3

<%

// Stream to write file

FileOutputStream fout;

fout = new FileOutputStream("C:\\Documents and Settings\\akif\\IdeaProjects\\dene\\resources\\"dene.xml");

%>

As you can understand I can create dene.xml but i can not open this file on localhost. I hope, I could tell the problem

Thank you...

akifhsnddsa at 2007-7-8 22:09:49 > top of Java-index,Java Essentials,New To Java...