Cloud

Windows Azureエンタープライズアプリケーション開発技法

Windows Azureエンタープライズアプリケーション開発技法 (マイクロソフトコンサルティングサービステクニカルリファレンスシリーズ)(MCSの赤間さん著)がいつの間にか発売になってた。早速ポチりといきたいところやけど今注文しても仕事納後即実家へ移…

新・Windows Azureの解約(サブスクリプション解除)方法

暫くほったらかしやったWindows Azureのサブスクリプション・・・ 久しぶりにアクセスしたらWindows Azureポータルが新しくなってた。Windows Azureのサブスクリプションのキャンセル(解約・解約)も、このポータルからできる様になって一々電話しなくても…

「Windows Azure 上での Web アプリケーション開発基礎」を公開してくださってます

MCSさんの有償Workshopである「Visual Studio Workshop #451 Windows Azure 上での Web アプリケーション開発基礎」の資料を公開してくださってます。\(^_^)/ ありがたやぁ〜m(__)m初期のころからは結構というかだいぶブラッシュアップされているのでもう…

Windows Azureの解約(サブスクリプション解除)方法

※解除方法が変わったので、新しい方法は「新・Windows Azureの解約(サブスクリプション解除)方法」に新たに纏めました。 Windows Azureの解約(サブスクリプション解除)方法を調べてみた。 (っていってもググっただけだが・・・) 結論から言えば、オン…

AzureのVisualStudio支援ツール日本語ランゲージパック提供開始

Visual Studio 用 Azure 開発支援ツールの日本語ランゲージパックも公開された模様。MSさんもAzureの部隊が正式に稼働しだして対応が早くなってきた。 数ヶ月Azureから離れてるだけで結構便利になってるし :-) 結構日本語開発環境がそろってきた\(^_^)/ デ…

Azureセキュリティホワイトペーパー「Windows Azure アプリケーション開発におけるセキュリティのベスト プラクティス」の日本語化

「こういう文書の日本語版を早く公開して欲しいなぁ> MSKKさん」って書いた件 日本語訳が完了したらしい。 すばらしい:-) 3週間ほど前にこのブログでお知らせしたAzureのセキュリティホワイトペーパー「Security Best Practices for Developing Windows Azu…

Security Best Practices For Developing Windows Azure

こういう文書の日本語版を早く公開して欲しいなぁ> MSKKさん Security Best Practices For Developing Windows Azure ApplicationsBrief DescriptionA document describing how to build more secure Windows Azure applications

クラウド Watch

impressの「Enterprise Watch」が何時の間にか「クラウド Watch」になってる。。。 Enterprise Watchは、6月9日(水)よりクラウド Watchにリニューアルしました。 今後もご愛顧いただけますよう、よろしくお願いいたします。 アイ・オー・データのHDL-Z4WS…

Southeast AsiaのSQL Azureが死んでる。。。

Southeast AsiaのSQL Azureが死んでる。。。 An unexpected error has occurred. Please go back and retry your operation.Please use activity id 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' when contacting customer support. なんだかアジアのデータセン…

Windows AzureのSesstionStateをSQL Azureに

Windows AzureのSesstionStateをSQL Azureに持つときのSQL Azureの設定(テーブル作成とか?)用のスクリプトが Not Support ながら公開されてる。 This article provides information about two specific limitations when using ASP.net in conjunction with…

Windows Azure StorageのBlobの存在チェックの方法

Windows Azure StorageのBlobの存在チェックの方法 φ(..)メモメモFetchAttributes()を実行し、Exceptionをcatchして、StorageErrorCode.BlobNotFoundで判定すればいいっぽい。 CloudBlob blob = Container.GetBlobReference(name); try { blob.FetchAttribut…

Windows Azure Service Management CmdLets

Windows Azure Service Management CmdLets を使って、AzureへのDeploy、Start、SuspendStop、Removeするスクリプトを作成する際に参考にしたところ。 Windows Azure Service Management CmdLets 設定 $label=''$cert = Get-Item cert:\CurrentUser\Root\ $s…

Windows AzureをWindowsPowerShellから管理するコマンドレット

Windows AzureをWindowsPowerShellから管理するコマンドレット φ(..)メモメモ インストール手順などはここ↓に載ってる Windows Azure では、「Windows Azure Service Management API」 (以下 Management API) という管理用の API が公開されています。これは…