TechRepublic Resources
- Manage relational data with the Java Persistence API
- The Java Persistence API (JPA) is a Java framework that allows developers to manage relational data in J2SE and J2EE applications. The JPA is defined as part of the EJB 3.0 specification (which is part of the Java EE 5 platform). However, you do not need an EJB container or...
- Tags: API, Persistence, Java Persistence API, Serialization, Persistence Entity, Persistence Metadata, ORM, Data Analysis Tool, Programming Languages, EJB, Java, Software Development, Software/Web Development, Peter Mikhalenko
- Blog posts 2008-04-25
- Implement XML serialization in the .NET Framework
- Serialization is the act of saving an object to a storage medium or transforming the object so that it may be sent across a network. Serialization is an important aspect of the .NET Framework for developers to understand. From remoting to Web services, serialization plays an integral part in many...
- Tags: Microsoft .NET Framework, XML, Zach Smith, Serialization, .Net, Software Development, Software/Web Development
- Download resources 2006-12-14
- Choose your own version of serialization in Java
- RE: Choose your own version of serialization in Javaplz tell me what is serializationserializationwhat are the precautions for serialization?
- Tags: Programming languages, praveena.atthiptla@..., serialization, Java
- Discussion threads 2007-06-13
- Understand when to serialize v. externalize objects in Java
- Peter Mikhalenko explains how you can easily serialize any object if it implements the Serializable interface. He also describes how you can control the process of serialization by implementing the Externalizable interface instead of Serializable. The serialization of objects in Java allows you to make a byte sequence...
- Tags: Java, Peter V. Mikhalenko, Programming languages, serialization, Java Tips Newsletter, Class, Object, Peter Mikhalenko, Serialization Mechanism, Software Development, Software/Web Development
- Technical articles 2007-02-14
- Implement XML serialization in the .NET Framework
- This article is also available as a TechRepublic download, which includes an example application and sample code.Serializationis the act of saving an object to a storage medium or transforming the object sothat it may be sent across a network. After an object is serialized, you willwant to deserialize it which...
- Tags: Microsoft .NET Framework, XML, XML Serialization, Zach Smith
- Technical articles 2006-12-14
- Part 1: Developing an object oriented database in less than 140 lines of C#
- This article is also available as a TechRepublic download, which includes all of the Visual Studio project files.Ourgoal here is to create a simple object oriented database (OODB) in C# with lessthan 140 lines of code. Obviously this won't be the easiest project; however C#and the .NET Framework provide many...
- Tags: binary serialization, C#, database, object-oriented, serialization, Software engineering/development, XML, XML Serialization, Zach Smith
- Technical articles 2007-01-12
- Persist data with the XMLSerializer class
- The System.Xml.Serialization namespace provides the basic functionality of persisting an object as XML. Take a look at how you can use this approach. Microsoft recognized the need to persist data by including serialization functionality in the .NET Framework with the System.Runtime.Serialization, which...
- Tags: XMLSerializer, XML, Tony Patton, XML Serialization, serialization, namespace, XMLSerializer class, .NET Newsletter, Microsoft .NET Framework, Data, Class, Object, System.Xml.Serialization, System.Xml.Serialization Namespace, Deserialization, Persistence, Class Constructor, Software/Web Development, Web Development
- Technical articles 2005-06-30
- Persist data with the XMLSerializer class
- Microsoft recognized the need to persist databy including serialization functionality in the .NET Framework withthe System.Runtime.Serialization, which provides the framework fordeveloping custom serialization solutions, and theSystem.Xml.Serialization namespaces. The System.Xml.Serializationnamespace provides the basic functionality of persisting an objectas XML. Let's take a closer look at using this approach. ...
- Tags: serialization, XML, XMLSerializer, Tony Patton, namespace, XMLSerializer class, XML Serialization
- Technical articles 2005-06-30
- Oracle Tip: Serialize data with ANYDATA columns
- This article originally appeared in the Oracle e-newsletter. Click here to subscribe automatically. Oracle version 9 introduced interesting newdata types, which allow developers to declare a variable that cancontain any type of data. The data types are ANYDATA for a singleitem, ANYDATASET for a TABLE or VARRAY of data, and...
- Tags: Backups, Databases, Serialization, Scott Stephens, Oracle Corp., ANYDATA, data type, serialization
- Technical articles 2004-07-27
- Application Development: Advanced serialization in .NET
- This article deals with some of the advanced concepts associated with serialization in .NET. It is recommended that the reader be familiar with the basic concepts discussed in the previous article on serialization. This article deals with custom serialization and the implementation of ISerializable. The cloning of objects and serialization...
- Tags: .NET, Middleware, Microsoft .NET, S. Vikram, application development, ISerializable, ICloneable, constructor, ISerializable interface, Clone method, serialization, GetObjectData method
- Technical articles 2004-01-27
- Application development: An introduction to serialization in .NET
- Serialization is the process of saving the state of an object by converting it to a stream of bytes. The object can then be persisted to file, database, or even memory. The reverse process of serialization is known as deserialization (see Figure A). In this article, I discuss the uses...
- Tags: SOAP, PRODUCTIVITY, .NET, Middleware, S. Vikram, application development, Microsoft .NET Framework, Microsoft .NET, serialization, Serialization
- Technical articles 2003-12-23
- Practical .NET SOAP
- Microsoft's .NET technology rests on XML and employs it for Internet communication (including Web services), data storage, and many other purposes. .NET contains many functions that translate various kinds of objects—including database tables—to and from XML formats.This article explores how you can use SOAP, a subset of XML, to store...
- Tags: SOAP, Web services, Richard Mansfield, Serialization, Microsoft .NET, Simple Object Access Protocol, ArrayList, XML
- Technical articles 2003-11-03
- Get yourself into a Python cPickle
- Serialization is a handy technique for packaging objects. Learn how to use Python's cPickle for easy data storage and retrieval.Serialization is a useful technique that allows you to preserve object values in a string. There are many reasons to do this, and most languages today provide some prepackaged approach. Python...
- Tags: Scripting languages, Programming languages, Development tools, Shelley Doll, Serialization, Python cPickle, Python
- Technical articles 2002-08-15
- Make XML serialization a snap with .NET attributes
- You can get your data in the form you need it by using XMLSerializer to map your XML data to objects and objects to XML. As you walk through these examples, you'll see how easy the process can be.XML is hailed as the key to system interoperability, and the .NET...
- Tags: Listing C, Microsoft .NET, Paul Stephenson, XML, XmlSerializer, movie
- Technical articles 2001-10-01
- Storing object data as XML
- Storing an object can get complicated. The solution may be to handle it as serialized XML. Find out about the advantages of using this approach.One of the benefits of XML over other data formats is that it closely resembles the structure of object data. Because much of today's design and...
- Tags: Brian Schaffner, Serialization, XML, database
- Technical articles 2001-12-31
Additional Resources
- serialization
- what is meant by serialization?check this outhttp://java.sun.com/developer/technicalArticles/Programming/serialization/
- Tags: praveena.atthiptla@...
- Discussion threads 2007-06-13
- Microsoft .NET Framework and XML serialization (Advanced)
- The Microsoft .NET Framework provides highly customizable APIs to work with object serialization. This webcast will discuss some of the advanced functionality that the System.Xml.Serialization namespace offers, including SoapReflectionImporter and XmlAttributes.
- Tags: Microsoft .NET Framework, XML, Microsoft Corp., .Net, Software Development, Software/Web Development
- Webcasts
- Are you prepared to meet the January 2009 California Pedigree Law?
- Implementing new serialization on pharmaceutical products can be confusing. Vendors, trade partners and the industry offer conflicting information -- and California's new drug tracking requirements only add to the confusion; they're clear about what needs to be done, but not how. The first step toward compliance is serialization -- and...
- Tags: Compliance, IBM Corp.
- White papers 2008-01-01
- Using Schema and serialization to Leverage Business Logic (exe)
- Using Schema and Serialization to Leverage Business Logic. A companion piece to the Extreme XML article, Using Schema and Serialization to Leverage Business Logic. This version is the first release on CNET Download.com.
- Tags: Business Logic, Microsoft Corp.
- Software downloads 2007-09-14
- Microsoft .NET Framework and XML serialization
- The Microsoft .NET Framework provides the developer with highly customizable APIs to serialize and to deserialize objects into XML. In this session, users will learn how to use the classes implemented in the System.Xml.Serialization namespace to do this task.
- Tags: Microsoft .NET Framework, .Net, XML, Software Development, Software/Web Development, Web Development
- Webcasts
- << Previous
- page 1 of 1
- Next >>