Click here to Skip to main content
15,797,606 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 1:19
Shyam K Pananghat25-Feb-09 1: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 1:33
S a n d y25-Feb-09 1:33 
GeneralRe: How can I check any row of database has updated or not through update query Pin
Shyam K Pananghat25-Feb-09 23:20
Shyam K Pananghat25-Feb-09 23:20 
AnswerRe: How can I check any row of database has updated or not through update query Pin
Wendelius25-Feb-09 9:34
mentorWendelius25-Feb-09 9: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 1:37
S a n d y26-Feb-09 1:37 
AnswerRe: How can I check any row of database has updated or not through update query Pin
Megidolaon25-Feb-09 23:10
Megidolaon25-Feb-09 23:10 
QuestionRemote Access Error Pin
mightygirls25-Feb-09 0:16
mightygirls25-Feb-09 0:16 
QuestionDisplaying list of SSRS reports in C#.net windows application using a service reference Pin
sudip67825-Feb-09 0:02
sudip67825-Feb-09 0: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 1:13
Calin Tatar25-Feb-09 1:13 
GeneralRe: Displaying list of SSRS reports in C#.net windows application using a service reference Pin
sudip67825-Feb-09 1:18
sudip67825-Feb-09 1:18 
QuestionUnable to Download file Options Pin
shantanusenin24-Feb-09 23:56
shantanusenin24-Feb-09 23:56 
AnswerRe: Unable to Download file Options Pin
Calin Tatar25-Feb-09 0:03
Calin Tatar25-Feb-09 0:03 
GeneralRe: Unable to Download file Options Pin
shantanusenin25-Feb-09 0:11
shantanusenin25-Feb-09 0:11 
Question[Message Deleted] Pin
Prajeesh24-Feb-09 23:32
Prajeesh24-Feb-09 23:32 
AnswerRe: Delete in Richtextbox? Pin
Expert Coming24-Feb-09 23:33
Expert Coming24-Feb-09 23:33 
AnswerRe: Delete in Richtextbox? Pin
Eddy Vluggen24-Feb-09 23:51
professionalEddy Vluggen24-Feb-09 23:51 
Question[Message Deleted] Pin
Prajeesh24-Feb-09 23:55
Prajeesh24-Feb-09 23:55 
AnswerRe: Delete in Richtextbox? Pin
Eddy Vluggen25-Feb-09 0:07
professionalEddy Vluggen25-Feb-09 0:07 
Question[Message Deleted] Pin
Prajeesh25-Feb-09 0:28
Prajeesh25-Feb-09 0:28 
AnswerRe: Delete in Richtextbox? Pin
Eddy Vluggen25-Feb-09 0:35
professionalEddy Vluggen25-Feb-09 0:35 
Question[Message Deleted] Pin
Prajeesh25-Feb-09 0:47
Prajeesh25-Feb-09 0:47 
AnswerRe: Delete in Richtextbox? Pin
Eddy Vluggen25-Feb-09 1:11
professionalEddy Vluggen25-Feb-09 1:11 
General[Message Deleted] Pin
Prajeesh25-Feb-09 1:23
Prajeesh25-Feb-09 1:23 
GeneralRe: Delete in Richtextbox? Pin
Eddy Vluggen25-Feb-09 2:06
professionalEddy Vluggen25-Feb-09 2:06 
Answer[Message Deleted] Pin
Prajeesh26-Feb-09 17:39
Prajeesh26-Feb-09 17: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.