DHJJ [Hatsune's Journal Japan] blog

Hatsune's Journal Japan blog

目次

Blog 利用状況

ニュース

最新ツイート

運営サイト

Hatsune's Journal Japan
DHJJ

著作など

資格など

OCP
MCP

書庫

日記カテゴリ

わんくま同盟

ASP.NET MVC 3をAzureで動かす

ASP.NET MVC 3が正式提供されたのでWindows Azureで動かしてみましょう。

Windows Azure Tools for Visual Studio 2010 1.3では「.NET Framework 4 role」として「ASP.NET MVC 2 Web Role」は提供されていますが、2011/01/16時点では「ASP.NET MVC 3 Web Role」はまだ提供されていません。

でも、あきらめる必要はなくもちろん解決策はあります。「Windows Azure上で帳票コンポーネント「ActiveReports for .NET 6.0J」を動作させてみた 」と同様に必要なdllの参照設定のプロパティで[ローカルコピー]プロパティを「True」に設定すればよいはずです。

Azureに配置したいASP.NET MVC 3プロジェクトを作成する

ASP.NET MVC 3の問題とAzureに配置したことによる問題を切り分けるためにも最初はASP.NET MVC 3プロジェクトとしてコード記述とデバッグを実行しておくことをお勧めします。

今回の主眼はAzureに配置して動かすための基礎情報の収集ですのでASP.NET MVC 3アプリとしてはテンプレートから自動生成した簡単なものとします。

[新しいプロジェクト]ダイアログで[Web]-[ASP.NET MVC 3 Web Application]テンプレートを選択して「MVC3Hello」という名前でプロジェクトの新規作成を行います。

MVC3-11

ASP.NET MVC 2では「ASP.NET MVC 2 空のWebアプリケーション」ASP.NET MVC 3のテンプレートではテンプレート選択後に「空のWebアプリ」と「初期設定のWebアプリ」のどちらを生成するかを選択するように変わりました。

今回は「Internet Application」でView engineとして「Razor」を選択したいと思います。

MVC3-12

ASP.NET MVC 3アプリをローカル環境で動作確認

生成された新規プロジェクトを実行すれば、ASP.NET開発サーバーが自動的に起動されてASP.NET MVC 3アプリが表示されます。

MVC3-13

Windows Azureプロジェクトに既存ASP.NET MVC 3アプリを組み込む

ASP.NET MVC 3アプリの正常動作を確認したらそのプロジェクトはいったん終了して、[新しいプロジェクト]として「Windows Azure Project」を作成します。

検証環境にはWindows Azure for Visual Studio 2010 1.3がインストールされていますので、このテンプレートで作成されるプロジェクトもAzureのGuest OS 2.0に対応したものになります。

MVC3-21

Windows Azureの稼働環境はロールとして定義しますので、Windows Azure Projectの新規作成時にも「.NET Framework 4 roles」が選べるようになっています。ここに「ASP.NET MVC 3 Web Role」があれば苦労はないのですが現時点ではありませんので、Windwos Azure Solutionにはロールを追加せずに生成を完了します。

MVC3-22

作成済のASP.NET MVC 3プロジェクトをWindows Azure Solutionに追加する

ソリューションエクスプローラで[ソリューション]を右クリックして[追加]-[既存のプロジェクト]メニューを選択し、ダイアログで「MVC3Hello.vbproj」(C#のでMVC 3アプリを作成した場合はMVC3Hello.csproj)を選択します。

MVC3-23

MVC3-24

ASP.NET MVC 3プロジェクトをWeb Roleプロジェクトして追加

Windows Azureプロジェクトの「Roles」を右クリックして[Add]-[Web Role Project in Solution]メニューを選択して「MVC3Hello」をWebロールとして追加します。

MVC3-25

MVC3-26

ASP.NET MVC 3プロジェクトの参照設定をローカルコピーに変更する

MVC3Helloプロジェクトのプロパティで参照設定を確認すると、

  • System.Web.Mvc
  • System.Web.Helpers
  • System.Web.WebPages

の3つのdllのパスがGACではないところに登録されています。

MVC3-27

そこでこの3つのdllの参照設定の[ローカルコピー]プロパティを「True」に変更します。VBの場合、ソリューションエクスプローラで「すべてのファイルを表示」としてから該当のDLLを選んでプロパティウィンドウで変更します。

MVC3-28

Windows Azureの開発環境で動作確認する

ここまで設定したらデバッグ実行すればWindows Azureの開発環境でCompute Emulatorを使って実行確認できます。

ただし、そのためにはVisual Studioを管理者として実行していなければならないので次のようなエラーが出た場合は一度Visual Studioを終了して起動アイコンを右クリックして「管理者として実行」を選択して、それから該当のソリューションを読み込んでください。

MVC3-31

また、今回のようにWindows Azure Storage Serviceを使っていないようなときでもデフォルト設定ではStorage Emulatorが起動されてSQL Server Express Editionを必要としますので、SQL Server Express Editionのサービスを上げておくか、「Start Windows Azure Storage Emulator」の設定を「False」にしておいてください。

MVC3-32

MVC3-33

ここまで設定すればASP.NET MVC 3アプリをWindows Azureの開発環境で動作させることができますので早速実行してみましょう。

MVC3-35

Windows Azureの実行環境にデプロイして動作確認する

ソリューションエクスプローラでWindows Azure プロジェクトを右クリックして[発行]メニューを選択してDeployを行います。

MVC3-41

すでにアプリをデプロイ済だった場合は次のようなダイアログが表示されるので[Delete and Continue]ボタンをクリックして処理を継続します。

MVC3-42

SDK 1.3でデプロイ時間が短くなったとの事ですが、確かに以前は16~20分かかっていたのが11分くらいに短縮されています。

MVC3-43

それでは、Website URLに書かれたURLをクリックして動作確認してみましょう。

MVC3-44

このように残念な結果になるのはASP.NET MVC 3の動作に必要でWindows Azure上に存在しないDLLを転送できていないからです(実際は詳細のエラーを表示するようにweb.configを書き換えてエラー表示により確認しました)。

ASP.NET MVC 3をWindows Azureで動作させるのに必要なDLL

最初に参照設定されていた3つのDLLの[ローカルコピー]を「True」にしていましたが色々調べてみると、そのDLLが使っているDLLがあるようです。

「参照の追加」でSystem.Web.MvcのパスにあるDLLを確認してたところ、最初の3つ以外にも次のDLLが必要だという事が分かりました。

MVC3-45

  • System.Web.Mvc
  • Microsoft.Web.Infrastructure
  • NuGet.Core
  • System.Web.Helpers
  • System.Web.Razor
  • System.Web.WebPages
  • System.Web.WebPages.Administration
  • System.Web.WebPages.Deployment
  • System.Web.WebPages.Razor

同じパスにあるWebMatrix.DataとWebMatrix.WebDataの設定は不要でした。たぶん、WebMatrixを使わないのならばいらないのだと思います。

ASP.NET MVC 3 Azureアプリ

以上の設定によりASP.NET MVC 3アプリはWebRoleとしてWindows Azure上で無事稼働します。

MVC3-46

投稿日時 : 2011年1月16日 13:17

Feedback

# ASP.NET MVC 3 on Azureの.NET trust levelを考える 2011/01/16 15:17 DHJJ [Hatsune's Journal Japan] blog

ASP.NET MVC 3 on Azureの.NET trust levelを考える

# ASP.NET MVC 3 on Azureの.NET trust levelを考える 2011/01/16 15:17 DHJJ [Hatsune's Journal Japan] blog

ASP.NET MVC 3 on Azureの.NET trust levelを考える

# XbKFmLGjSu 2011/12/30 3:55 Urson0Xk

PnL9x7 http://www.2KFk8UxzgR3t2CjpiGYlWRZr9NzJwIs8.com

# XbKFmLGjSu 2011/12/30 3:55 Urson0Xk

PnL9x7 http://www.2KFk8UxzgR3t2CjpiGYlWRZr9NzJwIs8.com

# XbKFmLGjSu 2011/12/30 3:55 Urson0Xk

PnL9x7 http://www.2KFk8UxzgR3t2CjpiGYlWRZr9NzJwIs8.com

# XbKFmLGjSu 2011/12/30 3:55 Urson0Xk

PnL9x7 http://www.2KFk8UxzgR3t2CjpiGYlWRZr9NzJwIs8.com

# ChWQODAExxdUuh 2012/07/12 0:43 john

nDYqJ6 http://www.fgY2lP9v0g6Cx2Jl.com

# botte ugg 2012/11/17 15:58 http://www.uggpaschersoldesfr.com/

If you desire the marketing of these worthy, reckon your friends.
botte ugg http://www.uggpaschersoldesfr.com/

# destockchine 2013/01/11 22:24 http://www.destockchinefr.fr/veste-marque-pas-cher

Do not ever speak of a joy to one significantly less lucky enough instead of for yourself.
destockchine http://www.destockchinefr.fr/veste-marque-pas-cher/veste-ed-hardy-pas-cher/

# casquette unkut 2013/02/28 13:07 http://www.b66.fr/

Absolutely love, companionship, obedience, really do not link people young and old as much as a prevalent hatred with regards to a specific product. casquette unkut http://www.b66.fr/

# destockchine 2013/03/10 10:35 http://www.b77.fr/lunettes-c-22.html/

Precisely there could be marital life with no need of love, you'll see love with no need of marital life. destockchine http://www.b77.fr/lunettes-c-22.html/

# pari street 2013/03/15 18:08 http://www.a88.fr/

Affection is really frail into contraception, it also multiplies more substantial as they age exhibit your hard work the right way given. pari street http://www.a88.fr/

# pick your shoes 2013/04/04 9:59 http://nikejordanretro7ok.com/

Usually do not it's the perfect time who're pleasant to be with. Connect with others who will compel 1 lever your own self it. pick your shoes http://nikejordanretro7ok.com/

# yfr.fr 2013/04/05 10:30 http://www.yfr.fr/

An actual comrade is actually who actually overlooks your backsliding or can handle your successes. yfr.fr http://www.yfr.fr/

# eNCZliSNVWgoWzjQz 2017/05/19 1:15 JimmiXzSq

FAMfwk http://www.LnAJ7K8QSpkiStk3sLL0hQP6MO2wQ8gO.com

# パテックフィリップ最高品質時計 2017/10/25 7:50 zsweeflo@livedoor.com

発送までスマート且つ迅速な対応で、メール内容も丁寧でした。
梱包に至ってはビックリするほど非常に丁寧で、嬉しい配慮です。
商品についても安心して購入できるお店と云う印象もあり、
また好みの商品があれば、こちらを是非利用したいと思っています。

# グッチ時計偽物 2017/11/12 3:39 arkduveutv@ocn.ne.jp

とても信頼の出来るショップ様に出逢えた事
嬉しく思います☆
手書きのメッセージに暖かさを感じるショップ様は初めてで感謝しています。
今後も何度かお世話になります。
★ルイヴィトン★モノグラム★アジェンダPM★6穴式システム手帳カバー★R20005★
最初は期待はしておらず
使えれば…と思っていました。
でも…新品と思うくらいの品物を凄く低価格で買わせて頂きましたo
凄く驚きました!
大満足しております
グッチ時計偽物 http://www.nawane111.com/hermes-bag.htm

# This post is genuinely a pleasant one it helps new web people, who are wishing in favor of blogging. 2019/04/03 4:17 This post is genuinely a pleasant one it helps new

This post is genuinely a pleasant one it helps new
web people, who are wishing in favor of blogging.

# Hello there! I know this is kinda off topic however I'd figured I'd ask. Would you be interested in exchanging links or maybe guest writing a blog post or vice-versa? My blog covers a lot of the same subjects as yours and I feel we could greatly benefit 2019/04/10 4:36 Hello there! I know this is kinda off topic howeve

Hello there! I know this is kinda off topic however I'd figured I'd
ask. Would you be interested in exchanging links or maybe guest writing a
blog post or vice-versa? My blog covers a
lot of the same subjects as yours and I feel we
could greatly benefit from each other. If you are interested feel
free to shoot me an email. I look forward to hearing from you!
Awesome blog by the way!

# Hi there I am so happy I found your web site, I really found you by accident, while I was researching on Askjeeve for something else, Regardless I am here now and would just like to say thanks a lot for a incredible post and a all round thrilling blog 2019/05/15 6:00 Hi there I am so happy I found your web site, I re

Hi there I am so happy I found your web site, I
really found you by accident, while I was researching on Askjeeve for something else, Regardless I am here now
and would just like to say thanks a lot for a incredible post and
a all round thrilling blog (I also love the theme/design), I don't have time to
read it all at the moment but I have saved it and also included your
RSS feeds, so when I have time I will be back to read a great deal more, Please do keep up the fantastic work.

# Thanks for sharing your info. I really appreciate your efforts and I am waiting for your further post thanks once again. 2019/06/22 8:56 Thanks for sharing your info. I really appreciate

Thanks for sharing your info. I really appreciate your efforts and I am waiting for your
further post thanks once again.

# Exceptional post however I was wanting to know if you could write a litte more on this topic? I'd be very thankful if you could elaborate a little bit more. Appreciate it! 2019/07/24 8:24 Exceptional post however I was wanting to know if

Exceptional post however I was wanting to know if you could write a litte more on this topic?

I'd be very thankful if you could elaborate a little bit more.

Appreciate it!

# Exceptional post however I was wanting to know if you could write a litte more on this topic? I'd be very thankful if you could elaborate a little bit more. Appreciate it! 2019/07/24 8:25 Exceptional post however I was wanting to know if

Exceptional post however I was wanting to know if you could write a litte more on this topic?

I'd be very thankful if you could elaborate a little bit more.

Appreciate it!

# Exceptional post however I was wanting to know if you could write a litte more on this topic? I'd be very thankful if you could elaborate a little bit more. Appreciate it! 2019/07/24 8:26 Exceptional post however I was wanting to know if

Exceptional post however I was wanting to know if you could write a litte more on this topic?

I'd be very thankful if you could elaborate a little bit more.

Appreciate it!

# Exceptional post however I was wanting to know if you could write a litte more on this topic? I'd be very thankful if you could elaborate a little bit more. Appreciate it! 2019/07/24 8:27 Exceptional post however I was wanting to know if

Exceptional post however I was wanting to know if you could write a litte more on this topic?

I'd be very thankful if you could elaborate a little bit more.

Appreciate it!

# how much does ivermectin cost http://stromectolabc.com/
ivermectin cream canada cost 2022/02/07 17:25 Busjdhj

how much does ivermectin cost http://stromectolabc.com/
ivermectin cream canada cost

# stromectol canada http://stromectolabc.com/
stromectol 3 mg price 2022/02/08 10:14 Busjdhj

stromectol canada http://stromectolabc.com/
stromectol 3 mg price

# order doxycycline online https://doxycyline1st.com/
doxycycline hyclate 2022/02/26 9:23 Doxycycline

order doxycycline online https://doxycyline1st.com/
doxycycline hyclate

# ロレックス 時計 年収 2022/05/23 1:58 txicpmdn@ybb.ne.jp

本物のラグジュアリーアイテム
大きい割引と世界中へお届けしますオンライン。
当社の新品、激安販売!
当社のオンライン ショップへようこそ!
大人気のデザイン,値段は今年の最注目!
激安通販,全商品送料無料!
楽天正規専門店,激安販売中!
特売品【送料無料】
超人気!
★期間限定★激安販売中!
【新色】全商品送料無料!最大80%OFF!
豊富なベストセラーチャンピオン!
高級品!
即日発送,品質100%保証!
激安【新入荷】日本正規専門店.
ロレックス 時計 年収 https://www.2bcopy.com/product/product.aspx-id=7652.htm

# top rated ed pills https://erectionpills.best/
ed medication online 2022/06/28 10:48 ErectionPills

top rated ed pills https://erectionpills.best/
ed medication online

# コピーグッチ財布偽物 2022/09/30 5:27 miacipyjvjx@live.com

住所変更をしていなかったためカード承認確認に時間が掛かり明日楽が利用できませんでした。
高額のものなら確認も大事でしょうが私が買ったのは少額のものです。
他のお店ならカード払いですぐに決済できてもっと早く手元に届いたのかなと思いました。
コピーグッチ財布偽物 https://www.nawane111.com

# new ed treatments https://ed-pills.site/
best otc ed pills 2022/11/17 15:56 EdPills

new ed treatments https://ed-pills.site/
best otc ed pills

# ヨドバシ ロレックス 本物 2022/11/22 3:32 ocdwvdazoph@excite.co.jp

迅速・丁寧に対応頂きお品物も素敵で満足しています。
また機会がありましたらヨロシクお願い致します。
★ルイヴィトン★パドロック★カデナ&カギ×1★ゴールド★
スーツケースのカギを失くしてしまったので、代替品として購入しました。
写真では少し黒ずんでいましたが、実際はとてもきれいな状態でした。
割安で購入できて、本当に助かりました。

# prednisone 10 mg price https://prednisonepills.site/
prednisone 2 mg daily 2022/11/28 16:38 Prednisone

prednisone 10 mg price https://prednisonepills.site/
prednisone 2 mg daily

# canadian meds without prescription https://noprescriptioncanada.com/
list of approved canadian pharmacies 2022/12/13 13:20 CanadaPh

canadian meds without prescription https://noprescriptioncanada.com/
list of approved canadian pharmacies

# st Р°ugstine fl book matches online dateing https://datingonline1st.com/
local single women near me 2023/01/17 17:26 Dating

st Р°ugstine fl book matches online dateing https://datingonline1st.com/
local single women near me

# buy cytotec online fast delivery - https://cytotecsale.pro/# 2023/04/28 13:02 Cytotec

buy cytotec online fast delivery - https://cytotecsale.pro/#

# ed medication https://edpill.pro/# - cheap erectile dysfunction pills 2023/06/27 5:19 EdPills

ed medication https://edpill.pro/# - cheap erectile dysfunction pills

# best ed pill https://edpills.ink/# - over the counter erectile dysfunction pills 2023/07/26 14:14 EdPills

best ed pill https://edpills.ink/# - over the counter erectile dysfunction pills

# cheap doxycycline online https://doxycycline.forum/ generic for doxycycline 2023/11/25 3:46 Doxycycline

cheap doxycycline online https://doxycycline.forum/ generic for doxycycline

# ï»¿farmacia online migliore https://farmaciait.pro/ farmacia online 2023/12/04 3:40 Farmacia

farmacia online migliore https://farmaciait.pro/ farmacia online

# ロレックス 歴史 2023/12/06 1:39 lbsjspsvzz@live.com

商品は、思ってたより、かなり美品でした
機会が、御座いましたら、又よろしく御願いします
発送は、慎重に、しましょうね(笑)
満足してます
ロレックス 歴史 https://www.etanoob.com/product/6488.htm

タイトル
名前
Url
コメント