RE: [flexcoders] dynamically loading components

2006-05-11 Thread Venu Vasireddy










Please try with swfLoader.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of ROUSSELIE David ROSI/SIFAC
Sent: Thursday, May 11, 2006 8:40
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] dynamically
loading components







I'm trying to load dynamically Flex
component at runtime from just the component's name (String).





I succeed when I was using Flex2 Beta2 but this does not
work anymore with Beta3.











Here is the code I am using:











var urlRequest: URLRequest =
new URLRequest();
urlRequest.url =
"">





var context: LoaderContext =
new LoaderContext();
context.applicationDomain = new
ApplicationDomain(ApplicationDomain.currentDomain);
loader.contentLoaderInfo.addEventListener(Event.COMPLETE,
handleLoadComplete);
loader.load(urlRequest, context);











Then in handleLoadComplete: 





var viewClass: Class =
Class(loader.contentLoaderInfo.applicationDomain.getDefinition(mycomponent));
view = new viewClass(); // -- it fails here











The error I get:











InvalidSWFError: Error #2136: The SWF file
'http://localhost:8080/mysamples/core1.mxml.swf' contains invalid data.











where core1.mxml.swf is the caller application.





The Flex component mycomponent.mxml is just a VBox, nothing
else. When I try to access to the mycomponent.mxml.swf fileÍ'm getting
another error (I don't remember I got it with Flex2 Beta2):











TypeError: Error #1010: A term is undefined and has no
properties.
at mx.styles::StyleManager$/http://www.adobe.com/2006/flex/mx/internal::initProtoChainRoots()
at
mycomponent/http://www.adobe.com/2006/flex/mx/internal::_mycomponent_StylesInit()
at mycomponent$iinit()





I don't know what happened between Beta2 and Beta3, does
anyone have any idea ?











Thanks











-- 





David Rousselie











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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Flex Action Script 2.0 Related Books Sites

2006-03-23 Thread Venu Vasireddy













ActionScript 3.0 guide



http://livedocs.macromedia.com/flex/20beta1/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=2352.html



Similar one exists for Flex and MXML
programming.













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of srini vasan
Sent: Thursday, March 23, 2006
3:39 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex  Action
Script 2.0 Related Books  Sites







Hi











I am new starter on flex and action script 2.0.
Please can you any one suggest mewhat are all the books avialble related
to flex and action script 2.0in indian editions and flex  action
scrit 2.0learning related sites.











Thanks









Jiyo cricket on Yahoo!
India cricket
Yahoo!
Messenger Mobile Stay in touch with your buddies all the time.











--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









[flexcoders] Flex Messaging

2006-03-22 Thread Venu Vasireddy










Hi,



As per Flex 2.0 documentation, messaging
is limited to Topics  i.e. Producer  subscriber type
of messaging.



Is Point to Point messaging (Queue) not
available in Flex 2.0 Messaging?



-Venu
















--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











[flexcoders] Flex Messaging or J2EE Messaging

2006-03-22 Thread Venu Vasireddy











Hi,





I need your opinion regarding one design
decision.



Our Flex 2.0 based system needs to
exchange messages with external systems using JMS compliant messaging
infrastructure.



My dilemma is either to use Flex
Messaging or pure J2EE messaging?



I convinced Executive team to use J2EE
messaging for external message exchange and Flex messaging for intra client
conversations.



Your opinion is highly regarded.



Thanks

Venu Vasireddy

Architect


















--
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



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Re: Flex Messaging or J2EE Messaging

2006-03-22 Thread Venu Vasireddy
I want to toss flex messaging all together for external message exchange
and
RPC Service to speak with JMS Provider, that way I won't be limited by
the
Flex messaging restrictions and capabilities.


-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of dosdedosmiamigos
Sent: Wednesday, March 22, 2006 3:19 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Flex Messaging or J2EE Messaging


It seems obvious (maybe I'm missing something) that you would not want
to exchange messages between Flex clients using the JMS adapter since
it would not be required. For communication between external resources
and between external resources and Flex clients you could use the JMS
adapter since it would be required.

The sample chat application that comes with FDS follows this model. 

What exactly is your potential concern about this approach?

--- In flexcoders@yahoogroups.com, Venu Vasireddy [EMAIL PROTECTED]
wrote:

 Hi,
 
  
 
  
 
 I need your opinion regarding one design decision.
 
  
 
 Our Flex 2.0 based system needs to exchange messages with external
 systems using JMS compliant messaging infrastructure.
 
  
 
 My dilemma is either to use Flex Messaging or pure J2EE messaging?
 
  
 
 I convinced Executive team to use J2EE messaging for external message
 exchange and Flex messaging for intra client conversations.
 
  
 
 Your opinion is highly regarded.
 
  
 
 Thanks
 
 Venu Vasireddy
 
 Architect







--
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



 






--
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/
 




RE: [flexcoders] Flex2.0: MXMLC compiler is a big pain during migration from 1.5 to 2.0

2006-03-21 Thread Venu Vasireddy










Using command line compiler may help (like
Ant compilation even better  makes sure every file is compiled). 











From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of Johannes Nel
Sent: Monday, March 20, 2006 3:41
PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Flex2.0:
MXMLC compiler is a big pain during migration from 1.5 to 2.0





if you had unit tests
everything would be linked autmatically to the compiler. a good argument for
best practises no...
anyway, i suggest you check out this:
http://www.lennel.org/blog/2006/03/02/an-advantage-of-unit-testing-with-flex2as3/

and this: someone said beta 2 is being released pretty soon
http://www.lennel.org/blog/2006/02/27/building-unit-tests-in-eclipse-from-an-ant-script-for-asunit/
to do that automatically for you.
you can grab flex unit and modify the templates for that as well. 

to run ant you need to install the plugin version into a normal eclipse btw
(Adobe please add ant support to the non plugin version!!)



On 3/20/06, t_msreddy
[EMAIL PROTECTED] wrote: 





I am trying to migrate an application that we developed in Flex 1.5 to
Flex 2.0.











These are the steps I followed:





1. Created a project in Flex 2 builder with empty content.





2. Copied MXML folders/files 





3. Copied AS folders/files and Cairngorm 2 packages





4. Modified all my AS files to follow the new package convention





5. Made sure all the vars have a datatype defined.





6. Modified Void to void for all the functions. (this is the stupidest
thing in the world)











Now my real problem with Flex 2 builder is that it doesnt really show
the compilation problem in AS files until you try to instantiate the object in
MXML files. Now I have a ClientVO.as class until I do the following in MXML
file, I wouldnt know what the real problem in ClientVO.as is:













var client : ClientVO = new ClientVO();











Please, save me some nightmares by suggesting or sharing your
experiences in working with Flex 2.0 or during migration from Flex 1.5 to Flex
2.0

















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







SPONSORED
LINKS 




 
  
  Web site design development 
  
  
  Computer software development 
  
  
  Software design and development 
  
 
 
  
  Macromedia flex 
  
  
  Software development best practice 
  
  
  
  
 










YAHOO!
GROUPS LINKS





 Visit your group
 flexcoders
 on the web.
 
 To unsubscribe
 from this group, send an email to:
  [EMAIL PROTECTED]
 
 Your use of
 Yahoo! Groups is subject to the Yahoo! Terms of Service.

















-- 
j:pn 
http://www.lennel.org








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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] What is the basic flow of Flex?

2006-03-21 Thread Venu Vasireddy
Over simplification of RIA (FLEX 2) is

1. MVC (Model, View and Controller) exists in Client (MXML for Visual
design and Action scrip for maintaining state)
2. MC and exists on server (Every thing J2EE /XML)

Value objects plays important role of synching data on client
(brower/Falsh player) and server.

-Venu
Architect

-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ryan Pieszak
Sent: Tuesday, March 21, 2006 6:33 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] What is the basic flow of Flex?

