/[projects]/dao/DaoAdresseService/WebContent/WEB-INF/web.xml
ViewVC logotype

Diff of /dao/DaoAdresseService/WebContent/WEB-INF/web.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2267 by torben, Thu Feb 12 13:57:32 2015 UTC revision 2376 by torben, Thu Feb 26 07:06:48 2015 UTC
# Line 775  standard deployment descriptor. Line 775  standard deployment descriptor.
775  <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:web="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">  <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:web="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
776    <display-name>DaoAdresseService</display-name>    <display-name>DaoAdresseService</display-name>
777    <description></description>    <description></description>
778      <welcome-file-list>
779        <welcome-file>index.html</welcome-file>
780        <welcome-file>index.jsp</welcome-file>
781      </welcome-file-list>
782    <resource-ref>    <resource-ref>
783      <description>MySQL fulddaekning on info.dao.int</description>      <description>MySQL fulddaekning on info.dao.int</description>
784      <res-ref-name>jdbc/fulddaekning</res-ref-name>      <res-ref-name>jdbc/fulddaekning</res-ref-name>
785      <res-type>javax.sql.DataSource</res-type>      <res-type>javax.sql.DataSource</res-type>
786      <res-auth>Container</res-auth>      <res-auth>Container</res-auth>
787    </resource-ref>    </resource-ref>
788      <filter>
789        <filter-name>SetCharacterEncoding</filter-name>
790        <filter-class>org.apache.catalina.filters.SetCharacterEncodingFilter</filter-class>
791        <init-param>
792          <param-name>encoding</param-name>
793          <param-value>UTF-8</param-value>
794        </init-param>
795      </filter>
796      <filter-mapping>
797        <filter-name>SetCharacterEncoding</filter-name>
798        <url-pattern>/*</url-pattern>
799      </filter-mapping>
800      
801            <context-param>  
802            <description>Bool: use google geocoding to help with streetnames</description>
803            <param-name>useGoogle</param-name>
804            <param-value>true</param-value>
805            </context-param>
806            
807             <context-param>  
808            <description>Bool: use OSM geocoding to help with streetnames</description>
809            <param-name>useOpenStreetMaps</param-name>
810            <param-value>true</param-value>
811            </context-param>
812            
813            <context-param>  
814            <description>Int: Timeout for HTTPRequest (ms)</description>
815            <param-name>osmTimeout</param-name>
816            <param-value>750</param-value>
817            </context-param>
818            
819            <context-param>  
820            <description>String: Base for nominatim URL</description>
821            <param-name>nominatimBase</param-name>
822            <param-value>http://nominatim.openstreetmap.org</param-value>
823            </context-param>
824      
825      
826      
827  </web-app>  </web-app>

Legend:
Removed from v.2267  
changed lines
  Added in v.2376

  ViewVC Help
Powered by ViewVC 1.1.20