How to dynamically generate SSRS Report

SSRS is a wonderful tool for quickly retrieving data and presenting it to the user in a format predefined at design-time. But what if there is a need to create a new report at run-time, based on some dynamic data structure or any specific user needs? Of course, for advanced business users Microsoft Report Builder […]
Continue reading…

 

How to use SSRS Web Service from Java

  Import the reporting service wsdl using wsimport tool which is available in JDK starting from v1.6: wsimport.exe http://<server>/reportserver/reportService2005.asmx?wsdl -s -extension</server> Copy the resulting package to your java project. Amon other things, it will contain the ReportingService2005 class and the ReportingService2005Soap interface which are the main point of your interest.
Continue reading…