SlideShare una empresa de Scribd logo
1 de 26
MORE FOCUS. MORE VALUE
Technology Conference Mumbai
Jan 2010
Flex for Enterprise Applications
Darshan Vartak, BSC 7
2
This White Paper talks about
 Evolution of UI Technologies
 The User and Developer Expectations
 What is different with Flex?
 Where does it stand against other UI technologies?
 Flex Concepts
 Drawbacks of flex
 Cairngorm Architectural Overview
 Custom Framework Architectural Overview
3
The Evolution
 Initially in the desktop processing world a UI languages
like VB, MFC and even AWT gave a rich look and feel
 With the introduction of applications based on WWW,
developers were restricted to limited options
supported only by the browser
 AJAX could provide partial refreshes and the support
for this was encouraging. Even the end user was quite
happy with this kind of experience.
 However, the programmer still struggled a lot in areas
like extendibility, modular and stricter programming
model, separation of concerns, debugging and browser
independence etc.
4
The Evolution
 Flash player was known, to most of us, as a movie
player or game player with some jazzy graphics. Adobe
has put in lot of effort into building a programming
model around this widely accepted player to give a new
way of looking at GUI design
 This provided the complete framework to design your
GUI, having separation of concerns, organization of
code, maintainability and extensibility, which were the
attributes of OO Design
5
Expectations
 Lightweight
 Secure
 Extensible
 Maintainable
 Should provide rich set of controls (tree, grid, graphs etc)
 Should provide a modular way of handling navigation, user events,
validations, messages and server side communication
 The IDE to design your screen using drag and drop and preview your
screen
 Declarative as well as programmatic UI options
 State full UI, relieving server of maintaining session
 Browser independent
 The skill set should be available or should have smooth and short learning
curve
6
Flex Offers
 You can write Flex code once and run it in any Web browser for
which a Flash Player plugin exists.
 Flex is based on standards.
 Flex provides a rich set of components, Flash effects (including
animation, video, and audio), and accessibility features that
make it easy to add richness and highly fluid experiences to a
Web application.
 Java and ActionScript 3.0 has striking similarity between each
other in terms of in language features, concepts, and syntax.
 Flex Builder, an eclipse based IDE for flex is available in two
versions, as a Plugin to your existing eclipse installation or a
stand-alone Flex Builder IDE.
7
What more does it give
 Flex has very simple mechanism for binding the property of one
object in a Flex application to the property of another object in
Flex.
 Flex's has ability to communicate with a Java EE back-end using
HTTP or SOAP-based Web services
 Blaze DS, a separate, open source product from Adobe, gives you
even greater flexibility for communicating between a Flex front-
end and a Java EE back-end.
 Flex also provides messaging and polling and this feature can be
useful in case of applications requiring server push.
 Because of the OO design, the screens and controls are also
regarded as objects.
8
Where does it stand
 Flex is not based on the same old javascript, which lacks
the maturity of actionscript
 Extendibility of components can be nightmare if you are
using GWT or JSF etc.
 Like other frameworks (GWT) flex programmer need
not know java well
 GWT does not support declarative programming
 JSF is declarative, but customizing the components is
difficult and need to write lot of code to do so
 GWT and JSF are both browser dependent
9
Flex Concepts
 Flex Bindings
10
Flex Concepts
 Blaze Architecture
11
Flex Concepts
 State full Client

With an RIA, state can and should be maintained in the client,
which is now a state full client, as opposed to the stateless
thin client that HTML technologies offer.

Flex can offer access to the HTTP session and allow the Flex
client to treat the HTTP session as “just another object on the
server.”

With an RIA, we are finally relieved from the page-based
development.
12
Flex Concepts
 Context Objects

The context objects or DTOs are no longer required as the
domain or business objects themselves are transferred over
the wire without user required to know about the HTTP part.

With Flex remoting, even though the underlying transport is
still HTTP, the programmer is completely relieved from the
details of data transfer from GUI to the business layer. In fact,
even the conversion of java objects to actionscipt objects is
quite transparent and a powerful feature of flex design.
13
Flex Concepts
 AMF versus SOAP

