Click here to Skip to main content
15,868,016 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
When I use Web Service in Application then only for call the Web Service and all other Process are run in backend in Web Service.

When i call web service in application without wait or get any response calling continue is this possible?
Posted
Updated 19-Feb-15 3:52am
v2
Comments
John C Rayan 19-Feb-15 8:25am    
The question is unclear. Can you be more clearer in what you are trying to do.
Naveen Kumar Tiwari 19-Feb-15 8:37am    
yes, After make web service separately, you can call it in other application..
your Question is not make sense so Elaborate more....
ZurdoDev 19-Feb-15 8:37am    
Call it asynchronously.
Member 11191738 19-Feb-15 9:05am    
web service run without waiting a response
Sergey Alexandrovich Kryukov 19-Feb-15 19:22pm    
Call it asynchronously.
—SA

If I am correct you want to get the data from the web service in between its execution. You can break up your service code and then call them sequentially. For example using jQuery:

$.ajax(service call 1).then(service call 2).then(...) and so on.

I can be more specific if the above solution meet your requirement.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900