Serialization is the process by which an object is converted into a format that can be stored and later retrieved.
0
votes
3answers
28 views
Is it possible to update serialized content without unserialize
suppose that array contents 10 items with a item name age as second item with value 10
it is stored in mysql array after serialization
Is it possible to update that age inside serialized mysql query ...
5
votes
2answers
93 views
Serialization - differences between C++ and Java
I've recently been running some benchmarks trying to find the "best" serialization frameworks for C++ and also in Java. The factors that make up "best" for me are
the speed of de/serializing and also ...
0
votes
2answers
25 views
Most efficient way to store, pass, and parse simple array data in PHP
My PHP script is receiving data from an HTML input as an array:
<input type="checkbox" name="value[]" value="1" />
<input type="checkbox" name="value[]" value="2" />
<input ...
0
votes
1answer
14 views
Java Serialization of PrintService Attributes
From my search, I think this is a pretty good summary of my problem. Perhaps, I'm serializing or de-serializing the objects wrong? Or if the serialization is correct, is there a fix/workaround to my ...
2
votes
3answers
745 views
Override Django Object Serializer to get rid of specified model
I need to convert a Django Queryset Object into a Json string. The built in Django Serialization library works great. Although it specifies the name of the Model from where it was created. Since I ...
2
votes
3answers
2k views
Java Spring Jackons Date serialization
I'm using Spring MVC and Jackson for JSON de/serialization. But im facing a problem with serializing a date.
By default Jackson serialize a date as an epoch. But i want to serialize it as a ISO date ...
0
votes
0answers
22 views
how to handle methods of serialized object which are dependent on transient state
I have two closely related issues with serializing objects. This is part of a major refactor where I'm already 'locked in' to some design behaviors. I'm considering taking previously mutable objects ...
0
votes
2answers
51 views
Preferred way to serialize an object with Boost/C++ in binary format
I would like to serialize instances of a class and send them over TCP connection using C++ / Boost libraries. There are too many working examples out there... Some using text streams for buffers and ...
1
vote
4answers
356 views
Hessian serialization library for javascript?
I am just getting started with Hessian and have been surprised to discover that there is apparently no library for Hessian functionality (particularly serialization / deserialization) in javascript. I ...
0
votes
0answers
19 views
XML serialization number generation
I'm making a text based game at present.
I want my XML to be in this sort of structure:
<North>
<1> </1>
<2> </2>
<3> </3>
<4> </4>
...
2
votes
2answers
101 views
How do I ensure SerializeJSON keeps trailing/leading zeroes?
EDIT 3 Problem below exists for Coldfusion 9.0, updating to 9.0.1 does indeed fix this
I have an application that is using SerializeJSON to encode query results:
#SerializeJSON('Ok works fine')#
...
0
votes
2answers
24 views
Compare date in serialized string MySQL Query
It is not my code, its something that I need to get it done without modifying the structure of table. I know it would be very easy to just store date as MySQL date format but I cant do that.
There is ...
1
vote
1answer
44 views
WCF returns ArrayOfKeyValueOfintstringKeyValueOfintstring[] instead of Dictionary<int, string> and Array instread of List
So I've spent the last several hours investigating this issue and it is clear that I am not the only one. Why are my Dictionaries and Lists being returned as Arrays?
I understand that Arrays are ...
0
votes
1answer
36 views
Why does my WCF Service have trouble returning custom object?
So my question is much like this one: WCF service: Returning custom objects, however, despite the solutions in that question I see nothing working.
Yesterday I proposed a question related to this ...
0
votes
0answers
14 views
Serializing Xpo objects through WCF
Good evening/morning everyone,
before posting this issue, i've been sending my objects with a traditional way from the client side ( aspx page ) to a WCF data service, the approch i've been using ...
0
votes
0answers
21 views
Java NIO: Object serialization
I'm trying to send a serialized object from a NIO client to a NIO server, but I don't know how to get the serialized object into the ByteBuffer.
Some further questions:
How do I choose the right ...
1
vote
0answers
54 views
c# serialization - complex type containing simple content with attributes
I have an existing solution that has used svcutil to create a set of classes based on an XSD schema. I am now having to make edits to that schema and I have run into a bit of a stumbling block.
...
0
votes
2answers
21 views
Save Queue to File, Then load it and compare with Original
I have a Problem saving a Queue to a file, loading it afterwards into a new queue and then compare the old Queue with the new Queue.
I have a simple TestMessageClass, now i want to serialize the ...
6
votes
4answers
9k views
How to serialize a class that contains objects of other classes (recursive serializing?)
How can I do this? Or will the serializer automatically go with recursion, and serialize all those child objects into XML?
Give me an example how would you serialize classes that contain other ...
0
votes
1answer
40 views
Serialize Entity Collection in XML in c#
i m trying to serialize an object that holds entitycollection in it. i can do simple serialization using
public string Serialize<T>(T item)
{
XmlSerializer mySerializer = ...
1
vote
1answer
24 views
Can an existing object be passed into a Boost.Serialization load?
I'm using Boost's Serialization library to save and load the state of an app. The objects rely on a TCP connection. Right now I'm distributing a pointer to the TCP connection into the objects after ...
1
vote
1answer
22 views
serialize NHibernate.Configuration with protobuf-net
I am trying to swap a BinaryFormatter implementation with protobuf-net. The use case is to be able to serialize and deserialize the NHibernate.Configuration object. The "configuration" object is ...
1
vote
0answers
16 views
In Protobuf-net Serialize a Array of List of Objects [duplicate]
Hello in my c# project I am trying to Serialize a class with contains a list[] (Array of a List of a Object)
[ProtoMember(7)]
public List<Player>[] arrayListPlayer{ get; set; }
I was ...
0
votes
0answers
37 views
Java Serialization to a JSON string using reflection
Ok, so I am just getting into advanced topics like reflection in Java for an OOPrograming class at my university and am finding myself in deep water (for me anyway). We were given an assignment that ...
0
votes
0answers
17 views
Spring annotation based configuration for spring remote (HttpInvokerServiceExporter)
I am trying to create a service using spring http invoker. I looked at
http://static.springsource.org/spring/docs/3.2.x/spring-framework-reference/html/remoting.html#remoting-httpinvoker
It is all ...
-2
votes
0answers
34 views
Custom/Manual serialization
Okay, so I have the class seen below, and I have a bit of a problem. I want everything about this class saved to a file. There are a few things that I don't need saved, but nevertheless, I want ...
0
votes
0answers
22 views
python serialize the whole package?
although load_source of imp module is already removed from library docs (as of python 3.3), you can still use it to dynamically import python modules.
it has third optional parameter, a file(or ...
0
votes
2answers
72 views
WCF Method throwing SerializationException
So I'm self hosting a WCF service. When I call my GetProject() method via the client I get a Unhandled CommuncationException with an InnerException of
"The underlying connection was closed: An ...
1
vote
3answers
746 views
PHP 5 - serializing objects and storing their relationship
I am writing a fairly complex PHP applications where a single user action can trigger changes in many other sub-systems, and I'm contemplating using an observer pattern. However, I am wondering if I ...
1
vote
2answers
62 views
Serializing a reference in PHP
I would like to know why my serialization in php does not work as expected:
<?
$x = "whatever...";
$y = array(&$x, "test, 1-2, 1-2...", &$x);
$yy = unserialize(serialize(&$y));
$y[0] = ...
2
votes
3answers
79 views
Why does a binary serialization of a float use 55 bytes?
I have a task to take millions of floats and store them in the database in batches of 5,000, as binary. This is forcing me to learn interesting things about serialization performance.
One of the ...
0
votes
1answer
23 views
Serialization of ISolution - Roslyn CTP3
I have been experimenting with Roslyn in the context of meta-programming, but have encountered difficulties in persisting ISolution or IProject objects to a database. Here is what I have tried to ...
23
votes
9answers
13k views
EF 4.1 - Code First - JSON Circular Reference Serialization Error
I am getting an a Circular Reference Serialization Error although, to my knowledge I do not have any circular references. I am retrieving a set of Orders from the database and sending them to the ...
1
vote
0answers
12 views
zeroc Ice serialize Sequence of non-primitives
ZeroC Ice serialization seems pretty easy for sequences of primitives or buildin types:
out = Ice::createOutputStream(communicator);
vector<Ice::Byte> data = ...;
out->write(&v[0], ...
1
vote
1answer
34 views
Load cv::RTrees from memory
I use OpenCv for image classification. After training I've saved model to *.yaml.gz. Then I've added this file to embedded resources. Now I need to load model from resource, but OpenCv allows only ...
1
vote
2answers
25 views
Extending SQLServerPreparedStatement in java
i'm trying to serialize a prepared statement and store it in a file as object but the object created by my sql driver is of type 'SQLServerPreparedStatement' and is not serializable so i tried to ...
0
votes
1answer
26 views
Passing objects via EJB RMI - NullPointerException
I haven't been able to find anything useful in days of searching. Maybe I'm just not looking the right place.
Here's the idea - really simple: I want to pass an object from one EJB to another by the ...
2
votes
1answer
24 views
Is protobuf-net suited for serializing arbitrary object/domain models?
I have been exploring the CQRS/DDD-principles and patterns for a while now and have started implementing a sample project where I have split my storage-model into a WriteModel and a ReadModel. The ...
0
votes
0answers
20 views
JPA CriteriaBuilder: Predicate with a Serializable field throws an exception
I have an entity with a persistent field declared as Serializable.
I would like to build a query with the CriteriaBuilder, that filters the results by the Serializable field.
The database is Oracle, ...
0
votes
1answer
45 views
How to serialize the result of a query in python?
I'm having trouble to serialize the result array from a query where one of its projection is of datetime property.
My model class looks as follows:
class ActivitySummaries(ndb.Model):
...
1
vote
2answers
44 views
PHP - How to unserialize data using ( UNSERIALIZE )
Here is a code which serialize data and then unserialize it.
class magicmethod {
protected $name = array('Arfan','Azeem','Haider');
protected $fruit = array('Apple','Bannana');
protected $animal = ...
0
votes
2answers
72 views
Python query objects are not serializable
When I tried to encode the query objects I get the following error:
File "C:\Program File\Python27\lib\json\encoder.py", line 264, in iterencode
return _iterencode(o, 0)
File ...
15
votes
7answers
10k views
SerializationPolicy error when performing RPC from within GWT application
I'm getting the following exception:
com.google.gwt.user.client.rpc.SerializationException: Type 'java.lang.Long' was not included in the set of types which can be serialized by this ...
0
votes
1answer
23 views
Different classes with same serialversion uid
AM having a strange doubt. All I want to know is,
suppose if I have two classes, (100% same structure) in two different locations (packages or projects), and I take care of generating same ...
0
votes
3answers
881 views
Why ASP.net Website taking High CPU with just few visitors?
We are working on shopping cart website with more than 1 lakh products, made on the top of popular e-commerce application - NopCommerce version 2.3 (Just to introduce you to NopCommerce - It's a one ...
10
votes
4answers
2k views
EF4 Cast DynamicProxies to underlying object
I'm using Entity Framework 4 with POCO template.
I have a List where MyObject are dynamic proxies. I want to use the XmlSerializer to serialize this list, but I don't want them serialized as ...
2
votes
2answers
35 views
Visual C++, CArchive Serialize
I learn Visual C++ with Visual Studio 2010.
I tried to use Serialize function of MFC CObject.
I can't load my object with Serialize function
My code:
#include <afxwin.h>
#include ...
0
votes
1answer
19 views
php var_export object - forgot to serialize before storing
I have a project where last developer forgot to serialize objects before storing them into database. Now I have:
stdClass::__set_state(array(
'id' => '1',
'name' => 'John',
...
6
votes
3answers
2k views
How to set formatting with JavaScriptSerializer when JSON serializing?
I am using JavaScriptSerializer for serializing objects to the file to the JSON format. But the result file has no readable formatting. How can I allow formating to get a readable file?
0
votes
0answers
25 views
Protocol Object
hi i am triyng to develop a distributed app, i am studiyng the use of protocol buffer for serialization matters, but i have a few question:
say i have a structure like that:
message Person {
...




