Hello,
ok. Good to hear that the workaround helps you. Therefore, alos for the performance problem DBB the switch to X-Query could help to get a faster access to the documents.
Could you (DBB) change your directcommand in the following way?
<xapp:directcommand collection="dtbook" type="query" document="browseWithNav" arg="/dtbook" />
</pre><BR><BR>This query returns all 'dtbook' documents, but only the number of documents specified by the pagesize (default = 10) are request when the browse tag is evaluated.<BR><BR>Another possibility is to use XQuery. Since your are interested in the titles of your documents your can reduce the transferred data. The XQuery for getting the titles:<BR><BR><pre class="ip-ubbcode-code-pre">
<xapp:directcommand collection="dtbook" type="xquery" document="browseWithNav" arg="for $x in input()/dtbook return $x/head/title" />
</pre><BR><BR>To display the titles use<BR><BR><pre class="ip-ubbcode-code-pre">
<xapp:browse ...>
<xapp:display select='.' />
</xapp:browse>
I hope, that one of these approaches helps to solve your performance problem.
Bye,
Christian.
#API-Management#webMethods#Tamino