0

次の WSDL コンテンツがあります。

<s:element minOccurs="0" maxOccurs="1" name="SystemName" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="SystemPassword" type="s:string"/>
<s:element minOccurs="1" maxOccurs="1" name="MS_ZIHUY" type="s:int"/>
<s:element minOccurs="1" maxOccurs="1" name="KOD_CHEVRA" type="s:int"/>
<s:element minOccurs="0" maxOccurs="1" name="FAMILY_NAME" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="FIRST_NAME" type="s:string"/>
<s:element minOccurs="1" maxOccurs="1" name="KOD_MIN" nillable="true" type="s:int"/>
<s:element minOccurs="1" maxOccurs="1" name="BIRTH_DATE" nillable="true" type="s:dateTime"/>
<s:element minOccurs="0" maxOccurs="1" name="SMOKING" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="CURRENT_OCCUPATION" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="INTERNET_INDICATOR" type="s:string"/>
<s:element minOccurs="1" maxOccurs="1" name="MS_SOCHEN_MEVUTACH_VIP" type="s:int"/>
<s:element minOccurs="0" maxOccurs="1" name="SEMEL_YESHUV" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="SHEM_YESHUV" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="SEMEL_RECHOV" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="SHEM_RECHOV" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="MS_BAIT" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="MS_DIRA" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="MS_KNISA" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="OT_BAIT" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="MIKUD" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="TA_DOAR" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="MARITAL_STATUS" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="MS_KIDOMET_TELEFON" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="MS_TELEFON" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="MS_KIDOMET_NAYAD" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="MS_NAYAD" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="MS_KIDOMET_FAX" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="MS_FAX" type="s:string"/>
<s:element minOccurs="0" maxOccurs="1" name="EMAIL" type="s:string"/>
<s:element minOccurs="1" maxOccurs="1" name="KOD_DIVUR_SHIVUKI" nillable="true" type="s:int"/>
 <s:element minOccurs="1" maxOccurs="1" name="KOD_DIVUR_SHIVUKI_ELC" nillable="true" type="s:int"/>

しかし、このフィールドでnullを送信したい場合は、そのように0を送信する必要があります:

<tem:FAMILY_NAME>0</tem:FAMILY_NAME>
<tem:FIRST_NAME>0</tem:FIRST_NAME>

これは役に立ちません:

<tem:FAMILY_NAME/>
<tem:FIRST_NAME/>

null を送信したい場合はどうすればよいですか

4

2 に答える 2

0
<item:FAMILY_NAME  i:nil="true" />

私はこれをhttp://www.w3.org/TR/2001/REC-xmlschema-0-20010502/で 2.9 Nil Values で読みました

于 2013-03-19T05:53:51.720 に答える
0

指定する必要はないと思います。書くなよ

<tem:FAMILY_NAME/>

これらのパラメーターを無視すると、デフォルト値として実行されます (オブジェクトの場合は null)。

于 2013-03-18T20:57:35.273 に答える