Hello,
I am trying to index SharePoint documents in an OpenSearchServer index.
Therefor I have to move the meta data 'uri' coming from SharePoint to
'url' required by the index schema.
But the meta data is not moved. It is copied into a new meta data and
the content is changed.
As result I get two meta data 'uri' and 'url' with different content.
Here is what I have sniffed:
<field name="uri">
<value>
http://share.point.server:1234/Site/SubSite/Documents/Document.docx
</value>
</field>
<field name="url">
<value>
<![CDATA[/Site/SubSite/Documents/Document.docx]]>
</value>
</field>
The problem is that the links presented by the search web page doesn't
work because the "protocol://host:port" part is removed.
How can I keep the link intact?
Kind regards
Frank