You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by "Pill, Juergen" <Ju...@softwareag.com> on 2000/11/21 12:51:52 UTC

Object not found

Hello,

During a large copy of folders and files into a webdav folder following
printlns appear (I have marked them in the output with ****). I have
searched for them a found them in following exception handlers. Do you think
they harm, or are they just information output.

1)	XMLUnmarshaller .loadObjectNode
2)	GetMethod .executeRequest
3)	PropPatchMethod. ExecuteRequest


...
Tue, 21 Nov 2000 12:47:36 GMT+01:00 - default - INFO - Basic permissions
granted for user 
Tue, 21 Nov 2000 12:47:36 GMT+01:00 - default - INFO -  (time: 0 ms) - MKCOL
on object /files/ToBeStoreInTaminoSmall/folder1/nestedOne/nested2/nested3
Tue, 21 Nov 2000 12:47:36 GMT+01:00 - default - INFO -  (time: 0 ms) -
PROPFIND on object
/files/ToBeStoreInTaminoSmall/folder1/nestedOne/nested2/nested3
****No object found at
/files/ToBeStoreInTaminoSmall/folder1/nestedOne/nested2/nested3/patient4.xml
Tue, 21 Nov 2000 12:47:37 GMT+01:00 - default - INFO -  (time: 47 ms) - HEAD
on object
/files/ToBeStoreInTaminoSmall/folder1/nestedOne/nested2/nested3/patient4.xml
Tue, 21 Nov 2000 12:47:37 GMT+01:00 - default - INFO - Checking basic
permissions on new object
Tue, 21 Nov 2000 12:47:37 GMT+01:00 - default - INFO - Basic permissions
granted for user 
...
Tue, 21 Nov 2000 12:47:45 GMT+01:00 - default - INFO -  (time: 0 ms) - HEAD
on object
/files/ToBeStoreInTaminoSmall/folder1/nestedOne/nested2/nested3/patient4.xml
****No object found at
/files/ToBeStoreInTaminoSmall/folder1/nestedOne/nested2/patient4.xml
Tue, 21 Nov 2000 12:47:49 GMT+01:00 - default - INFO -  (time: 0 ms) - HEAD
on object
/files/ToBeStoreInTaminoSmall/folder1/nestedOne/nested2/patient4.xml
...
Tue, 21 Nov 2000 12:47:49 GMT+01:00 - default - INFO -  (time: 16 ms) - HEAD
on object
/files/ToBeStoreInTaminoSmall/folder1/nestedOne/nested2/patient4.xml
****No object found at
/files/ToBeStoreInTaminoSmall/folder1/nestedOne/patient4.xml
...
Tue, 21 Nov 2000 12:47:57 GMT+01:00 - default - INFO -  (time: 15 ms) - HEAD
on object /files/ToBeStoreInTaminoSmall/folder1/nestedOne/patient4.xml
****No object found at /files/ToBeStoreInTaminoSmall/folder1/patient4.xml
Tue, 21 Nov 2000 12:48:01 GMT+01:00 - default - INFO -  (time: 0 ms) - HEAD
on object /files/ToBeStoreInTaminoSmall/folder1/patient4.xml
Tue, 21 Nov 2000 12:48:01 GMT+01:00 - default - INFO - Checking basic
permissions on new object
...
Tue, 21 Nov 2000 12:48:01 GMT+01:00 - default - INFO -  (time: 203 ms) - PUT
on object /files/ToBeStoreInTaminoSmall/folder1/patient4.xml
Tue, 21 Nov 2000 12:48:01 GMT+01:00 - default - INFO -  (time: 0 ms) - HEAD
on object /files/ToBeStoreInTaminoSmall/folder1/patient4.xml
****No object found at /files/ToBeStoreInTaminoSmall/patient4.xml
Tue, 21 Nov 2000 12:48:05 GMT+01:00 - default - INFO -  (time: 15 ms) - HEAD
on object /files/ToBeStoreInTaminoSmall/patient4.xml


Best regards
Juergen Pill


Re: Object not found

Posted by Remy Maucherat <re...@apache.org>.
> Hello,
>
> During a large copy of folders and files into a webdav folder following
> printlns appear (I have marked them in the output with ****). I have
> searched for them a found them in following exception handlers. Do you
think
> they harm, or are they just information output.
>
> 1) XMLUnmarshaller .loadObjectNode
> 2) GetMethod .executeRequest
> 3) PropPatchMethod. ExecuteRequest

If the "no object found" error is displayed if you do a HEAD on the object
*before* creating it with a PUT, then it's fine. If the error happens after
doing a PUT, then it's not normal.

Remy