0
votes
1answer
34 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
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', ...
0
votes
0answers
44 views

Laravel 3/4 Save DB object in Database

I am trying to figure out how to build a query with laravel's query builder, and save the query builder object. Something like this: // Build Query $query = DB::table('users'); ...
0
votes
1answer
61 views

Write serializable object from Array

I have a little problem with this thing. I tried to make an array where the user enters data, and the data needs to be saved in an object.obj file. This is my code: import java.util.*; public ...
-4
votes
2answers
42 views

How to convert a custom object into String in Android?

I have an Object of a custom class. I need to convert it into a String so that I can write it to a file. Is there a way out for this ? thanks for help.
1
vote
1answer
82 views

Serializing and Deserializing Multiple Objects

I am making an error logging library which creates a file in a specified location, then saves the error information in that file, which can then be read by a separate tasker program that I intend to ...
-1
votes
2answers
47 views

java Serialize Object to ByteArray

Hy guys! I've been searching for some old posts about Serialization in Java. I want to convert an Object into a ByteArray. So far I´ve done this: public class test { public static void ...
0
votes
1answer
66 views

Why the Deserialize is not working?

I've been working in a serialized object implementation using webServices, the data will be consumed by a desktop application I perform de following Operation in the webservices and it works fine: ...
0
votes
2answers
71 views

readObject() is not working and breaks from method

I'd like to read different kinds of objects from file to an ArrayList, all of them are instances of class which extend the class Advertisement. I'm trying with this code: ArrayList ...
0
votes
1answer
69 views

Object Serialization/Deserialization and FileInputStream.available()

