Hi

The vector was introduced when I changed how the property names are
stored. Not in a Enumeration that can only be used once but to use an
array.

I'll change that Vector.add to Vector.addElement
that should work according to the spec of personal java 1.1.2
But can you first check if Vector.toArray is supported?
It is also a "new" method and is used in many places.

Can you tell me a little about what you are doing ?
Until now I never thought about supporting personal java but a
"personal" webdav client could be very usefull.
I would look at your website but my japanese is not that good ;-)


Dirk



Yoshiyuki Kumadaki wrote:
> 
> Hi,
> 
> I am testing Slide client with Personal Java3.1.
> Slide client 1.0.11 was compatible with Personal Java.
> 
> Slide client 1.0.15 is using un compatible method for Personal Java
> in Line318 of org.apache.webdav.lib.methods.PropFindMethod.setPropertyNames()
> .
> Personal Java3.1 is not supporting
> java.util.Vector add(object) method
> 
> Would you change this method?
> 
> org.apache.webdav.lib.methods.PropFindMethod.setPropertyNames()
> Line 318:     list.add(item);
> 
>             Object item = propertyNames.nextElement();
> 
>             if (item instanceof PropertyName)
>             {
>                 list.add(item); //<----------This line
>             }
> 
> java.lang.NoSuchMethodError: java.util.Vector: method
> add(Ljava/lang/Object;)Z not found
>         at org.apache.webdav.lib.methods.PropFindMethod.setPropertyNames()
>         at org.apache.webdav.lib.methods.PropFindMethod.<init>()
> 
> --
> Yoshiyuki Kumadaki / 熊懐 善之
>  Web Japan Co.,Ltd / (株)ウ瘢雹エブジャパン
> <http://www.webjp.co.jp/>

Reply via email to