Reputation: 1
We are using a soap service for communication between server and client. We have written a function in wsdl of the server for this. When we try to run the code for the client, we are getting an exception saying that function doesn't exist. It is showing soap header exception when we debug the code. Kindly help us in this issue.
Upvotes: 0
Views: 964
Reputation: 13
To ensure that you refer to the right function, you should have used add ServiceReference by right clicking the project in Visual Studio
Upvotes: 1
Reputation: 24
I never wrote WSDL myself. Instead, you may write a mirror .NET Web Service and use the automatically generated WSDL (by MS Visual Studio).
Upvotes: 0