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?()
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?()