Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Binding a gridview to a web service

Status
Not open for further replies.

StevenB

IS-IT--Management
Sep 25, 2000
247
US
Hi folks,

I'm a complete .NET newbie, in way over my head. :) I'm familiar with some of the .NET concepts, but I only know enough to be dangerous. I'm currently faced with the task of writing a .NET form that will basically retrieve some data from a vendor-provided web service and display it in grid format.

I've added a web reference to the service. No problem so far. The service provides an operation called ExecuteSQLtoXML, that takes a GUID, password, and a SQL string, and returns an XML document with the data. The vendor provided this little snippet of code for information purposes, although when I threw this in my page_load, it didn't like the Xml.XmlNode bit:

Dim nCan As Xml.XmlNode = mySoap.ExecuteSQLToXML(sql, guid, password)

Right now, the form I have created has essentially nothing but a GridView object. After a few hours of googling and looking at various tutorials, I've realized that I simply have no idea how to tell the GridView to use the results of the ExecuteSQLtoXML operation.

I realize I'm probably missing about 500 fundamental concepts I should understand between here and there, but FWIW this is where I stand right now.

Any ideas?

Thanks,

Steve
 
you have posted your question in the wrong forum. try ASP.NET forum...

-DNG
 
*grumble*

I swear, I thought I looked for a .NET forum.

:)

Appreciate the gentle nudge.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top