Hello again,

I'm very new to Flex, and I've spent the past few days just getting 
it installed, but I'm having trouble fitting it into our development 
environment.  All the sample apps make the assumption that you're 
developing on the server, but we don't, and I can't get the apps to 
work (and the online documentation is less than stellar).

Can somebody just give me a 1000ft view of the logic flow?

If I'm browsing to a .html page, when is the .mxml page utilized?
The .mxml page just tells the compiler how to build the .swf?
What is the purpose of the flex-enterprise-services.xml file and when 
is it utilized?
What is the purpose of the endpoint ... / line in the xml file?

I really appreciate any help.  It's been a long few days trying to 
get started, and I think some basic understanding would go a long way 
for me.

Thanks all,
Ryan






--
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



 






--
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/
 




[flexcoders] Cairngorm Framework with Flex 2.0

2006-03-15 Thread Venu Vasireddy
 
Hi ,
 
Anybody using Cairngorm Framework with Flex 2.0?
 
In perticular with FES data services?
 
Thanks
Venu
Architect


--
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/
 
winmail.dat

RE: [flexcoders] RE: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Venu Vasireddy
Hi Brian,
 
Is this still a relevant useful frame work - with Flex 2.0 ?
Does FES 2.0  has any inbuilt or recommended framework ?
What is the current status of Cairngorm Framework?
 
