*/
@Override
public void receive(final Object msg, final URI senderUrl, final String tag) {
JsonNode id = null;
try {
final JSONMessage jsonMsg = jsonConvert(msg);
if (jsonMsg != null) {
if (jsonMsg.getId() != null) {
id = jsonMsg.getId();
}
if (jsonMsg instanceof JSONRequest) {
final RequestParams params = new RequestParams();
params.put(Sender.class, senderUrl.toASCIIString());