When the flex invokes the method on a remote object, the
parameters passed are of actionscript type, but would
become equivalent java types.

However, there is a performance penalty to be paid when
objects are serialized and desterilised into an XML structure
because XML is a text-based format.

By default, Flex uses the AMF protocol behind the scenes for
all Java method invocations and data transfers using the
<mx:RemoteObject> tag. It is recommended to change these
to SOAP, if and only if the business insists on standards-based
communication.
14
Flex Drawbacks
 Being a new technology flex does have some learning curve
involved in terms of action script and MXML syntax.
 Asynchronous programming model is one more new concept
that should be kept in mind while coding using flex. This involves
the request, response handler concept, and needs a very
meticulous design to avoid messing up of requests and
responses.
 Flex builder IDE is currently licensed and that can be one of the
hitches, as it can definitely add up to the development cost.
15
Cairngorm Architectural Overview
16
Cairngorm Architectural Overview
 View – The mxml document and its corresponding components
are the basis of the view.
 Model Locator – It acts as a centralized repository for all data
needed in the application.
 Value Object – A value object is a class that only has properties
to store values.
 Event – In Cairngorm, everything should be mapped to an event.
Whenever the user interacts with the view or an action occurs an
event must be dispatched.
17
Cairngorm Architectural Overview
 Command – Commands actually do the majority of an applications work. They
receive the event and its data, execute the logic and can change the state of
the model and view.
 Front Controller – It extends the Cairngorm FrontController class and maps
the dispatched events to its corresponding commands.
 Service Locator – Implemented as a singleton, it contains references to all
services an application will use.
 Business Delegate – Business Delegates form an abstraction layer between
the server-side services and the main frontend application.
 Responder - A responder receives the result of a service call and implements
frontend-logic like a command.
 Service – The Service is formed by an application tier, build with some server-
side technology like J2EE or PHP. It accepts the service requests from the RIA
and responds back with data.
18
Custom framework
19
Custom framework
 ServiceContoller: Service controller is more like our struts controller, which
picks up service definitions from the ServiceControllerAppDef.xml. The service
controller exposes a single method called processRequest to the flex GUI.
 ServiceDefintions: These are the XML entries having action as the key and the
service definition containing, Service Name, Method Name and the
Parameters.
 ObjectSpace: This contains a map of all the parameters to be passed to the
service call and the action name. Since the objects are designed in a generic
way using the concept of wrapper, the type of objects contained inside the
Object Space is limited to 4 to 5 objects.
 CustomScreen: This is a GUI component and exposes all the generic
functionality related handling of custom event, calling service, handling the
results etc. All the screens are required to extent this component and
implement only those methods, which require screen specific behavior.
20
Custom framework
21
Custom framework
 The custom flex events are captured by the CustomScreen object
(Parent to all the screens). CustomScreen acting as a
FrontController here would create the ObjectSpace by retrieving
information from the event and invoke the service.
 Any service call will invoke processRequest method on the
ServiceContoller. The service controller retrieves the action
name and the parameters from the ObjectSpace and the service
definitions from the ServiceControllerAppDef.xml.
22
Custom framework
 Advantages

This framework exploits the OO programming model of actionscript. Since
every screen extends CustomScreen only the screen specific behaviour
like setting the business object has to be added to the specific screen

The CustomScreen component takes care of all the generic behaviour of
the screens calling the remote service for saving or validation and
handling the result.

This relieves us from adding all the extra infrastructure classes like
commandObjects and businessDeletgates to the flex code as there is
single remote object to interact with.

The UI is unaware of the services and their APIs. Loose coupling is
achieved by exposing only a single object and passing only the action
names and ObjectSpace.
23
Custom framework
 Constraints

The objects passed between the clients and server should be
limited to few objects. The objects should be generic objects
and should encapsulate the screen data and validation data
within themselves.

Developed with a particular data structures and architecture
in mind and so will need slight tweaking to make sure, it can
be extensible for any kind of applications.

