views:

108

answers:

0

Possible Duplicate: http://stackoverflow.com/questions/561867/sharing-data-types-from-multiple-web-references

It would be better to start my question with a simple diagram:

Client
-assembly 1
--SharedDataType.cs (SharedDataType class definition - extension)
-assembly 2
--CodeGeneratedFile.cs (SharedDataType class definition - code generated)
--GenerateProxyFile.bat (the wdsl command ...Microsoft Visual Studio 8\SDK\v2.0\Bin\wsdl.exe")

Server
-http://foofife.com/mywebservice.asmx (which exposes the data type SharedDataType)

Is it possible for me to have client side, all the added information from assembly 1 to my SharedDataType CLR object too?

Thank you!!