Iterating through webservices and methods

  • Thread starter Thread starter John Bailo
  • Start date Start date
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?()
 
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?()
 
Back
Top