search
Japanese Chinese Nederlands Espanol Italiano Deutsch Francais Twitter Rss Feeds
MicrosoftArticlesForumsFAQs
C# .NET
VB.NET
Visual Studio .NET
ADO.NET
Xml / Xslt
VB 6.0
.NET CF
GDI+
LINQ
Deployment
Security
FoxPro
Silverlight / WPF
Entity Framework
RIA Services

Web ProgrammingArticlesForumsFAQs
JavaScript
ASP
ASP.NET
Web Services

Non-MicrosoftArticlesForumsFAQs
NHibernate
Perl
PHP
Ruby
Java
Linux / Unix
Apple
Open Source

DatabasesArticlesForumsFAQs
SQL Server
Access
Oracle
MySQL
Other Databases

OfficeArticlesForumsFAQs
Excel
Word
Powerpoint
Outlook
Publisher
Money

Operating SystemsArticlesForumsFAQs
Windows 7
Windows Server
Windows Vista
Windows XP
Windows Update
MAC
Linux / UNIX

Server PlatformsArticlesForumsFAQs
BizTalk
Site Server
Exhange Server
IIS

Graphic DesignArticlesForumsFAQs
Macromedia Flash
Adobe PhotoShop
Expression Blend
Expression Design
Expression Web

OtherArticlesForumsFAQs
Subversion / CVS
Ask Dr. Dotnetsky
Active Directory
Networking
Uninstall Virus
Job Openings
Product Reviews
Search Engines
Resumes

 

View Other C# .NET Posts   Ask New Question 
dumb question of the day what does XML facade??
jason smith posted at Sunday, August 27, 2006 6:55 PM
I am reading msdn articles on xml and I am coming across the word xml facade
frequently.

here is the context:

The fact that an XmlReader doesn't require that the entire XML document be loaded in memory and is read-only, makes it a good choice for creating an XML façade over non-XML data sources. 

what does xml facade means?

thanks
nath

 
façade is a French word that mean
Peter Bromberg replied at Sunday, August 27, 2006 7:57 PM
"a face" or "wrapper".

the façade is what you "see" or work with, and it communicates with the underlying object for you. Does that help?
 
thanks Peter
jason smith replied at Sunday, August 27, 2006 9:27 PM
nath
 
  facede layer
K Pravin Kumar Reddy replied at Monday, August 28, 2006 12:27 AM
hello

facelayer comes in SOA architecture/ Webservices

when data entered in form should be converted to XMl format using facade layer only this facade layer will submit that xml file to webservice for processing that data.webservide will return xml file and facade layer will convert that xml file to normal data and submitted to form back 

if u want more help regarding facade layer.....reply me
 
  Design and Facade
Chad . replied at Monday, August 28, 2006 3:13 AM
Hi,
Facade as used in the Design Language is a Class which acts like an interface between the Domain/Business Classes and the another Sub Layer which could be a Data Access Layer etc.