Quantcast
Channel: SCN: Message List
Viewing all articles
Browse latest Browse all 8644

Re: Export webi to PDF, XLS in Asp.NET using RESTFul Web Services

$
0
0

Hi Richard,

 

 

Please change the following 2 lines in the code :

 

WebRequest myWebRequest2 = WebRequest.Create(InfoStoreURI);

myWebRequest2.ContentType ="application/pdf";

 

to the below lines:

 

HttpWebRequest myWebRequest2 = (HttpWebRequest)WebRequest.Create(InfoStoreURI);

myWebRequest2.Accept = "application/pdf";

 

Regards,

Swati


Viewing all articles
Browse latest Browse all 8644

Trending Articles