I want to set nonXML and webdav up for one collection. and I tried to follow below steps:
-
Install the nonXMLindexing SXS on the DB (and add the extra classpath)
-
Modify the nonxmlxindexing schemas to refer to a specific collection/doctype (office/office)and define them.
-
Create a new webdav folder below http://localhost/mydb/ino:dav/ino:dav in my case “test”
-
create a proppatch for the collection
<D:propertyupdate xmlns:D=“DAV:”>
<D:set>
<D:prop>
<ino:collection xmlns:ino=“http://namespaces.softwareag.com/tamino/response2”>office</ino:collection>
</D:prop>
</D:set>
</D:propertyupdate>
- create a propatch for the non-xml-doctype
<D:propertyupdate xmlns:D=‘DAV:’>
<D:set>
<D:prop>
<ino:non-xml-doctype xmlns:ino=‘http://namespaces.softwareag.com/tamino/response2’>office</ino:non-xml-doctype>
</D:prop>
</D:set>
</D:propertyupdate>
6) Set “optional schema” for the collection using X-plorer.
- restart Tamino server
While when I check using X-plorer, the webdav folder still map to ino:dav, not my own collection “office”, what problem?
Thanks.