-
Notifications
You must be signed in to change notification settings - Fork 36
259 medical history returning 500 error #309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
a6d3211
ce0af1e
1b3f77b
c438e03
3c51112
3629359
448ac92
10e30e8
e9d2b7e
73601e3
bfb6bf6
bd0efcf
13f8831
c905798
305a5be
5398627
fe1768d
b87f8e4
4e2cf77
140cf06
80af7f1
946a036
e39ab0c
3f4d6bc
1a1f88a
cea1e28
7f97bf9
46b28d0
b5a8ab8
465f095
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -43,12 +43,53 @@ | |
| <filter> | ||
| <filter-name>struts2</filter-name> | ||
| <filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class> | ||
| <init-param> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK, going to ask for some comments here that help explain what the additional filter settings do/why they are needed. |
||
| <param-name>actionPackages</param-name> | ||
| <param-value>org.oscarehr,oscar</param-value> | ||
| </init-param> | ||
| <init-param> | ||
| <param-name>struts.devMode</param-name> | ||
| <param-value>false</param-value> | ||
| </init-param> | ||
| <init-param> | ||
| <param-name>struts.configuration.files</param-name> | ||
| <param-value>struts-default.xml,struts-plugin.xml,struts.xml</param-value> | ||
| </init-param> | ||
| <init-param> | ||
| <param-name>struts.action.extension</param-name> | ||
| <param-value>do</param-value> | ||
| </init-param> | ||
| <init-param> | ||
| <param-name>struts.enable.SlashesInActionNames</param-name> | ||
| <param-value>true</param-value> | ||
| </init-param> | ||
| <init-param> | ||
| <param-name>struts.mapper.alwaysSelectFullNamespace</param-name> | ||
| <param-value>false</param-value> | ||
| </init-param> | ||
| <init-param> | ||
| <param-name>struts.custom.i18n.resources</param-name> | ||
| <param-value>oscarResources</param-value> | ||
| </init-param> | ||
| <init-param> | ||
| <param-name>struts.serve.static</param-name> | ||
| <param-value>true</param-value> | ||
| </init-param> | ||
| <init-param> | ||
| <param-name>struts.serve.static.browserCache</param-name> | ||
| <param-value>true</param-value> | ||
| </init-param> | ||
| <init-param> | ||
| <param-name>struts.action.excludePattern</param-name> | ||
| <param-value>.*\.(css|js|png|jpg|gif)$</param-value> | ||
| </init-param> | ||
| </filter> | ||
| <filter-mapping> | ||
| <filter-name>struts2</filter-name> | ||
| <url-pattern>/*</url-pattern> | ||
| <dispatcher>REQUEST</dispatcher> | ||
| <dispatcher>FORWARD</dispatcher> | ||
| <dispatcher>INCLUDE</dispatcher> | ||
| </filter-mapping> | ||
| <filter> | ||
| <filter-name>WebServiceSessionInvalidatingFilter</filter-name> | ||
|
|
@@ -521,6 +562,15 @@ | |
| </welcome-file-list> | ||
|
|
||
| <error-page> | ||
| <error-code>404</error-code> | ||
| <location>/errorpage.jsp</location> | ||
| </error-page> | ||
| <error-page> | ||
| <error-code>500</error-code> | ||
| <location>/errorpage.jsp</location> | ||
| </error-page> | ||
| <error-page> | ||
| <exception-type>java.lang.Exception</exception-type> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like this, but should we have a different setup for development we should have an alternative file we someone use etc? |
||
| <location>/errorpage.jsp</location> | ||
| </error-page> | ||
| </web-app> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not anything I will send for a request for change, but do look to up the inline comment bar etc at least in the areas being worked on where possible.