FMS HostPort question
Web Server forum
Back To The Forum Home!Search!Private Messaging System

Web Server Talk Web Server Talk > Web Servers reviews > Macromedia Flash Server > FMS HostPort question




  Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

    FMS HostPort question  
Dave Williams


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-07-06 06:11 PM

Does anyone understand the interaction between fms.ini and Adaptor.xml?

In fms.ini I have inserted:
ADAPTOR.HOSTPORT = 12.34.56.78:1935,80,443

and in Adaptor.xml, I have inserted:
<HostPort name="edge1" ctl_channel=":19350">${ADAPTOR.HOSTPORT}</HostPo
rt>

and all my applications can connect however, if I use the following:

In fms.ini I have inserted:
ADAPTOR.HOSTPORT = 12.34.56.78:1935,80,443

and in Adaptor.xml, I have inserted:
<HostPort name="edge1" ctl_channel=":19350">12.34.56.78:1935,80,443</HostPor
t>

my applications can not connect.

Does anyone know the correct way to use fms.ini and Adaptor.xml?

Thanks for the help... dave

--
 ________________________________________
_______
FlashComm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com






[ Post a follow-up to this message ]



    Re: FMS HostPort question  
Bill Sanders


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-07-06 06:11 PM

Hi Dave,

When you have a value specified in your fms.ini, that value is passed
as ${XXX.XXX} in the .xml file. So if you have ADAPTOR.HOSTPORT=xxx
in your fms.ini, you need it's representation ${ADAPTOR.HOSTPORT} in
your XML file. What you have done is a double representation by
having it defined both in the fms.ini and the Adaptor.xml as exactly
the same value. The problem is that the xml file is looking for $
{ADAPTOR.HOSTPORT} and not a literal as you have in your example.

Stefan is the real expert on this list (and Brian, of course) and he
may shed further light.

HTH,
Bill

On Jun 7, 2006, at 9:21 AM, Dave Williams wrote:

> Does anyone understand the interaction between fms.ini and
> Adaptor.xml?
>
> In fms.ini I have inserted:
> ADAPTOR.HOSTPORT = 12.34.56.78:1935,80,443
>
> and in Adaptor.xml, I have inserted:
> <HostPort name="edge1" ctl_channel=":19350">${ADAPTOR.HOSTPORT}</
> HostPort>
>
> and all my applications can connect however, if I use the following:
>
> In fms.ini I have inserted:
> ADAPTOR.HOSTPORT = 12.34.56.78:1935,80,443
>
> and in Adaptor.xml, I have inserted:
> <HostPort name="edge1" ctl_channel=":
> 19350">12.34.56.78:1935,80,443</HostPort>
>
> my applications can not connect.
>
> Does anyone know the correct way to use fms.ini and Adaptor.xml?
>
> Thanks for the help... dave
>
> --
>  ________________________________________
_______
> FlashComm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com

bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260


 ________________________________________
_______
FlashComm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com






[ Post a follow-up to this message ]



    Re: FMS HostPort question  
Dave Williams


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-07-06 06:11 PM

Thanks Bill

That makes perfect sense and therefore I'll do my IP insertion in fms.ini on
ly.

Now do you know what ctl_channel=":19350" refers to?

cheers... dave

At 9:34 AM -0400 6/7/06, Bill Sanders wrote:[vbcol=seagreen]
>Hi Dave,
>
>When you have a value specified in your fms.ini, that value is
>passed as ${XXX.XXX} in the .xml file. So if you have
>ADAPTOR.HOSTPORT=xxx
>in your fms.ini, you need it's representation ${ADAPTOR.HOSTPORT} in
>your XML file. What you have done is a double representation by
>having it defined both in the fms.ini and the Adaptor.xml as exactly
>the same value. The problem is that the xml file is looking for
>${ADAPTOR.HOSTPORT} and not a literal as you have in your example.
>
>Stefan is the real expert on this list (and Brian, of course) and he
>may shed further light.
>
>HTH,
>Bill
>
>On Jun 7, 2006, at 9:21 AM, Dave Williams wrote:
> 


--
 ________________________________________
_______
FlashComm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com






[ Post a follow-up to this message ]



    RE: FMS HostPort question  
Stefan Richter


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
06-07-06 06:11 PM

You can ignore that unless you're running an origin/edge setup

Stefan


> -----Original Message-----
> From: flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
> [mailto:flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gman
e.org] On Behalf Of
> Dave Williams
> Sent: 07 June 2006 14:48
> To: FlashComm Mailing List
> Subject: Re: [FlashComm] FMS HostPort question
>
> Thanks Bill
>
> That makes perfect sense and therefore I'll do my IP
> insertion in fms.ini only.
>
>   Now do you know what ctl_channel=":19350" refers to?
>
> cheers... dave
>
> At 9:34 AM -0400 6/7/06, Bill Sanders wrote: 
> is passed 
> ADAPTOR.HOSTPORT=xxx in 
> ${ADAPTOR.HOSTPORT} in your 
> Adaptor.xml? 
>
>
> --
>  ________________________________________
_______
> FlashComm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com http://training.figleaf.com
>

 ________________________________________
_______
FlashComm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com






[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 11:54 AM.      Post New Thread    Post A Reply      
  Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 
Medical and Health forum | Computer Games Reviews | Graphics design forum

Back To The Top
Home | Usercp | Faq | Register