what is session facade ?
Answers were Sorted based on User's Feedback
It is Design pattern
Problem:too many method invocations b/w client and server
will lead to network overhead,tight coupling due to
dependencies between the client and server and chance of
misuce of server business methods due to fine grained
access etc.
Solution: Use of session besn as facade to encapsulate the
complexties b/w the client and server interactions. The
session facade manages the business objects and provides a
uniform coarse grained service access layer to client.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / srinivasa
Its a Dessign pattern.It is used on business tier to access
the other EJBs(Session ,Entity)means other part of the
system to reduce the networkflow.It provides the one point
of view to the client.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / royal
This is the design pattern of Distrubuted applications.
Problem:
==========
If Remote client want to communicate with multiple bussiness
Components then it has to use multiple network and remote calls to interact with these multiple bussines components
that means more N/w calls will be there bwtween client
and B.componets.
Solution:
===============
So to avoide this problem we have to go for Session facade
Design Pattern.
Session facade is a dummy Business Object resides at
server side recieve calls from Client and to pass the
Bussiness componets of served side locally.
| Is This Answer Correct ? | 1 Yes | 0 No |
What are the types of literals?
Are variables stored in ram?
what is the difference between object and class
How do you reverse sort a list in java?
Can you call a private data from an inner class?
Write a method that will remove given character from the string?
What is the difference between quicksort & mergesort? When should they be used? What is their running time?
0 Answers Akamai Technologies,
Can a vector contain heterogenous objects?
I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }
What is the difference between set and list?
What is exception handling in java?
what is dynamic method dispatch ?
27 Answers Fidelity, MUET, SDSF,