I am thinking up a way to get around the whole bad habit that is using an infinite loop to read in objects. My algorithm involves iteratively checking if (FileInputStream("myFile.ser").available() ...
0
votes
0answers
36 views

XMLEncoder - Runtime Exception

I have been playing around with serialization-XML in java and am a little stuck. When I run this program I get two exceptions and I am not sure what the cause is: java.lang.InstantiationException: ...
0
votes
0answers
33 views

javascript variable saving to database as object when I want it to save as a string

I'm trying to save registration info to Parse (a cloud based system for the backend) from the facebook registration plug in. Parse is saving the "location" variable from the registration form as an ...
0
votes
0answers
54 views

Deserialization to external file on mapped drive works once and not after that C#

I am having difficulty in dealing with the inconsistency of the behavior of the program when it is loading data by inflating objects from a file. The file path to savefile is an absolute path in the ...
0
votes
1answer
213 views

System.Runtime.Serialization.InvalidDataContractException Windows Phone 8

I am trying to save an object into isolated storage but received A first chance exception of type 'System.Runtime.Serialization.InvalidDataContractException' occurred in ...
0
votes
1answer
72 views

Appending Objects to a serialization file

Suppose you have some AppendObjectOutputStream class (which is an ObjectOutputStream!) which overrides writeStreamHeader() like this: @Override public void writeStreamHeader() throws IOException { ...
0
votes
1answer
93 views

Sending objects to localhost server using java?

How do I create a .ser file or write objects to a .ser file in a localhost server? The following code can read .ser file : public Object deserialize(InputStream is) { ObjectInputStream in; ...
0
votes
1answer
48 views

Difference between serialization and writing and reading data structures to a binary file?

serialization is kind of like storing data objects to enable us to transfer them anywhere but how is different from just simply writing a object or data structure to a binary file ...???
3
votes
5answers
77 views

Can two classes that are the same be serialized and unserialized?

So lets say I have a class in Java and it stores data and I take an object and serialized it and saved that into a file. And I have another project with the exact same class, but it was still defined ...
0
votes
1answer
101 views

StreamCorruptedException being caught?

I am having trouble storing an object onto the device storage. At first I was getting a NotSerializableException so I made the object Serializable and now in the try {} catch {} block it is throwing a ...
3
votes
2answers
82 views

The Magic Fairies of Object Serialization

System.out.println("Hello brave souls!"); I have a few questions about Object Serialization. I am working on a new version of my math game, and forgot to have it save the game mode on the last three ...
4
votes
2answers
56 views

php serializing objects whose properties evolve (object evolution)

This is my first question on SO, though I've searched substantially; I apologize if this has already been touched on. The question/issue has to do with PHP's serialize() functionality. I am using ...
-1
votes
3answers
274 views

Saving a C# object to a file [closed]

I'm to implement a new member application without the use of databases. I'm planning to create a class to define each member, with fields defining name, department etc. I wish to save a list of these ...
0
votes
3answers
68 views

How to obtain an object from a string?

Say I have the following class class Test: def TestFunc(self): print 'this is Test::TestFunc method' Now, I create an instance of the class Test >>> >>> t = Test() ...
0
votes
1answer
64 views

I can't serialize form from the object

I use scroll-pagination as a plugin in my page, And I use form to pass value to url i'm fetching the result. After loaded new form will dynamically add to my page,and I want to serialize the new form ...
0
votes
2answers
72 views

java serialization with different JVM version

I'm using a 3rd party tool of objectPlanet called easyChart to produce graphical chart. They provide a jar lib called Chart.jar and ChartServer.jar I write an easyChart object on server side: Chart ...
0
votes
1answer
67 views

Appending New Object to the existing file

Hi I have an issue when trying to append new objects to the existing file.. Once the android app has been lunched again I want to get the existing file and add a new objects then read the objects ...
1
vote
1answer
65 views

XML to Objects in VB

What i want to do is take any given .xml file and turn it into a object in VB code. My program will grab a .xml file from a website and change it into a object. Then i will be running query's against ...
2
votes
2answers
75 views

what are those numbers in php serialize output

class Aclas { private $v = 1; private $z; protected $y; public $xy; } $obja = new Aclas; echo serialize( $obja ); I get the output as follows ...
0
votes
2answers
228 views

Serialize ArrayList of Objects

I have an ArrayList which stores a custom object. I want to serialize that ArrayList to a string so I can save it inside the Application settings. This question looks to resolve it, but is in java. ...
0
votes
3answers
301 views

ObjectOutputStream, ObjectInputStream, and headers [closed]

I am trying to understand object serialization better, so I am practicing with some code I got from my textbook. (My textbook doesn't explain how to read and write/append objects to a serialization ...
-2
votes
2answers
76 views

Save object for later use, if my app is killed [duplicate]

Possible Duplicate: State of variables inside an Android activity If android OS kills my application (which uses service ) due to low memory, then it will try to run it again. From ...
0
votes
3answers
158 views

Serializing Timespan in Dictionary<string, object> with Json.NET

I have a property that is actually a Dictionary. And I keep many types in this dictionary like TimeSpans, DateTimes, etc. But serializing and deserializing TimeSpans are wrong and it deserializes as ...
3
votes
2answers
67 views

Stringify timestamp object

How can i JSON.stringify the following data-structure? var Records = { 1357775376232: { pageX: 0, pageY: 0, scrollLeft: 0, scrollTop: 0, target: #document, ...
0
votes
1answer
317 views

Store ObjectOutputStream in FTP causes java.net.SocketException: Software caused connection abort: socket write error

I am trying to store an custom defined (ProjectData) Java object in a file in FTP . ProjectData class implements Serializable interface.I am using apache Commons Net FTP client.I have a custom class ...
0
votes
1answer
104 views

How to serialize an “Object” type in PHP to be sent to a WCF Service?

My WCF Service can accept a request to update a field dynamically by passing the value wrapped in an Object and a DynamicAttributeType enum to specify the type, like so: [DataContract] ...
0
votes
2answers
35 views

Receiving serializable objects and displaying the contents

I'm writing an app in java that sends an object down a socket. At the other end of the connection I have another app that needs to receive the object and display the contents....... I got my app to ...
1
vote
0answers
69 views

Objective C framework which serializes object trees into XML

I am searching a framework or library which serializes objects in Objective C into XML. There are libraries like WonderXML, but they only serialize properties with simple data types like string, int ...
0
votes
1answer
81 views

Retrieving an Object through Serialization

I am trying to seriliaze an Object having a reference to another Object as instance variable. I follow the common way, nevertheless I cannot retrive in the main() method the second Object (which is ...
0
votes
1answer
83 views

how to deserialize objects without knowing its type or existance of its class to cast

Hi everybody please do me a favor, I have many custom classes with the same structure, for example all of them have property pattern and properties of their objects are important for me to ...
1
vote
3answers
369 views

No map for object error when deserializing object

I have the following C# code which is supposed to serialize arbitrary objects to a string, and then of course deserialize it. public static string Pack(Message _message) { BinaryFormatter ...
0
votes
2answers
77 views

Serialize unknown object to xml

I have an object which I am hoping to send via a WCF service, this needs to be able to serialize and object which I may not know the type of. I see that this works with primative types, however with ...
0
votes
1answer
115 views

Map java-object with all subclasses to json string

I know how to serialize java objects. but what if I have an objects and inside another object that is null? e.g. My 1st class: public class Invoice { private Adresse adresse; private Double ...
0
votes
0answers
115 views

Object to Json conversion : Error on adding an Integer count to the object

This is the code that I want to implement Function Foo(..,..){ for (UserPictures userPicture : userPictures) { ++objectId; out = new StringWriter(); // ...
0
votes
1answer
24 views

Sending an object to a client computer after connection made

I have a program that currently works as a chat server. It's a turn based card game with a chat box to communicate with the opponent. The chat stuff all works over the connection, but I'm to the point ...
0
votes
1answer
44 views

Reliably identify the class of a serialized Java object

I am in need of reliably identifying the class of a serialized object in Java without deserializing it. So far I have found that the raw data stream will contain the class name. However someone could ...
0
votes
2answers
77 views

problems with a passed PDO Object after unserialize

Hello I serialized an object (Class Users) to set it in $_SESSION array,when the user login my website that object is set it in $_SESSION and later is unserialized for use methods,but I have a ...
2
votes
2answers
44 views

How to pass a javascript object to a PHP file while using ajax

I have a javascript object which I want to pass to a PHP file while using jQuery's ajax-implementation. I've tried to directly pass it to it but this doesn't work, because it isn't escaped or ...
0
votes
2answers
182 views

How to read an ArrayList from Serialized file? [closed]

I cannot get my ArrayList to get the information from my allergyFile. I can get the GUI interface displaying correctly, but the ArrayList displays blanks when called. Any ideas? The problem I have ...
0
votes
1answer
27 views

storing serialized objects to disk instead of using a database

I'm building a small application and I'd rather not have the expense (hosting, hassle) of a database. I'm thinking of just writing a class (call it Settings) for each user, and serializing it to disk ...
1
vote
1answer
39 views

Complete representation of a dict extended superclass

Given this code: class XmlObj(dict): def __init__(self,xml,*args,**kwargs): super(dict,self).__init__(*args,**kwargs) if xml.firstChild.nodeName == '#text': ...

1 2 3 4