I'm trying to create a way to have a user submit the URL of the WSDL for a web service, then allow a way to submit/retrieve data to/from the service via a standard class. The problem is, I'll never know ahead of time the WSDL, so I can't anticipate the class it will need in advance.
I want a user to simply enter the URL of the WSDL, then after the system creates the needed class (I'm assuming), it will be able to offer to have the user insert values for the service call, and even name the returned values (for those services returning values). Do I really need to compile at run time? How would you approach this problem? TIA! pat :)
