setLogin() public méthode

Set the login string used to connect to the AMQP broker.
public setLogin ( string $login ) : boolean
$login string The login string used to authenticate with the AMQP broker.
Résultat boolean TRUE on success or FALSE on failure.
Exemple #1
0
 /**
  * @inheritdoc
  */
 public function setLogin($login)
 {
     try {
         return $this->delegate->setLogin($login);
     } catch (\AMQPConnectionException $e) {
         throw new ConnectionException($e->getMessage(), $e->getCode(), $e);
     }
 }
Exemple #2
0
 /**
  * @inheritdoc
  */
 public function init()
 {
     if (empty($this->user)) {
         throw new \Exception("Parameter 'user' was not set for AMQP connection.");
     }
     if (empty(self::$ampqConnection)) {
         self::$ampqConnection = new \AMQPConnection();
         self::$ampqConnection->setHost($this->host);
         self::$ampqConnection->setPort($this->port);
         self::$ampqConnection->setLogin($this->user);
         self::$ampqConnection->setPassword($this->password);
         self::$ampqConnection->setVhost($this->vhost);
         self::$ampqConnection->connect();
     }
 }
Exemple #3
0
 /**
  * Returns AMQP connection
  *
  * @return AMQPConnection
  */
 public function connection()
 {
     if (!$this->connection) {
         if (!$this->host || !$this->port) {
             throw new \InvalidArgumentException(sprintf("Remote host or port undefined '%s:%s' ", $this->host, $this->port));
         }
         $this->connection = new \AMQPConnection();
         $this->connection->setHost($this->host);
         $this->connection->setPort($this->port);
         $this->connection->setLogin($this->user);
         $this->connection->setPassword($this->password);
         $this->vhost and $this->connection->setVhost($this->vhost);
         $this->connection->connect();
     }
     return $this->connection;
 }
 /**
 AMQP Connection
 */
 protected function getAMQPConnection()
 {
     $connection = new AMQPConnection();
     $connection->setHost('127.0.0.1');
     $connection->setLogin('guest');
     $connection->setPassword('guest');
     $connection->connect();
     return $connection;
 }
 /**
  * Return AMQPConnection object passed to all other calls
  * @param array $details Array of connection details
  * @return AMQPConnection
  */
 function GetConnectionObject($details)
 {
     $connection = new AMQPConnection();
     $connection->setHost($details['host']);
     $connection->setLogin($details['login']);
     $connection->setPassword($details['password']);
     $connection->setVhost($details['vhost']);
     $connection->setPort($details['port']);
     return $connection;
 }
Exemple #6
0
 static function InitializeAMQPConnection($details)
 {
     $connection = new AMQPConnection();
     $connection->setHost($details['host']);
     $connection->setLogin($details['login']);
     $connection->setPassword($details['password']);
     $connection->setVhost($details['vhost']);
     $connection->setPort($details['port']);
     return $connection;
 }
 protected function createAMQPConnection()
 {
     $connection = new AMQPConnection();
     $connection->setHost($this->getHost());
     $connection->setPort($this->getPort());
     $connection->setVhost($this->getVhost());
     $connection->setLogin($this->getLogin());
     $connection->setPassword($this->getPassword());
     $connection->connect();
     return $connection;
 }
 /**
  * @return \AMQPConnection
  */
 public function getConnection()
 {
     if ($this->connection === null) {
         $settings = $this->connectionSettings;
         $connection = new \AMQPConnection();
         $connection->setHost($settings['host']);
         $connection->setPort($settings['port']);
         $connection->setLogin($settings['user']);
         $connection->setPassword($settings['password']);
         $connection->connect();
         $this->connection = $connection;
     }
     return $this->connection;
 }
Exemple #9
0
 function getBrokerStatus()
 {
     $amqpConnection = new AMQPConnection();
     $amqpConnection->setLogin("guest");
     $amqpConnection->setPassword("guest");
     $amqpConnection->setVhost("/");
     $amqpConnection->connect();
     if (!$amqpConnection->isConnected()) {
         log("info", "Cannot connect to the broker!");
         return false;
     }
     $amqpConnection->disconnect();
     return true;
 }
 /**
  * Connects to the broken
  *
  * @return CakeAmqpBase
  * @throws CakeException 
  */
 public function connect()
 {
     if ($this->connected()) {
         throw new CakeException(__d('cake_amqp', 'Already connected to broker'));
     }
     $this->_connection = new AMQPConnection();
     $this->_connection->setHost($this->_config['host']);
     $this->_connection->setPort($this->_config['port']);
     $this->_connection->setLogin($this->_config['user']);
     $this->_connection->setPassword($this->_config['pass']);
     $this->_connection->setVhost($this->_config['vhost']);
     $this->_connection->connect();
     $this->_channel = new AMQPChannel($this->_connection);
     return $this;
 }
 private function checkRabbitMQ()
 {
     $amqpConnection = new AMQPConnection();
     $amqpConnection->setHost($this->mqHost);
     $amqpConnection->setLogin($this->mqUser);
     $amqpConnection->setPassword($this->mqPass);
     $amqpConnection->setVhost($this->mqVhost);
     $amqpConnection->setPort($this->mqPort);
     $amqpConnection->connect();
     return $amqpConnection->isConnected();
 }
Exemple #12
0
<?php

$connection = new AMQPConnection();
$connection->setHost('127.0.0.1');
$connection->setLogin('guest');
$connection->setPassword('guest');
$connection->connect();
Exemple #13
0
<?php

phpinfo();
exit;
//Establish connection to AMQP
$connection = new AMQPConnection();
$connection->setHost('192.168.1.104');
$connection->setLogin('qianxun');
$connection->setPassword('qianxun');
$connection->connect();
//Create and declare channel
$channel = new AMQPChannel($connection);
//AMQPC Exchange is the publishing mechanism
$exchange = new AMQPExchange($channel);
try {
    $routing_key = 'hello';
    $queue = new AMQPQueue($channel);
    $queue->setName($routing_key);
    $queue->setFlags(AMQP_NOPARAM);
    $queue->declareQueue();
    $message = 'nowtime:' . time() . '[' . date('Y-m-d H:i:s') . ']';
    $exchange->publish($message, $routing_key);
    $connection->disconnect();
} catch (Exception $ex) {
    print_r($ex);
}
Exemple #14
0
<?php

echo "<pre>";
//$conn_args = array("host"=>'localhost','port'=>5672,'login'=>'guest',"password"=>'guest','vhost'=>'/');
//$conn = new AMQPConnection($conn_args);
$conn = new AMQPConnection();
$conn->setLogin("guest");
$conn->setPassword("guest");
$conn->setPort(5672);
$conn->setVhost("/");
if ($conn->connect()) {
    echo "Success\r\n";
} else {
    echo "Fail\r\n";
}
var_dump($conn);
 /**
  * @param string $host
  * @param int $port
  * @param string $vhost
  * @param string $login
  * @param string $password
  * @param float $connectionTimeout
  * @return AMQPConnection
  * @throws AMQPConnectionException
  * @throws Exception
  */
 protected function createAMQPConnection($host, $port, $vhost, $login, $password, $connectionTimeout)
 {
     $connection = new AMQPConnection();
     $connection->setHost($host);
     $connection->setPort($port);
     $connection->setVhost($vhost);
     $connection->setLogin($login);
     $connection->setPassword($password);
     $connection->setReadTimeout($connectionTimeout);
     if (!$connection->connect()) {
         throw new Exception('Cannot connect to the broker');
     }
     return $connection;
 }