You are here

function DrupalApacheSolrServiceInterface::makeServletRequest in Apache Solr Search 8

Same name and namespace in other branches
  1. 6.3 apachesolr.interface.inc \DrupalApacheSolrServiceInterface::makeServletRequest()
  2. 7 apachesolr.interface.inc \DrupalApacheSolrServiceInterface::makeServletRequest()

Make a request to a servlet (a path) that's not a standard path.

@thows Exception

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: @see drupal_http_request() $options.

Return value

response object

2 methods override DrupalApacheSolrServiceInterface::makeServletRequest()
DrupalApacheSolrService::makeServletRequest in ./Drupal_Apache_Solr_Service.php
Make a request to a servlet (a path) that's not a standard path.
DummySolr::makeServletRequest in tests/Dummy_Solr.php
Make a request to a servlet (a path) that's not a standard path.

File

./apachesolr.interface.inc, line 415

Class

DrupalApacheSolrServiceInterface
The interface for all 'Service' objects.

Code

function makeServletRequest($servlet, $params = array(), $options = array());