Not an industry standard framework and so needs lot of
learning before somebody starts using it.
24
Conclusion
Flex provides a complete framework to design your GUI, with
separation of concerns, organization of code, maintainability
and extendibility, which were the attributes of OO Design. This
is free from most of the disadvantages that javascript
suffered. Although AJAX and toolkits like GWT are quite
popular and cover huge chunk of today’s web applications, the
innovation, community support, frameworks like cairngorm
and support from spring community will definitely serve for
flex to get more popular and become an industry strength GUI
technology
 
25
References
 Flex Cairngorm architecture overview - part 1
http://www.flamelab.de/article/flex-cairngorm-architectu
 Flex Integration with J2EE:Chapter 20
By Steven Webster and Alistair McLeod
26

Más contenido relacionado

La actualidad más candente

OMG CORBA Component Model tutorial
OMG CORBA Component Model tutorialOMG CORBA Component Model tutorial
OMG CORBA Component Model tutorialJohnny Willemsen
 
Lab jam websphere message broker labs
Lab jam   websphere message broker labsLab jam   websphere message broker labs
Lab jam websphere message broker labsEng Binary
 
Online advertising management system
Online advertising management systemOnline advertising management system
Online advertising management systemYesu Raj
 
Flex And Java Integration
Flex And Java IntegrationFlex And Java Integration
Flex And Java Integrationravinxg
 
Flex And Java Integration
Flex And Java IntegrationFlex And Java Integration
Flex And Java Integrationrssharma
 
Z os connect v2 ee vs v1 - 1 page
Z os connect v2 ee vs v1 - 1 pageZ os connect v2 ee vs v1 - 1 page
Z os connect v2 ee vs v1 - 1 pageLuigi Tommaseo
 
Dot Net Training Dot Net35
Dot Net Training Dot Net35Dot Net Training Dot Net35
Dot Net Training Dot Net35Subodh Pushpak
 
Dot Net Training Wcf Dot Net35
Dot Net Training Wcf Dot Net35Dot Net Training Wcf Dot Net35
Dot Net Training Wcf Dot Net35Subodh Pushpak
 
Introduction to Patterns in WebSphere Message Broker
Introduction to Patterns in WebSphere Message BrokerIntroduction to Patterns in WebSphere Message Broker
Introduction to Patterns in WebSphere Message BrokerAnt Phillips
 
Moving to Microsoft Visual Basic .NET
Moving to Microsoft Visual Basic .NETMoving to Microsoft Visual Basic .NET
Moving to Microsoft Visual Basic .NETV Sanchez
 
Advanced Pattern Authoring with WebSphere Message Broker
Advanced Pattern Authoring with WebSphere Message BrokerAdvanced Pattern Authoring with WebSphere Message Broker
Advanced Pattern Authoring with WebSphere Message BrokerAnt Phillips
 
Effective Application Development with WebSphere Message Broker
Effective Application Development with WebSphere Message BrokerEffective Application Development with WebSphere Message Broker
Effective Application Development with WebSphere Message BrokerAnt Phillips
 
Flex And Ria
Flex And RiaFlex And Ria
Flex And Riaravinxg
 
[DSBW Spring 2009] Unit 07: WebApp Design Patterns & Frameworks (2/3)
[DSBW Spring 2009] Unit 07: WebApp Design Patterns & Frameworks (2/3)[DSBW Spring 2009] Unit 07: WebApp Design Patterns & Frameworks (2/3)
[DSBW Spring 2009] Unit 07: WebApp Design Patterns & Frameworks (2/3)Carles Farré
 

La actualidad más candente (17)

Flex in portal
Flex in portalFlex in portal
Flex in portal
 
OMG CORBA Component Model tutorial
OMG CORBA Component Model tutorialOMG CORBA Component Model tutorial
OMG CORBA Component Model tutorial
 
Lab jam websphere message broker labs
Lab jam   websphere message broker labsLab jam   websphere message broker labs
Lab jam websphere message broker labs
 
Online advertising management system
Online advertising management systemOnline advertising management system
Online advertising management system
 
Flex And Java Integration
Flex And Java IntegrationFlex And Java Integration
Flex And Java Integration
 
