> Set newXML = fs.CreateTextFile
> ("http://localhost/dev/client/asp/xml/timetable.xml", true)
Try making that:
> Set newXML = fs.CreateTextFile
> (server.mapPath("/dev/client/asp/xml/timetable.xml")", true)
I'm not sure you can pass a file via http like you were trying to do.
HTH!
--Ken