Serialization is the process by which an object is converted into a format that can be stored and later retrieved.

learn more… | top users | synonyms (7)

3
votes
0answers
162 views

Better approach for implementing 2 similar classes

I am importing and exporting from the XPDL standard using C#. I have written a hierarchy for classes using XPDL 2.1 and have debugged serialization with XmlSerializer. I need to implement XPDL 2.2. ...
3
votes
0answers
163 views

Rails 2.3.14: How to serialise an ActionController::Request object?

I need to write some methods that Do Things based on the kind of request object received by a Rails 2.3.14 controller. However, I don't want to fire up the entire application, nor even a controller; ...
3
votes
0answers
345 views

Context value is null in ISerializationSurrogate

I have an ISerializationSurrogate implementation that I want to pass some data in to. According to the MSDN article (http://msdn.microsoft.com/en-us/library/h58hxyt6.aspx) you can pass in an ...
3
votes
0answers
842 views

Issue generating correct proxy objects from WSDL

I'm having an issue with the WSDL generator in .NET. It is missing out on complex types in one specific method. Response from web service <?xml version="1.0" encoding="UTF-8"?> ...
2
votes
0answers
18 views

JSON response from WCF escapes name values

I am trying to return a dictionary from a WCF REST service as a JSON object. I want the format to be {"key": "value"} so I have created my own class as described here and here. The service method ...
2
votes
0answers
50 views

Boost serialization tutorial program, error after running

I just installed boost-serialization with default options and get this result ashot@ashot-desktop:~/boost_1_53_0$ sudo ./b2 install Component configuration: - atomic : not ...
2
votes
0answers
65 views

How to control JSON.NET serialization of System.Data.Spatial.DbGeometry

I have a DB First Entity Framework 5 Data Access Layer that is mapped to a table containing a SQL geometry type field called CenterCoordinate. The resulting entity contains this: public ...
2
votes
0answers
65 views

C# Custom XML Serialization adding extra attributes

I have class public class ConfigurationItem { public String Type { get; set; } public String Value { get; set; } } Ant folowing code serializes static void Main(string[] args) { ...
2
votes
0answers
37 views

Modifying ServiceStack's JSON output

I have to build a REST service with ServiceStack; the responses must have a certain format. Both JSON and XML are to be supported. The standard serializers do not return the response in the format I ...
2
votes
0answers
60 views

About Deep Copy and Serialization

I have read a lot about deep copying and serialization in Java List, Map, etc, but I did not find good answers to a some questions. I care for time and performance, so I am looking for a compromise. I ...
2
votes
0answers
40 views

Binding Issue with custom control inside a RichTextBox

I'm totally stumped by this one. Here's the setup: RichTextBox that has your standard runs, and paragraphs. When user selects some text, hits a hotkey, I replace the selected text with a custom ...
2
votes
0answers
27 views

How do I find out what archive format is being used?

I'm doing a hobby project on some game data files. I would like to edit some things in them and repackage them so the game accepts the modifications. The directories themselves were archived in a ...
2
votes
0answers
64 views

Serialization of boost::shared_ptr through a custom archive

I'm trying to serialize a boost::shared_ptr to a custom archive. The main problem I'm facing is that the boost::serialization code for shared_ptr requires the archive to have both a 'reset' and an ...
2
votes
0answers
149 views

What is correct way to structure delphi compound components for stream reading?

I am having trouble reloading a saved compound component in Delphi where the subcomponent (a TChart) appears to be being created twice. When I create my component in code, it works fine. My component ...
2
votes
0answers
63 views

Is WCF text and mtom encoding also binary encoding?

I need help understanding message encoding in WCF. As I understand it, messages are encoded in Binary, Text or Mtom -- there may be others. What confuses me is that once you get to the bottom of the ...
2
votes
0answers
371 views

ServiceStack.Text json serializer with dynamic

I'm using ServiceStack.Text library to serialize dynamic generated objects (Anonymous Types) it works like charm, but there is a situation it gives me the following error Unable to cast object of ...
2
votes
0answers
75 views

jQuery Serialize Data producing strange output

I have a strange problem that I am not able to wrap my head around. Now this is just test code that will eventually be implemented but for now, for the sake of the enormous code I have already written ...
2
votes
0answers
165 views

Json.net: Conditional Property Serialization - per web request

In some applications, its handy to allow the consumer of a web endpoint to specify which subset of properties they want in the returned object graph, customized per request. The caller would indicate ...
2
votes
0answers
86 views

Protobuf.net is taking more time to process compared to DataContractSerializer

I have a WCF service consumed by silverlight application. To improve the performance of my application i considered using protobuf.net. To support silverlight application, operation contracts have ...
2
votes
0answers
104 views

Determine the variable name of binary file id - POST request with PHP

This started as a simple question and now has become more of a personal challenge than a question. Here goes! Background I have a mobile application that collects user-specified data via standard ...
2
votes
0answers
68 views

change field from within function

Okay, this should be my last question for now :) Anyway, I have a String called mode and ArrayLists called lines and components that get edited in my program by various functions. Everything works ...
2
votes
0answers
50 views

Whats the difference between binary_oarchive and basic_binary_oarchive?

Cant find any discussion on this, what should I use?
2
votes
0answers
68 views

Binary serialization frameworks or libraries for node.js

I am interested in finding out what binary serialization frameworks/libraries are there for node.js. I tried to use Apache Thrift, but the documentation is very poor and does not offer any example ...
2
votes
0answers
139 views

How can I XML serialize a synchronized ArrayList?

When I try to serialize and deserialize an ArrayList wrapped in Collections.synchronizedList using beans.XMLEncoder and beans.XMLDecoder, I get the following error: ...
2
votes
0answers
62 views

how to retreive true_type from an archive?

Context I use the Boost serialization library to save and load objects of a system. I defined practices around this lib, and so I always serialize from a base class (every class serializable inherits ...
2
votes
0answers
132 views

Filtering fields and sub-fields in Jackson

For some JSON: { "id":123, "name":"Test", "sub_object":{ "sub_field_1":1, "sub_field_2":2, "sub_field_array":[ { "array_field_1":true, "array_field_2":false ...
2
votes
0answers
208 views

Is there a ready-made component to transform java *.properties file into corresponding json?

I suppose it's not hard to write one, but I'm just wondering is there something ready-made, that could fix this task in one line and with no additional coding? It's especially helpful if you want to ...
2
votes
0answers
156 views

Wcf streaming deserialization exception

I have a very strange problem when using streaming mode in wcf. Here are my server and client configurations. Server config: <system.serviceModel> <services> <service ...
2
votes
0answers
1k views

Json DateTime serialization is different in DataContractJsonSerializer and System.Json

How can I force DataContractJsonSerializer to accept System.Json DateTime serialization format (ISO 8601) ? The problem is that System.Json output "2012-03-01T16:24:55.000" format but ...
2
votes
0answers
78 views

Calling original deserialise method from a customer serialised class

Ok, so lets say that I have a class as outlined below: [serializable] class foobar { List<Object> Bar; <methods etc n stuff> } Ok, so quite straight forward. Now, lets add a ...
2
votes
0answers
68 views

wadofstuff django serializers and manytomanyfields with “through” parameter

With wadofstuff django full serializers v. 1.1.0, I noticed that models with ManyToManyFields that specify a "through" model do not get serialized, even if you specify them explicitly with the ...
2
votes
0answers
113 views

why cxf jax-rs date field serialization have colon?

my class-entity for rest cxf service has a Date field. The format from the Jettison JsonProvider is: "date":"2012-08-13T16:40:07.281-03:00" But from the GSon client it's formatted for iso8601 ...
2
votes
0answers
130 views

NULL character found in serialized string

I am unable to unserialize() a backtrace that I serialize()'d and saved to a text file. I cannot also copy-paste the string, it only copies the data before NULL so I am unable to unserialize it back ...
2
votes
0answers
173 views

Data.Binary best practices — when to be strict and how

Inspired by this StackOverflow question, I'd like to ask the community about the best practice regarding Binary. When I noticed that my large list of Hyperedges (a simple algebraic data structure) ...
2
votes
0answers
183 views

RestKit serialization of Core Data relationship

I have a CoreData backed contact object that has a one-to-many relationship to both email and phone_number entities. All objects mentioned here are NSManagedObjects. The phone_number and email entity ...
2
votes
0answers
254 views

Serialize and deserialize in Android

I'm developing a Restful web services in Java using JERSEY technology. I have currently developed all the server side. The client side of this project would be an Android application. I have done ...
2
votes
0answers
330 views

Serializing with Messagepack

I like to serialize my java class object using Messagepack. My class structure is such that public class A { private InnerClass obj; //Some other variables with getters and setters. // ...
2
votes
0answers
425 views

Serializing & Deserializing a Struct Array

In the following bit of code, I am observing that the marshaler is reading past the 3 byte source array to populate another 8 bytes of data. With time, the code eventually throws a memory access ...
2
votes
0answers
91 views

Custom data contract serializer for faults

Is there a way to replace the default data contract serializer for faults? A custom data contract serializer can be attached by replacing the default DataContractSerializerOperationBehavior on each ...
2
votes
0answers
74 views

How to force an archive to store true_type even if it is this_type?

This topic deals with boost serialization. When I serialize a polymorphic object, an archive stores the information about true_type (i.e. the concrete type of an object) only if it is not equal to ...
2
votes
0answers
201 views

Tiny C++ YAML reader/writer

I'm writing an embedded C++ program, and need to add serialization/deserialization. The format should be human readable and writeable, and I would much prefer to use (a subset of) a standard format ...
2
votes
0answers
684 views

Error in deserializing body of reply message for operation

I ran into a problem when communicating with SOAP Axis web service using Service Reference method with dotNet. It seems when dotNet client deserializing the incoming xml steam, it expects an array, ...
2
votes
0answers
121 views

msgpack-python Unable to allocate internal buffer

I used msgpack-python 0.1.12 in a uwsgi server with python2.7.2 . After running for some time, the server will throw a lot of exceptions as follows: File "_msgpack.pyx", line 171, in ...
2
votes
0answers
174 views

Hessian deserializes java.lang.Character as a String

I've used Hessian for a while but just noticed the following behavior. If you serialize a java.lang.Character in Hessian, it deserializes as a String. public class TestHessianChar { public ...
2
votes
0answers
105 views

serialization format for arrays in R, python/numpy/scipy, C++, matlab

What is the best format for serializing data in all these languages. "Best" means most support for libraries. My answer so far in the .mat format (from matlab). I am also mostly caring about writing ...
2
votes
0answers
372 views

What's the best way to get a dynamic object from JSoN without third party libraries?

I'm looking for the easiest/best way to convert JSON to a dynamic object, preferably without any third party dependencies (for various reasons). Currently, I have the following, but it required ...
2
votes
0answers
241 views

Explicit BinaryFormatter serialization when Constructor is not called

Some background about my problem: I have a lot of classes that implement ISerializable and are designed to be serialized using the explicit BinaryFormatter methods: .ctor(SerializationInfo info, ...
2
votes
0answers
367 views

Serializing Map<String, List<Something>> SimpleXML (Sourceforge)

I'm using the sourceforge SimpleXML framework to serialize and deserialize some objects into XML. I tried serializing a Map<String, List<String>> like this: @ElementMap(attribute = true, ...
2
votes
0answers
227 views

XML-JSON Converter Rules

I'm using net.sf.json.xml.XMLSerializer to convert XML documents to JSON. I'm getting two different results for almost two similar XML documents. My code is: public static void main(String[] args) ...
2
votes
0answers
256 views

How to override default behavior in Json.Net JsonConverter

I wish to peel off a proxy object before serialization, and figured I could do that in JsonConverter.ReadJson(). However since the JsonConverter.ReadJson() is abstract, there is no default behavior ...

1 2 3 4 5 35