Select the product you need help with
INFO: Roadmap for ADO.NET DataSet Objects and XML Web ServicesArticle ID: 313648 - View products that this article applies to. This article was previously published under Q313648 On This PageSummary This article provides a roadmap to learn and to master the DataSet objects and Extensible Markup Language (XML) Web
services. Roadmap articles provide links to useful information, including online documentation, Microsoft Knowledge Base articles, and Microsoft white papers, to help you learn about a Microsoft product or technology. Microsoft Knowledge Base How-To articles and walkthroughs provide step-by-step instructions to complete specific tasks. Microsoft QuickStart sample files are ready-made programs that illustrate a specific technique. For additional information about ADO.NET technology roadmap articles, click the article numbers below to view the articles in the Microsoft Knowledge Base: 313590
(http://support.microsoft.com/kb/313590/EN-US/
)
INFO: Roadmap for ADO.NET
313649
(http://support.microsoft.com/kb/313649/EN-US/
)
INFO: Roadmap for XML Integration with ADO.NET
308044
(http://support.microsoft.com/kb/308044/EN-US/
)
INFO: Roadmap for Using ADO in .NET
OverviewAn XML Web service is a basic building block of a distributed application for the Internet. With XML Web services, you can call functions over the Internet or intranet through HTTP and XML.Additionally, you can use XML Web services to pass information in an XML format between applications, regardless of the operating system and the programming language. Because XML Web services use XML, SOAP, and other standard Web protocols, you can pass information between clients and servers with different architectures and operating systems. For example, a Microsoft server can communicate seamlessly with a UNIX client or vice versa. This makes XML Web services a great choice for integrating systems in a company or between companies. You can create a Microsoft ASP.NET Web service in Microsoft Visual Basic .NET, Microsoft Visual C# .NET, or Microsoft JScript. For more information, visit the following MSDN Web sites:
XML Web Services Basics http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwebsrv/html/webservbasics.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwebsrv/html/webservbasics.asp)
WebService Class http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWebServicesWebServiceClassTopic.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemWebServicesWebServiceClassTopic.asp)
Declaring an XML Web Service http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpcondeclaringwebservice.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpcondeclaringwebservice.asp)
ArchitectureSimilar to component-based development, you can use XML Web services to pass information to and from client applications, regardless of how the service was implemented. Unlike component-based development, XML Web services uses the following standard protocols to pass information between clients and servers:
XML ProtocolXML addresses the XML Web service requirement to represent data in a standard way. The data that is passed to and from the XML Web service is in XML format. Because the ADO.NET DataSet object is the only object that can be serialized, this is the only object that can be passed to and from the Web service.Object serialization is the process of converting an object into a form that can be easily transported, such as converting the DataSet into XML. For additional information about serialization, click the article number below to view the article in the Microsoft Knowledge Base: 314150 The client application can receive the DataSet from the XML Web service and then pass the DataSet back to the XML Web service to process any changes to the
database. Objects such as Connection objects, Command objects, and DataReader objects cannot be passed because they are not
serializable.
(http://support.microsoft.com/kb/314150/EN-US/
)
INFO: Roadmap for XML Serialization in the .NET Framework
SOAP ProtocolWhen a client application requests information from a database from an XML Web service, the information is placed in a DataSet. This DataSet is then converted into XML that meets the standards that the SOAP messaging protocol sets. This XML is passed from the XML Web service to the client. The XML of the DataSet takes one of two forms:
If you use DiffGram, you pass less information from the client to the server. When the DataSet is marshaled between the client and the Web server as XML, any application that Microsoft .NET does not create can work with the information. For more information about the SOAP protocol, visit the following MSDN Web sites:
An XML Overview Towards Understanding SOAP http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwebsrv/html/xmloverchap2.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwebsrv/html/xmloverchap2.asp)
Overview of SOAP Client in Windows XP http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwxp/html/xpsoap.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwxp/html/xpsoap.asp)
A Young Person's Guide to The Simple Object Access Protocol: SOAP Increases Interoperability Across Platforms and Languages http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnmag00/html/soap0300.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnmag00/html/soap0300.asp)
SOAP Specification Index Page http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsoapspec/html/soapspecindex.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsoapspec/html/soapspecindex.asp)
WSDL StandardYou use the Web Services Definition Language (WSDL) standard when you are using XML Web services that others have written. To call an XML Web service successfully, you must know the following information:
For more information about the WSDL standard, visit the following MSDN Web sites:
Building Industry Standard WSDL For more information about the WSDL specification, visit the
following World Wide Web Consortium (W3C) Web site: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dn_voices_webservice/html/service02062002.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dn_voices_webservice/html/service02062002.asp)
Web Services Description Language (WSDL) Explained http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwebsrv/html/wsdlexplained.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwebsrv/html/wsdlexplained.asp)
Web Services Description Language (WSDL) 1.1 http://www.w3.org/TR/wsdl.html
(http://www.w3.org/TR/wsdl.html)
UDDI StandardYou use the Universal Description, Discovery, and Integration (UDDI) standard when you are using XML Web services that others have written. With this standard, programmable XML Web services can be placed on Web sites where others can access and interact with them. Universal Discovery, Description and Integration (UDDI) supports the discovery and the description of XML Web services.For more information about UDDI, visit the following MSDN Web sites:
Building Clients That Use Industry Standard WSDL http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dn_voices_webservice/html/service03062002.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dn_voices_webservice/html/service03062002.asp)
Web Service Description and Discovery Using UDDI, Part I http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dn_voices_webservice/html/service10032001.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dn_voices_webservice/html/service10032001.asp)
Using UDDI at Run Time, Part II http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnuddi/html/runtimeuddi2.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnuddi/html/runtimeuddi2.asp)
Publishing and Discovering Web Services with DISCO and UDDI http://msdn.microsoft.com/msdnmag/issues/02/02/xml/xml0202.asp
(http://msdn.microsoft.com/msdnmag/issues/02/02/xml/xml0202.asp)
UDDI: an XML Web Service http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnexxml/html/xml12182000.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnexxml/html/xml12182000.asp)
How-To ArticlesMicrosoft Knowledge Base How-To articles provide step-by-step instructions to complete specific tasks. For additional information about XML Web services, click the article numbers below to view the articles in the Microsoft Knowledge Base:308056
(http://support.microsoft.com/kb/308056/EN-US/
)
HOW TO: Update Server Data Through a Web Service by Using ADO.NET and Visual Basic .NET
308054
(http://support.microsoft.com/kb/308054/EN-US/
)
HOW TO: Use a Web Service as a Data Source for a Client Application in Visual Basic .NET
309013
(http://support.microsoft.com/kb/309013/EN-US/
)
HOW TO: Create and Test an XML Web Service in Visual Basic .NET
308359
(http://support.microsoft.com/kb/308359/EN-US/
)
HOW TO: Write a Simple Web Service by Using Visual C# .NET
315935
(http://support.microsoft.com/kb/315935/EN-US/
)
HOW TO: Build and Use XML Web Services by Using Visual Studio .NET
308466
(http://support.microsoft.com/kb/308466/EN-US/
)
HOW TO: Integrate an Apache SOAP 2.2 Client with a .NET XML Web Service
301273 Click
here to see additional How-To articles about XML Web
services
(http://support.microsoft.com/kb/301273/EN-US/
)
HOW TO: Write a Simple Web Service by Using Visual Basic .NET
(http://support.microsoft.com/support/search/canned.asp?R=d&H=XML+Web+Services+How-To+Articles&LL=kbadonet&Sz=kbhowto+and+(webmethod+or+webservice+or+uddi+or+wsdl)+and+dataset)
For more information about how to create XML Web services by using Microsoft Office XP, visit the following MSDN Web sites:
How to Create and Deploy XML Web Services Using Visual Basic 6.0 and Office XP http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k2/html/odc_websvsvb6.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k2/html/odc_websvsvb6.asp)
How to Create and Deploy XML Web Services Using Visual Studio .NET and Office XP http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k2/html/odc_webvsnet.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnacc2k2/html/odc_webvsnet.asp)
WalkthroughsWalkthroughs provide mini-tutorials that walk you through some typical application development scenarios that use XML Web services. For more information, visit the following MSDN Web site:
Walkthrough: Creating an XML Web Service Using Visual Basic or Visual C#
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbconWebServicePublishing.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbcon/html/vbconWebServicePublishing.asp)
GuidelinesFor more information about XML Web services guidelines, visit the following MSDN Web site:
Design Guidelines for XML Web Services Created Using ASP.NET http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconaspnetwebservicedesignguidelines.asp
(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconaspnetwebservicedesignguidelines.asp)
TroubleshootingIf you experience problems or if you have questions, you can refer to the MSDN newsgroups where you can share your experiences with your peers. You can also use the Microsoft Knowledge Base to search for articles about specific issues.
MSDN Newsgroups http://msdn.microsoft.com/newsgroups/
(http://msdn.microsoft.com/newsgroups/)
Searching the Knowledge Base http://support.microsoft.com/search
(http://support.microsoft.com/search)
PropertiesArticle ID: 313648 - Last Review: January 28, 2013 - Revision: 7.0
|



Back to the top








