When trying to run any method with parameter manually in any browser, i came accross
"URL Unexpectedly Ending Error ". I typed link manually because i want to test web services using WAST (Web Application Stress Tool). I need to write link into path value textbox in WAST.
It's really irritating that i couldn't test. After a while i found the solution. Just adding a few lines into web.config :
<system.web>
<webservices>
<protocols>
<add name="HttpGet"></add>
<add name="HttpPost"></add>
</webservices>
</system.web>