mirror of https://github.com/apache/activemq.git
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@674438 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4118d02a95
commit
d0a4d3625d
|
@ -248,7 +248,7 @@ public abstract class MessageServletSupport extends HttpServlet {
|
||||||
*/
|
*/
|
||||||
protected Destination getDestination(WebClient client, HttpServletRequest request) throws JMSException {
|
protected Destination getDestination(WebClient client, HttpServletRequest request) throws JMSException {
|
||||||
String destinationName = request.getParameter(destinationParameter);
|
String destinationName = request.getParameter(destinationParameter);
|
||||||
if (destinationName == null) {
|
if (destinationName == null || destinationName.equals("")) {
|
||||||
if (defaultDestination == null) {
|
if (defaultDestination == null) {
|
||||||
return getDestinationFromURI(client, request);
|
return getDestinationFromURI(client, request);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue