[cfaussie] XML Import not working - can someone see what i've missed please?

2010-02-07 Thread Mike Kear
I have a XML file with a whole bunch of configuration settings, that i load into my configuration bean.It's worked reliably up to now, but i decided to break the XML file into separate files containing the different kinds of settings, and the import isnt working. Can anyone see the problem

Re: [cfaussie] XML Import not working - can someone see what i've missed please?

2010-02-07 Thread Kevin Pepperman
If I recall The import tag is specific to ColdSpring so it will not work in your own xml files like that. Actually ColdSpring does not really even include them when it uses them, it just reads the files directly and adds it to the internal structures. /Kevin Pepperman -- You received this

Re: [cfaussie] XML Import not working - can someone see what i've missed please?

2010-02-07 Thread Mike Kear
oh der!!!Thanks Kevin. I have never had occasion to want to do that except with coldspring, so i didn't know it was specific to ColdSpring. Thanks. Sigh. Stay with what i had already, wasted some time trying to make it work. Cheers Mike Kear Windsor, NSW, Australia Adobe Certified

Re: [cfaussie] XML Import not working - can someone see what i've missed please?

2010-02-07 Thread Kevin Pepperman
It would not be too difficult for you to create a function to do this if you really wanted to implement it. All you would need to do is read the initial XML and include the other XML files when you process the individual import nodes. But it seems like a lot of work for something that does not