Ask a Question related to ASP.NET Web Services, Design and Development.
-
JMMB #1
asynchronous call timeout
rHow could I set a timeout for this asynchonous call? I tried wait.one, but
didn't work.
thanks a lot.
private void Button1_Click(object sender, System.EventArgs e)
{
localhost.WoodgroveOnlineBank bank = new localhost.WoodgroveOnlineBank();
IAsyncResult ar = bank.BeginGetAccount(1, null, bank);
//...Do various asynchonous calls...
localhost.Acct acct = bank.EndGetAccount(ar);
Label1.Text = string.Format("The account {0} has a balance of {1:c}",
acct.description, acct.balance);
}
JMMB Guest
-
Asynchronous Web Service Call
Karl, If the webservice is out of process (whether it be on another machine or just out of process), then it will be executed using a thread from... -
asynchronous call to web service from a web page
My web service is to update a database. When user clicks on a button on a web page, it calls web service to update database. With hundred... -
Web service Asynchronous call fails
Hi I created a webservice with a simple we method to increment a number passed from the client(a console app) . Then i call this web service method... -
Asynchronous Web Service Call Fails
Hi I created a webservice with a simple we method to increment a number passed from the client(a console app) . Then i call this web service method... -
Web servive asynchronous call fails
Hi I created a webservice with a simple we method to increment a number passed from the client(a console app) . Then i call this web service method...



Reply With Quote

