Instantiating Abstract Types from WSDL

I dynamically create a proxy class to call a web service froma variable number of web services which all implement a known method. This is done by using reflection.

How do I instantiate abstract data types defined in the WSDL?

[358 byte] By [bensun13] at [2008-2-17]
# 1
Hey,
You can not instantiate any abstract data type. No matter where it resides (on the server or on ur local machine)
DeobratSingh at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 2

That is correct. You must create a class that inherits from an abstract type and instantiate that in order to 'instantiate' the abstract type. By definition an abstract type is a placeholder on which to build real classes, and it cannot be created itself.

Freqy at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...
# 3
Hi bensun13 can you give me the project where u created proxy class from a web service.. I'm actually studying on that I just want something to start with.. Thanks a lot... U can email me omeng8@yahoo.com :)
omengware at 2007-9-8 > top of Msdn Tech,Visual Studio Express Editions,Visual C# 2005 Express Edition...