vote up 0 vote down star

I have a class called Test which has four public properties and one of them is static. the problem is after deserialization the static property contains null value. i have debugged the code and found that at server side it contains the value which is a collection , but at client side it becomes null after deserialization. i know static members doesn't serialize and deserialize so obviously it shud contain the value.

flag

0% accept rate
Are you using WCF? If so, you might like to mention this or re-tag your question. – Drew Noakes Sep 18 at 12:04

3 Answers

vote up 2 vote down

If the static value is initialised when the type is loaded (via a field initialiser or via the type initialiser/static constructor) then it should contain the value.

If however, the server side static value is initialised as a side effect of some method call, then you would have to reproduce this method call on the client as well.

link|flag
hi i m still facing the problem. let me tell in more detailed. i call my server side using web service. i found in debugging that after OnDesrialize method collection becomes null. While debugging I found that some text"transition from client to server" and after that deserialization calls and the collection becomes null. it htorws soapexception. pls can somebody tell me more abt ths. – Punit Singhi Sep 18 at 5:19
Hi Punit. I think you will have to post some more information in the original question. If you could extract some of the code from your class (including the [OnDeserialised] or [OnDeserialising] methods) it would be helpful. – Drew Noakes Sep 18 at 12:03
vote up 1 vote down

I'm not sure I understand...as you say in your question:

i know static members doesn't serialize and deserialize...

Given that, why would you expect the value from the server to propagate to the client? You will need to find an alternative means of transferring this property (make an instance property, send your own message, etc.)

link|flag
vote up 2 vote down

Static variables are global and stateful - thus they exist solely in the context of the application, or in other words, memory.

You could pass the value of the static property in another non-static property, but you can't send your application's memory down to the client.

link|flag

Your Answer

Get an OpenID
or

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