I've recently set up a basic web service project in Visual Studio, and published to Azure.
I'm trying to view the result of the default HelloWorld method in browser, but receive the following error:
Server Error in '/' Application.
The URL i'm trying to reach to view the content is (mywebsite is not the real domain, but path is the same):
http://services.mywebsite.co.uk/portal/Default.asmx/HelloWorld
The project is set up like this:
If I navigate to just Default.asmx (without the HelloWorld), it does work, but only is the service description:
All I am trying to do with this little toy project is to query a database, put some raw data on the browser page for an Android app to read (But, that's beyond the scope of this question).