I have a Rest Service in Visual Studio (C#). Initially it was working . But When I add a new Rest method, solution build is successful. But when we try to call the old REST methods in the project (for example POST) it is giving me 500 internal server error.
In firebug this what I found:
XML Parsing Error: no element found Location: moz-nullprincipal:{73793b55-dcc3-45d3-ae2c-eaeb48dfe0f8} Line Number 1, Column 1:
But if I remove my newly added Rest service method, everything works fine.
Can anyone help me out?