* @param context the message context
* @return an appropriate ServerRequest for the context
*/
private ServerRequest createServerRequest(ObjectMessageContext context) {
AbstractBindingBase binding = handler.getBinding();
ServerRequest request = new ServerRequest(binding, context);
// a server-originated resend implies a response, hence non-oneway
request.setOneway(false);
return request;
}