Hi,
i’ve go a problem with a xquery-statment.
my xml looks like:
<files>
<file>
<owner></owner>
<name></name>
<size></size>
<extension></extension>
<creationTime></creationTime>
<lastWriteTime></lastWriteTime>
<lastAccessTime></lastAccessTime>
<path></path>
<parentDirectory></parentDirectory>
<rootDirectory></rootDirectory>
</file>
</files>
my xquery-statement looks like:
let $all := input()/files
for $name in distinct-values($all/file/name/text()),
$owner in ($all/file/owner),
$size in ($all/file/size),
$cTime in ($all/file/creationTime),
$lTime in ($all/file/lastAcceessTime),
$path in ($all/file/path)
return (count($all[file/name=$name]), $owner, $name, $size, $cTime, $lTime, $path)
the errormessage is:
A runtime exception occurred. See the details for the trace.
i don’t find any description for xplxpe0021 even in the internet nor in taminodescription.
any idea where the fault is?
- might there is a problem with the ressources?
thanks for answering
#webMethods#Tamino#API-Management