SlideShare ist ein Scribd-Unternehmen logo
1 von 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

Weitere ähnliche Inhalte

Was ist angesagt?

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é
 

Was ist angesagt? (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)
 

Ähnlich wie 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
 

Ähnlich wie 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
 

Kürzlich hochgeladen

WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
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
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 

Kürzlich hochgeladen (20)

WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
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
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 

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