Flex And Java Integration
Flex And Java IntegrationFlex And Java Integration
Flex And Java Integration
 
Z os connect v2 ee vs v1 - 1 page
Z os connect v2 ee vs v1 - 1 pageZ os connect v2 ee vs v1 - 1 page
Z os connect v2 ee vs v1 - 1 page
 
Dot Net Training Dot Net35
Dot Net Training Dot Net35Dot Net Training Dot Net35
Dot Net Training Dot Net35
 
Silverlight Training
Silverlight TrainingSilverlight Training
Silverlight Training
 
Dot Net Training Wcf Dot Net35
Dot Net Training Wcf Dot Net35Dot Net Training Wcf Dot Net35
Dot Net Training Wcf Dot Net35
 
air
airair
air
 
Introduction to Patterns in WebSphere Message Broker
Introduction to Patterns in WebSphere Message BrokerIntroduction to Patterns in WebSphere Message Broker
Introduction to Patterns in WebSphere Message Broker
 
Moving to Microsoft Visual Basic .NET
Moving to Microsoft Visual Basic .NETMoving to Microsoft Visual Basic .NET
Moving to Microsoft Visual Basic .NET
 
Advanced Pattern Authoring with WebSphere Message Broker
Advanced Pattern Authoring with WebSphere Message BrokerAdvanced Pattern Authoring with WebSphere Message Broker
Advanced Pattern Authoring with WebSphere Message Broker
 
Effective Application Development with WebSphere Message Broker
Effective Application Development with WebSphere Message BrokerEffective Application Development with WebSphere Message Broker
Effective Application Development with WebSphere Message Broker
 
Flex And Ria
Flex And RiaFlex And Ria
Flex And Ria
 
[DSBW Spring 2009] Unit 07: WebApp Design Patterns & Frameworks (2/3)
[DSBW Spring 2009] Unit 07: WebApp Design Patterns & Frameworks (2/3)[DSBW Spring 2009] Unit 07: WebApp Design Patterns & Frameworks (2/3)
[DSBW Spring 2009] Unit 07: WebApp Design Patterns & Frameworks (2/3)
 

Similar a Flex for enterprise applications

Flex Remoting With WebORB v1.0
Flex Remoting With WebORB v1.0Flex Remoting With WebORB v1.0
Flex Remoting With WebORB v1.0guest642dd3
 
Developing RIAs... 10 reasons to use Adobe Flex
Developing RIAs... 10 reasons to use Adobe FlexDeveloping RIAs... 10 reasons to use Adobe Flex
Developing RIAs... 10 reasons to use Adobe FlexMatthias Zeller
 
Introduction to Adobe Flex
Introduction to Adobe FlexIntroduction to Adobe Flex
Introduction to Adobe FlexAngelin R
 
Flex and .NET Integration
Flex and .NET IntegrationFlex and .NET Integration
Flex and .NET Integrationicaraion
 
Flex_Basic_Training
Flex_Basic_TrainingFlex_Basic_Training
Flex_Basic_Trainingguest25cec3
 
RIA Development via Adobe Flex + JRuby on Rails
RIA Development via Adobe Flex + JRuby on RailsRIA Development via Adobe Flex + JRuby on Rails
RIA Development via Adobe Flex + JRuby on Railskamal.fariz
 
Flex In Dot Net
Flex In Dot NetFlex In Dot Net
Flex In Dot Netpradeepfdo
 
Selenium Training in Chandigarh
Selenium Training in ChandigarhSelenium Training in Chandigarh
Selenium Training in ChandigarhE2MATRIX
 
Selenium Training in Amritsar
Selenium Training in AmritsarSelenium Training in Amritsar
Selenium Training in AmritsarE2MATRIX
 
Selenium Training in Jalandhar
Selenium Training in JalandharSelenium Training in Jalandhar
Selenium Training in JalandharE2MATRIX
 
Selenium Training in Phagwara
Selenium Training in PhagwaraSelenium Training in Phagwara
Selenium Training in PhagwaraE2MATRIX
 
