Get report from jasperserver using REST webservice and asp.net C#
You can use the jasperservers webservices (SOAP and REST is available) to get mange and run reports on from a web application. The SOAP wsdl is not compatible with asp.net c# (at least, I cannot get it to work), so I decided to use the REST webservice. I am ALMOST there, but I can't retrieve the report itself. does anyone know what goes wrong? I am using jasperserver CE 4.5 on Linux. // Setup WebClient WebClient httpclient = new WebClient(); //Basic Auth httpclient.Credentials = new NetworkCredential("NAME", "PASSWD"); httpclient.Headers.Add("Content-Type", "application/x-www-form-urlencoded")