I have a simple service with one operational contract method Sum
[OperationContact]
int sum(int i, int q);
When I integrate the web service into a Silverlight application by adding this code to the main page:
ServiceReference1.Service1Client obj = new ServiceReference1.Service1Client();
it does not call the sum method. Moreover, it shows:
obj.sumAsync(int i, int q)
user1386919
source
share