Wednesday, August 06, 2008

Speed up Web Services with the SoapDocumentMethod Attribute – Asynchronous SOAP calls

 

Here is how to do it:
[WebMethod, SoapDocumentMethod(OneWay = true)]
public void LogError(string errorMessage)
{
  DoSlowOperation(errorMessage);
}

Speed up Web Services with the SoapDocumentMethod Attribute

No comments: