views:

29

answers:

1

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.

+1  A: 

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.

James Gaunt
Thanks..Testing it....
Novice