I would like to implement a .XML file that contains properties, just like a java.properties file. What is the best way to do this?
I've found some previous posts, but have run into some issues with them. Specifically, what I'm trying to do is build my .swc and deploy it to tomcat. Then, on initialization of the .swc, it will read a properties.xml file to read the URL for the WSDL for my webservices. I don't know the path to the .xml file prior to compilation because the IP will change for each deployment and I don't want to include that in the .mxml file, so I'd like it to be a relative path to the location of the .swc or .html file. I need to access the properties file in both the .mxml file and a .as file as well. Ideally then, I could change the URL in the properties file and the change would be read in on the next access of the flex application. Thoughts?

