what is diff between syncronous and Asyncronous webservice call in java?
Suresh Sudineni
Greenhorn
Joined: Jul 18, 2008
Posts: 3
posted
0
what is diff between syncronous and Asyncronous webservice call in java? what is the code differences to implement this?
in code what we have to change for syscronous and Asyncronous webservice calls in java?
Jim Pouwels
Ranch Hand
Joined: Feb 22, 2012
Posts: 61
posted
0
A synchronous webservice call immediately results in a response containing the data you're requesting.
An asynchronous webservice call does not return the result in the first response. Either the client has to request the result later (f.e. using a requestId), or the server sends the result back to the client (f.e. using a callback address).
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: what is diff between syncronous and Asyncronous webservice call in java?