Selenium Training in Ludhiana
Selenium Training in LudhianaSelenium Training in Ludhiana
Selenium Training in LudhianaE2MATRIX
 
Selenium Training in Mohali
Selenium Training in MohaliSelenium Training in Mohali
Selenium Training in MohaliE2MATRIX
 
Eclipsist2009 Rich Client Roundup
Eclipsist2009 Rich Client RoundupEclipsist2009 Rich Client Roundup
Eclipsist2009 Rich Client RoundupMurat Yener
 
Introduction to Adobe Flex - Zaloni
Introduction to Adobe Flex - ZaloniIntroduction to Adobe Flex - Zaloni
Introduction to Adobe Flex - ZaloniJoseph Khan
 
Net Fundamentals
Net FundamentalsNet Fundamentals
Net FundamentalsAli Taki
 
Vijay Oscon
Vijay OsconVijay Oscon
Vijay Osconvijayrvr
 

Similar a Flex for enterprise applications (20)

Flex Remoting With WebORB v1.0
Flex Remoting With WebORB v1.0Flex Remoting With WebORB v1.0
Flex Remoting With WebORB v1.0
 
Developing RIAs... 10 reasons to use Adobe Flex
Developing RIAs... 10 reasons to use Adobe FlexDeveloping RIAs... 10 reasons to use Adobe Flex
Developing RIAs... 10 reasons to use Adobe Flex
 
Flex RIA
Flex RIAFlex RIA
Flex RIA
 
Introduction to Adobe Flex
Introduction to Adobe FlexIntroduction to Adobe Flex
Introduction to Adobe Flex
 
Flex and .NET Integration
Flex and .NET IntegrationFlex and .NET Integration
Flex and .NET Integration
 
Flex_Basic_Training
Flex_Basic_TrainingFlex_Basic_Training
Flex_Basic_Training
 
RIA Development via Adobe Flex + JRuby on Rails
RIA Development via Adobe Flex + JRuby on RailsRIA Development via Adobe Flex + JRuby on Rails
RIA Development via Adobe Flex + JRuby on Rails
 
Flex In Dot Net
Flex In Dot NetFlex In Dot Net
Flex In Dot Net
 
Selenium Training in Chandigarh
Selenium Training in ChandigarhSelenium Training in Chandigarh
Selenium Training in Chandigarh
 
Selenium Training in Amritsar
Selenium Training in AmritsarSelenium Training in Amritsar
Selenium Training in Amritsar
 
Selenium Training in Jalandhar
Selenium Training in JalandharSelenium Training in Jalandhar
Selenium Training in Jalandhar
 
Selenium Training in Phagwara
Selenium Training in PhagwaraSelenium Training in Phagwara
Selenium Training in Phagwara
 
Selenium Training in Ludhiana
Selenium Training in LudhianaSelenium Training in Ludhiana
Selenium Training in Ludhiana
 
Selenium Training in Mohali
Selenium Training in MohaliSelenium Training in Mohali
Selenium Training in Mohali
 
Flex and Java
Flex and JavaFlex and Java
Flex and Java
 
Eclipsist2009 Rich Client Roundup
Eclipsist2009 Rich Client RoundupEclipsist2009 Rich Client Roundup
Eclipsist2009 Rich Client Roundup
 
Introduction to Adobe Flex - Zaloni
Introduction to Adobe Flex - ZaloniIntroduction to Adobe Flex - Zaloni
Introduction to Adobe Flex - Zaloni
 
Net Fundamentals
Net FundamentalsNet Fundamentals
Net Fundamentals
 
Adobe Flex4
Adobe Flex4 Adobe Flex4
Adobe Flex4
 
Vijay Oscon
Vijay OsconVijay Oscon
Vijay Oscon
 

Último

Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 

Último (20)

Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 

