Hi,

BasicSearch works in the current slide. You could use the BasicClient to try
it. You may find the BasicClient here:
http://developer.softwareag.com/tamino/download.htm#webdav

set Header something like: (content length will be adjusted automatically)

SEARCH /slide HTTP/1.1 
Host: localhost:8080
Content-type: text/xml; charset="utf-8" 
Content-length: xxx

set the content to something like

<?xml version="1.0" encoding="UTF-8"?>
<searchrequest xmlns:D="DAV:">
<D:basicsearch>
<D:select>
  <D:prop>
    <D:displayname/>
    <D:getcontentlength/>
    <D:getcontenttype/>
</D:prop>
</D:select>
<D:from>
  <D:scope>
    <D:href>mycoll/</D:href>
  </D:scope>
</D:from>
<D:where>
  <D:gt>
    <D:prop>
      <D:getcontentlength/>
    </D:prop>
    <D:literal>10000</D:literal>
  </D:gt>
</D:where>
</D:basicsearch>
</searchrequest>

You'll get all documents that have a contentlength > 10000 bytes within the
collection "mycoll".


Best regards,
Martin

-----Original Message-----
From: Ben Switzer [mailto:[EMAIL PROTECTED]
Sent: Montag, 21. Juli 2003 03:23
To: [EMAIL PROTECTED]
Subject: BasicSearch



Can someone tell if the BasicSearch implementation works.  If so, can
you include a how to perform a simple search.

Thanks,
Ben


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to