1
vote
5answers
68 views
How to get fields from such a string?
I'm importing some data from a database. The data has been stored by a CMS written in php where I have no control. Here is the data (a dense report from a paypal response):
a:56:{ …
7
votes
5answers
687 views
Convert a JSON string to object in Java?
Is there a way in Java/J2ME to convert a string, such as:
{name:"MyNode", width:200, height:100}
to an internal Object representation of the same, in one line of code?
Because …
0
votes
2answers
230 views
Class design for serialization - ideas or patterns?
Let me begin with an illustrative example (assume the implementation is in a statically typed language such as Java or C#).
Say you are building a content management system (CMS) …
4
votes
2answers
29 views
How can I deserialise an XML element into an array of elements with both attributes and text in C#?
I am having a problem trying to deserialise this XML:
<?xml version="1.0" encoding="UTF-8"?>
<links>
<link title="ABC">http://abc.co.uk</link>
< …
0
votes
4answers
52 views
C# Object Binary Serialization
I want to make a binary serialize of an object and the result to save it in a database.
Person person = new Person();
person.Name = "something";
MemoryStream memorystream = new M …
0
votes
0answers
58 views
Thrift serialisation/deserialization example for C++ ?
Is there an example showing how to serialize/deserialize C++ objects using Thrift?
(Google searches are not turning up anything remotely useful)....
Suppose I have a set of data t …
2
votes
2answers
62 views
XML Deserialization with C# .NET 3.5
I Have this XML File
<?xml version="1.0" standalone="yes"?>
<Root>
<Object>
<referenceName>People</referenceName>
<query>select * …
4
votes
2answers
63 views
Choosing the right subclass to instantiate programatically
Ok, the context is some serialization / deserialization code that will parse a byte stream into an 'object' representation that's easier to work with (and vice-versa).
Here's a si …
0
votes
3answers
29 views
WCF Disable Deserialization Order Sensitivity
I have a recurring problem when passing Serialized objects between non-.NET Clients, and .NET WCF Services.
When WCF Deserializes objects, it is strictly dependant upon the order …
0
votes
1answer
20 views
WCF DataContract with an abstract DataMember array
I can't make this scenario work. Here's the pattern-
[DataContract]
/*abstract*/ class BaseT
{ ... }
[DataContract]
class ChildT : BaseT
{ ... }
[DataContract]
class MessageCont …
0
votes
1answer
80 views
.NET 2.0 Client fails to deserialize valid Apache-SOAP web service XML, shows null for all properties
A coworker has made a Java web service running on the Apache-SOAP runtime on a Tomcat 6 server, but only tested it using Eclipse's built-in tool and SoapUI. The output of this serv …
0
votes
2answers
61 views
How to Deserialise Xml into a Dictionary<int,string> object?
Is it possible to Deserialize the following piece of XML into a Dictionary<int,string> object?
XML:
<Config>
<DatabaseConnections>
<Connection Name="So …
0
votes
0answers
12 views
Web Part Manager - Personalization Blob Data Extraction
I am adding a Personalizable Attribute to my custom implementation of WebPart class. This will be used by the Web Part Manager while rendering web parts to zones. I need to inject …
0
votes
2answers
49 views
WebOrb/Flex: How to call a method on a RemoteClass returned by a RemoteObject
I have a RemoteObject returning a 'Schedule' class. I've created a client side RemoteClass to map to it. All properties of the class instance are coming in fine. I just not clear o …
0
votes
1answer
261 views
Problem deserializing validated XML, can’t convert to/from array
I'm a bit out of my element. I've used xsd.exe to create an xsd schema from an xml file, and then to create a C# class from that xsd. That all seems to work fine.
At the moment I' …
