0

Web サービスを作成し、ローカル マシンの IIS7 でホストしました。これは問題なく動作し、LAN 内で使用できます。次に、有料の Microsoft Web サーバーでホストしましたが、ブラウザーで .asmx またはその他のページを開くと、次のエラー メッセージが表示されます。

500内部サーバーエラー。お探しのリソースに問題があり、表示できません。

私の web.config が以下に表示されます。

<?xml version="1.0"?>
<!-- 
    Note: As an alternative to hand editing this file you can use the 
    web admin tool to configure settings for your application. Use
    the Website->Asp.Net Configuration option in Visual Studio.
    A full list of settings and comments can be found in 
    machine.config.comments usually located in 
    \Windows\Microsoft.Net\Framework\v2.x\Config 
-->
<configuration>
    <appSettings>
    </appSettings>
    <connectionStrings/>
    <system.web>
        <!-- 
            Set compilation debug="true" to insert debugging 
            symbols into the compiled page. Because this 
            affects performance, set this value to true only 
            during development.
        -->
        <compilation debug="true" targetFramework="4.0">
        </compilation>
        <!--
            The <authentication> section enables configuration 
            of the security authentication mode used by 
            ASP.NET to identify an incoming user. 
        -->
        <authentication mode="Windows"/>
        <!--
            The <customErrors> section enables configuration 
            of what to do if/when an unhandled error occurs 
            during the execution of a request. Specifically, 
            it enables developers to configure html error pages 
            to be displayed in place of a error stack trace.

        <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm" />
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>
        -->
        <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/></system.web>
    <!-- 
        The system.webServer section is required for running ASP.NET AJAX under Internet
        Information Services 7.0.  It is not necessary for previous version of IIS.
    -->
</configuration>
4

3 に答える 3

1

わかりました。何が問題なのか、何がエラーの原因なのかを確認する必要があります。開始するには、この行を追加します

<customErrors mode="Off"/>

<authentication mode="Windows"/>

あなたのweb.configファイルで。

次に、ページを読み込んでみます。詳細なエラー メッセージと、エラーが発生している正確な場所、つまりコードのどの行が表示されるはずです。

于 2012-06-20T08:55:20.167 に答える
0

コードの ajax 部分で URL (Web サービスのアドレス) を確認してください。

于 2013-05-09T07:37:53.970 に答える
0

5xx エラーは内部エラーであり、通常はコードに関連するか、サーバーの構成が欠落しているために発生します。これは有料ホストであるため、コードに問題があると思います。詳細なエラー ページを有効にしてみてください。これを web.config に追加します

  <system.web>
    <customErrors mode="Off">
   </system.web>

デバッグが完了したら、このオプションを元に戻すことを忘れないでください

于 2012-06-20T08:51:34.160 に答える