Hi,When I build source code in flex builder 3,I use a parameter like this
-services "c:\folder\folder\folder\file.xml" ,
It is Weborb "services-config.xml" file but when I used this parameter,flex
put the data into compiled .swf file.So I cannot change any parameter in
file.xml because all data is in compiled swf. Is there anything to use those
parameters with code? Sorry for my bad english :)

<?xml version="1.0" encoding="UTF-8"?>
<services-config>

<services>
<service-include file-path="remoting-config.xml" />
</services>

<channels>
<channel-definition id="my-amf"
class="mx.messaging.channels.AMFChannel">
<endpoint uri="weborb.aspx"
class="flex.messaging.endpoints.AMFEndpoint"/>
<properties>
<polling-enabled>false</polling-enabled>
</properties>
</channel-definition>

<channel-definition id="air-http"
class="mx.messaging.channels.AMFChannel">
<endpoint uri="http://localhost:80/weborb30/weborb.aspx"
class="flex.messaging.endpoints.AMFEndpoint"/>
<properties>
<polling-enabled>false</polling-enabled>
</properties>
</channel-definition>

<channel-definition id="air-nohttp"
class="weborb.messaging.WeborbMessagingChannel">
<endpoint uri="rtmp://localhost:2037" />
</channel-definition>
</channels>

<clusters>
<cluster id="default-cluster" properties="jgroups-default.xml" />
</clusters>

</services-config>