you have a full example on how to do this from a Console Application in MSDN, here: ReportExecutionService.Render Method which also requires you to read this one: http://msdn.microsoft.com/en-us/library/ms160695.aspx
一般に、.NET 4コンソールアプリケーションを作成する場合は、ソリューションエクスプローラで[参照]を右クリックし、[サービス参照の追加]を選択することができます.WCFだけでなくWebサービスでも機能します。
SSRS 2005または2008を実行するレポートサーバーの場合、参照するWebサービスは次の形式です。
http://myserver/reportserver/ReportExecution2005.asmx
上にリンクしたページをスクロールして、次のようなコンソールアプリケーションの例を見つけてください。
static void Main(string[] args)
{
ReportExecutionService rs = new ReportExecutionService();
rs.Credentials = System.Net.CredentialCache.DefaultCredentials;
rs.Url = "http://myserver/reportserver/ReportExecution2005.asmx";
...
...