active questions tagged serialization - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T08:45:12Zhttp://stackoverflow.com/feeds/tag/serializationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1809670/how-to-implement-serialization-in-c4How to implement serialization in C++Paul2009-11-27T16:35:15Z2009-11-28T00:05:05Z
<p>Whenever I find myself needing to serialize objects in a C++ program, I fall back to this kind of pattern:</p>
<pre><code>class Serializable {
public:
static Serializable *deserialize(istream &is) {
int id;
is >> id;
switch(id) {
case EXAMPLE_ID:
return new ExampleClass(is);
//...
}
}
void serialize(ostream &os) {
os << getClassID();
serializeMe(os);
}
protected:
int getClassID()=0;
void serializeMe(ostream &os)=0;
};
</code></pre>
<p>The above works pretty well in practice. However, I've heard that this kind of switching over class IDs is evil and an antipattern; what's the standard, OO-way of handling serialization in C++?</p>
http://stackoverflow.com/questions/1810372/c-serialization-library-that-supports-partial-serialization0C++ serialization library that supports partial serialization?Joseph Garvin2009-11-27T19:38:22Z2009-11-27T23:15:06Z
<p>Are there any good existing C++ serialization libraries that support partial serialization? By partial serialization I mean that I might want to say, save the values of 3 specific members, and later be able to apply that saved copy to a different instance, only updating those 3 members and leaving the others intact. This would be useful for example for sending data over the network -- I have some object on a client and a server, and when a member changes on the server I want to send a message to the client containing the updated value for that member and that member only, I don't want to send a copy of the whole object over the wire. boost::serialization at a glance looks like it only supports all or nothing.</p>
http://stackoverflow.com/questions/1804070/compositecontrol-and-xml-deserialization-on-design-time-error0CompositeControl and XML Deserialization on design-time error.markiz2009-11-26T14:42:39Z2009-11-27T14:43:35Z
<p>I get "Error rendering control" error that only happens when I place the control on the webform in desgin-mode, if I run the page the control is displayed correctly.</p>
<p>After debugging, the problem is in a function that is called from CeateChildControls():</p>
<pre><code>public static ToolBars LoadToolbarsFromConfigFile()
{
ToolBars toolbars;
Assembly executingAssembly = Assembly.GetExecutingAssembly();
string resource = "Editor.ConfigFiles.ToolBars.xml";
using (Stream stream = executingAssembly.GetManifestResourceStream(resource))
{
XmlSerializer serializer = new XmlSerializer(typeof(ToolBars));
toolbars = (serializer.Deserialize(stream)) as ToolBars;
}
return toolbars;
}
</code></pre>
<p>the toolbars returns null! (in design-mode)<br>
But when I run the page, toolbars returns appropriate data.</p>
<p>If you need some more info about my code please ask. </p>
<p><strong>Update:</strong></p>
<p>It must be something with Assembly,
If I use file stream instead with specified file, it does work.</p>
http://stackoverflow.com/questions/1805498/object-serializing-performance0Object serializing performanceFaiz2009-11-26T20:23:02Z2009-11-26T22:52:08Z
<p>Let's say I have a simple tcp server generating an array inside a thread, serializes it and sends it to a client over tcp connection and when it reaches the client, the client deserializes it and performs something...ie. continuous calculation. Well it's a pretty straight forward process but I would like to know if the process has any performance tradeoff? For example would the client get to do something as fast as the thread produces the arrays, I mean for example, if the thread produces 100 arrays in a second (100 m/s), would the client get 100 arrays in a second too? can the object be serialized and deserialized at real-time? would be pleased if anyone can explain this to me.</p>
<p>well of course ignore the unreliable tcp performance.</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1795412/whats-the-fastest-way-to-save-data-and-read-it-next-time-in-a-iphone-app2What's the fastest way to save data and read it next time in a IPhone App ?sshadoww2009-11-25T08:18:22Z2009-11-26T19:43:57Z
<p>I have the following problem:
In my dictionary IPhone app I need to save an array of strings which actually contains about <b>125.000</b> distinct words; this transforms in aprox. <b>3.2Mb</b> of data.
The first time I run the app I get this data from an SQLite db. As it takes ages for this query to run, I need to save the data somehow, to read it <b>faster</b> each time the app launches. 'Till now I've tried serializing the array and write it to a file, and afterword I've tested if writing directly to NSUserDefaults to see if there's any speed gain but there's none. In both ways it takes 'bout 7sec. on the device to load the data. It seems that not reading from the file (or NSUserDefaults) actually takes all that time, but the deserialization does:</p>
<pre><code> objectsForCharacters = [[NSKeyedUnarchiver unarchiveObjectWithData:data] retain];
</code></pre>
<p>Do you have any ideeas about how I could write this data structure somehow that I could read/put in memory it faster ?</p>
http://stackoverflow.com/questions/1804441/deserialize-xml-to-custom-class-in-flex0Deserialize XML to custom Class in Flex?MysticEarth2009-11-26T15:48:47Z2009-11-26T16:23:00Z
<p>Is it possible to deserialize an XML file to a class in Flex without manually checking the XML and/or creating the class, with the help of a <code>HttpService</code>? </p>
<p><em>Edit: Explained a bit more and better.</em></p>
<p>We have an XML file which contains:</p>
<pre><code><Project>
<Name>NameGoesHere</Name>
<Number>15</Number>
</Project>
</code></pre>
<p>In Flex we want this to be serialized to our Project class:</p>
<pre><code>package com.examplepackage
{
import mx.collections.ArrayCollection;
[XmlClass]
public class Project
{
public var Name:String;
public var Number:int;
public function Project()
{
}
}
}
</code></pre>
<p>The XML is loaded with a HTTPService.</p>
http://stackoverflow.com/questions/1799154/serializable-class-inheriting-from-an-interface-with-a-property-of-its-own-type0Serializable class inheriting from an Interface with a property of its own typeJeremy2009-11-25T18:50:12Z2009-11-26T15:41:42Z
<p>I have an interface, with a definintion for a property that is the same type as the interface. </p>
<pre><code>public interface IMyInterface
{
IMyInterface parent
{
get;
set;
}
}
</code></pre>
<p>Now if I declare a class and inherit from the interface, I need to create the property called parent. I want my class to be serializable to use in a web service, but Interfaces are not serializable when used that way, so what should I do about my property of type IMyInterface? I do want that property to serialize.</p>
http://stackoverflow.com/questions/1803300/xml-in-dot-net-3-5how-to-load-xml-document-into-object-of-class-generated-from-s0Xml in Dot net 3.5:how to load xml document into object of class generated from schema?sahil garg2009-11-26T12:03:36Z2009-11-26T12:18:01Z
<p>I have defined schema for xml in file "packetTemplate.xsd".Using ms tool "xsd.exe" i have generated class "PacketTemplate" corresponding to schema.Does dot net provides api that can load xml document by refering to file and returns object of class PacketTemplate. </p>
http://stackoverflow.com/questions/1335444/unable-to-serialize-the-session-state-updated2Unable to serialize the session state... [Updated!]IP2009-08-26T15:10:26Z2009-11-26T12:02:45Z
<p>I am trying to store some objects in the session (which is using a StateServer), but I am getting the error "System.Web.HttpException: Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode"</p>
<p>I know what the error message means, but I can't work out why. All of the classes I am using are marked as Serializable, and I am able to Serialize and Deserialize the object to and from XML using: </p>
<pre><code>System.IO.StringReader stringReader = new System.IO.StringReader(xml);
System.Xml.XmlTextReader xmlTextReader = new System.Xml.XmlTextReader(stringReader);
System.Xml.Serialization.XmlSerializer xmlSerializer = new System.Xml.Serialization.XmlSerializer(typeof(Parts));
Parts obj = ((Parts)(xmlSerializer.Deserialize(xmlTextReader)));
</code></pre>
<p>This works, and will Serialize as well using: </p>
<pre><code>System.Xml.Serialization.XmlSerializer xmlSerializer = new System.Xml.Serialization.XmlSerializer(this.GetType());
System.IO.MemoryStream memoryStream = new System.IO.MemoryStream();
xmlSerializer.Serialize(memoryStream, this);
memoryStream.Seek(0, System.IO.SeekOrigin.Begin);
System.IO.StreamReader streamReader = new System.IO.StreamReader(memoryStream);
return streamReader.ReadToEnd();
</code></pre>
<p>But the error is thrown when trying to store it in the Session.</p>
<p>Does anyone have any ideas what may be causing this behaviour?</p>
<p><strong>EDIT:</strong> </p>
<p>I have just discovered that this line is causing the error (having removed everything and re-included it)</p>
<pre><code>/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("RecordReference", typeof(RecordReference), Form = System.Xml.Schema.XmlSchemaForm.Unqualified, Order = 0)]
[System.Xml.Serialization.XmlElementAttribute("PartContainer", typeof(PartContainer), Form = System.Xml.Schema.XmlSchemaForm.Unqualified, Order = 0)]
public object Item
{
get
{
return this.itemField;
}
set
{
this.itemField = value;
}
}
</code></pre>
<p>If I set this "Item" property to "new RecordReference()", then the error occurs. If it is null, it's fine.</p>
<p>So now, the question is, why can't the StateServer cope with this? It serializes fine when serializing to XML...</p>
<p><strong>EDIT...</strong></p>
<p>Type 'System.Xml.XmlElement' in Assembly 'System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' is not marked as serializable.</p>
<p>.....Are we saying that the Xml objects in C# aren't serializable?! Does anyone else think this verges on the insane?</p>
http://stackoverflow.com/questions/1487724/possible-solutions-to-poor-serialization-performance8Possible Solutions to Poor Serialization Performancethe-locster2009-09-28T15:31:38Z2009-11-26T10:26:47Z
<p>I recently did some performance testing and analysis of an ASP.NET application using out-of-process session state - this is necessary when using session state on a web farm so that state can be retrieved on any of the web servers, e.g. if subsequent HTTP requests arrive at a different server because the sessions aren't 'sticky' or the original server is down, etc.</p>
<p>What surprised me was that when I ran the web servers at full load and profiled the CPU usage something like 99% of CPU time was spent serializing and deserializing session state. Subsequently we implemented a customised 'caching' state server; this always serializes state but also keeps state in-memory so that if you use sticky sessions the state doesn't have to be deserialized most of the time. This improved server throughput by a factor of 2; However, serialization still makes up 98% or more of CPU time.</p>
<p>We obtained some further improvements in speed by 'trimming' unnecessary object references between objects in the session state prior to serialization - fixing up the references manually upon desrialization. This improved speed by another 10-20% or so. The reasoning here is that some of the performance loss is due to the built in serialization having to walk the graph of object pointers, which becomes a more complex task with more pointers.</p>
<p>Continuining the investigation we wrote customized serialization routines for some of our classes rather than relying on .Net's built-in serialization. What we found was that performance was <strong>greatly improved</strong>, by a factor of about <strong>50x</strong>. It seems the bulk of the CPU load is caused by built in .Net serialization, which in turn is slow due to reliance on using Reflection to walk the object pointers/graph and extract field data.</p>
<p>It's very tempting to boost our performance by 50x, thus reducing the web server hardware requirements by a large factor (and power requirements by a lesser but still significant factor). The options currently are:</p>
<p>1) Write customized serialization. This is an issue due to the complexity of the task and the maintenance overhead it generates, that is, any change to class state requires a change to the serialization/deserialization routines.</p>
<p>2) Some third party solution. Perhaps some product that automatically generates state save/load code at build time, thus eliminating the need to use Reflection.</p>
<p>I'd be very interested to know if anyone knows of a third party solution, or has encountered this issue as I haven't found any mention of it from internet searches.</p>
<p>UPDATE:
Some have suggested a sort of halfway solution between the default built-in serialization and pure customized serialization routines. The idea is that you implement customized serialization for the classes that affect performance the most by, e.g. overiding ISerializable. This is a interesting a promising approach; However I still think there's scope for a complete replacement for built-in serialization without having to write and maintain any custom code - this can't be done at runtime because Reflection is needed to query objects and access private data. But it is theoretically possible to post-process already built assemblies and inject new methods as an additional build step. Some profilers use this approach to inject profiling code into assemblies after they have been built by the C# compiler. Also I /think/ I read somewhere that the .Net framework supports injecting methods into classes - thus all the messing around with IL is potentially taken care of.</p>
http://stackoverflow.com/questions/1723412/android-and-protocol-buffers4Android and Protocol Buffersspaceboy20002009-11-12T16:14:07Z2009-11-26T07:55:03Z
<p>I am writing an Android application that would both store data and communicate with a server using protocol buffers. However, the <a href="http://code.google.com/apis/protocolbuffers/" rel="nofollow">stock implementation</a> of protocol buffers compiled with the LITE flag (in both the JAR library and the generated .java files) has an overhead of ~30 KB, where the program itself is only ~30 KB. In other words, protocol buffers doubled the program size.</p>
<p>Searching online, I found a <a href="http://groups.google.com/group/android-developers/browse%5Fthread/thread/c7b68765a02f74df/978cd88517a5fc25?#978cd88517a5fc25" rel="nofollow">reference</a> to an <a href="http://android.git.kernel.org/?p=platform/external/protobuf.git;a=tree;f=src/com/google/common/io/protocol;h=44814a7cc40a99cf6a866e219793976de8f283a7;hb=HEAD" rel="nofollow">Android specific implementation</a>. Unfortunately, there seems to be no documentation for it, and the code generated from the standard .proto file is incompatible with it. Has anyone used it? How do I generate code from a .proto file for this implementation? Are there any other lightweight alternatives?</p>
http://stackoverflow.com/questions/1797947/xmlserializer-doesnt-serialize-everything-in-my-class0XmlSerializer doesn't serialize everything in my classJerry2009-11-25T16:02:14Z2009-11-25T16:55:17Z
<p>I have a very basic class that is a list of sub-classes, plus some summary data.
<code></p>
<pre><code>[Serializable]
public class ProductCollection : List<Product>
{
public bool flag { get; set; }
public double A { get; set; }
public double B { get; set; }
public double C { get; set; }
}
</code></pre>
<p>...</p>
<pre><code>// method to save this class
private void SaveProductCollection()
{
// Export case as XML...
XmlSerializer xml = new XmlSerializer(typeof(ProductCollection));
StreamWriter sw = new StreamWriter("output.xml");
xml.Serialize(sw, theCollection);
sw.Close();
}
</code></pre>
<p></code></p>
<p>When I call <code>SaveProductCollection()</code> I get the following:
<code></p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<ArrayOfProduct xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Product>
<InputType>1</InputType>
</Product>
<Product>
<InputType>1</InputType>
</Product>
</ArrayOfProduct>
</code></pre>
<p></code></p>
<p>Note that I have the base type : <code>List<Product></code>. But I don't have any of the class properties: flag, A, B, C.</p>
<p>Did I do something wrong? What's up??</p>
<p><strong>UPDATE</strong> Thanks for the replies. I wasn't aware that it was by-design. I've converted to BinaryFormatter (for binary serialization instead) and it works wonderfully.</p>
http://stackoverflow.com/questions/1797200/net-json-serialization-circular-ref-error-object-involves-structuremap-vars0.NET Json Serialization Circular Ref Error (Object involves structuremap vars)GS2009-11-25T14:21:51Z2009-11-25T14:21:51Z
<p>I have a web method called from Jquery to display a hierarchical tree object. The return value is a List (Of T) , where T is hierarchical, a parent-child relationship. traversal will be from parent to child. </p>
<p>1) .Net automatically converts the return value from webmethod to JSON to send it back to js client. At that point it throws a circular ref error.
I checked code and only the parent calls the child and not the other way. But we use structureMap for dependency injection. Could this be causing the circular ref ?</p>
<p>Note: I have a test project without structureMap to display the hiearchical tree structure and I have no problems with the json serialization.</p>
<p>Any ideas on how to debug this will be helpful?</p>
http://stackoverflow.com/questions/1796719/using-a-different-type-for-a-collection-when-serializing-with-wcf0Using a different type for a collection when serializing with WCFBlixt2009-11-25T12:50:14Z2009-11-25T13:58:18Z
<p>Imagine I've got a data object that makes sense in an OO model, but for serialization I want to have its fields referencing other types replaced with simply an ID, or in some cases, a simple object with a text and an ID.</p>
<p>Is it possible to have the serializer to handle specific fields differently, or do I have to redefine a second data object class from scratch with the simplified fields and use that?</p>
<p>Example:</p>
<pre><code>Person
Guid Id
string Name
List<Person> Siblings
</code></pre>
<p>What I want to be serialized:</p>
<pre><code>Person
Guid Id
string Name
List<Guid> Siblings
</code></pre>
<p>I would like to only have the one class, <code>Person</code>, and define the serialization behavior for my service (preferably not at a data type level, since it could be serialized as both XML or JSON).</p>
<p>I know about the support for references in WCF, but in this case I will be referencing other types not included elsewhere in the result set; I only want to include their ids.</p>
http://stackoverflow.com/questions/652193/serialize-and-send-a-data-structure-using-boost2Serialize and send a data structure using Boost?Runcible2009-03-16T21:19:53Z2009-11-25T05:27:45Z
<p>I have a data structure that looks like this:</p>
<pre>
typedef struct
{
unsigned short m_short1;
unsigned short m_short2;
unsigned char m_character;
} MyDataType;
</pre>
<p>I want to use boost::serialization to serialize this data structure, then use boost::asio to transmit it via TCP/IP, then have another application receive the data and de-serialize it using the same boost libraries.</p>
<p><A HREF="http://www.boost.org/doc/libs/1_38_0/libs/serialization/doc/tutorial.html" rel="nofollow">I'm trying to following boost::serialization tutorial</A>, (<A HREF="http://stackoverflow.com/questions/523872/how-do-you-serialize-an-object-in-c" rel="nofollow">as some other SO questions have suggested</A>) but the example is specifically for writing/reading to a file, not to a socket using boost::asio.</p>
<p>I'm pretty sure I've got the right tools for the job -- I just need help making them work together. Writing to a socket can't be that different from writing to a file, right?</p>
<p>Any suggestions are very much appreciated. Thanks!</p>
http://stackoverflow.com/questions/1792027/how-to-deserialze-a-binary-file0How to deserialze a binary fileShadow2009-11-24T18:35:43Z2009-11-25T00:26:02Z
<p>I'm having some trouble figuring out how to deserialize a binary file. I mostly can't figure out how to use the second argument of SerializationInfo.GetValue(); - if I just put a type keyword there, it's invalid, and if I use the TypeCode, it's invalid as well. This is my current attempt (obviously it doesn't build).</p>
<pre><code> protected GroupMgr(SerializationInfo info, StreamingContext context) {
Groups = (Dictionary<int, Group>) info.GetValue("Groups", (Type) TypeCode.Object);
Linker = (Dictionary<int, int>) info.GetValue("Linker", (Type) TypeCode.Object );
}
</code></pre>
http://stackoverflow.com/questions/784562/datacontractserializer-how-to-serialize-classes-members-without-datacontract-dat2DataContractSerializer: How to serialize classes/members without DataContract/DataMember attributesaleemb2009-04-24T04:51:01Z2009-11-24T21:43:20Z
<p><code>DataContractSerializer</code> requires classes and members to be marked with the <code>DataContract</code> and <code>DataMember</code> attributes. However, in my case the classes are auto-generated with the EFPocoAdapater framework and these attributes are not present.</p>
<p>How can I force serialization of all members using the DataContractSerializer without these attributes being present?</p>
<blockquote>
<p>From Alexdej:</p>
<p>This changed in 3.5SP1, hope you saw
that:
<a href="http://www.pluralsight.com/community/blogs/aaron/archive/2008/05/13/50934.aspx" rel="nofollow">http://www.pluralsight.com/community/blogs/aaron/archive/2008/05/13/50934.aspx</a></p>
</blockquote>
http://stackoverflow.com/questions/1792501/does-java-serialization-work-for-cyclic-references1Does Java Serialization work for cyclic references?Brandon2009-11-24T19:50:06Z2009-11-24T20:42:47Z
<p>For example: Object A contains Object B that contains Object C that contains Object A.</p>
<p>Will Object A serialize properly?</p>
<p>Comment #9 <a href="http://www.javalobby.org/java/forums/t90318.html" rel="nofollow">here</a> indicates that it does not work .</p>
<p>In contrast, <a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a> indicates that it does handle cyclic references.</p>
http://stackoverflow.com/questions/1791946/how-can-i-ignore-a-property-when-serializing-using-the-datacontractserializer0How can I ignore a property when serializing using the DataContractSerializer?NotDan2009-11-24T18:20:23Z2009-11-24T18:39:43Z
<p>I am using .NET 3.5SP1 and DataContractSerializer to serialize a class. In SP1, they changed the behavior so that you don't have to include DataContract/DataMember attributes on the class and it will just serialize the entire thing. This is the behavior I am using, but now I need to ignore one property from the serializer. I know that one way to do this is to add the DataContract attribute to the class, and just put the DataMember attribute on all of the members that I want to include. I have reasons, though, that this will not work for me. </p>
<p>So my question is, is there an attribute or something I can use to make the DataContractSerializer ignore a property?</p>
http://stackoverflow.com/questions/1790836/what-are-the-pros-cons-of-using-amf-vs-serializing-data-between-flash-and-a-web0What are the pros/cons of using AMF vs. serializing data between Flash and a web script/service?milesmeow2009-11-24T15:34:58Z2009-11-24T17:37:51Z
<p>I was using the serializing approach between Flash and PHP for the longest time before AMFPHP had its 1.0 release (wow...that was a long time ago...in 2006)!</p>
<p>Serializing using a sepiroth's AS library paired with PHP's built in serializing functions worked and I didn't change it because it did the job.</p>
<p>Should I switch over to the AMF format and technology? One pro is that the data exchange is probably more efficient for AMF because it's a binary format.</p>
<p>I've also see other scripting languages/frameworks such as Python/Django, Ruby/Rails supporting AMF. I guess AMF is also a standard format. Does each language serialize data differently?</p>
http://stackoverflow.com/questions/1787631/boost-serialization-compile-errors-terribly-confused0Boost Serialization Compile Errors, terribly confuseduberjumper2009-11-24T03:42:10Z2009-11-24T15:13:41Z
<p>Okay so basically :</p>
<p>i have this simple example:</p>
<p>main.cpp</p>
<pre><code>using namespace VHGO::Resource;
std::list<BaseTable*> tableList;
BigTable* bt1 = new BigTable();
HRESULT hr = S_OK;
hr = bt1->Add(L"TEXTURE", L"..\\Data\\ground.png");
tableList.push_back(bt1);
std::wofstream ofs3(L"VHGOSatData.bif");
boost::archive::xml_woarchive outArch3(ofs3);
outArch3 & BOOST_SERIALIZATION_NVP(tableList);
</code></pre>
<p>And my serialization classes</p>
<pre><code>namespace VHGO
{
typedef std::wstring String;
typedef std::map<VHGO::String, VHGO::String> PropertyMap;
namespace Resource
{
class BaseTable
{
friend class boost::serialization::access;
friend std::wostream& operator<<(std::wostream& os, const BaseTable& b );
private:
template<class Archive>
void save(Archive& ar, const unsigned int version) const {}
template<class Archive>
void load(Archive& ar, const unsigned int version) {}
public:
BaseTable()
{
}
//for boost
virtual ~BaseTable()
{
}
virtual HRESULT Add(__in const VHGO::String&, __in const VHGO::String&) = 0;
virtual HRESULT Remove(__in const VHGO::String&) = 0;
virtual HRESULT Get(__in const VHGO::String&, __out VHGO::String&) = 0;
};
std::wostream& operator<<(std::wostream& os, const BaseTable& b )
{
UNREFERENCED_PARAMETER(b);
return os;
}
//////////////////////////////////////////////////////////////////////////////////////////
class BigTable : public BaseTable
{
friend class boost::serialization::access;
private:
VHGO::PropertyMap m_Values;
template<class Archive>
void serialize(Archive& ar, const unsigned int version)
{
boost::serialization::split_member(ar, *this, version);
}
template<class Archive>
void save(Archive& ar, const unsigned int version) const
{
UNREFERENCED_PARAMETER(version);
ar << boost::serialization::base_object<const VHGO::Resource::BaseTable>(*this);
ar << boost::serialization::make_nvp("bigtable", m_Values);
}
template<class Archive>
void load(Archive& ar, const unsigned int version)
{
UNREFERENCED_PARAMETER(version);
ar >> boost::serialization::base_object<BaseTable>(*this);
ar >> boost::serialization::make_nvp("bigtable", m_Values);
}
// BOOST_SERIALIZATION_SPLIT_MEMBER()
public:
BigTable(__in const VHGO::PropertyMap& propMap)
: m_Values(propMap)
{
}
BigTable()
{
}
virtual ~BigTable()
{
}
HRESULT Add(__in const VHGO::String& propKey, __in const VHGO::String& propValue)
{
//itadds
return S_OK;
}
HRESULT Remove(__in const VHGO::String& propKey)
{
/*insertchecking*/
return S_OK;
}
HRESULT Get(__in const VHGO::String& key, __out VHGO::String& aValue)
{
aValue = m_Values[key];
return S_OK;
}
VHGO::PropertyMap GetPropertyMap()
{
return m_Values;
}
};
</code></pre>
<p>What is the cause of this, ive gone through the documents, and i can make boost's examples work fine. But i cannot make this work. Ive searched around, several times and found mixed results. But i am pretty much in the dark,.</p>
<p>The compile error is this:</p>
<pre><code>Error 1 error C2664: 'boost::mpl::assertion_failed' : cannot convert parameter 1 from 'boost::mpl::failed ************boost::serialization::is_wrapper<T>::* ***********' to 'boost::mpl::assert<false>::type'
</code></pre>
<p>im using VC9.0, and using boost 1.41.</p>
<p>Does anyone have any ideas?</p>
<p><em>EDIT</em></p>
<p>Added the wrapper as suggested</p>
<p>namespace boost {
namespace serialization {
template<>
struct is_wrapper
: mpl::true_
{};
} // namespace serialization
} // namespace boost</p>
<p>Still leads to the following error</p>
<pre><code>1>d:\wrkspace\Sources\External\boost\boost/archive/basic_xml_oarchive.hpp(87) : error C2664: 'boost::mpl::assertion_failed' : cannot convert parameter 1 from 'boost::mpl::failed ************boost::serialization::is_wrapper<T>::* ***********' to 'boost::mpl::assert<false>::type'
1> with
1> [
1> T=const std::list<VHGO::Resource::BaseTable *>
1> ]
1> No constructor could take the source type, or constructor overload resolution was ambiguous
1> d:\wrkspace\Sources\External\boost\boost/archive/detail/interface_oarchive.hpp(64) : see reference to function template instantiation 'void boost::archive::basic_xml_oarchive<Archive>::save_override<T>(T &,int)' being compiled
1> with
1> [
1> Archive=boost::archive::xml_woarchive,
1> T=std::list<VHGO::Resource::BaseTable *>
1> ]
</code></pre>
<p><em>EDIT 2</em></p>
<p>I caved and tried this on gcc, and it works fine. Sadily, i absolutely need it to work on VS2008 which is the standard at work.</p>
http://stackoverflow.com/questions/1790450/net-remoting-serialisation-of-delegates0.Net Remoting - Serialisation of DelegatesRoy2009-11-24T14:34:11Z2009-11-24T14:43:09Z
<p>I have written a custom remoting formatter sink for an established application. The formatter appears to work for most cases until I try to use it to call a remote method to which I pass a call-back to a CAO. At this point I get a SerializationException indicating that I am trying to serialise the CAO, which is obviously not what I want to do. The CAO inherits from MBRO and object lifetimes do not come into play at this stage.</p>
<p>Does anyone know how I can serialise the incoming IMessage in my formatter in such a way as to preserve the reference to the CAO? I assume that I need to walk the object graph, converting the CAO to an ObjRef which can then be serialised but my problem is more fundamental as I do not have a concrete 'Message' to serialise, only an IMessage. I would prefer not to use reflection.</p>
<p>I am aware of WCF, but do not wish to migrate to it at this stage as the application is quite large.</p>
http://stackoverflow.com/questions/1790168/are-all-serializable-classes-valid-for-wcf-methods-parameters-and-or-data-contrac0Are all Serializable classes valid for WCF methods parameters and/or Data Contract members?Ian Ringrose2009-11-24T13:46:59Z2009-11-24T13:57:00Z
<p>I am in the process of porting some .net remoting code to WCF.</p>
<p>Can I safely assume that all classes that are Serializable and works as .remoting method parameters will work with WCF using the binary message encode?</p>
<p>If not is there a “rule of thumb” that I can use to estimate what problems I will hit?</p>
http://stackoverflow.com/questions/1194656/appending-to-an-objectoutputstream3Appending to an ObjectOutputStreamHamza Yerlikaya2009-07-28T14:51:03Z2009-11-24T06:29:47Z
<p>Is it not possible to append to an <code>ObjectOutputStream</code>?</p>
<p>I am trying to append to a list of objects. Following snippet is a function that is called whenever a job is finished.</p>
<pre><code>FileOutputStream fos = new FileOutputStream
(preferences.getAppDataLocation() + "history" , true);
ObjectOutputStream out = new ObjectOutputStream(fos);
out.writeObject( new Stuff(stuff) );
out.close();
</code></pre>
<p>But when I try to read it I only get the first in the file.
Then I get <code>java.io.StreamCorruptedException</code>.</p>
<p>To read I am using</p>
<pre><code>FileInputStream fis = new FileInputStream
( preferences.getAppDataLocation() + "history");
ObjectInputStream in = new ObjectInputStream(fis);
try{
while(true)
history.add((Stuff) in.readObject());
}catch( Exception e ) {
System.out.println( e.toString() );
}
</code></pre>
<p>I do not know how many objects will be present so I am reading while there are no exceptions. From what Google says this is not possible. I was wondering if anyone knows a way?</p>
http://stackoverflow.com/questions/20778/how-do-you-convert-binary-data-to-strings-and-back-in-java5How do you convert binary data to Strings and back in Java? Bill the Lizard2008-08-21T18:51:52Z2009-11-23T20:59:14Z
<p>I have binary data in a file that I can read into a byte array and process with no problem. Now I need to send parts of the data over a network connection as elements in an XML document. My problem is that when I convert the data from an array of bytes to a String and back to an array of bytes, the data is getting corrupted. I've tested this on one machine to isolate the problem to the String conversion, so I now know that it isn't getting corrupted by the XML parser or the network transport.</p>
<p>What I've got right now is</p>
<pre><code>byte[] buffer = ...; // read from file
// a few lines that prove I can process the data successfully
String element = new String(buffer);
byte[] newBuffer = element.getBytes();
// a few lines that try to process newBuffer and fail because it is not the same data anymore
</code></pre>
<p>Does anyone know how to convert binary to String and back without data loss?</p>
<p>Answered: Thanks Sam. I feel like an idiot. I had this answered yesterday because my SAX parser was complaining. For some reason when I ran into this seemingly separate issue, it didn't occur to me that it was a new symptom of the same problem.</p>
<p>EDIT: Just for the sake of completeness, I used the <a href="http://commons.apache.org/codec/apidocs/org/apache/commons/codec/binary/Base64.html" rel="nofollow">Base64</a> class from the <a href="http://commons.apache.org/" rel="nofollow">Apache Commons</a> <a href="http://commons.apache.org/codec/" rel="nofollow">Codec</a> package to solve this problem.</p>
http://stackoverflow.com/questions/804045/preferred-method-to-store-php-arrays-jsonencode-vs-serialize3Preferred method to store PHP arrays (json_encode vs serialize)KyleFarris2009-04-29T20:09:43Z2009-11-23T19:14:59Z
<p>I need to store a multi-dimensional associative array of data in a flat file for caching purposes. I might occasionally come across the need to convert it to JSON for use in my web app but the vast majority of the time I will be using the array directly in PHP.</p>
<p>Would it be more efficient to store the array as JSON or as a PHP serialized array in this text file? I've looked around and it seems that in the newest versions of PHP (5.3), <code>json_decode</code> is actually faster than <code>unserialize</code>.</p>
<p>I'm currently leaning towards storing the array as JSON as I feel its easier to read by a human if necessary, it can be used in both PHP and JavaScript with very little effort, and from what I've read, it might even be faster to decode (not sure about encoding, though).</p>
<p>Does anyone know of any pitfalls? Anyone have good benchmarks to show the performance benefits of either method?</p>
<p>Thanks in advance for any assistance.</p>
http://stackoverflow.com/questions/182323/how-to-serialize-hibernate-collections-properly1How to Serialize Hibernate Collections Properly?Henrik Paul2008-10-08T11:48:47Z2009-11-23T16:23:54Z
<p>I'm trying to serialize objects from a database that have been retrieved with Hibernate, and I'm only interested in the objects' actual data in its entirety (cycles included).</p>
<p>Now I've been working with <a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a>, which seems powerful. The problem with XStream is that it looks all too blindly on the information. It recognizes Hibernate's PersistentCollections as they are, with all the Hibernate metadata included. I don't want to serialize those.</p>
<p>So, is there a reasonable way to extract the original Collection from within a PersistentCollection, and also initialize all referring data the objects might be pointing to. Or can you recommend me to a better approach?</p>
<p>(The results from <a href="http://simple.sourceforge.net/" rel="nofollow">Simple</a> seem perfect, but it can't cope with such basic util classes as Calendar. It also accepts only one annotated object at a time)</p>
http://stackoverflow.com/questions/1474505/problem-deserializing-generic-lists-with-c-xmlserializer0Problem deserializing generic List's with C# XmlSerializerJez2009-09-24T22:24:26Z2009-11-23T15:55:57Z
<p>Hello,</p>
<p>I've come up against a bit of a brick wall with Microsoft's .net XmlSerializer. I'm trying to deserialize some XML into an object, which is fine if I'm using a single object, but the problem comes when one puts an object into a List and tries to serialize/deserialize that. First up, here's a sample C# windows console program to illustrate the problem:</p>
<p><a href="http://pastebin.com/m22e6e275" rel="nofollow">http://pastebin.com/m22e6e275</a></p>
<p>If the class 'Foo' is serialized as a root element, things behave fine, and as expected - the JezNamespace xmlns is applied to the root Foo element, and deserialization occurs fine. However if I create a List and serialize that, the XmlSerializer:
- Creates a root element of ArrayOfFoo
- Puts the Foo elements as children of that element
- Sets the xmlns of EVERY child of Foo to the JezNamespace namespace!</p>
<p>I'm OK with the first two, but the third one seems mad... maybe a bug in XmlSerializer? Is there some way I can deal with this behaviour? I don't want to be specifying my namespace for every child of Foo, I just want to specify it for Foo. If I do that, currently, XmlSerializer doesn't deserialize the class properly - it just skips over any Foo element with the JezNamespace xmlns set. I have to set ALL the child elements to have that xmlns.</p>
<p>What I'd like to get to is XmlSerializer generating something like:</p>
<pre><code><ArrayOfFoo>
<Foo xmlns="http://schemas.datacontract.org/2004/07/JezNamespace">
<Field1>hello</Field1>
<Field2>world</Field2>
</Foo>
<Foo xmlns="http://schemas.datacontract.org/2004/07/JezNamespace">
<Field1>aaa</Field1>
<Field2>bbb</Field2>
</Foo>
</ArrayOfFoo>
</code></pre>
<p>... and then have XmlSerializer be able to deserialize that properly into a List. Any ideas how I can get it doing this?</p>
http://stackoverflow.com/questions/1781889/working-of-serialization0Working of serializationKarthik.m2009-11-23T09:01:16Z2009-11-23T09:02:40Z
<p>Can anyone explain working of serialization in java</p>
http://stackoverflow.com/questions/1771105/serialize-actionscript2-array-to-vb-net0Serialize ActionScript2 array to VB.NETunknown (google)2009-11-20T15:14:58Z2009-11-22T19:54:11Z
<p>Is there any good way to serialize an ActionScript array when I have to send Adobe Flash data contained in that array to an ASP.NET page for processing ?</p>
<p>I am limited to ActionScript 2.</p>