-Venu



From: flexcoders@yahoogroups.com on behalf of Brian O'Connor
Sent: Wed 3/15/2006 11:25 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] RE: Cairngorm Framework with Flex 2.0



Sure, what is the question?

 

-

Brian O'Connor

Adobe Consulting

Email: [EMAIL PROTECTED]

Office: 617-219-2205

Mobile: 617-306-3713

/   \® 
888/ \888  
88/   /   \88 
8/   /8\   \8 
/   /888\   \ 
   \8\



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Venu 
Vasireddy
Sent: Wednesday, March 15, 2006 2:13 PM
To: flexcoders@yahoogroups.com
Subject: Cairngorm Framework with Flex 2.0

 

 

Hi ,

 

Anybody using Cairngorm Framework with Flex 2.0?

 

In perticular with FES data services?

 

Thanks

Venu

Architect



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




SPONSORED LINKS 
Web site design development 
http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ
 Computer software development 
http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw
 Software design and development 
http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=1pMBCdo3DsJbuU9AEmO1oQ
 
Macromedia flex 
http://groups.yahoo.com/gads?t=msk=Macromedia+flexw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=OO6nPIrz7_EpZI36cYzBjw
 Software development best practice 
http://groups.yahoo.com/gads?t=msk=Software+development+best+practicew1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=f89quyyulIDsnABLD6IXIw
   



YAHOO! GROUPS LINKS 



*Visit your group flexcoders 
http://groups.yahoo.com/group/flexcoders  on the web.
  
*To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 
  
*Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service 
http://docs.yahoo.com/info/terms/ . 







--
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/
 
winmail.dat

RE: [flexcoders] RE: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Venu Vasireddy









I assume Cairngorm framework 
is designed having FLEX RPC protocols
in mind - in perticular Remote 
object- how to syncvalue objects on client and server.

If we use FLEX 2.0 Dataservices, how does 
this Framework helps?
Perhaps newer version of Cairngorm may 
better address this - guleing data services with client state 
better.



