G
Guest
I have a web service that I have written and can't seem to get it working
properly. I have a function that is exposed as a WebMethod() that is working
great. The problem is that i have several variables that need to be set
before calling the function. How can I go about setting those variables?
Could I use a public function exposed as a webmethod such as:
<WebMethod()> Public Sub SetIncome(ByVal Value as Integer)
iIncome = Value
End Sub
I tried creating properties with Get and Set but could not figure out how to
expose those publically. Any help is greatly appreciated!
properly. I have a function that is exposed as a WebMethod() that is working
great. The problem is that i have several variables that need to be set
before calling the function. How can I go about setting those variables?
Could I use a public function exposed as a webmethod such as:
<WebMethod()> Public Sub SetIncome(ByVal Value as Integer)
iIncome = Value
End Sub
I tried creating properties with Get and Set but could not figure out how to
expose those publically. Any help is greatly appreciated!