2

我已经建立了一个 windows azure 网站 (php),我想连接到 azure storage (blob) 环境。我浏览了PHP 教程中的如何使用 Blob 服务,但这仅提及网站存储在本地的情况。

我尝试设置一些案例,但我不断收到 http 500 错误。

<?php
require_once 'WindowsAzure/WindowsAzure.php';

use WindowsAzure\Common\ServicesBuilder;
use WindowsAzure\Common\ServiceException;   

//$connectionString = "\WindowsAzure\Blob\Internal\IBlob";

// Create blob REST proxy.
$blobRestProxy = ServicesBuilder::getInstance()->createBlobService($connectionString); // the code gets stuck at this line, result is a HTTP 500 error

$content = fopen("C:\Users\Public\Pictures\Sample%20Pictures\Woestijn.jpg", "r");
$blob_name = "newBlob";


try {
    //Upload blob
    $blobRestProxy->createBlockBlob("default", $blob_name, $content);
}
catch(ServiceException $e){
    // Handle exception based on error codes and messages.
    // Error codes and messages are here: 
    // http://msdn.microsoft.com/en-us/library/windowsazure/dd179439.aspx
    $code = $e->getCode();
    $error_message = $e->getMessage();
    echo $code.": ".$error_message."<br />";
}?>

有没有人遇到过类似的问题并设法解决了?

编辑:

我现在缩小了错误搜索的范围。我进入 ServicesBuilder.php 文件,并逐行注释掉,直到页面停止工作。出错所在的行是$httpClient,如下所示:

public function createBlobService($connectionString)
{
    $settings = StorageServiceSettings::createFromConnectionString(
        $connectionString
    );

    $httpClient    = $this->httpClient();
    $serializer    = $this->serializer();
    $uri           = Utilities::tryAddUrlScheme(
        $settings->getBlobEndpointUri()
    );
4

1 回答 1

3

从我所看到的情况来看,您正在$connectionString用这个值填充变量:("\WindowsAzure\Blob\Internal\IBlob"即使它已被评论 - 所以您可能是从其他地方传递它)。如果是这种情况,您将需要更改它。

连接字符串应该是对包含协议、帐户名称和密钥的存储帐户的引用(您可以在门户中找到名称和密钥):

$connectionString = "DefaultEndpointsProtocol=https;AccountName=jeroensaccount;AccountKey=fjmezfjmIOFJEZIOPAFJAZOPIFJAIMO"
于 2012-12-18T11:02:31.940 回答