*
* @exception ConnectException If the connection fails.
* @exception AdminException If the request fails.
*/
public final String getDefaultDMQId(int serverId) throws ConnectException, AdminException {
GetDMQSettingsRequest request = new GetDMQSettingsRequest(DestinationConstants.getNullId(serverId));
GetDMQSettingsReply reply = (GetDMQSettingsReply) doRequest(request);
if (reply.getDMQName() == null) return null;
return reply.getDMQName();