Returns XML for results of a search query.
public String search_search( String accessToken, String query, int offset, int maxResults );
The search_search operation returns XML for the results of a search query represented in XML. Because the list of each results can be lengthy, this operation is designed so that you can make multiple calls, receiving a subset of the search results each time.
Either the security token passed to your application by Vibe as part of implementing a remote application, or the null value.
A search query represented in XML.
An integer indicating at which result you want to begin receiving information. The first result is numbered 0.
An integer indicating the number of results you want returned.
A string of XML containing information about the search results that match your specified criteria.
The following input query string in XML matches all users whose first name begins with the letter J or the last name is Smith.
<QUERY> <AND> <FIELD fieldname="_entityType" exactphrase="true"> <TERMS>user</TERMS> </FIELD> <FIELD fieldname="_docType" exactphrase="true"> <TERMS>entry</TERMS> </FIELD> <OR> <FIELD fieldname="lastName" exactphrase="true"> <TERMS>Smith</TERMS> </FIELD> <FIELD fieldname="firstName" exactphrase="false"> <TERMS>J*</TERMS> </FIELD> </OR> </AND> </QUERY>
Java objects in the Vibe sources (see Section 1.7.1, Working with Java Objects)