tags:

views:

15

answers:

1

Hi,

I have xsi:nil="true" in my soap request. What does mean? How can I pass value on that?

Any help is appreciated

+1  A: 

The nillable attribute indicates that the element that the attribute is on is present but has no value, similar to NULL in most programming languages.

If you want to assign a value to the element you can do so, however you'll have to remove the xsi:nil attribute first, otherwise you'll get an error.

Brian Driscoll
I cannot remove it because that is part of the soap request. Im trying to import data through API
rayss