all groups > dotnet web services > july 2006 >
You're in the

dotnet web services

group:

How to tell if a string element is null or really null?


Re: How to tell if a string element is null or really null? Pablo Cibraro [MVP]
7/24/2006 11:12:40 AM
dotnet web services:
It is as simple as this,

if( IsNullOrEmpty(person.lastname) )
// Echo Is null
else
// Echo Is not null

That is only valid for string types. For other kind of reference type, you
should check if it is equal to null.

if( person.lastname == null)
// Echo Is null
else
// Echo Is not null

[quoted text, click to view]

How to tell if a string element is null or really null? Jiho Han
7/24/2006 12:37:30 PM
Here's the issue.

You have a class,

Class Person
{
public int id;
public string firstname;
public string lastname;
}

when you expose it via webservice,

[WebMethod]
public void UpdatePerson(Person)
{
...
}

How do I know whether a field value has been specified or not? For value
types, there is that matching XXXXSpecified buddy field, but for string type,
there doesn't seem to be one.
So if incoming Xml looks something like this:
<Person>
<firstname>Jiho</firstname>
</Person>

when deserialized into a Person object, lastname field will contain null,
which doesn't tell me whether the field is simply missing (thus safely ignored)
or lastname field should be set to null (in the database, for example).

Any idea how to go about this?
Thanks in advance.


Jiho Han
Senior Software Engineer
Infinity Info Systems
The Sales Technology Experts
Tel: 212.563.4400 x216
Fax: 212.760.0540
jhan@infinityinfo.com
www.infinityinfo.com

Re: How to tell if a string element is null or really null? Jiho Han
7/24/2006 5:11:52 PM
Pablo,

Perhaps, it is more of a design question...

If you want a field to be set to null (think database), how would you specify
that from the client side?
If you don't include the field, it's null on the server. If you set it to
null, it's still null on the server.
My point is that there seems to be no way of knowing whether the client intended
a field to be set to null vs. skip the field for processing becasue it's
missing from the xml.
i.e.)
<Person>
<Lastname>Han</Lastname>
<Firstname/>
</Person>

and

<Person>
<Lastname>Han</Lastname>
</Person>

deserializes into an identical object state.

[quoted text, click to view]

Re: How to tell if a string element is null or really null? Kevin Spencer
7/25/2006 12:00:00 AM
An XML document, and in particular, a SOAP document, is not quite as simple
as you seem to think. It can indicate whether the value is null or not.
Example:

<SomeObject xsi:nil="true" />

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Chicken Salad Alchemist

Sequence, Selection, Iteration.

[quoted text, click to view]

Re: How to tell if a string element is null or really null? Jiho Han
7/25/2006 12:32:10 PM
Kevin,

I understand that the xml received by the soap endpoint is different. However,
when the xml document is deserialized into an object, there is no difference
- or rather I don't know of a way - between:

<Person>
<Lastname xsi:nil = "true"/>
</Person>

vs.

<Person>
</Person>

When it gets deserialized into an object,

Person person = <from soap response>
person.Lastname == null // true for both!

If there is a way to tell the difference, that'd be great. Is there some
kind of a hook into the soap deserialization scheme?

[quoted text, click to view]

Re: How to tell if a string element is null or really null? Kevin Spencer
7/25/2006 3:21:41 PM
I haven't personally encountered this situation. However, I think that
applying some custom formatting to the SOAP XSD might do the trick. See
http://msdn2.microsoft.com/en-us/library/k1y9z356.aspx

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Chicken Salad Alchemist

Sequence, Selection, Iteration.


[quoted text, click to view]

Re: How to tell if a string element is null or really null? Jiho Han
7/25/2006 9:33:55 PM
Hello Kevin,

I am not exactly sure that will help. It doesn't seem to matter how the
SOAP is formatted, the end result is that when the XmlSerializer consumes
an incoming xml, it's same. Once in object form, there is no way to tell
which format it came in.
This is a bit frustrating. Thanks for your help though.

Jiho

[quoted text, click to view]

Re: How to tell if a string element is null or really null? John Saunders
7/26/2006 12:54:41 PM
Is there a difference between the two in the XML InfoSet model?

John

[quoted text, click to view]

Re: How to tell if a string element is null or really null? Jiho Han
7/27/2006 12:39:03 PM
John,

I don't know, you tell me, are these two different?

<Person>
<FirstName xsi:nil = "true" />
<Person>

<Person>
</Person>

Thanks

[quoted text, click to view]

Re: How to tell if a string element is null or really null? Jiho Han
7/27/2006 12:44:58 PM
(Answering my own question) from the w3c rec,

2.6.2 xsi:nil

XML Schema: Structures introduces a mechanism for signaling that an element
should be accepted as ·valid· when it has no content despite a content type
which does not require or even necessarily allow empty content. An element
may be ·valid· without content if it has the attribute xsi:nil with the value
true. An element so labeled must be empty, but can carry attributes if permitted
by the corresponding complex type.

which tells me, "nillability" is strictly about the content of an element.
So in that case, a missing optional element vs. a nillable element which
possibly can carry attributes, are different.

btw, in my schema, FirstName would be defined this ways:

<xs:element name="FirstName" minOccurs="0" nillable="true"/>

Thanks
Jiho

[quoted text, click to view]

Re: How to tell if a string element is null or really null? John Saunders
7/27/2006 2:31:27 PM
[quoted text, click to view]

I don't know, either, which is why I asked the question.

They certainly don't appear to be different in the intent of the document
creator.

John

Re: How to tell if a string element is null or really null? John Saunders
7/27/2006 2:33:04 PM
[quoted text, click to view]

Ok, so is there a difference to you between a person with no first name, and
a person with ... no first name?

John

Re: How to tell if a string element is null or really null? Jiho Han
7/27/2006 6:54:48 PM
Actually, the intention is what you make of it in this case, because I am
the publisher of the schema.

If I am accepting the document for an update method, for example, I could
take the first form as saying set FirstName to null and the second form as
saying, well, nothing. Don't do anything to FirstName at all.

All this to say, the default xml deserialization does not distinguish between
the first and the latter.
I think, though, I can use a custom schema provider for this, then implement
IXmlSerializable on the class so that I can examine the xsi:nil attribute
upon deserializing. We'll see how that goes.

[quoted text, click to view]

Re: How to tell if a string element is null or really null? John Saunders
7/28/2006 9:45:26 PM
You could also try changing the schema to include the two alternatives
clearly specified. You could, for instance, create a global "doNotTouch"
attribute, and use it on the <FirstName> or wherever else. The sender could
explicitly indicate what he wants to do, and this question of similarities
would be moot.

John


[quoted text, click to view]

AddThis Social Bookmark Button