how send a class Instance to web service?
I want to开发者_如何转开发 send a class instance to my Web Service(ASP.NET - C#). How can I do?
If this is a SOAP enabled web service you need to first generate a client proxy by pointing svcutil.exe (or wsdl.exe if you are using .NET 2.0) to the WSDL that is exposed by the web service. You could also do this directly in Visual Studio (Add Service Reference...). This will generate the client proxy classes that will enable you to invoke service methods and pass them object instances they accept.
If this is not a SOAP web service you will need to provide more details.
精彩评论