hi all,
I use this file for activemq configuration, but every time I start
web project in eclipse it's trying to access http://activemq.apache.org/schema/co...core-5.1.0.xsd. I have local copy of this schema and I added in to
xml catalog in eclipse, but it didn't help.
what should I do to prevent my app trying to access internet while starting?

<code>
...<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:amq="http://activemq.apache.org/schema/core"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jee="http://www.springframework.org/schema/jee"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schem...-beans-2.5.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schem...ng-jee-2.5.xsd
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core-5.1.0.xsd">

</code>


thanks.