Iterating through webservices and methods

J

John Bailo

(1) Is there an object that will let me iterate through the available web
services and methods on a server?

(2) Suppose I have a database that lists serveral web methods. How would I
take a text string from a data base and translate it to instantiating a
webservice?

For example, say my table is

ID WebService WebMethod
------- --------------- ----------
0 MyWebService SomeMethod


Then, in my c# code, how can I say

// loop through database with datareader

while(dr.Read())
string txtMethod = dr[2].ToString();


txtMethod(?) sm = new txtMethod?()
 
J

John Bailo

Dilip said:
You would typically use UDDI to do something like that
hth

What is the means of accessing UDDI via c#/.Net ?
John Bailo said:
(1) Is there an object that will let me iterate through the available web
services and methods on a server?

(2) Suppose I have a database that lists serveral web methods. How
would I take a text string from a data base and translate it to
instantiating a webservice?

For example, say my table is

ID WebService WebMethod
------- --------------- ----------
0 MyWebService SomeMethod


Then, in my c# code, how can I say

// loop through database with datareader

while(dr.Read())
string txtMethod = dr[2].ToString();


txtMethod(?) sm = new txtMethod?()
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top