Hi,
Does anyone know how to make a webservice to be called dynamic, meaning I have an application which needs to validate the content of a field. The validation which needs to be done however, depends on the name of the field. So I have a database which contains fieldnames and the related webservice like:
- field A , service CheckA
- field B , service CheckB
The code I would like to have is one single line which calls the validation service depending on the fieldname.
Eg. call validation
where validation would be CheckA if I'm processing field A and CheckB if I'm processing field B. So the name of the webservice to be called is set during the execution of the program.
Thanks