Click here to Skip to main content
15,921,837 members
Home / Discussions / C#
   

C#

 
GeneralRe: Class Pin
harold aptroot21-Feb-09 4:58
harold aptroot21-Feb-09 4:58 
GeneralRe: Class Pin
Zoltan Balazs21-Feb-09 5:08
Zoltan Balazs21-Feb-09 5:08 
AnswerRe: Class Pin
Zoltan Balazs21-Feb-09 4:53
Zoltan Balazs21-Feb-09 4:53 
Questionneed help with windows application Pin
balukk20-Feb-09 22:45
balukk20-Feb-09 22:45 
AnswerRe: need help with windows application Pin
Deresen21-Feb-09 3:11
Deresen21-Feb-09 3:11 
AnswerRe: need help with windows application Pin
balukk21-Feb-09 3:56
balukk21-Feb-09 3:56 
GeneralRe: need help with windows application Pin
Deresen22-Feb-09 2:23
Deresen22-Feb-09 2:23 
GeneralRe: need help with windows application Pin
balukk23-Feb-09 5:44
balukk23-Feb-09 5:44 
QuestionWrite into Stream Pin
Abdul Rahman Hamidy20-Feb-09 22:21
Abdul Rahman Hamidy20-Feb-09 22:21 
Questioncrystal reports Pin
sritha20-Feb-09 22:19
sritha20-Feb-09 22:19 
QuestionTo Create Property or Method For another indexer property i write??? Pin
thrashead20-Feb-09 21:45
thrashead20-Feb-09 21:45 
QuestionUnsafe Code + GetEnumerator() [modified] Pin
grzesio191220-Feb-09 21:24
grzesio191220-Feb-09 21:24 
Questionwindoes live id / hotmail authentication in c# windows application Pin
techismart20-Feb-09 19:22
techismart20-Feb-09 19:22 
AnswerRe: windoes live id / hotmail authentication in c# windows application Pin
Eslam Afifi21-Feb-09 4:28
Eslam Afifi21-Feb-09 4:28 
QuestionRTF format !!! Pin
Mohammad Dayyan20-Feb-09 18:03
Mohammad Dayyan20-Feb-09 18:03 
Questioncommon language runtime error Pin
ashkan002120-Feb-09 17:58
ashkan002120-Feb-09 17:58 
AnswerRe: common language runtime error Pin
Xmen Real 20-Feb-09 18:00
professional Xmen Real 20-Feb-09 18:00 
Questionuse one serialport Rx, RTS and CTS at the same time causing conflict!? Pin
little_cOder20-Feb-09 13:41
little_cOder20-Feb-09 13:41 
QuestionC# Replicating SQL Server Scheduler Pin
MasterEvilAce20-Feb-09 12:32
MasterEvilAce20-Feb-09 12:32 
QuestionHow to remove the seconds from DatetimePicker ???? Pin
Yanshof20-Feb-09 12:00
Yanshof20-Feb-09 12:00 
AnswerRe: How to remove the seconds from DatetimePicker ???? Pin
PIEBALDconsult20-Feb-09 14:03
mvePIEBALDconsult20-Feb-09 14:03 
AnswerRe: How to remove the seconds from DatetimePicker ???? Pin
Riaan Booyzen20-Feb-09 17:50
Riaan Booyzen20-Feb-09 17:50 
GeneralRe: How to remove the seconds from DatetimePicker ???? Pin
Yanshof20-Feb-09 23:23
Yanshof20-Feb-09 23:23 
GeneralRe: How to remove the seconds from DatetimePicker ???? Pin
arnepop23-Mar-10 4:20
arnepop23-Mar-10 4:20 
QuestionAccessing db fields through Mule Web Service from ASP.NET 3.5 in C# Pin
Cindy White20-Feb-09 6:18
Cindy White20-Feb-09 6:18 
I am trying to access a web service in Mule from a C# project in VS 2005. I have access to the web service and the methods within it, but am unable to access the fields within the response. The response from the web service is an array of objects, but I cannot seem to break into the objects.
I have added a Web Reference to the data service. An example of how I am using the reference follows:

dataService serv = new dataService();
dataService.MyData myData = serv.getMyData();
ArrayList responseData = new ArrayList();
int count = myData.firstData.Length;
string dataName;

for(int i = 0; i < count; i++)
{
   responseData.Add(myData.firstData[i]);
   dataName = responseData[i].Name;		// This is not accessible
   MessageBox.Show(dataName);
}


Although Name is one of the fields in firstData, it is not accessible from firstData or from responseData. Java is accessing the fields through dto in Eclipse, but I do not appear to have access to those from my C# project.

Does anyone know of a way to access the Eclipse dtos from my VS project, or, barring that, is there another way to access the fields within the response object through my project?

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.