I am looking for a little bit of information on how to render PDF from JSReport when sending the information via HTTP Post, below is how I am making this request locally using vb.net. (jsonString = formatted json that is expected). JSReport handles the request when sending information needed on the template and saves files pertaining to the request locally (one of these files is the pdf that I am looking to render from my web site (this is not an web application as there is no .sln or .proj files as sites is driven off .aspx pages).
The PDF stream is returned from JSReport but is encoded, is there a specific client/dll that is needed to render these pdfs from vb.net and not javascript as this processing is done server side?
Dim uri As New Uri("http://localhost:4000/api/report")
Dim client As New Net.WebClient
client.Headers.Set("Content-Type", "application/json")
Dim result = client.UploadString(uri, jsonString)