Changeset 6391


Ignore:
Timestamp:
07/14/15 13:25:57 (9 years ago)
Author:
Twan Goosen
Message:

merged jsessionid fix and documentation updates from trunk

Location:
vlo/branches/vlo-3.2
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/vlo-3.2

  • vlo/branches/vlo-3.2/CHANGES.txt

    r6241 r6391  
    11Bug Fixes and Features
     2
     3VLO 3.2.1 (July 2015)
     4* Graceful handling of requests for all values of nonexistent facets
     5* Included the VLO iframe page for the CLARIN-D homepage
     6* Fixed a potential file descriptor leak in the VLO importer
     7* Fixed appearence of 'jsessionid' parameter in the URL
    28
    39VLO 3.2 (June 2015)
  • vlo/branches/vlo-3.2/UPGRADE.txt

    r6261 r6391  
    3030    ./vlo_solr_importer.sh -c ../config/VloConfig.xml
    3131
     32---------------------------
     33Upgrading from 3.2 to 3.2.1
     34---------------------------
     35* In the context fragment for the VLO web application, ADD the following
     36attribute to the <Context> root element:
     37
     38   sessionCookiePath="/"
     39
     40and, if set, REMOVE any "crossContext" parameter.
     41 
    3242---------------------------
    3343Upgrading from 3.1 to 3.2
  • vlo/branches/vlo-3.2/vlo-web-app/src/main/webapp/META-INF/context.xml

    r4583 r6391  
    11<?xml version="1.0" encoding="UTF-8"?>
    2 <Context antiJARLocking="true" path="/vlo-web-app">
     2<Context antiJARLocking="true" path="/vlo-web-app" sessionCookiePath="/">
    33    <!--
    44        If set, configuration will get read from this external location
  • vlo/branches/vlo-3.2/vlo-web-app/src/main/webapp/WEB-INF/web.xml

    r4767 r6391  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    22<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    4         version="2.5">
     3         xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
     4         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
     5         version="3.0">
    56
    67  <display-name>vlo-web-app</display-name>
     
    6263        <listener-class>net.bull.javamelody.SessionListener</listener-class>
    6364    </listener>
     65   
     66    <session-config>
     67        <tracking-mode>COOKIE</tracking-mode>
     68    </session-config>
    6469</web-app>
Note: See TracChangeset for help on using the changeset viewer.