Re: null handling in apache soap2.2

2002-04-17 Thread John Mani
Hi Apache SOAP2.2 checks for 'Null' values (when using SOAP-encoding style) by checking for the attribute "xsi:null=true". (see encoding/soapenc/SoapEncUtils.java:isNull(Element)) The SOAP 1.1 spec says that NULL values are represented by setting the xsi:null attribute value to "1". i.e., "xsi:

Re: null handling in apache soap2.2

2002-04-16 Thread John Mani
ns/ideas ... thanx -john - Original Message - From: "Karappan, Raju M" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 05, 2002 12:41 PM Subject: RE: null handling in apache soap2.2 > > Aache SOAP is expecting xsi:null='true' instead of

Re: null handling in apache soap2.2

2002-04-05 Thread John Mani
Interesting ... Any schema experts that can confirm that "xsi:null='1' " is invalid ? thanx -john - Original Message - From: "Karappan, Raju M" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 05, 2002 11:41 AM Subject: RE: null h

RE: null handling in apache soap2.2

2002-04-05 Thread Karappan, Raju M
om: John Mani [SMTP:[EMAIL PROTECTED]] > Sent: Friday, April 05, 2002 12:48 PM > To: [EMAIL PROTECTED] > Subject: Re: null handling in apache soap2.2 > > > This looks like a null object to me, with xsi:null='1': > > > > > > Wouldn't an empty Person

Re: null handling in apache soap2.2

2002-04-05 Thread John Mani
also exhibits similar behaviour) -john > > > > "John Mani" > > ion.com> cc: > Subject: null handling in apache soap2.2 > 05/04/2002

Re: null handling in apache soap2.2

2002-04-05 Thread John Mani
Interestingly enough, my client writting using the JAX-RPC RI code from Sun also exhibits this same behaviour ... i.e., getting an 'empty' Person object instead of just null -john > Hi > > I'm implementing an apache SOAP client that interacts with a WebLogic 6.1 > sp2 > based SOAP server applica

Re: null handling in apache soap2.2

2002-04-04 Thread Brian BBA41 Bannister
n.com> cc: Subject: null handling in apache soap2.2 05/04/2002 08:26

Re: null handling in apache soap2.2

2002-04-04 Thread hughes_shawn
ECTED] ion.com cc: Subject: null handling in apache so

null handling in apache soap2.2

2002-04-04 Thread John Mani
Hi I'm implementing an apache SOAP client that interacts with a WebLogic 6.1 sp2 based SOAP server application. The server has a method that's supposed to return a null object. For example, Person getPerson(String id) and if this 'id' is bogus, this method returns a null object. Note that th