2013年5月20日月曜日

Request format is unrecognized for URL unexpectedly ending

asp.netのweb serviceを作成したが以下のエラーが表示される。

Request format is unrecognized for URL unexpectedly ending

テスト環境では発生しなくて、本番環境に発生したので
環境回りと判断した。

以下の設定をweb.configに追加すればOKだった。

<configuration>
    <system.web>
    <webServices>
        <protocols>
            <add name="HttpGet"/>
            <add name="HttpPost"/>
        </protocols>
    </webServices>
    </system.web>
</configuration>

0 件のコメント:

コメントを投稿