views:

38

answers:

1

How to design asynchronous web services? That means each web service wait for the reply from another one asynchronously?

Can anyone give me any clue?

A: 

provide the service with a callback ... so that:

service1 => service2.DoSomething();
// at a later time
service2 => service1.DoSomethingCallback(result);
Joel Martinez
:P. Generally, which technology can be used to transport messages among WSs asynchronously. jms?custominzed message? spread queue? especially,when tranversal of services using a ring network?Are there any examples available? THanks