You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You cannot directly send a request (or response) message to a client, since it will drop all unexpected messages silently.
There is this feature called Observing you may have interest in. It enables the server side to send more responses after the first one, or after a while.
In the server side,may I send a request after response.
I try that after
exchange.Respond(...)
Request request = Request.NewGet();
request.Destination = exchange.Request.Source;
exchange.Request.EndPoint.SendRequest(request);
it donot work
The text was updated successfully, but these errors were encountered: