I have an asyncronous WCF service, that uses a client proxy to call an 2nd SOAP WCF service. I have no control of the SOAP Java service, but i can set the configuration on the service reference to run Asyncronously.
How would i get a result from the 2nd Async Service, to pass values back to the 1st down to the Client??
public class AddService : IAddService
{
// SOAP Java service reference
ResultServiceClient proxy = new ResultServiceClient();
public int AddNumbers(int x, int y)
{
// Am i on the right track here to use BeginXXX, EndXXX?
proxy.BeginGetResult(x, y, new AsyncCallback(OnEndAdd), null);
/// how to return a result here.??????
return result;
}
void OnEndAdd(IAsyncResult result)
{
int result = proxy.EndGetResult(result);
}
}
