[flexcoders] Re: Using HTTPService with a TileList

2008-01-10 Thread markcavins
lexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of markcavins > Sent: Thursday, January 10, 2008 11:03 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Using HTTPService with a TileList > > > > > Thank your Abdul for taking a look at my pr

RE: [flexcoders] Re: Using HTTPService with a TileList

2008-01-10 Thread Alex Harui
{tempXML.lastResult.asset.fleet} From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markcavins Sent: Thursday, January 10, 2008 11:03 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Using HTTPService with a TileList Thank

[flexcoders] Re: Using HTTPService with a TileList

2008-01-10 Thread markcavins
Thank your Abdul for taking a look at my problem. this fixed one of the two errors but it is still hating my TileList it is still returning 1119: Access of possibly undefined property asset through a reference with static type mx.rpc.http.mxml:HTTPService. --- In fl

RE: [flexcoders] Re: Using HTTPService

2006-06-19 Thread Peter Farland
    From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of s_hernandez01Sent: Monday, June 19, 2006 9:14 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: Using HTTPService abiramkumar,I am new to flex as well, but I would try keeping everything on oneapplication

[flexcoders] Re: Using HTTPService

2006-06-19 Thread s_hernandez01
abiramkumar, I am new to flex as well, but I would try keeping everything on one application component. Usually when you use an http service you want to call a series of objects instead of calling them one by one, say for example calling a list of photos you have in your folder. In addition, try

[flexcoders] Re: Using HTTPService in a function

2006-06-18 Thread NZEYIMANA Emery Fabrice
Emery   - Original Message - From: Michael Schmalle To: flexcoders@yahoogroups.com Sent: Saturday, June 17, 2006 19:17 Subject: Re: [flexcoders] Re: Using HTTPService in a function I know this has been answerd but here is a sample from your code.Peace, Mike    xmlns:mx=

Re: [flexcoders] Re: Using HTTPService in a function

2006-06-17 Thread Michael Schmalle
I know this has been answerd but here is a sample from your code. Peace, Mike     xmlns:mx="http://www.adobe.com/2006/mxml"     creationComplete="SampleFunction(event)"     layout="absolute">                     On 6/17/06, NZEYIMANA Emery Fabrice <[EMAIL PROTECTED]> wrote:

[flexcoders] Re: Using HTTPService in a function

2006-06-17 Thread NZEYIMANA Emery Fabrice
Thank you very much. I imported the class and it now works. Thanks to you Geoffrey and Martine for the help. Emery --- In flexcoders@yahoogroups.com, "Geoffrey Williams" <[EMAIL PROTECTED]> wrote: > > Are you importing the class? > > import mx.rpc.events.ResultEvent; > > --- In flexcoders

[flexcoders] Re: Using HTTPService in a function

2006-06-17 Thread Geoffrey Williams
Are you importing the class? import mx.rpc.events.ResultEvent; --- In flexcoders@yahoogroups.com, "NZEYIMANA Emery Fabrice" <[EMAIL PROTECTED]> wrote: > > Thanks Martine, > I have read from the manuals and tried to do the following: > > private function SampleFunction():void > { > var http:H

RE: [flexcoders] Re: Using HTTPService to POST complex data

2006-02-02 Thread Matt Chotin
Mark Wales Sent: Tuesday, January 31, 2006 11:40 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Using HTTPService to POST complex data Alaric, I agree that simple types are only supported - the docs you identify, Matt's comments, and my own trial-and-error support that conclusio

RE: [flexcoders] Re: Using HTTPService to POST complex data

2006-01-31 Thread Mark Wales
ailto:[EMAIL PROTECTED] On Behalf Of alariccole Sent: Monday, January 30, 2006 1:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Using HTTPService to POST complex data The problem is the nested object category.name. You can only pass simple variables, as they're converted to HTTP

[flexcoders] Re: Using HTTPService to POST complex data

2006-01-30 Thread Dave Wolf
tp://www.cynergysystems.com > > Email: [EMAIL PROTECTED] > Office: 866-CYNERGY > Mobile: 1.703.489.6466 > > > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Tracy Spratt > Sent: Monday, January 30, 2006 9:00 AM

RE: [flexcoders] Re: Using HTTPService to POST complex data

2006-01-30 Thread Carson Hager
866-CYNERGY Mobile: 1.703.489.6466 -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Monday, January 30, 2006 9:00 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Using HTTPService to POST complex data Dave, in your example,

RE: [flexcoders] Re: Using HTTPService to POST complex data

2006-01-30 Thread Tracy Spratt
Dave, in your example, what is " j_security_check"? Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dave Wolf Sent: Sunday, January 29, 2006 6:03 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Using HTTPService to PO

[flexcoders] Re: Using HTTPService to POST complex data

2006-01-30 Thread alariccole
The problem is the nested object category.name. You can only pass simple variables, as they're converted to HTTP (e.g. name=Test&commit=Create). As taken from the FB help file: "When you use explicit parameter passing, you can specify an object that contains name-value pairs as a send() method par

[flexcoders] Re: Using HTTPService to POST complex data

2006-01-29 Thread Dave Wolf
Here is an example of doing a login form which does a POST from a MXML form. This "simulates" the posting of a HTML form to the standard J2EE login service. This also goes to show how simple it is to integrate into J2EE security. There's no reason to need to roll your own security.

[flexcoders] Re: Using HttpService (a jsp) as dataprovider

2005-05-06 Thread Rajesh Jayabalan
Hi, I have found the solution I had to add http://www.macromedia.com/2003/mxml";> in the begining and in the dataprovider I had to change old dataProvider="{clcrSModel.status}" new dataProvider="{clcrSModel.result.clcrstatuses.status}" I got the solution from http://www.markme.com/h