Click here to Skip to main content
15,890,741 members
Home / Discussions / C#
   

C#

 
AnswerRe: How can I check any row of database has updated or not through update query Pin
Shyam K Pananghat25-Feb-09 0:19
Shyam K Pananghat25-Feb-09 0:19 
GeneralRe: How can I check any row of database has updated or not through update query Pin
S a n d y25-Feb-09 0:33
S a n d y25-Feb-09 0:33 
GeneralRe: How can I check any row of database has updated or not through update query Pin
Shyam K Pananghat25-Feb-09 22:20
Shyam K Pananghat25-Feb-09 22:20 
AnswerRe: How can I check any row of database has updated or not through update query Pin
Wendelius25-Feb-09 8:34
mentorWendelius25-Feb-09 8:34 
GeneralRe: How can I check any row of database has updated or not through update query Pin
S a n d y26-Feb-09 0:37
S a n d y26-Feb-09 0:37 
AnswerRe: How can I check any row of database has updated or not through update query Pin
Megidolaon25-Feb-09 22:10
Megidolaon25-Feb-09 22:10 
QuestionRemote Access Error Pin
mightygirls24-Feb-09 23:16
mightygirls24-Feb-09 23:16 
QuestionDisplaying list of SSRS reports in C#.net windows application using a service reference Pin
sudip67824-Feb-09 23:02
sudip67824-Feb-09 23:02 
I am trying to display a list of reports from SSRS in a WebBrowser control in C# windows application.
I have added "http://localhost/reportserver/reportservice.asmx?wsdl" as the Web service reference.

The following code works perfectly with the above
try
{
ReportService.ReportingService rs = new ReportService.ReportingService();
rs.Credentials = System.Net.CredentialCache.DefaultCredentials;
rs.Url = "http://localhost/reportserver/reportservice.asmx";

ReportService.CatalogItem[] items = rs.ListChildren("/BaxterReports", true);

for (cnt = 0; cnt <= items.Length - 1; cnt++)
{
//MessageBox.Show(items[cnt].Name.ToString());
listBox1.Items.Add(items[cnt].Name.ToString());

}
}

When I try to do the same thing by adding the web service as a service reference, The code does not work.

For this statement:
ReportService.ReportingService rs = new ReportService.ReportingService();
I get error like "The type or namespace ReportingService does not exist"


I need to use a service reference only as i need to develop the app in 3.5

Any help would be greatly appreciated.

Thanks
S
AnswerRe: Displaying list of SSRS reports in C#.net windows application using a service reference Pin
Calin Tatar25-Feb-09 0:13
Calin Tatar25-Feb-09 0:13 
GeneralRe: Displaying list of SSRS reports in C#.net windows application using a service reference Pin
sudip67825-Feb-09 0:18
sudip67825-Feb-09 0:18 
QuestionUnable to Download file Options Pin
shantanusenin24-Feb-09 22:56
shantanusenin24-Feb-09 22:56 
AnswerRe: Unable to Download file Options Pin
Calin Tatar24-Feb-09 23:03
Calin Tatar24-Feb-09 23:03 
GeneralRe: Unable to Download file Options Pin
shantanusenin24-Feb-09 23:11
shantanusenin24-Feb-09 23:11 
Question[Message Deleted] Pin
Prajeesh24-Feb-09 22:32
Prajeesh24-Feb-09 22:32 
AnswerRe: Delete in Richtextbox? Pin
Expert Coming24-Feb-09 22:33
Expert Coming24-Feb-09 22:33 
AnswerRe: Delete in Richtextbox? Pin
Eddy Vluggen24-Feb-09 22:51
professionalEddy Vluggen24-Feb-09 22:51 
Question[Message Deleted] Pin
Prajeesh24-Feb-09 22:55
Prajeesh24-Feb-09 22:55 
AnswerRe: Delete in Richtextbox? Pin
Eddy Vluggen24-Feb-09 23:07
professionalEddy Vluggen24-Feb-09 23:07 
Question[Message Deleted] Pin
Prajeesh24-Feb-09 23:28
Prajeesh24-Feb-09 23:28 
AnswerRe: Delete in Richtextbox? Pin
Eddy Vluggen24-Feb-09 23:35
professionalEddy Vluggen24-Feb-09 23:35 
Question[Message Deleted] Pin
Prajeesh24-Feb-09 23:47
Prajeesh24-Feb-09 23:47 
AnswerRe: Delete in Richtextbox? Pin
Eddy Vluggen25-Feb-09 0:11
professionalEddy Vluggen25-Feb-09 0:11 
General[Message Deleted] Pin
Prajeesh25-Feb-09 0:23
Prajeesh25-Feb-09 0:23 
GeneralRe: Delete in Richtextbox? Pin
Eddy Vluggen25-Feb-09 1:06
professionalEddy Vluggen25-Feb-09 1:06 
Answer[Message Deleted] Pin
Prajeesh26-Feb-09 16:39
Prajeesh26-Feb-09 16:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.