Bild 1 von 1

Galerie
Bild 1 von 1

Ähnlichen Artikel verkaufen?
Verteilte .Net Programmierung in C# von Barnaby, Tom
by Barnaby, Tom | PB | Good
US $16,08
Ca.CHF 12,88
Artikelzustand:
“Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, ”... Mehr erfahrenÜber den Artikelzustand
Gut
Buch, das gelesen wurde, sich aber in einem guten Zustand befindet. Der Einband weist nur sehr geringfügige Beschädigungen auf, wie z.B. kleinere Schrammen, er hat aber weder Löcher, noch ist er eingerissen. Bei gebundenen Büchern ist der Schutzumschlag möglicherweise nicht mehr vorhanden. Die Bindung weist geringfügige Gebrauchsspuren auf. Die Mehrzahl der Seiten ist unbeschädigt, das heißt, es gibt kaum Knitter oder Einrisse, es wurden nur in geringem Maße Bleistiftunterstreichungen im Text vorgenommen, es gibt keine Textmarkierungen und die Randbereiche sind nicht beschrieben. Alle Seiten sind vollständig vorhanden. Genauere Einzelheiten sowie eine Beschreibung eventueller Mängel entnehmen Sie bitte dem Angebot des Verkäufers.
Oops! Looks like we're having trouble connecting to our server.
Refresh your browser window to try again.
Versand:
Kostenlos Economy Shipping.
Standort: Aurora, Illinois, USA
Lieferung:
Lieferung zwischen Do, 24. Jul und Mo, 28. Jul nach 94104 bei heutigem Zahlungseingang
Rücknahme:
30 Tage Rückgabe. Verkäufer zahlt Rückversand.
Zahlungen:
Sicher einkaufen
Der Verkäufer ist für dieses Angebot verantwortlich.
eBay-Artikelnr.:376016487672
Artikelmerkmale
- Artikelzustand
- Gut
- Hinweise des Verkäufers
- Binding
- Paperback
- Book Title
- Distributed .Net Programming in C#
- Weight
- 2 lbs
- Product Group
- Book
- IsTextBook
- No
- ISBN
- 9781590590393
Über dieses Produkt
Product Identifiers
Publisher
Apress L. P.
ISBN-10
1590590392
ISBN-13
9781590590393
eBay Product ID (ePID)
2218725
Product Key Features
Number of Pages
Xxv, 528 Pages
Language
English
Publication Name
Distributed .net Programming in C#
Subject
Software Development & Engineering / General, Programming Languages / C#, Programming Languages / Asp.Net, Programming / Microsoft
Publication Year
2002
Features
New Edition
Type
Textbook
Subject Area
Computers
Format
Trade Paperback
Dimensions
Item Weight
37.4 Oz
Item Length
9.3 in
Item Width
7.5 in
Additional Product Features
Intended Audience
Scholarly & Professional
Number of Volumes
1 vol.
Illustrated
Yes
Edition Description
New Edition
Table Of Content
1 The Evolution of Distributed Programming.- 2 This Is .NET.- 3 Introduction to .NET Remoting.- 4 Distributed Programming with .NET Remoting.- 5 Additional Remoting Techniques.- 6 Understanding XML Web Services.- 7 Understanding COM Interop.- 8 Leveraging Component Services.- 9 .NET Message Queuing.- Appendix Data Access with ADO.NET.- The Need for ADO.NET.- ADO.NET: The Big Picture.- Understanding ADO.NET Namespaces.- The Types of System.Data.- Examining the DataColumn Type.- Building a DataColumn.- Adding a DataColumn to a DataTable.- Configuring a DataColumn to Function as a Primary Key.- Enabling Autoincrementing Fields.- Configuring a Column's XML Representation.- Examining the DataRow Type.- Understanding the DataRow.RowState Property.- The ItemArray Property.- Details of the DataTable.- Building a Complete DataTable.- Manipulating a DataTable: Deleting Rows.- Manipulating a DataTable: Applying Filters and Sort Orders.- Manipulating a DataTable: Updating Rows.- Understanding the DataView Type.- Understanding the Role of the DataSet.- Members of the DataSet.- Building an In-Memory DataSet.- Expressing Relations Using the DataRelation Type.- Navigating Between Related Tables.- Reading and Writing XML-Based DataSets.- Building a Simple Test Database.- ADO.NET Managed Providers.- Working with the OleDb Managed Provider.- Establishing a Connection Using the OleDbConnection Type.- Building a SQL Command.- Working with the OleDbDataReader.- Connecting to an Access Database.- Executing a Stored Procedure.- The Role of the OleDbDataAdapter Type.- Filling a DataSet Using the OleDbDataAdapter Type.- Working with the SQL Managed Provider.- The System.Data.SqlTypes Namespace.- Inserting New Records Using the SglDataAdapter.- Updating Existing Records Using theSglDataAdapter.- Autogenerated SQL Commands.- Filling a Multitabled DataSet (and Adding DataRelations).- Summary.
Synopsis
With the release of .NET, Microsoft has once again altered the distributed programming landscape. Almost everything has changed, from data access, to remote object calls, to the deployment of software components. And of course, .NET introduces a new technology in XML Web services that may revolutionize Web development. Distributed .NET Programming in C# describes how to use these new .NET technologies to build fast, scalable, and robust distributed applications. Along the way, it answers common questions such as, How do I use the .NET Remoting Framework? What role does COM+ play in the .NET universe? How can I interoperate with COM components? What's the difference between .NET Remoting and Web services? How will these changes affect the architecture and design of a distributed application? Author Tom Barnaby assumes the reader is already familiar with the fundamentals of .NET. However, a .NET overview is provided to concisely explain several of the core .NET technologies that are essential for distributed programming, including building, versioning, and deploying assemblies; garbage collection; serialization; and attribute-based programming., * First book that covers how distributed computing has changed with the advent of .NET * Targeted to professional developers (no toy code) * Written in clear, unpretentious language by an experienced trainer at Intertech-Inc. * Presents information using a style that has been tested in teaching professional developers, This book covers how distributed computing has changed with the advent of .NET. Targeted to professional developers (no toy code) and written in clear, unpretentious language by an experienced trainer at Intertech-Inc, the book presents information using a style that has been tested in teaching professional developers., COM ON A WIRE, also known as DCOM, was a great boon to the distributed pro- grammer. Under the model ofDCOM, a client was able to interact with COM objects located literally anywhere, without requiring a change of code base. Using the indi- rection provided by AppiDs, stubs, proxies, and channels, our distributed endeavors involved little more than the use of declarative tools such as dcomcnfg.exe and the Component Services snap-in. However, all was not well in the world ofDCOM (or COM for that matter). Although the clicking of check boxes made COM-based remoting appear quite simple on the surface, we suffered through numerous registry conflicts, a lifetime of passing interface pointers by reference, and the dreaded prospect of crossing firewalls. Just as ADO.NET has nothing to do with classic ADO, the .NET Remoting story has nothing to do with classic DCOM. The most obvious case in point is the fact that .NET assemblies are not registered with the system registry. Given this, we have no AppiD. Without an AppiD, we have no RemoteServerName value, which means no reference to oleaut32.dll and thus no more COM-based stub and proxies. In short, everything we knew about interacting with types across the wire has changed dramatically., COM ON A WIRE, also known as DCOM, was a great boon to the distributed pro grammer. Under the model ofDCOM, a client was able to interact with COM objects located literally anywhere, without requiring a change of code base. Using the indi rection provided by AppiDs, stubs, proxies, and channels, our distributed endeavors involved little more than the use of declarative tools such as dcomcnfg.exe and the Component Services snap-in. However, all was not well in the world ofDCOM (or COM for that matter). Although the clicking of check boxes made COM-based remoting appear quite simple on the surface, we suffered through numerous registry conflicts, a lifetime of passing interface pointers by reference, and the dreaded prospect of crossing firewalls. Just as ADO.NET has nothing to do with classic ADO, the .NET Remoting story has nothing to do with classic DCOM. The most obvious case in point is the fact that .NET assemblies are not registered with the system registry. Given this, we have no AppiD. Without an AppiD, we have no RemoteServerName value, which means no reference to oleaut32.dll and thus no more COM-based stub and proxies. In short, everything we knew about interacting with types across the wire has changed dramatically.
LC Classification Number
QA76.76.M52
Artikelbeschreibung des Verkäufers
Info zu diesem Verkäufer
ThriftBooks
98,9% positive Bewertungen•19.7 Mio. Artikel verkauft
Angemeldet als gewerblicher Verkäufer
Verkäuferbewertungen (5'683'857)
- w***9 (498)- Bewertung vom Käufer.Letzter MonatBestätigter KaufIt was quite badly damaged, with lots of folded pages.
- 8***r (759)- Bewertung vom Käufer.Letzter MonatBestätigter KaufItem was exactly as described. Thanks!
- u***z (66)- Bewertung vom Käufer.Letzter MonatBestätigter KaufLove it
Noch mehr entdecken:
- Tom Clancy Belletristik-Bücher,
- Tom Clancy Hörbücher,
- Tom Wolfe Hörbücher und Hörspiele,
- Tom-Rath-Sachbuch Bücher,
- Tom Wolfe Belletristik-Bücher,
- Tom Clancy Hörbücher und Hörspiele,
- Tom Clancy Literatur Bücher Belletristik,
- Bücher über Thriller Tom-Clancy-Belletristik,
- Tom Wolfe Ungekürzte Hörbücher und Hörspiele,
- Bücher mit Kinder- & Jugendliteratur Tom Wolfe