Here are some issues we've encountered in Flex 1.5 when trying to
use it with some of our web applications via HTTP:
1) Cannot use parameter names in HTTPService if parameter has a "."
in the name as in:
<mx:HTTPService
url="http://localhost/Lighthammer/I�lluminator?QueryTemplate=Demo/�
Historica...
Query&Content-Type=text/xm�l" id="abc">
<mx:request>
<Param.1>20</Param.1>
</mx:request>
</mx:HTTPService>
2) There does not appear to be any way to pass characters that
should be HTML encoded (such as the equals sign below) using the
<mx:request> technique (also note that the parameter name is XXX,
but the "right side value" should be the string "A=whatever",
properly encoded)...
<mx:HTTPService
url="http://localhost/Lighthammer/I�lluminator?QueryTemplate=Demo/�
Historica...
Query&Content-Type=text/xm�l" id="abc">
<mx:request>
<XXX>A={mydataboundthing.value�}</XXX>
</mx:request>
</mx:HTTPService>
<<This causes the compiler to freak out>>
---or ---
<mx:HTTPService
url="http://localhost/Lighthammer/I�lluminator?QueryTemplate=Demo/�
Historica...
Query&Content-Type=text/xm�l" id="abc">
<mx:request>
<XXX>A%3D{mydataboundthing.val�ue}</XXX>
</mx:request>
</mx:HTTPService>
<<This causes the ampersand to be "double encoded" >>
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/