what is session facade ?

Answers were Sorted based on User's Feedback



what is session facade ?..

Answer / srikanth nallapaneni

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

what is session facade ?..

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

what is session facade ?..

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

Post New Answer

More Core Java Interview Questions

Can there be an abstract method without an abstract class?

0 Answers  


What do you mean Abstraction in java?

0 Answers   Aspire, Infogain,


What is the difference between preemptive scheduling and time slicing in java programming?

0 Answers  


Explain the meaning of java applet.

0 Answers   TCS,


we r taking <load-on-startup>0</load-on-startup> <load-on-startup>1</load-on-startup> in deployment descripter for loading servlets like serv1 N serv2? so 'll it take serv1 or serv2

2 Answers   CSC,






How do you format in java?

0 Answers  


What are access specifiers in java ?

0 Answers   Akamai Technologies,


What is map and hashmap in java?

0 Answers  


What are constants and how to create constants in java?

0 Answers  


Is it possible to use string in the switch case?

0 Answers  


wat is final...? wat is finally...? wat is finalize....? difference between " final and finally and finalize "...?

2 Answers  


What is illegal identifier in java?

0 Answers  


Categories