public function SearchApiSolrConnectionInterface::makeServletRequest in Search API Solr 7
Makes a request to a servlet (a path) that's not a standard path.
Parameters
string $servlet: A path to be added to the base Solr path. e.g. 'extract/tika'.
array $params: Any request parameters when constructing the URL.
array $options: Options to be passed to drupal_http_request().
Return value
object The HTTP response object.
Throws
1 method overrides SearchApiSolrConnectionInterface::makeServletRequest()
- SearchApiSolrConnection::makeServletRequest in includes/
solr_connection.inc - Makes a request to a servlet (a path) that's not a standard path.
File
- includes/
solr_connection.interface.inc, line 134
Class
- SearchApiSolrConnectionInterface
- The interface for a Solr connection class.
Code
public function makeServletRequest($servlet, array $params = array(), array $options = array());