// Clear the text field
view.getTxtNewMessage().setText("");
// Send a request to the core to save this message
final Request request = Network.getInstance().makeRequest("postboard/postboardmessage", HttpMethod.PUT); // PUT == create
request.setBody(new PostBoardMessage(message).toJSON()); // put the new message in the body of the request
request.addObserver(new AddMessageRequestObserver(this)); // add an observer to process the response
request.send(); // send the request
}
}