all groups > sql server reporting services > august 2004 >
You're in the

sql server reporting services

group:

data processing extension sample


data processing extension sample JL
8/24/2004 5:43:02 PM
sql server reporting services:
I'm trying to write some code to retrieve a reports list from a report folder.

Is it possible to create data processing extension in old asp? Either yes
or no, could someone post a link to some sample code, aspx samples would be
RE: data processing extension sample JL
8/24/2004 6:01:02 PM
I forgot to mention that I only know VB. So please provide the samples in
VB. Thx a mil!

[quoted text, click to view]
Re: data processing extension sample Renato Aloi
8/25/2004 11:17:41 AM
http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=B8468707-56EF-4864-AC51-D83FC3273FE5

try this one. the best i have found.

[]s
Renato

"JL" <JL@discussions.microsoft.com> escreveu na mensagem
news:1E1F4C39-7C3E-4263-B883-D2865507C968@microsoft.com...
[quoted text, click to view]

Re: data processing extension sample JL
8/25/2004 11:39:03 AM
Thx a lot. But I only want to retrieve the reports list from a report
folder. Do I need to use the same extension? Or is there an alternative
(easier) way? Thx.

[quoted text, click to view]
Re: data processing extension sample Renato Aloi
8/26/2004 2:39:00 PM
I saw a sample that demonstrate this... But I don't remmember where... What
I remmember is that you can write some code to do that, using ListChildren
method of Reporting Service Web Server, like this:

dim items() as CatalogItem
items = (new ReportingService).ListChildren("/", True)

then populate a list:

for each item as CatalogItem in items
cboWhatever.Items.Add(new ReportItem(item.name, item.Path))
next

That is it. Do not forget to reference the RS web service...

[]s
Renato


"JL" <JL@discussions.microsoft.com> escreveu na mensagem
news:F408C4D6-DB48-40F1-A6A5-22BE8E958114@microsoft.com...
[quoted text, click to view]

AddThis Social Bookmark Button