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…

 

How to serialize objects in VBA

Generally speaking, VBA doesn’t provide the possibility to serialize objects, and if you are interested in this topic, you might seen quite a few blogs around this thing, and the answer is always the same – generically not possible, period. But nothing is impossible though. This article describes a workaround which will give you a […]
Continue reading…