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…