<br><br><div><span class="gmail_quote">On 11/18/07, <b class="gmail_sendername">Michael Jerris</b> &lt;<a href="mailto:mike@jerris.com">mike@jerris.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<span>2007</span><span>-11</span><span>-17</span> <span>23</span>:<span>40</span>:<span>47</span> <span>[</span>ERR<span>]</span>
 mod_openzap.c:<span>1085</span> load_config<span>(</span><span>)</span> open of openzap.conf failed:<br><br>The openzap.conf section is not being found in your xml config.&nbsp; You might want to check you includes to make sure that it is included from 
freeswitch.xml.&nbsp; <br><br>Mike</blockquote><div><br><br>To add to that and since this has caused confusion for others, I feel like clarifying the configuration system in FreeSWITCH[tm] for the benefit of anyone that was unclear on this (it has been asked several times over the last few weeks in channel).
<br><br>In reality there is 1 and only 1 configuration file in FreeSWITCH[tm], its name is freeswitch.xml.&nbsp; Within that file there are 4 sections (although its number may increase in the future).&nbsp; Configuration, Dialplan, Directory, and Phrases.&nbsp; The preprocessor will process all the &lt;!--#include ...--&gt; directives and create a single file, then it is processed.&nbsp; So while there is the illusion of multiple files, in reality there is only one.
<br><br>The name of each of the files is defined in its contents, not its actual name (other than freeswitch.xml of course).&nbsp; The actual file name only matters so that the include preprocessor directive can locate it, and it must match what you did for the include directive.
<br><br>If you are curious as to why this occurs, it is so that it is slightly faster to process, since that one file can be opened and processed without hunting for a file for each and ever call, along with an open, read, close loop.&nbsp; The reloadxml api command causes that one file to be closed, and the process of generating one single file is repeated.&nbsp; All reloadxml does is regenerate and reopen the 
freeswitch.xml config file, it does not push those changes to the individual modules that may want that data.&nbsp; It is on each module to allow or disallow dynamic reconfigs during runtime (which can be accomplished by adding an api command to the modules in question).
<br><br>Some modules read the data per call, which means they work very well with mod_xml_curl (or using that as a reference replacing curl with anything you want) so that you can create custom XML for each unique call, such as for a conference, dialplan, or a few other things.&nbsp; Technically speaking mod_xml_curl can deliver all xml with the exception of 
freeswitch.xml and the modules.conf configuration section, which is used to load mod_xml_curl (and I recommend at least one logger such as mod_console or mod_syslog so you can see why stuff broke should that occur).&nbsp; There is a postload_modules.conf section that is unused in a static config, which can be used to load all the other modules from mod_xml_curl, and when they request their own configurations, assuming you bound mod_xml_curl to the &#39;configuration&#39; section, they will pull those from the predefined web server as well, allowing you to create a central provisioning authority for all of your switches.&nbsp; For the really curious there is a php example that does exactly this (although I havent maintained it and some configuration stuff has changed slightly so you may have to tweak it) in TRUNK/scripts/contrib/trixter/xml-curl which would let someone write their own provisioning system, perhaps even using something like carp/ultramonkey/etc to load balance and provide failover between web servers creating a setup that would allow for scalability to a very large degree, and fault tolerance such that if it broke you have more important things to worry about :)
<br></div><br></div><br>-- <br>Trixter <a href="http://www.0xdecafbad.com">http://www.0xdecafbad.com</a>&nbsp;&nbsp;&nbsp;&nbsp; Bret McDanel<br>Belfast +44 28 9099 6461&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;US +1 516 687 5200<br><a href="http://www.trxtel.com">http://www.trxtel.com
</a> the phone company that pays you!