Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

CSS Stylesheet
.issuekey {
white-space: nowrap;
}

If you still use the application server directly instead of WAR then the web.xml file from application_server/server/ROOT/WEB-INF/ must be adjusted to not get an exception on startup:

Code Block
languagexml
 <filter>
      <filter-name>SeparateSessionFilter</filter-name>
      <filter-class>org.sablo.filter.SeparateSessionFilter</filter-class>
      <init-param>
      <!-- Separate sablo request from non-sablo (web client), only invalidate session when both are invalidated -->
         <param-name>paths</param-name>
         <param-value>/rfb/:/websocket/:/solutions/:/spec/:/resources/</param-value>
      </init-param>
   </filter>

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

Remove those lines (are on different locations in the web.xml file).


Many cases are already also in 2020.06 except: SVY-15146, SVY-15153, SVY-15192, SVY-15208

...