Flex for enterprise applications

  • 1. MORE FOCUS. MORE VALUE Technology Conference Mumbai Jan 2010 Flex for Enterprise Applications Darshan Vartak, BSC 7
  • 2. 2 This White Paper talks about  Evolution of UI Technologies  The User and Developer Expectations  What is different with Flex?  Where does it stand against other UI technologies?  Flex Concepts  Drawbacks of flex  Cairngorm Architectural Overview  Custom Framework Architectural Overview
  • 3. 3 The Evolution  Initially in the desktop processing world a UI languages like VB, MFC and even AWT gave a rich look and feel  With the introduction of applications based on WWW, developers were restricted to limited options supported only by the browser  AJAX could provide partial refreshes and the support for this was encouraging. Even the end user was quite happy with this kind of experience.  However, the programmer still struggled a lot in areas like extendibility, modular and stricter programming model, separation of concerns, debugging and browser independence etc.
  • 4. 4 The Evolution  Flash player was known, to most of us, as a movie player or game player with some jazzy graphics. Adobe has put in lot of effort into building a programming model around this widely accepted player to give a new way of looking at GUI design  This provided the complete framework to design your GUI, having separation of concerns, organization of code, maintainability and extensibility, which were the attributes of OO Design
  • 5. 5 Expectations  Lightweight  Secure  Extensible  Maintainable  Should provide rich set of controls (tree, grid, graphs etc)  Should provide a modular way of handling navigation, user events, validations, messages and server side communication  The IDE to design your screen using drag and drop and preview your screen  Declarative as well as programmatic UI options  State full UI, relieving server of maintaining session  Browser independent  The skill set should be available or should have smooth and short learning curve
  • 6. 6 Flex Offers  You can write Flex code once and run it in any Web browser for which a Flash Player plugin exists.  Flex is based on standards.  Flex provides a rich set of components, Flash effects (including animation, video, and audio), and accessibility features that make it easy to add richness and highly fluid experiences to a Web application.  Java and ActionScript 3.0 has striking similarity between each other in terms of in language features, concepts, and syntax.  Flex Builder, an eclipse based IDE for flex is available in two versions, as a Plugin to your existing eclipse installation or a stand-alone Flex Builder IDE.
  • 7. 7 What more does it give  Flex has very simple mechanism for binding the property of one object in a Flex application to the property of another object in Flex.  Flex's has ability to communicate with a Java EE back-end using HTTP or SOAP-based Web services  Blaze DS, a separate, open source product from Adobe, gives you even greater flexibility for communicating between a Flex front- end and a Java EE back-end.  Flex also provides messaging and polling and this feature can be useful in case of applications requiring server push.  Because of the OO design, the screens and controls are also regarded as objects.
  • 8. 8 Where does it stand  Flex is not based on the same old javascript, which lacks the maturity of actionscript  Extendibility of components can be nightmare if you are using GWT or JSF etc.  Like other frameworks (GWT) flex programmer need not know java well  GWT does not support declarative programming  JSF is declarative, but customizing the components is difficult and need to write lot of code to do so  GWT and JSF are both browser dependent
  • 11. 11 Flex Concepts  State full Client  With an RIA, state can and should be maintained in the client, which is now a state full client, as opposed to the stateless thin client that HTML technologies offer.  Flex can offer access to the HTTP session and allow the Flex client to treat the HTTP session as “just another object on the server.”  With an RIA, we are finally relieved from the page-based development.
  • 12. 12 Flex Concepts  Context Objects  The context objects or DTOs are no longer required as the domain or business objects themselves are transferred over the wire without user required to know about the HTTP part.  With Flex remoting, even though the underlying transport is still HTTP, the programmer is completely relieved from the details of data transfer from GUI to the business layer. In fact, even the conversion of java objects to actionscipt objects is quite transparent and a powerful feature of flex design.
  • 13. 13 Flex Concepts  AMF versus SOAP  When the flex invokes the method on a remote object, the parameters passed are of actionscript type, but would become equivalent java types.  However, there is a performance penalty to be paid when objects are serialized and desterilised into an XML structure because XML is a text-based format.  By default, Flex uses the AMF protocol behind the scenes for all Java method invocations and data transfers using the <mx:RemoteObject> tag. It is recommended to change these to SOAP, if and only if the business insists on standards-based communication.
  • 14. 14 Flex Drawbacks  Being a new technology flex does have some learning curve involved in terms of action script and MXML syntax.  Asynchronous programming model is one more new concept that should be kept in mind while coding using flex. This involves the request, response handler concept, and needs a very meticulous design to avoid messing up of requests and responses.  Flex builder IDE is currently licensed and that can be one of the hitches, as it can definitely add up to the development cost.
  • 16. 16 Cairngorm Architectural Overview  View – The mxml document and its corresponding components are the basis of the view.  Model Locator – It acts as a centralized repository for all data needed in the application.  Value Object – A value object is a class that only has properties to store values.  Event – In Cairngorm, everything should be mapped to an event. Whenever the user interacts with the view or an action occurs an event must be dispatched.
  • 17. 17 Cairngorm Architectural Overview  Command – Commands actually do the majority of an applications work. They receive the event and its data, execute the logic and can change the state of the model and view.  Front Controller – It extends the Cairngorm FrontController class and maps the dispatched events to its corresponding commands.  Service Locator – Implemented as a singleton, it contains references to all services an application will use.  Business Delegate – Business Delegates form an abstraction layer between the server-side services and the main frontend application.  Responder - A responder receives the result of a service call and implements frontend-logic like a command.  Service – The Service is formed by an application tier, build with some server- side technology like J2EE or PHP. It accepts the service requests from the RIA and responds back with data.
  • 19. 19 Custom framework  ServiceContoller: Service controller is more like our struts controller, which picks up service definitions from the ServiceControllerAppDef.xml. The service controller exposes a single method called processRequest to the flex GUI.  ServiceDefintions: These are the XML entries having action as the key and the service definition containing, Service Name, Method Name and the Parameters.  ObjectSpace: This contains a map of all the parameters to be passed to the service call and the action name. Since the objects are designed in a generic way using the concept of wrapper, the type of objects contained inside the Object Space is limited to 4 to 5 objects.  CustomScreen: This is a GUI component and exposes all the generic functionality related handling of custom event, calling service, handling the results etc. All the screens are required to extent this component and implement only those methods, which require screen specific behavior.
  • 21. 21 Custom framework  The custom flex events are captured by the CustomScreen object (Parent to all the screens). CustomScreen acting as a FrontController here would create the ObjectSpace by retrieving information from the event and invoke the service.  Any service call will invoke processRequest method on the ServiceContoller. The service controller retrieves the action name and the parameters from the ObjectSpace and the service definitions from the ServiceControllerAppDef.xml.
  • 22. 22 Custom framework  Advantages  This framework exploits the OO programming model of actionscript. Since every screen extends CustomScreen only the screen specific behaviour like setting the business object has to be added to the specific screen  The CustomScreen component takes care of all the generic behaviour of the screens calling the remote service for saving or validation and handling the result.  This relieves us from adding all the extra infrastructure classes like commandObjects and businessDeletgates to the flex code as there is single remote object to interact with.  The UI is unaware of the services and their APIs. Loose coupling is achieved by exposing only a single object and passing only the action names and ObjectSpace.
  • 23. 23 Custom framework  Constraints  The objects passed between the clients and server should be limited to few objects. The objects should be generic objects and should encapsulate the screen data and validation data within themselves.  Developed with a particular data structures and architecture in mind and so will need slight tweaking to make sure, it can be extensible for any kind of applications.  Not an industry standard framework and so needs lot of learning before somebody starts using it.
  • 24. 24 Conclusion Flex provides a complete framework to design your GUI, with separation of concerns, organization of code, maintainability and extendibility, which were the attributes of OO Design. This is free from most of the disadvantages that javascript suffered. Although AJAX and toolkits like GWT are quite popular and cover huge chunk of today’s web applications, the innovation, community support, frameworks like cairngorm and support from spring community will definitely serve for flex to get more popular and become an industry strength GUI technology  
  • 25. 25 References  Flex Cairngorm architecture overview - part 1 http://www.flamelab.de/article/flex-cairngorm-architectu  Flex Integration with J2EE:Chapter 20 By Steven Webster and Alistair McLeod
  • 26. 26