Hi,
 I am writing a flex application which hooks into an embedded system.  
Unfortunately I am writing the backend in C, since it is very limited, 
and I am required to handle a passed objects variables explicitly ( scan 
for known incoming order )

 When I use a HTTPservice and GET method, I am finding that I get random 
variable order when hitting the webserver
    eg.
    <mx:HTTPService method="GET" id="feedRequest1" 
url="http://192.168.1.1/cgi-bin/hhpcgi"; useProxy="false" />

    .....
    feedRequest2.send( {command: 'listrgrp', uid: '1',  rgrp: '1' } );

When I look at the weblog ( server is boa ) I get my variables OK, but 
they come in random order

    GET /cgi-bin/hhpcgi?command=listgrp&uid=1&rgrp=1
    GET /cgi-bin/hhpcgi?uid=1&command=listgrp&rgrp=1

Can you set the specific order of GET variables coming out of an object 
?  Normally 99.9% of the time this wouldn't matter if you had the luxury 
of PHP, perl, Ruby.......

Any ideas on this one ?  I want to keep the C side of things as simple 
as possible :)

cheers

-- 


Paul Arch

---------------------------
Esidium Group Pty. Ltd.
Ph:  (08) 6461 4230
Fax: (08) 6461 4238
http://www.esidium.com.au 
Powering DataMate - www.datamate.com.au
--------------------------- 





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to