使用宁静的Web服务报告服务

时间:2012-11-20 09:04:28

标签: sql rest service web reporting

我有非常简单的asp.net restful(web api)web服务;让我们说HelloWord

public string GetHelloWorld(string name)
{
    return "Hello, " + name;
}

该方法在HomeController下。

当我通过firefox(http:// localhost / api / Home /?name = John)调用时的结果是 你好,约翰

如何将XML输出用于报告服务?

我也浏览数据动态报告(www.datadynamics.com)。在看到演练之后,在我看来,它是客户端报告而不是服务器端报告(即:SQL Server Reporting Services)。无论如何我可以在服务器端使用数据动态(在报告服务之上)?

谢谢。

Koronx

0 个答案:

没有答案