I want to add a public (externally callable) JSON data feed to my ASP.net (4) Forms web site. To this end, I have created the following Web Service:
[WebService(Namespace = "http://localtest.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
[System.Web.Script.Services.ScriptService]
public class BlogWebService : System.Web.Service.WebService
{
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public List<Blog> GetLatestBlogs(int noBlogs)
{
return GetLatestBlogs(noBlogs)
.Select(b => b.ToWebServiceModel())
.ToList();
}
}
I have tested this on the local server by opening
http://localhost:55671/WebServices/BlogWebService.asmx?op=GetLatestBlogs
and it works correctly.
When I try to access this service remotely and get an Internal Server Error. For example, I have run the following code using LinqPad (based on some script from http://geekswithblogs.net/JuanDoNeblo/archive/2007/10/24/json_in_aspnetajax_part2.aspx):
void Main()
{
GetLatestBlogs().Dump();
}
private readonly static string BlogServiceUrl =
"http://localhost:55671/BlogWebService.asmx/GetLatestBlogs?noBlogs={0}";
public static string GetLatestBlogs(int noBlogs = 5)
{
string formattedUri = String.Format(CultureInfo.InvariantCulture,
BlogServiceUrl, noBlogs);
HttpWebRequest webRequest = GetWebRequest(formattedUri);
HttpWebResponse response = (HttpWebResponse)webRequest.GetResponse();
string jsonResponse = string.Empty;
using (StreamReader sr = new StreamReader(response.GetResponseStream()))
{
jsonResponse = sr.ReadToEnd();
}
return jsonResponse;
}
private static HttpWebRequest GetWebRequest(string formattedUri)
{
Uri serviceUri = new Uri(formattedUri, UriKind.Absolute);
return (HttpWebRequest)System.Net.WebRequest.Create(serviceUri);
}
I have a number of questions/doubts:
- How should the call to the web service be formatted? I'm not sure the construction of my BlogServiceUrl in the LinqPad test code is correct.
- Are my BlogWebService class and GetBlogs() method defined and attributed correctly?
- Do I need to to add anything to my web site configuration to make this work?
Any advice would be much appreciated.