First of all please don't close this question as duplicate of http://stackoverflow.com/questions/1181888/what-does-xmlns-in-xml-mean, Actually, i am having an entry in my servlet.xml,
xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr
Now what i think is, dwr is the prefix we are going to use, like
<dwr:configuration>
<dwr:convert type="bean" class="com.abc.bean.MyBean" />
</dwr:configuration>
Now the problem is, if the site http://www.directwebremoting.org is down then my application is unable to create the beans.
Is it going to hit this website everytime beanfactory creates the bean?
Is there any alternative so that i can use dwr, without hitting there website?
Complete header:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.directwebremoting.org/schema/spring-dwr
http://www.directwebremoting.org/schema/spring-dwr-2.0.xsd">