开发者

how to deal with this "unrecognized for URL..." problem?

This is link which is explaining in detail, the problem i am facing right now.

I am getting a frequent exception whenever a call made to my web services. It returns appropriate results but 开发者_开发问答still complaining about URL format.:-

Request format is unrecognized for URL unexpectedly ending in /WebServiceMethod

So what do you suggest guys?

Thanks.


There is quite a common issue that causes this error, that can easily be fixed by adding

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

...to web.config. Hopefully that fixes it for you.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