My\Project\ServiceType\ApiSearchProject::Search PHP Method

    public function Search(\My\Project\StructType\ApiSearchRequestProject $parameters)
    {
        try {
            $this->setResult(self::getSoapClient()->Search($parameters));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }