Skip to content

Commit 41f925e

Browse files
uhurusurfapete-gilchrist
authored andcommitted
Release 2.3.2 (#47)
* Fix typo in config file (#44) * Enhance request reader (#46) * Replaced forceStop with recoverable error - DirectoryPollingModule now moves the file to the error directory if it fails to process, instead of relying on forceStop - DirectoryResenderModule already had error directory handling, simply removed forceStop * Revert "#15 Provide recoverable solution to invalid file name in "toAny" folder" * Release version 2.3.0 (#35) * Upgrade to latest BuncyCastle libraries * Cater for JRE and JDK location of JSSE certificate file * Update developers guide * Refactored maven configuration - Introduced maven wrapper in order to stick to certain version of maven and eliminate dependency on local installation - Moved dependencies and plugins to parent in order to have a single point version declaration - Remove unnecessary configurations from poms - Fix modules hierarchy - Introduced SNAPSHOT version for further configuration of release process - Removed IDE specific files - Update .gitignore * Improved Maven config - Added automatically copied dependencies, no need to put jars into lib manually - Renamed artifact names to standard since start-up scripts were improved - Scripts and configs were relocated for further release process configuration - Introduced maven-site-plugin for documentation uploading - Removed obsolete Ant configuration since Maven wrapper can be used. * State processing value fixes (#27) * Fix the DIRECTION setting for database logging * Set FILE_NAME of payload as early as possible to ensure it is logged in the state processing log events * Fix uuid in stored file name (#28) * Fix the DIRECTION setting for database logging * Set FILE_NAME of payload as early as possible to ensure it is logged in the state processing log events * Remove redundant import * Using direct setOption call instead. * Remove automatically appending a UUID to the stored inbound files name * Make OpenAS2Server more testable (#29) * Make OpenAS2Server more testable - Added a build for OpenAS2Server instance. - Command processor initialization moved to XMLSession. - H2DBHandler moved to appropriate package. - Graceful shutdown on exit command. - Added an integration test. - All threads and timers were named in order to simplify profiling. - Introduced a scheduler component for periodical tasks. - Code cleanup and re-formatting. - Bumped version. * Minor enhancements and bugfixes (#30) * Make message Id globally reconfigurable * Make session object available in resend method to facilitate DB logging * Update to use a specified format to avoid failure when format is changed. * Use a common method for generating the message ID between AS2 message and MDN response * Support InvalidParameterException exception in generatMessageId method * Make information about app available as properties * Use the Properties object for app info * Remove hard coded app info * Use Properties for app title * Remove redundant method * The terminate method will either call server shutdown method or teminate JVM depending on flag * Add the global default format for message ID generation Change fileid to filename for format attribute on the generic directory polling module instance * Support access to server object via session and add mechanism to determine if JVM shutdown should be allowed * Allow payload file name to be accessed via message object if not extracted from disposition * Allow storing the server object * Use common methid for genrating message ID. Add some trace logging to simplify debug * Changes to support using external databases and make embedded DB handler more generic to allow easier replacement with other embedded DB * Persist all message attributes for pending files to retain information through the lifecycle of the sent messages * Support Random parameters on MDN file name format string * Add 2 new paramters for controlling the DB tracking database * Copy new "resources" folder containing DB utilities into distribution package * Start extending the developer related documentation * Various additions and enhancements to documentation for 2.3.0 release * Add a resend queued message state * Split building the metadata from the actual message to facilitate new functionality that depends on the metadata * Support PRIOR_MSG_ID column for back reference tpo previous message send attempt * Add a state message log when resend is going to be attempted to provide a final state to the old message * Tools to create database table SQL and manage upgrade to database * Sample script to run DDLUtils builder * Set formal release number * Update for latest release * Refined LogManager (#31) - Added default logger for cases when no logger are configured. - Refactored initialization of LogManager * Proxy server plus bug fixes (#33) * Fixed exit command - Added Session lifecycle controls. - H2 server thread was still running event after shutdown() that prevented server from shutdown. * Set the class to ActiveModule when building and returning a list of active modules to avoid unnecessary class casts and check for running modules to stop to avoid unnecessary calls. * Remove call to stop modules method in stop() method for session since destroy() method on processors modules does that. * Add additional debug message to facilitate debugging * Support proxy server Support proxy authentication Support handing the openConnection() method a proxy instance * Remove redundant imports * Support ASYNC MDN send retry * Add default "retries" attribute to AS2SenderModule and AsyncMDNSenderModule * Support extracting key/value pairs from XML without changing key to lowercase * Avoid changing property names to lowercase when pushed into Properties object * Enhanced documentation and added Proxy server information * Prevent the "fallback" parameter being set as the property value * Release documentation * Release notes updated * Updated the valid version statement for new release * Move messaging so it is relevant to the stage it is at. (#34) * Minor enhancement to HTTP reader for debugging
1 parent 008d546 commit 41f925e

File tree

7 files changed

+46
-26
lines changed

7 files changed

+46
-26
lines changed

Bundle/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<modelVersion>4.0.0</modelVersion>
55

66
<parent>
7-
<groupId>org.openas2</groupId>
7+
<groupId>net.sf.openas2</groupId>
88
<artifactId>OpenAS2</artifactId>
9-
<version>2.3.1</version>
9+
<version>2.3.2</version>
1010
</parent>
1111

1212
<artifactId>openas2-osgi</artifactId>
@@ -75,7 +75,7 @@
7575
<artifactId>org.osgi.core</artifactId>
7676
</dependency>
7777
<dependency>
78-
<groupId>org.openas2</groupId>
78+
<groupId>net.sf.openas2</groupId>
7979
<artifactId>openas2-server</artifactId>
8080
<version>${project.version}</version>
8181
</dependency>

RELEASE-NOTES.txt

+6-15
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,18 @@
11
OpenAS2 Server
2-
Version 2.3.1
2+
Version 2.3.2
33
RELEASE NOTES
44

5-
The OpenAS2 project is pleased to announce the release of OpenAS2 2.3.1
5+
The OpenAS2 project is pleased to announce the release of OpenAS2 2.3.2
66

7-
The release download file is: OpenAS2Server-2.3.1.zip
7+
The release download file is: OpenAS2Server-2.3.2.zip
88
The zip file contains a PDF document providing information on installing and using the application.
99

10-
Version 2.3.1 - 2017-08-06
10+
Version 2.3.2 - 2017-08-17
1111
This is a minor enhancement release:
1212
IMPORTANT NOTE: Please review upgrade notes below if you are upgrading
1313

14-
1. Remove reserved characters from dynamically generated file names
15-
2. Document feature to change reserved character list for file names.
16-
3. Document java tuning requirements for large files
17-
4. Change default logging date format to international standard
18-
5. Document logging date format configuration
19-
6. Document upgrade process as an appendix in OpenAS2HowTo
20-
7. Prevent HTTP header folding by default with config option to allow. (Fixes issue with NGINX)
21-
8. Change email logger to allow any exception to be logged through exception parser (not just OpenAS2Exception)
22-
9. Add support for Sentry logger for exceptions
23-
10. Enhanced documentation on logging system
24-
11. Change default log file name to use international date format
14+
1. Enhance the HTTP reader to allow logging the raw data when unable to determine how to process the data
15+
2. Correct the config.xml that was missing a $ sign in the log file name
2516

2617
Upgrade Notes
2718
See the openAS2HowTo appendix for the general process on upgrading OpenAS2.

Remote/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33

44
<parent>
5-
<groupId>org.openas2</groupId>
5+
<groupId>net.sf.openas2</groupId>
66
<artifactId>OpenAS2</artifactId>
7-
<version>2.3.1</version>
7+
<version>2.3.2</version>
88
</parent>
99

1010
<modelVersion>4.0.0</modelVersion>

Server/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<modelVersion>4.0.0</modelVersion>
44

55
<parent>
6-
<groupId>org.openas2</groupId>
6+
<groupId>net.sf.openas2</groupId>
77
<artifactId>OpenAS2</artifactId>
8-
<version>2.3.1</version>
8+
<version>2.3.2</version>
99
</parent>
1010

1111
<artifactId>openas2-server</artifactId>

Server/src/main/java/org/openas2/util/HTTPUtil.java

+24-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@
66
import java.io.InputStream;
77
import java.io.OutputStream;
88
import java.net.HttpURLConnection;
9+
import java.util.Enumeration;
910
import java.util.StringTokenizer;
11+
12+
import javax.mail.Header;
1013
import javax.mail.MessagingException;
1114
import javax.mail.internet.InternetHeaders;
1215

16+
import org.apache.commons.logging.Log;
17+
import org.apache.commons.logging.LogFactory;
1318
import org.openas2.message.Message;
1419

1520
public class HTTPUtil {
@@ -285,10 +290,27 @@ else if (ch >= '0' && ch <= '9') {
285290
throw new IOException("Transfer-Encoding unimplemented: " + transfer_encoding);
286291
}
287292
}
288-
else if (msg.getHeader("Content-Length") == null) {
293+
else {
289294
if (outStream != null)
290295
HTTPUtil.sendHTTPResponse(outStream, HttpURLConnection.HTTP_LENGTH_REQUIRED, false);
291-
throw new IOException("Content-Length missing");
296+
Log logger = LogFactory.getLog(HTTPUtil.class.getSimpleName());
297+
String headers = "";
298+
Enumeration<Header> hdrs = msg.getHeaders().getAllHeaders();
299+
while (hdrs.hasMoreElements()) {
300+
Header h = hdrs.nextElement();
301+
headers = headers + " :: " + h.getName() + "==" + h.getValue();
302+
}
303+
int b;
304+
StringBuilder buf = new StringBuilder(512);
305+
while ((b = dataIn.read()) != -1) {
306+
buf.append((char) b);
307+
}
308+
309+
310+
logger.error("Inbound HTTP request: " + request.toString()
311+
+ "\n\tHeaders: " + headers
312+
+ "\n\tData: " + buf.toString());
313+
throw new IOException("Content-Length missing and no \"Transfer-Encoding\" header found to determine how to read message body.");
292314
}
293315
}
294316
else {

changes.txt

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Version 2.3.2 - 2017-08-17
2+
This is a minor enhancement release:
3+
IMPORTANT NOTE: Please review upgrade notes below if you are upgrading
4+
5+
1. Enhance the HTTP reader to allow logging the raw data when unable to determine how to process the data
6+
2. Correct the config.xml that was missing a $ sign in the log file name
7+
18
Version 2.3.1 - 2017-08-06
29
This is a minor enhancement release:
310
IMPORTANT NOTE: Please review release notes for upgrade steps if you are upgrading

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
5-
<groupId>org.openas2</groupId>
5+
<groupId>net.sf.openas2</groupId>
66
<artifactId>OpenAS2</artifactId>
7-
<version>2.3.1</version>
7+
<version>2.3.2</version>
88
<name>OpenAS2</name>
99
<packaging>pom</packaging>
1010

0 commit comments

Comments
 (0)