RE: [flexcoders] Flex vs. JSP

2006-12-12 Thread Saheta, Jyoti
To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex vs. JSP 1) Its really like comparing apples and oranges. Anything you can do in JSP(using struts) you can do in Flex and more. Perhaps you want to explain briefly what kind of app you want to build

RE: [flexcoders] Flex vs. JSP

2006-12-12 Thread Tracy Spratt
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Saheta, Jyoti Sent: Tuesday, December 12, 2006 11:42 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex vs. JSP 1) The app to build : will be java based that would communicate with web services to fetch and store data to back-end

Re: [flexcoders] Flex vs. JSP

2006-12-12 Thread greg h
Jyoti, You might want to check out this article by one of Adobe's stellar Flex Java Integration Evangelists, Christophe Coenraets: Providing a Flex Front End to Your Struts Applications http://www.adobe.com/devnet/flex/articles/struts.html The article was published pre Flex 2. Meaning during

RE: [flexcoders] Flex vs. JSP

2006-12-11 Thread Dimitrios Gianninas
1) Its really like comparing apples and oranges. Anything you can do in JSP(using struts) you can do in Flex and more. Perhaps you want to explain briefly what kind of app you want to build? 2) There are two levels of logging. On the server side you can tell Flex to log all incoming/outgoing

Re: [flexcoders] Flex and JSP forwarding

2005-06-17 Thread Jordan Snyder
Yes, the idea is that the HTTPService returns HTTP data to Flex without reloading of the current page. You need to write a handler for the return of the HTTPService, and you should get a String containing the output of your S.O.println(). But that redirect does nothing for Flex. You can

RE: [flexcoders] Flex and jsp

2005-05-31 Thread Dimitrios Gianninas
Hi David, The only thing you need is to use the getURL method. You can use it to communicate with a _javascript_ function back on your JSP page... like so: getURL( "_javascript_:someJSFunction( 'someValue' )", "_top" ); Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc.

RE: [flexcoders] Flex and jsp

2005-05-31 Thread Dimitrios Gianninas
flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex and jsp If someValue is very long, what problem you are facing? Can you share that with us? Did you also try fscommand? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of david_gal-reyniezSent: Tuesday, May 31, 2005

RE: [flexcoders] Flex and jsp

2005-05-31 Thread david_gal-reyniez
to reach my aim. david De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Abdul QabizEnvoyé: mardi 31 mai 2005 16:37À: flexcoders@yahoogroups.comObjet: RE: [flexcoders] Flex and jsp If someValue is very long, what problem you are facing? Can you share that with us

RE: [flexcoders] Flex and jsp

2005-05-31 Thread Abdul Qabiz
ECTED] On Behalf Of david_gal-reyniezSent: Tuesday, May 31, 2005 8:36 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex and jsp When someValue is too long I can't call the function. If I reduce my variable to 600 caracters by example it works. I don't know where the limit come fr

Re: [flexcoders] flex and jsp

2005-04-10 Thread Dan Tropp
I think you want thissearch the Flex documentation for "flashvars". AFAIK this is the only way to pass data into your Flex app. Dan Using flashVars You can pass variables to your Flex applications using the flashVars property in the object and embed tags in your HTML wrapper. You do