I am working with ektron 9.
I have created a smart from,and implemented the search for smart form fields using search api. For that am using Ektron.Cms.Framework.Search.SearchManager class.It works fine when for single Xpath values.
When my smart form has multiple fields with same Xpath,the search api is returning the results of first occurrence only.
In the below example ,when i search for Book->Title using Xpath "/root/Books/Book/Title" search always return "Hai" in result.
<root>
<Books>
<Book>
<Id>1
</Id>
<Title>Hai
</Title>
<Book>
<Book>
<Id>2
</Id>
<Title>Hello
</Title>
<Book>
</Books>
</root>
How can i get "Hello" also in the result? is any separate api to handle this? Or is it possible to handle this scenario in a separate way,like by specifying like this "/root/Books/Book[id=1]/Title" ?
For more details on search please look: http://documentation.ektron.com/cms400/v85/webhelp/Navigating/Search85/APISearch.htm#Major
Solr supports multivalued attributes, so when indexing smartform fields they get indexed as true multivalued fields instead of a delimiter separated values as was the case with Search Server 2010/FAST 2010.
In case of multivalued fields, from the SearchResponseData you would have to use the SearchResultData returned in the following manner.
For the case of Multivalued String properties GetValue(StringMultiValuePropertyExpression) or use the indexer [StringMultiValuePropertyExpression]
For the case of Multivalued Floating point properties GetValue(DecimalMultiValuePropertyExpression) or use the indexer [DecimalMultiValuePropertyExpression]
Reference http://reference.ektron.com/developer/framework/Search/SearchResultData/
In case one doesn't use the MultiValuePropertyExpression, the API will return the first value of the set of values which is what you are seeing.
Hope this helps.