From: Brian O'Connor 
[mailto:[EMAIL PROTECTED]Sent: Wed 3/15/2006 11:57 AMTo: 
Venu Vasireddy; flexcoders@yahoogroups.comSubject: RE: [flexcoders] 
RE: Cairngorm Framework with Flex 2.0


It is very much still a 
relevant and useful framework. You dont necessarily need to use Cairngorm with 
FES but I have on a few occasions. You should consider Cairngorm and FES 2 
different animals. Cairngorm is a good framework for application development and 
FES is a great framework for performing a multitude of Enterprise Messaging and 
Data Services. Check here for the latest version of Cairngorm

http://www.richinternetapps.com/archives/000143.html

Someone will correct me 
if there is a newer version out there

Also, you can google 
Cairngorm, there are some good article on the design patterns and how to 
implement it properly.

Brian


-
Brian O'Connor
AdobeConsulting
Email: [EMAIL PROTECTED]
Office: 617-219-2205
Mobile: 617-306-3713
/ 
\® 
888/ 
\888 88/ 
/ \88 
8/ 
/8\ \8 
/ 
/888\ \ 
\8\




From: Venu 
Vasireddy [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 15, 2006 2:50 
PMTo: 
flexcoders@yahoogroups.comCc: 
Brian O'ConnorSubject: RE: 
[flexcoders] RE: Cairngorm Framework with Flex 2.0



Hi Brian,



Is this still a relevant useful frame work 
- with Flex 2.0 ?

Does FES 2.0 has any inbuilt or 
recommended framework ?

What is the current status of Cairngorm 
Framework?



-Venu





From: 
flexcoders@yahoogroups.com on behalf of Brian O'ConnorSent: Wed 3/15/2006 11:25 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] RE: Cairngorm 
Framework with Flex 2.0

Sure, what is the 
question?


-
Brian O'Connor
AdobeConsulting
Email: [EMAIL PROTECTED]
Office: 617-219-2205
Mobile: 617-306-3713
/ 
\® 
888/ 
\888 88/ 
/ \88 
8/ 
/8\ \8 
/ 
/888\ \ 
\8\




From: 
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Venu VasireddySent: Wednesday, March 15, 2006 2:13 
PMTo: 
flexcoders@yahoogroups.comSubject: Cairngorm Framework with Flex 
2.0





Hi ,



Anybody using Cairngorm Framework with Flex 
2.0?



In perticular with FES data 
services?



Thanks

Venu

Architect
--Flexcoders Mailing ListFAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 


SPONSORED LINKS 

  
  

  Web 
  site design development 

  Computer 
  software development 

  Software 
  design and development 
  

  Macromedia 
  flex 

  Software 
  development best practice 

  




YAHOO! GROUPS 
LINKS 



  Visit your group "flexcoders" on the 
  web. 
  To unsubscribe from 
  this group, send an email to:[EMAIL PROTECTED] 
  
  Your use of Yahoo! 
  Groups is subject to the Yahoo! 
  Terms of Service. 












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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  










RE: [flexcoders] Re: Cairngorm Framework with Flex 2.0

2006-03-15 Thread Venu Vasireddy
Thanks Renaun. Concetually this must be true. But DataServices has has some 
cool features
like DS binding with DataGrid - my concern is how to fit such fecilities into 
framework .
 



From: flexcoders@yahoogroups.com on behalf of Renaun Erickson
Sent: Wed 3/15/2006 12:37 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Cairngorm Framework with Flex 2.0



The framework can be used for UI organization as well as the Data
Services.  Its a big assumption stating its designed for RPC
protocols.  Its actually designed for overall application design, the
Command pattern used by Cairngorm specifically compliments/facilitates
RPC, internal application messages, FES etc... 

When the application is a simple facade over the data services there
might not be a need to use a framework.  But most applications have to
handle UI, Model, Commands(event flow), etc... and Cairngorm provides
a nice strucutre to handle the whole enchilada or just parts of it. 

FES is just part of the an application and might get you all the
implementation needed for handling the Model requirements of the
application.

Renaun

--- In flexcoders@yahoogroups.com, Venu Vasireddy [EMAIL PROTECTED]
wrote:

 I assume Cairngorm framework is designed having FLEX RPC protocols
 in mind - in perticular Remote object - how to sync value objects on
client and server.
 
 If we use FLEX 2.0 Dataservices, how does this Framework helps?
 Perhaps newer version of Cairngorm may better address  this -
guleing data services with client state better.
 

 

 From: Brian O'Connor [mailto:[EMAIL PROTECTED]
 Sent: Wed 3/15/2006 11:57 AM
 To: Venu Vasireddy; flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] RE: Cairngorm Framework with Flex 2.0



 It is very much still a relevant and useful framework. You don't
necessarily need to use Cairngorm with FES but I have on a few
occasions. You should consider Cairngorm and FES 2 different animals.
Cairngorm is a good framework for application development and FES is a
great framework for performing a multitude of Enterprise Messaging and
Data Services. Check here for the latest version of Cairngorm...

 

 http://www.richinternetapps.com/archives/000143.html

 

 Someone will correct me if there is a newer version out there...

 

 Also, you can google Cairngorm, there are some good article on the
design patterns and how to implement it properly.

 

 Brian

 

 -

 Brian O'Connor

 Adobe Consulting

 Email: [EMAIL PROTECTED]

 Office: 617-219-2205

 Mobile: 617-306-3713

 /   \®
 888/ \888 
 88/   /   \88
 8/   /8\   \8
 /   /888\   \
\8\

 

 From: Venu Vasireddy [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, March 15, 2006 2:50 PM
 To: flexcoders@yahoogroups.com
 Cc: Brian O'Connor
 Subject: RE: [flexcoders] RE: Cairngorm Framework with Flex 2.0

 

 Hi Brian,

 

 Is this still a relevant useful frame work - with Flex 2.0 ?

 Does FES 2.0  has any inbuilt or recommended framework ?

 What is the current status of Cairngorm Framework?

 

 -Venu

 

 

 From: flexcoders@yahoogroups.com on behalf of Brian O'Connor
 Sent: Wed 3/15/2006 11:25 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] RE: Cairngorm Framework with Flex 2.0

 Sure, what is the question?

 

 -

 Brian O'Connor

 Adobe Consulting

 Email: [EMAIL PROTECTED]

 Office: 617-219-2205

 Mobile: 617-306-3713

 /   \®
 888/ \888 
 88/   /   \88
 8/   /8\   \8
 /   /888\   \
\8\

 

 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
On Behalf Of Venu Vasireddy
 Sent: Wednesday, March 15, 2006 2:13 PM
 To: flexcoders@yahoogroups.com
 Subject: Cairngorm Framework with Flex 2.0

 

 

 Hi ,

 

 Anybody using Cairngorm Framework with Flex 2.0?

 

 In perticular with FES data services?

 

 Thanks

 Venu

 Architect



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




 SPONSORED LINKS

 Web site design development
http://groups.yahoo.com/gads?t=msk=Web+site+design+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=L-4QTvxB_quFDtMyhrQaHQ


 Computer software development
http://groups.yahoo.com/gads?t=msk=Computer+software+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5=Software+development+best+practicec=5s=166.sig=lvQjSRfQDfWudJSe1lLjHw


 Software design and development
http://groups.yahoo.com/gads?t=msk=Software+design+and+developmentw1=Web+site+design+developmentw2=Computer+software+developmentw3=Software+design+and+developmentw4=Macromedia+flexw5

[flexcoders] RE: View helpers

2006-03-13 Thread Venu Vasireddy
Title: [flexcoders] File - flexcodersFAQ.txt









It decouples the presentation 
tier with business tier. So from JSP you never has to access EJB or DAO 
directly,
It is done through "View Helper" in the 
form bean (JSP usebean) or as JSTL tags.

But with MVC, JSP never have to access 
business logic directly, only state needs to be passed to JSP for 
rendering.

With WEB2 (Rich internet apps), this could 
change as "data" resides in client as well.


From: flexcoders@yahoogroups.com on behalf of 
Dan ThomasSent: Sun 3/12/2006 10:15 AMTo: 
flexcoders@yahoogroups.comSubject: View helpers

Can anyone offer a simple example of the view helper pattern? I understand 
the gist of it, but can only find explanations for Java in which i get a little 
lost with javaisms. A flex orinetated sample or metaphoric explanation i think 
should help.
Cheers,Dan







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.