* @return The service implementation must construct a proper formatted
* java string object and return as the request response.
*/
public ReadOnlyResponseMessage request (ReadOnlyRequestMessage request) {
ProviderBrokerInfoService bis = BrokerInfoService.getProviderBrokerInfoService(null);
String user = request.getMessageProperty (Constants.USER);
String pass = request.getMessageProperty (Constants.PASSWORD);
String respMsg = bis.getBrokerInfo(request, user, pass);
ReadOnlyResponseMessage rorm = ReadOnlyMessageFactory.createResponseMessage();
rorm.setResponseMessage (respMsg);