In my web service project I've imported an assembly (that I also have
the source to) that contains structs that are serializable. I've
created some web service methods that return and take as parameters
some of these structures. When adding a web reference to a client that
consumes these web services, reference.cs doesn't contain a definition
for any of the structures in the assembly. I know I can add a
reference to the assembly directly in the client project to make it
work, but is there a way that I can make it work without doing this?
How can I expose these structures so they are part of the wsdl file
and thus have proxy stubs created for them? I would like clients to be
able to use these web services without having to download and add a
reference to their project. Thanks.
Matt
the source to) that contains structs that are serializable. I've
created some web service methods that return and take as parameters
some of these structures. When adding a web reference to a client that
consumes these web services, reference.cs doesn't contain a definition
for any of the structures in the assembly. I know I can add a
reference to the assembly directly in the client project to make it
work, but is there a way that I can make it work without doing this?
How can I expose these structures so they are part of the wsdl file
and thus have proxy stubs created for them? I would like clients to be
able to use these web services without having to download and add a
reference to their project. Thanks.
Matt
Comment