Re: C++ Object Serialization Programming Software Development by deceptikon Serializing objects like that is not safe unless you can guarantee …/doc/libs/1_53_0/libs/serialization/doc/index.html), or manually serializing by writing ToString() and FromString() methods in your class, then… serializing the string data. Which is better really depends on your … Re: Filtering Search Results Programming Web Development by rje7 serializing the $resultset to a file perhaps? the file name being the session id or username. but how do i delete this file after the user closes the browser? Serializing problem (server and client in separate projects) Programming Software Development by JosetoChile … think the problem is related with the class I'm serializing/ deserializing. The client has the same class, but as it… serializing data to a xml file, and deserializing when reloading Programming Software Development by LateNightCoder … xml file, that new button does not exist. Code for serializing the forms data to the xml, saving any info about… serializing a vector attribute of an object in c++ Programming Software Development by Pyler Is there are an easier way of serializing a vector attribute of an object in c++ using sqlite3? Serializing an object with no attributes Programming Software Development by Pyler …<FLOUR>grocery); }; #endif How would I go about serializing attributes defined in the FLOUR.h class if incase I… Re: Serializing in Visual C++ Programming Software Development by noraantonia … drawing. can it be done? i've only read about serializing variables, like in a database application, but not a rotating… Re: Serializing a struct to send over a socket and then deserializing Programming Software Development by aiosarem I should also mention that I'm not tied to the way I'm serializing the struct. My ultimate goal is to take those five pieces of data (the two ints, the two doubles, and the char array) and send them all over the socket with one send statement. If there's a better way to do it, by all means, let me know! Problems in serializing listView&treeView items in Visual C++ 2005 Express Edition Programming Software Development by chrisliando Hi..I have a problem with serializing listView and treeView items using VISUAL C++ 2005 EXPRESS EDITION. … C# Binary Serializing a Hybrid Dictionary Programming Software Development by Shalvin Serialization is the process of saving the state of an object into persistant medium. BinaryFormatter class is used for serializing and deserializing an object. HybridDictionary is optimized for key-based item retrieval from both small and large collections. Re: Example of serializing object Programming Software Development by TobbeK No errors, even if it's binary I can only find one post (row) in the txt file. I am missing something when trying to serialize all of the posts (rows) in listview. The code is for my own training purpose, and later I want to deserialize back to the listview. And I also need to create a similar control for xml serializing. Help for creating a generic method for CustomBodyWrier inherited from BodyWriter Programming Software Development by anilsambasivan … if I am returning Class of type Customer its serializing and de-serializing based on the class I am specifying. I need… Read Binary data (size of objects unknown) Programming Software Development by Jsplinter … myself in a bit of a pickle. I have been serializing data I collect with: vector<myClass> mVec; ... // mVec… made a huge mistake because the object I've been serializing is not always the same size: class myClass { std::string… Re: Read Binary data (size of objects unknown) Programming Software Development by L7Sqr I just noticed something in your code: you are serializing a `string` class by casting it to an array of `… but, as provided, this would not work. Hopefully you are serializing to the same machine you are reading from... If they… java SerializeinnerClass Programming Software Development by anand01 Hi All, Good Day I need some clarification , When serializing the inner class alone(implements Serializable only for inner class) I am getting java.io.NotSerializableException: SerializeinnerClass. At the same time when I am serializing static inner class I am not getting that exception. can any one explain me. Thanks in advance -Anand Re: Encrypting an object Programming Software Development by DaveAmour Do you have to encrypt BEFORE serializing? Serializing and then encrypting makes far more sense to me. See this for how to serialize: http://www.paxium.co.uk/PublicArticle/Article/493 Then just encrypt the xml. This way you can write one piece of code which will work for anything. Zend PHP Certification Programming Web Development by samaru … arrays . Numerically indexed and associative arrays . Multidimensional arrays . Sorting . Reordering . Serializing arrays . Manipulating arrays Chapter five - strings and regular expressions This… How do you apply/use the OSI MODEL? Hardware and Software Networking by Fasola … EBCDIC-coded text file to an ASCII-coded file or serializing objects and other data structures into and out of XML… Re: How do you apply/use the OSI MODEL? Hardware and Software Networking by aeinstein … EBCDIC-coded text file to an ASCII-coded file or serializing objects and other data structures into and out of XML… Return Functions/Methods in a class Programming Web Development by digital-ether … a way to get that information? I was thinking of serializing the class, and then using regex to get the functions… Serialization to XML + Encryption Programming Software Development by acezrwild817 I am currently serializing objects from my C# code to XML files. Somehow I need to also encrypte the XML file. What is the best method available that would allow me to do both the serialization and encryption? Spacings And Carriage Returns Programming Software Development by freesoft_2000 …] My only idea i guess is that i must be serializing the document wrongly, but i tried to yahoo but came… XmlSerializer issue. Programming Software Development by unclepauly … the private _MyString variable through the public MyString property *before* serializing, then this works too. i would just like to know… adding namespaces to XmlSerializer when deserializing (C#) Programming Software Development by Radiodave … allows you to add any other namespaces it needs when serializing, but XmlSerializer.Desrialize doesn't; i can't find any… Writing to an XML without overwriting data Programming Software Development by Tamir09 … to keep with this original code as far as the serializing of the data is concerned, I just need to remove… Re: Writing to an XML without overwriting data Programming Software Development by kvprajapati Tamir09, [QUOTE]I need to keep with this original code as far as the serializing of the data is concerned, I just need to remove the 'ExistingData' component from the code, and still be able to write data to the xml. [/QUOTE] Do you want to modify the XML document or your source code? C# Loading serialized file. Programming Software Development by wingers1290 Hi, i've been reading the other thread on serializing and use the following code to serialize the data in … Serializable classes are package dependent? Programming Software Development by emilo35 … together into a single file. The class worked fine, both serializing, file I/O and drawing. In another project I'm… serailizing a list in XML Programming Software Development by vihrao I have problems in serializing a list. Here is my class: [CODE]public partial class … ios fstream (how to write and read binary data from and to a deque? Programming Software Development by Jsplinter … a deque container. So, help, please. Also, am I writing (serializing) this data in the most efficient manner? Thank you!!