You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@activemq.apache.org by "tanuja75@gmail.com" <ta...@gmail.com> on 2013/11/30 23:10:14 UTC

New to AJAX-AMQ

I have created a spring-MVC project. My home.jsp has a script like so 

	
	
	
	






In the web.xml I have this entry
<filter>
		<filter-name>session</filter-name>

	
<filter-class>org.eclipse.jetty.continuation.ContinuationFilter</filter-class>

	</filter>

	<filter-mapping>
		<filter-name>session</filter-name>
		<url-pattern>/*</url-pattern>
	</filter-mapping>


<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>/WEB-INF/spring/root-context.xml</param-value>
	</context-param>
	<context-param>
		<param-name>org.apache.activemq.brokerURL</param-name>
		<param-value>tcp://localhost:61616</param-value>
	</context-param>

	<context-param>
		<param-name>org.apache.activemq.embeddedBroker</param-name>
		<param-value>true</param-value>
	</context-param>



I am running this on Jetty Server. 
When I run the app . There is no error , but the messages are not getting
sent to the server. Do I need to do some other settings?

I am blocked. Please help.

Thanks 



--
View this message in context: http://activemq.2283324.n4.nabble.com/New-to-AJAX-AMQ-tp4674969.html
Sent from the ActiveMQ - User mailing list archive at Nabble.com.