You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-dev@xml.apache.org by Scott Nichol <sn...@scottnichol.com> on 2002/09/13 16:25:24 UTC

Arrays in Apache SOAP

Array support in Apache SOAP is minimal.  There is currently no support for
multi-dimensional arrays, arrays of arrays, partially transmitted arrays and
sparse arrays.  Refer to the array description in the SOAP 1.1 spec for more
detail (http://www.w3.org/TR/SOAP/#_Toc478383522).

I will continue to contemplate implementation of some of these features, but
I do not have a time frame in which any would be completed.

Scott Nichol



--
To unsubscribe, e-mail:   <ma...@xml.apache.org>
For additional commands, e-mail: <ma...@xml.apache.org>


Re: Arrays in Apache SOAP

Posted by Scott Nichol <sn...@scottnichol.com>.
Correction: "I don't think this is not an array of arrays" should be "I
don't think this is an array of arrays".

Scott Nichol

----- Original Message -----
From: "Scott Nichol" <sn...@scottnichol.com>
To: <so...@xml.apache.org>
Sent: Friday, September 13, 2002 14:32
Subject: Re: Arrays in Apache SOAP


> I don't think this is not an array of arrays.  It is an array of Object,
> which I presume you [de-]serialize with BeanSerializer.  The String[] and
> Object[] are then bean properties.
>
> Scott Nichol
>
> ----- Original Message -----
> From: "Malte Kempff" <ke...@medicalcolumbus.de>
> To: <so...@xml.apache.org>
> Sent: Friday, September 13, 2002 14:21
> Subject: AW: Arrays in Apache SOAP
>
>
> > Hi,
> > I am pretty supprised of this message, because today I successfully
> > implemented a Soapservice
> > having array of array.
> >
> > Object[2] having
> >    - String[]
> >    - Object[] having
> > Vectors
> >
> > I don't know if I am just lucky or having just a leck of understanding
> >
> > I found out, that char[] seem not to be supported (at least, when they
are
> > in an Array)
> >
> > bye,
> >
> > Malte Kempff
> > -----Ursprüngliche Nachricht-----
> > Von: Scott Nichol [mailto:snicholnews@scottnichol.com]
> > Gesendet: Freitag, 13. September 2002 16:25
> > An: soap-dev@xml.apache.org; soap-user@xml.apache.org
> > Betreff: Arrays in Apache SOAP
> >
> >
> > Array support in Apache SOAP is minimal.  There is currently no support
> for
> > multi-dimensional arrays, arrays of arrays, partially transmitted arrays
> and
> > sparse arrays.  Refer to the array description in the SOAP 1.1 spec for
> more
> > detail (http://www.w3.org/TR/SOAP/#_Toc478383522).
> >
> > I will continue to contemplate implementation of some of these features,
> but
> > I do not have a time frame in which any would be completed.
> >
> > Scott Nichol
> >
> >
> >
> > --
> > To unsubscribe, e-mail:   <ma...@xml.apache.org>
> > For additional commands, e-mail: <ma...@xml.apache.org>
> >
> >
> >
> > --
> > To unsubscribe, e-mail:   <ma...@xml.apache.org>
> > For additional commands, e-mail: <ma...@xml.apache.org>
> >
> >
>
>
> --
> To unsubscribe, e-mail:   <ma...@xml.apache.org>
> For additional commands, e-mail: <ma...@xml.apache.org>
>
>


Re: Arrays in Apache SOAP

Posted by Scott Nichol <sn...@scottnichol.com>.
Correction: "I don't think this is not an array of arrays" should be "I
don't think this is an array of arrays".

Scott Nichol

----- Original Message -----
From: "Scott Nichol" <sn...@scottnichol.com>
To: <so...@xml.apache.org>
Sent: Friday, September 13, 2002 14:32
Subject: Re: Arrays in Apache SOAP


> I don't think this is not an array of arrays.  It is an array of Object,
> which I presume you [de-]serialize with BeanSerializer.  The String[] and
> Object[] are then bean properties.
>
> Scott Nichol
>
> ----- Original Message -----
> From: "Malte Kempff" <ke...@medicalcolumbus.de>
> To: <so...@xml.apache.org>
> Sent: Friday, September 13, 2002 14:21
> Subject: AW: Arrays in Apache SOAP
>
>
> > Hi,
> > I am pretty supprised of this message, because today I successfully
> > implemented a Soapservice
> > having array of array.
> >
> > Object[2] having
> >    - String[]
> >    - Object[] having
> > Vectors
> >
> > I don't know if I am just lucky or having just a leck of understanding
> >
> > I found out, that char[] seem not to be supported (at least, when they
are
> > in an Array)
> >
> > bye,
> >
> > Malte Kempff
> > -----Ursprüngliche Nachricht-----
> > Von: Scott Nichol [mailto:snicholnews@scottnichol.com]
> > Gesendet: Freitag, 13. September 2002 16:25
> > An: soap-dev@xml.apache.org; soap-user@xml.apache.org
> > Betreff: Arrays in Apache SOAP
> >
> >
> > Array support in Apache SOAP is minimal.  There is currently no support
> for
> > multi-dimensional arrays, arrays of arrays, partially transmitted arrays
> and
> > sparse arrays.  Refer to the array description in the SOAP 1.1 spec for
> more
> > detail (http://www.w3.org/TR/SOAP/#_Toc478383522).
> >
> > I will continue to contemplate implementation of some of these features,
> but
> > I do not have a time frame in which any would be completed.
> >
> > Scott Nichol
> >
> >
> >
> > --
> > To unsubscribe, e-mail:   <ma...@xml.apache.org>
> > For additional commands, e-mail: <ma...@xml.apache.org>
> >
> >
> >
> > --
> > To unsubscribe, e-mail:   <ma...@xml.apache.org>
> > For additional commands, e-mail: <ma...@xml.apache.org>
> >
> >
>
>
> --
> To unsubscribe, e-mail:   <ma...@xml.apache.org>
> For additional commands, e-mail: <ma...@xml.apache.org>
>
>


--
To unsubscribe, e-mail:   <ma...@xml.apache.org>
For additional commands, e-mail: <ma...@xml.apache.org>


Re: Arrays in Apache SOAP

Posted by Scott Nichol <sn...@scottnichol.com>.
I don't think this is not an array of arrays.  It is an array of Object,
which I presume you [de-]serialize with BeanSerializer.  The String[] and
Object[] are then bean properties.

Scott Nichol

----- Original Message -----
From: "Malte Kempff" <ke...@medicalcolumbus.de>
To: <so...@xml.apache.org>
Sent: Friday, September 13, 2002 14:21
Subject: AW: Arrays in Apache SOAP


> Hi,
> I am pretty supprised of this message, because today I successfully
> implemented a Soapservice
> having array of array.
>
> Object[2] having
>    - String[]
>    - Object[] having
> Vectors
>
> I don't know if I am just lucky or having just a leck of understanding
>
> I found out, that char[] seem not to be supported (at least, when they are
> in an Array)
>
> bye,
>
> Malte Kempff
> -----Ursprüngliche Nachricht-----
> Von: Scott Nichol [mailto:snicholnews@scottnichol.com]
> Gesendet: Freitag, 13. September 2002 16:25
> An: soap-dev@xml.apache.org; soap-user@xml.apache.org
> Betreff: Arrays in Apache SOAP
>
>
> Array support in Apache SOAP is minimal.  There is currently no support
for
> multi-dimensional arrays, arrays of arrays, partially transmitted arrays
and
> sparse arrays.  Refer to the array description in the SOAP 1.1 spec for
more
> detail (http://www.w3.org/TR/SOAP/#_Toc478383522).
>
> I will continue to contemplate implementation of some of these features,
but
> I do not have a time frame in which any would be completed.
>
> Scott Nichol
>
>
>
> --
> To unsubscribe, e-mail:   <ma...@xml.apache.org>
> For additional commands, e-mail: <ma...@xml.apache.org>
>
>
>
> --
> To unsubscribe, e-mail:   <ma...@xml.apache.org>
> For additional commands, e-mail: <ma...@xml.apache.org>
>
>


Re: Arrays in Apache SOAP

Posted by Scott Nichol <sn...@scottnichol.com>.
I don't think this is not an array of arrays.  It is an array of Object,
which I presume you [de-]serialize with BeanSerializer.  The String[] and
Object[] are then bean properties.

Scott Nichol

----- Original Message -----
From: "Malte Kempff" <ke...@medicalcolumbus.de>
To: <so...@xml.apache.org>
Sent: Friday, September 13, 2002 14:21
Subject: AW: Arrays in Apache SOAP


> Hi,
> I am pretty supprised of this message, because today I successfully
> implemented a Soapservice
> having array of array.
>
> Object[2] having
>    - String[]
>    - Object[] having
> Vectors
>
> I don't know if I am just lucky or having just a leck of understanding
>
> I found out, that char[] seem not to be supported (at least, when they are
> in an Array)
>
> bye,
>
> Malte Kempff
> -----Ursprüngliche Nachricht-----
> Von: Scott Nichol [mailto:snicholnews@scottnichol.com]
> Gesendet: Freitag, 13. September 2002 16:25
> An: soap-dev@xml.apache.org; soap-user@xml.apache.org
> Betreff: Arrays in Apache SOAP
>
>
> Array support in Apache SOAP is minimal.  There is currently no support
for
> multi-dimensional arrays, arrays of arrays, partially transmitted arrays
and
> sparse arrays.  Refer to the array description in the SOAP 1.1 spec for
more
> detail (http://www.w3.org/TR/SOAP/#_Toc478383522).
>
> I will continue to contemplate implementation of some of these features,
but
> I do not have a time frame in which any would be completed.
>
> Scott Nichol
>
>
>
> --
> To unsubscribe, e-mail:   <ma...@xml.apache.org>
> For additional commands, e-mail: <ma...@xml.apache.org>
>
>
>
> --
> To unsubscribe, e-mail:   <ma...@xml.apache.org>
> For additional commands, e-mail: <ma...@xml.apache.org>
>
>


--
To unsubscribe, e-mail:   <ma...@xml.apache.org>
For additional commands, e-mail: <ma...@xml.apache.org>


AW: Arrays in Apache SOAP

Posted by Malte Kempff <ke...@medicalcolumbus.de>.
Hi,
I am pretty supprised of this message, because today I successfully
implemented a Soapservice
having array of array.

Object[2] having
   - String[]
   - Object[] having
	Vectors

I don't know if I am just lucky or having just a leck of understanding

I found out, that char[] seem not to be supported (at least, when they are
in an Array)

bye,

Malte Kempff
-----Ursprüngliche Nachricht-----
Von: Scott Nichol [mailto:snicholnews@scottnichol.com]
Gesendet: Freitag, 13. September 2002 16:25
An: soap-dev@xml.apache.org; soap-user@xml.apache.org
Betreff: Arrays in Apache SOAP


Array support in Apache SOAP is minimal.  There is currently no support for
multi-dimensional arrays, arrays of arrays, partially transmitted arrays and
sparse arrays.  Refer to the array description in the SOAP 1.1 spec for more
detail (http://www.w3.org/TR/SOAP/#_Toc478383522).

I will continue to contemplate implementation of some of these features, but
I do not have a time frame in which any would be completed.

Scott Nichol



--
To unsubscribe, e-mail:   <ma...@xml.apache.org>
For additional commands, e-mail: <ma...@xml.apache.org>



--
To unsubscribe, e-mail:   <ma...@xml.apache.org>
For additional commands, e-mail: <ma...@xml.apache.org>


AW: Arrays in Apache SOAP

Posted by Malte Kempff <ke...@medicalcolumbus.de>.
Hi,
I am pretty supprised of this message, because today I successfully
implemented a Soapservice
having array of array.

Object[2] having
   - String[]
   - Object[] having
	Vectors

I don't know if I am just lucky or having just a leck of understanding

I found out, that char[] seem not to be supported (at least, when they are
in an Array)

bye,

Malte Kempff
-----Ursprüngliche Nachricht-----
Von: Scott Nichol [mailto:snicholnews@scottnichol.com]
Gesendet: Freitag, 13. September 2002 16:25
An: soap-dev@xml.apache.org; soap-user@xml.apache.org
Betreff: Arrays in Apache SOAP


Array support in Apache SOAP is minimal.  There is currently no support for
multi-dimensional arrays, arrays of arrays, partially transmitted arrays and
sparse arrays.  Refer to the array description in the SOAP 1.1 spec for more
detail (http://www.w3.org/TR/SOAP/#_Toc478383522).

I will continue to contemplate implementation of some of these features, but
I do not have a time frame in which any would be completed.

Scott Nichol



--
To unsubscribe, e-mail:   <ma...@xml.apache.org>
For additional commands, e-mail: <ma...@xml.apache.org>