The goal is to unserialize a PHP serialized string and get sutable object in C#

Is there any way to make this possible in C#(.Net)?

To be more specific: We need to make an application which comunicates (Via HTTP) to specific website which returns the needed information. Fortunately/unfortunately we dont have permission to website so the data (array mostly) that is returned from website is PHP serialized.

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

Found solution: Sharp Serialization Library

link|improve this answer
feedback

I suppose using JSON as an intermediary step could be useful.

link|improve this answer
Could you be more specific? Thanks :) – George Dec 16 '09 at 13:14
Fortunately/unfortunately we dont have permission to website so the data (array mostly) that is returned from website is PHP serialized. – George Dec 16 '09 at 22:19
feedback

You should probably write it to XML or JSON. You can construct your C# object back from the XML

Edit: Looks like there is already a XML serializer for PHP

link|improve this answer
I updated the question to be more specific. – George Dec 16 '09 at 13:21
Fortunately/unfortunately we dont have permission to website so the data (array mostly) that is returned from website is PHP serialized. – George Dec 16 '09 at 22:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.