- PR -

ASP.NET 1.1が実行されてないエラーの対処

投稿者投稿内容
朱梟
会議室デビュー日: 2006/02/13
投稿数: 9
投稿日時: 2006-02-13 11:16
ASP.NETで作成されたプロジェクトを開いた際に
、「指定されたWebサーバーでASP.NET Version 1.1が実行されていません。ASP.NET Webアプリケーションまたはサービスを実行することはできなくなります。」と表示されます。
対応としましては、.NET Framework 1.1の再インストール。ASP.NET 1.1の再登録を行いましたが、変化ありませんでした。
他にどこを修正すれば良いのかが分かりませんので、皆さんのお知恵をお借りしたく思います。
じゃんぬねっと
ぬし
会議室デビュー日: 2004/12/22
投稿数: 7811
お住まい・勤務地: 愛知県名古屋市
投稿日時: 2006-02-13 11:26
http://support.microsoft.com/default.aspx?scid=kb;ja;306005

_________________
C# と VB.NET の入門サイト
じゃんぬねっと日誌
朱梟
会議室デビュー日: 2006/02/13
投稿数: 9
投稿日時: 2006-02-13 15:01
じゃんぬねっとさん、迅速なご回答ありがとうございます。
IIS を削除し再インストール後に、IIS を修復しましたが、
以前のままのメッセージログが表示されてしまいます。

IIS以外にも何か原因があるのでしょうか?
じゃんぬねっと
ぬし
会議室デビュー日: 2004/12/22
投稿数: 7811
お住まい・勤務地: 愛知県名古屋市
投稿日時: 2006-02-13 15:03
引用:

朱梟さんの書き込み (2006-02-13 15:01) より:

IIS を削除し再インストール後に、IIS を修復しましたが、
以前のままのメッセージログが表示されてしまいます。
IIS以外にも何か原因があるのでしょうか?


いや、マッピングの修復だと思っていたのですが...

_________________
C# と VB.NET の入門サイト
じゃんぬねっと日誌
k_kazu
常連さん
会議室デビュー日: 2006/02/11
投稿数: 25
投稿日時: 2006-02-13 18:48
ポート 80 を占有しているプログラムが他にいるのでは?

コマンドプロンプトで
netstat -ba
として
TCP マシン名:http
の行が
WinXP : inetinfo.exe
Win2003 : svchost.exe
になっているはずです。
それ以外の プログラムであれば、それをアンインストールしてください。
Skype や パソコンを購入したときにプレインストールされている
おまけソフトが影響しているかもしれません。
朱梟
会議室デビュー日: 2006/02/13
投稿数: 9
投稿日時: 2006-02-14 13:41
引用:

未記入さんの書き込み (2006-02-13 18:48) より:
ポート 80 を占有しているプログラムが他にいるのでは?

コマンドプロンプトで
netstat -baより


Displays protocol statistics and current TCP/IP network connections.

NETSTAT [-a] [-e] [-n] [-o] [-s] [-p proto] [-r] [interval]

-a Displays all connections and listening ports.
-e Displays Ethernet statistics. This may be combined with the -s
option.
-n Displays addresses and port numbers in numerical form.
-o Displays the owning process ID associated with each connection.
-p proto Shows connections for the protocol specified by proto; proto
may be any of: TCP, UDP, TCPv6, or UDPv6. If used with the -s
option to display per-protocol statistics, proto may be any of:
IP, IPv6, ICMP, ICMPv6, TCP, TCPv6, UDP, or UDPv6.
-r Displays the routing table.
-s Displays per-protocol statistics. By default, statistics are
shown for IP, IPv6, ICMP, ICMPv6, TCP, TCPv6, UDP, and UDPv6;
the -p option may be used to specify a subset of the default.
interval Redisplays selected statistics, pausing interval seconds
between each display. Press CTRL+C to stop redisplaying
statistics. If omitted, netstat will print the current
configuration information once.
と表示されましたがどこかが分かりません。
じゃんぬねっと
ぬし
会議室デビュー日: 2004/12/22
投稿数: 7811
お住まい・勤務地: 愛知県名古屋市
投稿日時: 2006-02-14 13:49
コマンドの説明になってる... orz
「netstat ba」とかやりませんでした?
「netstat -ba」ですよ。

# でも、何故英語?

_________________
C# と VB.NET の入門サイト
じゃんぬねっと日誌
k_kazu
常連さん
会議室デビュー日: 2006/02/11
投稿数: 25
投稿日時: 2006-02-14 14:05
引用:

NETSTAT [-a] [-e] [-n] [-o] [-s] [-p proto] [-r] [interval]
-a Displays all connections and listening ports.
-n Displays addresses and port numbers in numerical form.
-o Displays the owning process ID associated with each connection.



開発マシンは Windows2000ですか?
netstat -ano
として、表示されたPIDをタクスマネージャより検索してプログラムを特定してください。

(参考)
[HOWTO] Windows Server 2003 で特定の TCP ポートを使用またはブロックしているプログラムを判別する方法
http://support.microsoft.com/default.aspx?scid=kb;ja;323352

スキルアップ/キャリアアップ(JOB@IT)