The serializer tag has no wiki summary.
0
votes
0answers
15 views
How i can recover a Map of objects from json?
I have this class
public static class SomeClass {
public SomeClass(String field) {
this.field = field;
}
private final String field;
public String getField() {
...
1
vote
1answer
36 views
XML Serializer, Port from MS to Mono, Order
Circumstances made it necessary to run a .NET 3.5 application on Mono. The application does not use special libraries, but relies heavily on the XML Serializer to load a complex model.
Concrete I ...
13
votes
2answers
183 views
Is there a serializer for .net which will output c# code?
I'm looking for a serializer which could take an instance, and serialize it to a string which would contain c# code, representing the contents of the graph.
The class would function similar to ...
0
votes
1answer
68 views
JMS Serializer not reading config when running PHPUnit tests in Symfony2
I'm using JMSSerializer to create JSON responses for a Symfony2 project I'm working on and a trying to build unit tests for each response but I'm hitting variations of the below:
...
1
vote
2answers
393 views
WCF - How to serialize and deserialize in JSON?
I have written few classes (Data contracts and Service contracts) in WCF and i'm trying to serialize and deserialize in JSON. If i need the following JSON structure, how would i create the ...
3
votes
1answer
248 views
ember-data customs serializing
Hello I am fairly new with ember and exploring it, I have been able to do a simple post to a resource, nevertheless it render my object like this
{"person":{"atribute1":"jjj","atribute2":"jjj"}}
...
2
votes
1answer
85 views
Custom JSON Serialization of object with “self-creating” property ends in infinite loop
In a project(in C#) that I am working on I have to use a JSON representation that also contains methods of serialized object. That is the reason why I have to implement my own serializer. The ...
0
votes
0answers
29 views
IntermediateSerializer returning empty arrays
I am developing a custom editor for my XNA game objects so I can make a graphical editor and Unity rip-off style game builder (which is going surprisingly well) but I am having some issues with the ...
0
votes
1answer
66 views
visual force remote no serializer
I am using sencha and salesforce to build a mobile SDK. My app was working just fine for my part where I was able to query object from salesforce as well as insert. But after adding my co-worker's ...
0
votes
0answers
33 views
JAX-WS generate serializer class instead of annotations
I'm newbie in generating java files from wsdl. My question is how to generate separated Test_LiteralSerializer.class postfixed files instead of generate only Test.class with annotated methods and ...
1
vote
0answers
87 views
Strange load of XML
i dont know why this generated xml: here appear from the first load (only for few seconds) as text, and after like xml. Problem is that i want to send via cURL. I thought that problem is in generating ...
1
vote
1answer
328 views
Simple XML Serializer unable to satisfy element
I'm new to this Simple XML serializer and i want to parse the IGN news feed. The problem is that i get the following error:
Unable to satisfy @org.simpleframework.xml.Element(data=true, ...
1
vote
1answer
872 views
Django Rest framework serializer exclude foreign key with depth 2
I have made an api that returns an object as json data. I Am using the django-rest-framework and its serializer. Using the resources (ModelResource) I excluded some fields, like a property called ...
0
votes
1answer
75 views
stricter XmlSerializer which does not allow unused nodes
I generated C# classes based on XSD using the xsd.exe tool from the SDK. Then I can use that class to [de]serialize objects using XmlSerializer... However the serializer seems to be very forgiving.
...
1
vote
3answers
170 views
Serialize Singleton via DataContract
I've problems to serialize and deserialize a singleton via DataContract.
First some facts:
1.) Singleton is "internal"
2.) Singleton contains Dictionaries
My serialization and deserialization ...
5
votes
3answers
1k views
Disable Doctrine 2 lazy loading when using JMS Serializer?
Im using Doctrine 2 ORM in my Zend project and need to serialize my Entities to JSON in several cases.
ATM i use the Querybuilder and join all tables i need. But my serializer causes doctrine to lazy ...
0
votes
1answer
847 views
XMLSerializer throws exception
I have a small piece of code to parse XML to JSON. It works fine until I introduce the XMLSerializer to get the JSON.
public static String convertXMLFileToString(String fileName)
{
try{
...
0
votes
0answers
224 views
Trouble with serializer Hashtable from wcf
I have a WCF service return a Hashtable as json like this:
[[Object { key="Key1", value="Value1"}, Object { key="Key2", value="Value2"}]]
But i want it be something like this:
[[{ "Key1"="Value1"}, ...
1
vote
1answer
146 views
Serialization after object removal error (NetDataContractSerializer)
I am using the NetDataContractSerializer. I can create, add and serialize objects into data file no problem; reloading the file into the GUI has no issue.
However I run into a problem when I attempt ...
1
vote
2answers
809 views
Serializing .NET DateTime to Json string
I'm writing a custom Json serializer to improve the perf of my service. And yes, I did consider Json.NET, servicestack, DataContractJsonSerializer, etc before I made the decision. My objects are flat ...
2
votes
1answer
593 views
Customize the format of Json serializer in Django?
When serializing a django model object, the format is like this:
{
"pk":1,
"model":"book",
"fields":{
"name":"BookName",
"price":"48",
Would it be more straightforward if ...
1
vote
1answer
479 views
How can I use wcf serializer for serialize objects within mongodb c# driver?
I have a class that implement IBsonSerializer:
public class PersistentObject : IBsonSerializer
{
public object Id { get; set; }
public object Deserialize(BsonReader bsonReader, ...
1
vote
2answers
126 views
Serialization and concurrency
Suppose there are two functions of x, f and g. Both change the value of x.
Case 1: Both are unserialized and are executed in parallel.
Case 2: f is serialized and g is not. They are executed in ...
4
votes
3answers
2k views
XMLSerializer to XElement
I have been working with XML in database LINQ and find that it is very difficult to work with the serializer.
The database LINQ required a field that store XElement.
I have a complex object with ...
2
votes
3answers
374 views
C# DataContractJsonSerializer fails when value can be an array or a single item
I use the DataContractJsonSerializer to parse a json string into a object hierarchie.
The json string looks like this:
{
"groups": [
{
"attributes": [
{
...
0
votes
0answers
205 views
DataContractJsonSerializer serializes without fail even though the DataContract mismatches
string json = taskOfString.Result;
Byte[] bytes = Encoding.Unicode.GetBytes(json);
MemoryStream memoryStream = new MemoryStream(bytes);
DataContractJsonSerializer serializer = new ...
0
votes
4answers
1k views
Casting objects via reflection in Java
I am writing a deserializer method, which looks like so:
public <T> T deserialize(Object[] result, String[] fields, Class<T> type);
So basically I will be passed in a result array of ...
0
votes
1answer
613 views
WCF custom serializer do not work
Want to replace wcf serializer with a custom one.
After googling I've found examples. But it do not work.
Here is my code:
Substitutor:
internal class MySerializerSubstitutor : ...
5
votes
1answer
802 views
Serializing an IEnumerable trough WCF using Protobuf-net and Monotouch for IOS
I'm trying to code a WCF service on Monotouch/Monodevelop for IOS. I was using standard attributes like [DataMember]/[DataContract] for my serializable object and [ServiceContract]/[OperationContract] ...
0
votes
0answers
606 views
XML Namespace declaration NOT at root element?
I've got a XML snippet that needs to look like:
<Item xmlns="uuid:e5fe5e94-392a-4750-a487-88c473b6759e">
<title>test name</title>
<subtitle>subtitle text</subtitle>
...
2
votes
2answers
3k views
How to get type of class without initiating object?
The consturctor of System.Xml.Serialization.XmlSerial need the type of the class I want to serialize.
instance = New AnyClass()
Dim xmlszer As New XmlSerializer(instance.GetType)
No problem. But ...
2
votes
2answers
4k views
How to get JSON String value?
var responseFromServer =
// lines split for readability
"{\"flag\":true,\"message\":\"\",\"result\":{\"ServicePermission\":true,"
+ "\"UserGroupPermission\":true}}";
var serializer = new ...
0
votes
2answers
306 views
Common serializer for php and java Object
I'd like to serialize an object from java and to unserialize this object in PhP. I saw different classes in java that does this but they are not able to serialize not primitive object.
By the way, do ...
0
votes
1answer
690 views
DOMDocument to string xerces-c
I have a parsed an XML document with xerces-c and can successfully write it to a file like the DOMPrint example, but I can not store this in an array. I see online that I should still use a ...
1
vote
2answers
153 views
Error in Passing array from javascript to PHP
I am trying to pass my array of lat and lng to my PHP script so that the script can save it to an .txt file.
i manage to serialize my array and pass it to the php script... and on the php side, i ...
1
vote
1answer
252 views
GWT client RPC request serialize
I would like to know which is the Generator used by GWT compiler to
create the javascript code that serialize the request on a RPC.
Where this string is created:
...
0
votes
2answers
459 views
What is fastest serializer in java?
I need onftenly to serialize big objects to bytes. So it is necessary to have fast serializer for it. Is there is any variants which perform better than java default one?
0
votes
1answer
352 views
NServiceBus Specify BinarySerializer for certain message types but not for all
Does NServiceBus 2.0 allow for defining serializer for given message type?
I want for all but one of my messaages to be serialized using XmlSerializer. The remaining one should be serialized using ...
6
votes
3answers
4k views
Custom WCF DataContractSerializer
I have a question. Is it possible to replace dataContractSerializer in Windows Communication Foundation with my own serializer. If it is possible, how can I achieve this?
0
votes
1answer
917 views
How to deserialize multiple objects present in a single serialized file in c#?
I have multiple "command objects" serialized on a single file. I need to get those objects back by deserializing so that I could replay those commands. Please, help me do this.
10
votes
1answer
5k views
WCF DataContracts
I have a WCF service hosted for internal clients - we have control of all the clients. We will therefore be using a data contracts library to negate the need for proxy generation. I would like to ...