malaikuangren

What is the purpose or drive to build thing like (xxx),How can it achieve the original goal of design?

2012年7月3日

Version Tolerant Serialization

摘要: Let's Start it By a sample of code.// Version 1 of the Address class.[Serializable]public class Address{ public string Street; public string City;}// Version 2.0 of the Address class.[Serializable]public class Address{ public string Street; public string City; // The older application... 阅读全文

posted @ 2012-07-03 23:22 malaikuangren 阅读(154) 评论(0) 推荐(0)
Binary Serialization

摘要: Why would you want to use serialization? The two most important reasons are to persist the state of an object to a storage medium so an exact copy can be re-created at a later stage, and to send the object by value from one application domain to another. For example, serialization is used to save se 阅读全文

posted @ 2012-07-03 23:04 malaikuangren 阅读(213) 评论(0) 推荐(0)
Understanding JNDI

摘要: What Is JNDI?JNDI comes with two interfaces: the Application Programming Interface (API) and the Service Provider Interface (SPI). You can use the API in an application to access a naming or directory service. You can use the SPI to program a new service to be used as a naming or directory service.B 阅读全文

posted @ 2012-07-03 21:09 malaikuangren 阅读(259) 评论(0) 推荐(0)