Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

xsi:nil="true" in soap request

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

Any help is appreciated

like image 551
rayss Avatar asked Sep 19 '25 02:09

rayss


1 Answers

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.

like image 62
Brian Driscoll Avatar answered Sep 22 '25 06:09

Brian Driscoll