git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@674438 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jonas B. Lim 2008-07-07 10:07:49 +00:00
parent 4118d02a95
commit d0a4d3625d
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ public abstract class MessageServletSupport extends HttpServlet {
*/
protected Destination getDestination(WebClient client, HttpServletRequest request) throws JMSException {
String destinationName = request.getParameter(destinationParameter);
if (destinationName == null) {
if (destinationName == null || destinationName.equals("")) {
if (defaultDestination == null) {
return getDestinationFromURI(client, request);
} else {