It looks like it doesn't like the dashes in your parameters.  Everyone
seems to be moving away from dashes to underscores and camelcase (e.g.
- 'display_order' and 'displayOrder').

If you have to have dashes, then you'll most likely need to go to a
full AS3 request object (no mxml):

var urlVar : URLVariables = new URLVariables();
urlVar["created-at"] = "";
urlVar["display-order"] = "";
urlVar["ecms"] = ecmsTI.text;
urlVar["name"] = nameTI.text;
urlVar["job-id"] = "";
urlVar["updated-at"] = "";

myService.request = urlVar;

- Kevin

--- In flexcoders@yahoogroups.com, "Clinton D. Judy" <[EMAIL PROTECTED]> wrote:
>
> I have this:
> 
>  
> 
>         <mx:request xmlns="">
> 
>             <job>
> 
>                   <created-at></created-at>
> 
>                   <display-order></display-order>
> 
>                   <ecms>{ecmsTI.text}</ecms>
> 
>                   <job-id></job-id>
> 
>                   <name>{nameTI.text}</name>
> 
>                   <updated-at></updated-at>
> 
>             </job>
> 
>         </mx:request>
> 
>  
> 
> It says it's "expecting colon before minus" on the first line there. But
> should it even expect a colon when there's no namespace?
> 
>  
> 
> Clinton Judy
> 
> Web Developer
> 
> Glenn O. Hawbaker, Inc.
>


Reply via email to