devxlogo

Using the OneWay Web Service Attribute

Using the OneWay Web Service Attribute

When you call a web service method that doesn’t return a value (a void method), you don’t want to waste time waiting until the call returns. But by default, the calling thread blocks until the server responds.

In such cases, you can use the OneWay Boolean attribute of the SoapDocumentMethod in the System.Web.Services.Protocols assembly. This attribute frees the calling thread (the client thread) immediately, instead of causing it to wait for the server response.

Note that the attribute is valid only for void methods.

Here’s the syntax:

[SoapDocumentMethod(OneWay=true)][WebMethod()]public void OneWayMethod() {    ...}
See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist