You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ge...@apache.org on 2011/06/29 00:53:22 UTC

svn commit: r1140882 [3/8] - in /servicemix/website/trunk: ./ src/main/webapp/ src/main/webapp/WEB-INF/ src/main/webapp/WEB-INF/scalate/ src/main/webapp/WEB-INF/scalate/layouts/ src/main/webapp/community/ src/main/webapp/community/board-reports/ src/ma...

Added: servicemix/website/trunk/src/main/webapp/developers/release-guide.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/developers/release-guide.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/developers/release-guide.page (added)
+++ servicemix/website/trunk/src/main/webapp/developers/release-guide.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,213 @@
+---
+title: Release Guide
+--- pipeline:conf
+How to create and announce a ServiceMix release.
+
+h2. Prepare
+
+To prepare and perform a release you must be at least at Apache ServiceMix Committer.
+
+* each and every release must be [SIGNED|http://www.apache.org/dev/release-signing.html]
+* your public key should also be cross-signed by other Apache committers (not required, but suggested)
+* make sure you have all Apache servers defined in your [settings.xml|http://maven.apache.org/developers/committer-settings.html]
+* use Maven 2.0.x or 2.2..x
+
+Your settings.xml should look like:
+
+{code:xml}
+<settings>
+  ...
+  <profiles>
+    <profile>
+      <id>release</id>
+      <properties>
+        <gpg.passphrase> <!-- YOUR KEY PASSPHRASE --> </gpg.passphrase>
+      </properties>
+    </profile>
+  </profiles>
+  ...
+  <servers>
+    <!-- To publish a snapshot of some part of Maven -->
+    <server>
+      <id>apache.snapshots.https</id>
+      <username> <!-- YOUR APACHE SVN USERNAME --> </username>
+      <password> <!-- YOUR APACHE SVN PASSWORD --> </password>
+    </server>
+    <!-- To stage a release of some part of Maven -->
+    <server>
+      <id>apache.releases.https</id>
+      <username> <!-- YOUR APACHE SVN USERNAME --> </username>
+      <password> <!-- YOUR APACHE SVN PASSWORD --> </password>
+    </server>
+    ...
+  </servers>
+</settings>
+
+{code}
+
+h2. Staging the Release Candidate
+
+# grab the latest [Source]
+{code}
+svn co https://svn.apache.org/repos/asf/servicemix/$PART/trunk
+{code}
+where $PART is what you want to release. For example, it can be:
+** smx3
+** smx4
+** components
+** ...
+# prepare your POMs for release:
+## make sure there is no snapshots in the POMs to be released
+## make sure everything builds fine
+## check that your POMs will not lose content when they are rewritten during the release process:
+{code}
+mvn release:prepare -DdryRun
+{code} 
+and diff the original pom.xml with the one named pom.xml.tag to see if the license or any other info has been removed. This has been known to happen if the starting <project> tag is not a single line. The only things that should be different between these files are the <version> and <scm> elements. If there are any other changes, you must fix the original pom.xml file and commit before proceeding with the release. 
+## publish a snapshot
+{code}
+$ mvn deploy
+...
+[INFO] [deploy:deploy]
+[INFO] Retrieving previous build number from apache.snapshots.https
+...
+{code}
+** if you experience an error during deployment like a HTTP 401 check your settings for the required server entries as outlined in the *Prerequisites*
+** be sure that the generated artifacts respect the Apache release [rules|http://www.apache.org/dev/release.html]: NOTICE and LICENSE files should be present in the META-INF directory within the jar. For sources artifacts, be sure that your POM does not use the maven-source-plugin:2.0.3 which is broken. The recommended version at this time is 2.0.4 
+** you should verify the deployment under the [snapshot|https://repository.apache.org/content/groups/snapshots/org/apache/servicemix] repository on Apache
+# prepare the release
+{code}
+mvn release:clean
+mvn release:prepare
+{code}
+# stage the release for a vote
+Note: If you're on Mac OSX 10.5, for a  known  [issue|http://subversion.tigris.org/issues/show_bug.cgi?id=3059], you need provide your apache svn user/password 
+mvn release:prepare -Dusername=ffang -Dpassword=*******
+{code}
+mvn release:perform
+{code}
+** the release will automatically be inserted into a temporary staging repository for you, see the Nexus [staging documentation|http://www.sonatype.com/books/nexus-book/reference/staging.html] for full details
+** you can continue to use mvn release:prepare and mvn release:perform on other sub-projects as necessary on the same machine and they will be combined in the same staging repository
+# close the staging repository
+** login to [https://repository.apache.org] using your Apache SVN credentials. Click on Staging on the left. Then click on org.apache.servicemix in the list of repositories. In the panel below you should see an open repository that is linked to your username and IP. Right click on this repository and select Close. This will close the repository from future deployments and make it available for others to view. If you are staging multiple releases together, skip this step until you have staged everything
+!release_01.png|thumbnail! !release_02.png|thumbnail! !release_03.png|thumbnail! !release_04.png|thumbnail! !release_05.png|thumbnail! !release_06.png|thumbnail!
+# verify the staged artifacts
+** if you click on your repository, a tree view will appear below. You can then browse the contents to ensure the artifacts are as you expect them. Pay particular attention to the existence of *.asc (signature) files. If you don't like the content of the repository, right click your repository and choose Drop. You can then rollback your release (see Canceling the Release) and repeat the process
+** note the staging repository URL (especially the number at the end of the URL) you will need this in your vote email
+
+h2. Starting the vote
+
+Propose a vote on the dev list with the closed issues, the issues left, and the staging repository - for example:
+
+{code}
+To: "ServiceMix Developers List" <de...@servicemix.apache.org>
+Subject: [VOTE] Release ServiceMix [Component] XXX version Y.Z
+
+Hi,
+
+We solved N issues in this release:
+http://issues.apache.org/jira/...
+
+There are still some outstanding issues:
+http://issues.apache.org/jira/...
+
+Staging repository:
+https://repository.apache.org/content/repositories/servicemix-staging-[YOUR REPOSITORY ID]/
+
+Please vote to approve this release:
+
+[ ] +1 Approve the release
+[ ] -1 Veto the release (please provide specific comments)
+
+This vote will be open for 72 hours.
+{code}
+
+* to get the JIRA release notes link, browse to the ServiceMix [JIRA|http://issues.apache.org/jira/browse/ServiceMix] page, select Release Notes and choose the relevant sub-project release and format (HTML)
+* to get the list of issues left in JIRA, select the Open Issues tab on the main ServiceMix page, and select the relevant sub-project.
+
+h2. Wait for the Results
+
+From [Votes on Package Releases|http://www.apache.org/foundation/voting.html]:
+
+    Votes on whether a package is ready to be released follow a format similar to majority approval - except that the decision is officially determined solely by whether at least three +1 votes were registered. Releases may not be vetoed. Generally the community will table the vote to release if anyone identifies serious problems, but in most cases the ultimate decision, once three or more positive votes have been garnered, lies with the individual serving as release manager. The specifics of the process may vary from project to project, but the 'minimum of three +1 votes' rule is universal.
+
+The list of binding voters is available at [http://servicemix.apache.org/team.html].
+
+If the vote is successful, post the result to the dev list - for example:
+{code}
+To: "ServiceMix Developers List" <de...@servicemix.apache.org>
+Subject: [RESULT] [VOTE] Release ServiceMix [Component] XXX version Y.Z
+
+Hi,
+
+The vote has passed with the following result :
+
+  +1 (binding): <<list of names>>
+  +1 (non binding): <<list of names>>
+
+I will copy this release to the ServiceMix dist directory and
+promote the artifacts to the central Maven repository.
+{code}
+
+If the vote is unsuccessful, you need to fix the issues and restart the process - see *Canceling the Release*.
+If the vote is successful, you need to promote and distribute the release - see *Promoting the Release*.
+
+h2. Canceling the Release
+
+If the vote fails, or you decide to redo the release:
+
+# remove the release tag from Subversion (svn del ...)
+# login to https://repository.apache.org using your Apache SVN credentials. Click on Staging on the left. Then click on org.apache.servicemix in the list of repositories. In the panel below you should see a closed repository that is linked to your username and IP (if it's not yet closed you need to right click and select Close). Right click on this repository and select Drop.
+# rollback the version in the pom.xml and commit any fixes you need to make
+
+h2. Promoting the Release
+
+If the vote passes:
+
+# copy the released artifacts to the ServiceMix dist directory (/x1/www/www.apache.org/dist/servicemix) on people.apache.org
+# delete the old release from the ServiceMix dist directory (it's archived)
+# login to https://repository.apache.org with your Apache SVN credentials. Click on Staging. Find your closed staging repository, right click on it and choose Promote. Select the Releases repository from the drop-down list and click Promote.
+# next click on Repositories, select the Releases repository and validate that your artifacts are all there
+# update the news section on the website at news
+# update the download page on the website at downloads to point to the new release.
+
+For the last two tasks, it's better to give the mirrors some time to distribute the uploaded artifacts (one day should be fine). This ensures that once the website (news and download page) is updated, people can actually download the artifacts.
+
+h2. Update XML schemas
+
+* Update the [Xml schemas] page with a link to the HTML and XSD
+
+h2. Update JIRA
+
+Go to Admin section on the ServiceMix JIRA and mark the Component/Y.Z version as released - create version Y.Z+1, if that hasn't already been done.
+
+h2. Announcing the ServiceMix Release
+
+{code}
+To: "ServiceMix Developers List" <de...@servicemix.apache.org>
+Subject: [ANN] ServiceMix XXX version Y.Z Released
+
+The ServiceMix team is pleased to announce the release of ServiceMix XXX version Y.Z
+
+<<insert short description of the sub-project>>
+
+  http://servicemix.apache.org/XXX.html
+
+This release is available from http://servicemix.apache.org/downloads and Maven:
+
+  <dependency>
+    <groupId>org.apache.servicemix</groupId>
+    <artifactId>org.apache.servicemix.XXX</artifactId>
+    <version>Y.Z</version>
+  </dependency>
+
+Release Notes:
+
+<<insert release notes in text format from JIRA>>
+
+Enjoy!
+
+-The ServiceMix team
+{code}
+
+Remember to forward this announcement to users@servicemix.apache.org - try not to cross-post (CC:) announcements to both user and dev lists.
\ No newline at end of file

Added: servicemix/website/trunk/src/main/webapp/developers/remote-debugging-servicemix-in-eclipse.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/developers/remote-debugging-servicemix-in-eclipse.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/developers/remote-debugging-servicemix-in-eclipse.page (added)
+++ servicemix/website/trunk/src/main/webapp/developers/remote-debugging-servicemix-in-eclipse.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,65 @@
+---
+title: Remote-debugging ServiceMix in Eclipse
+--- pipeline:conf
+This page explains how to set up remote-debugging of ServiceMix using Eclipse.
+
+Basically, you have to perform the following steps:
+# [Enable remote debugging in {{servicemix.bat}}|Remote-debugging ServiceMix in Eclipse#Enabling Remote Debugging in ServiceMix]
+# [Specify a remote-debugging launch configuration|Remote-debugging ServiceMix in Eclipse#Specifying a Remote Debugging Launch Configuration] 
+# [Start SM and switch to Debug-Perspective|Remote-debugging ServiceMix in Eclipse#Performing Debugging]
+
+h2. Enable remote debugging in ServiceMix
+The following section in {{servicemix.bat}} is the one that matters:
+{code}
+if "%SERVICEMIX_DEBUG%" == "" goto :SERVICEMIX_DEBUG_END
+    rem Use the defaults if JAVA_DEBUG_OPTS was not set
+    if "%JAVA_DEBUG_OPTS%" == "" set JAVA_DEBUG_OPTS=%DEFAULT_JAVA_DEBUG_OPTS%
+    
+    set "JAVA_OPTS=%JAVA_DEBUG_OPTS% %JAVA_OPTS%"
+    call :warn Enabling Java debug options: %JAVA_DEBUG_OPTS%
+:SERVICEMIX_DEBUG_END
+{code}
+
+In order to activate it, you need to set the environment variable {{SERVICEMIX_DEBUG}}.
+
+For instance in Windows:
+{code}
+SET SERVICEMIX_DEBUG=TRUE
+{code}
+
+Or in Linux:
+{code}
+export SERVICEMIX_DEBUG=TRUE
+{code}
+
+ServiceMix runs in debugging mode if you can see the following output when running it:
+{code}
+...
+servicemix.bat: Enabling Java debug options: -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
+...
+{code}
+
+The debugging options can be modified in {{servicemix.bat}} via the {{DEFAULT_JAVA_DEBUG_OPTS}}. The default values are:
+{code}
+set DEFAULT_JAVA_DEBUG_OPTS=-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005
+{code}
+
+
+h2. Specifying a Remote Debugging Launch Configuration
+Specify an Eclipse Remote Java Application debug launch configuration on the project you want to monitor. 
+
+# Open {{Run - Debug}}
+# Mark {{Remote Java Application}}
+# Create a {{New Launch Configuration}}
+# Specify a name, the project you want to debug (e.g. {{servicemix-wsn2005}}) and the connection properties.
+# {{Apply}}.
+
+See [http://www.onjava.com/lpt/a/6174] for details.
+
+h2. Performing Debugging
+# Add breakpoints/debug information to the relevant code inside Eclipse. 
+# Start ServiceMix.
+# Start debugging with the previously created launch configuration.
+# Switch to debug perspective.
+# Exercise the error-causing behaviour.
+# Wait for Eclipse to be notified of the breakpoints.

Added: servicemix/website/trunk/src/main/webapp/developers/source.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/developers/source.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/developers/source.page (added)
+++ servicemix/website/trunk/src/main/webapp/developers/source.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,83 @@
+---
+title: Source
+--- pipeline:conf
+
+{note}
+TODO: Update this page to reflect the multi-project subversion structure we have and to properly discriminate between ServiceMix 3.x, 4.x and 5.x subprojects and modules
+{note}
+
+
+h1. Apache ServiceMix Source Tree 
+
+h2. Browsing the Source Tree 
+
+h3. Web Browsing of SVN
+
+To browse the raw SVN repo, use the following URL: 
+
+{panel}
+http://svn.apache.org/repos/asf/servicemix/smx3/trunk/
+{panel}
+
+To browse the SVN repo using [ViewVC|http://www.viewvc.org/], use the following URL: 
+
+{panel}
+http://svn.apache.org/viewvc/servicemix/smx3/trunk/
+{panel}
+
+h3. Web Browsing of FishEye 
+
+!Fisheye_logo.png!
+
+A hearty thanks to [Atlassian|http://atlassian.com/] for providing [FishEye|http://www.atlassian.com/software/fisheye/] hosting for ServiceMix. Below is the URL to browse the Subversion repo via FishEye:
+
+{panel} 	 
+http://fisheye6.cenqua.com/browse/servicemix/
+{panel}
+
+h2. Checking out the Source Tree 
+
+h3. Anonymous Checkout from the ServiceMix SVN Repo
+
+This project's SVN repository can be checked out anonymously using the following command: 
+
+{code}
+svn co http://svn.apache.org/repos/asf/servicemix/smx3/trunk/
+{code}
+
+h3. Committer Checkout from the ServiceMix SVN Repo
+
+ServiceMix committers can check out using the following command: 
+
+{code}
+svn co https://svn.apache.org/repos/asf/servicemix/smx3/trunk
+{code}
+
+*Only project developers can commit to the SVN tree via this method. SSH must be installed on your client machine. Enter your site password when prompted.*
+
+h2. Building the Source Code
+
+Once you have checked out the source code please read the [instructions on how to build ServiceMix|Building].
+
+h2. Working With the ServiceMix Extensions at the Codehaus
+
+Due to license issues, some extensions to ServiceMix are hosted at the CodeHaus. To browse that SVN repo via the web, use the following URL: 
+
+{panel}
+http://svn.codehaus.org/servicemix/trunk/
+{panel}
+
+This project's SVN repository can be checked out anonymously with the following command: 
+
+{code}
+svn co http://svn.codehaus.org/servicemix/trunk
+{code}
+
+If you are a committer, use the following URL: 
+
+{code}
+svn co https://svn.codehaus.org/servicemix/trunk
+{code}
+
+
+

Added: servicemix/website/trunk/src/main/webapp/developers/tools.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/developers/tools.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/developers/tools.page (added)
+++ servicemix/website/trunk/src/main/webapp/developers/tools.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,7 @@
+---
+title: Tools
+--- pipeline:conf
+h3. We thank the following vendors for supporting open source and providing free licenses or services for project committers to use in developing Apache ServiceMix.  
+
+| [!/images/sonar.png!|http://sonar.codehaus.org] | The Sonar Team has set up builds on their public instance \\ (http://nemo.sonar.codehaus.org) |
+| [!/images/yourkit.jpg!|http://www.yourkit.com] | YourKit has given the ServiceMix team free licenses. |

Added: servicemix/website/trunk/src/main/webapp/developers/using-eclipse.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/developers/using-eclipse.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/developers/using-eclipse.page (added)
+++ servicemix/website/trunk/src/main/webapp/developers/using-eclipse.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,130 @@
+---
+title: Using Eclipse
+--- pipeline:conf
+h1. Introduction
+
+This document will guide you through&nbsp;importing ServiceMix&nbsp;into the IDE Eclipse.
+{warning:title=Warning}
+This documentation applies to ServiceMix versions prior to 3.0 release. For v3.0, please refer to the User's Guide, chapter [Importing ServiceMix into Eclipse|Importing ServiceMix into Eclipse].
+{warning}
+
+h2. Pre-Installation Requirements
+
+*Hardware:*
+* 52 MB of free disk space for the ServiceMix 3.x binary distribution.
+* 18 MB of free disk space for the ServiceMix 3.x source or developer's distributions.
+
+*Operating Systems:*
+* Windows: Windows XP SP2, Windows 2000.
+* Unix: Ubuntu Linux, Powerdog Linux, MacOS, AIX, HP-UX, Solaris, any Unix platform that supports Java.
+
+*Environment:*
+* Java Developer Kit (JDK) 1.5.x (Java 5) for compiling/building.
+* The JAVA_HOME environment variable must be set to the directory where the JDK is installed, e.g., {{c:\Program Files\jsdk.1.5.x}}
+* Maven 1.0.2 or greater.
+* Eclipse 3.x or greater.
+
+h1. Importing ServiceMix
+
+Below are the steps to import ServiceMix as a project in Eclipse.
+
+h2. Preparing the Files for Eclipse
+
+# Grab the sources from [svn|Source] or [download|http://servicemix.org/Download] servicemix source distribution.
+\\
+# From the command line execute the following Maven 2 command to ready the project for Eclipse.
+{code}
+mvn eclipse:eclipse
+{code}
+
+h2. In Eclipse:
+
+# From the "File" menu select "Import".&nbsp;
+\\
+\\  !FileImport.JPG!\\
+\\
+# &nbsp;Select "Existing Projects into Workspace" and click "Next"&nbsp;
+\\
+\\  !Import.JPG!\\
+\\
+# Browse for the root directory, which is the directory in which you downloaded ServiceMix.&nbsp; "Select All" the files in the Import pop-up window. They are probably already pre-selected for you (check box is checked).&nbsp; Click "Finish" in the Import window.&nbsp;
+\\
+\\  !Import_SelectAll.JPG!\\
+\\
+# From the "Windows"&nbsp;menu and click "Preferences"
+The Preferences window will pop-up.
+Change to JDK 5
+Windows>preferences click on Compiler
+Compiler compliance level must be 5.0, pull down menu and select.
+Check the "Use default compliance settings" box.&nbsp;
+\\
+\\  !JDK_Compliance.JPG!\\
+\\
+# Then check under "Installed JREs" that you have JDK 5, e.g., jre_1.5.x&nbsp;
+\\
+\\  !Installed_JREs.JPG!\\
+\\
+# Click on the Java plus sign, then click on Build Path
+then select Classpath Variables.&nbsp;
+\\
+\\  !Classpath_Variables.JPG!\\
+\\
+# Click on New button to right
+\\
+A pop-up appears.
+Enter the Name: M2_REPO
+Enter the Path, which is your local maven repository, usually located in
+your home directory .m2, for example:
+C:\Documents and Settings\gnodet\.m2\repository&nbsp;
+\\
+\\  !eclipse-m2-repo-variable.png!\\
+\\
+
+h1. Running an Example
+
+# Now you can run an example:
+\\
+a. In the Package Explorer find the Main class, which should be located in: servicemix-core/src/main/java/
+under org.apache.servicemix/Main.java.
+Double click on the main() class.&nbsp;
+\\
+\\  !PackageMainJava.JPG!\\
+\\
+# From the Run menu select "Run..."&nbsp;
+\\
+\\  !RunRun.JPG!\\
+\\
+# You will get a Run window pop-up, from there select Java Application.
+## Click on New button in botton left
+## Name the Project: any name you like, for example if you want to run the FilePoller application call it "filepoller".
+## Click on arguments button:
+### In the Program Arguments box enter {{servicemix.xml}}
+### In the Working Directory enter the path of your example. Such as:
+C:\Program Files\servicemix-1.0.1\examples\file-binding
+\\
+You can use the "File System..." button to browse for your directory.
+## Click Apply.
+## Click Run&nbsp;
+\\
+\\  !filepoller.JPG!\\
+\\
+
+h1. Configuring Eclipse
+
+
+h2. Updating Eclipse from Trunk
+
+# Browse the "Project" menu and select "Properties"&nbsp;
+\\
+\\  !ProjectProperties.JPG!\\
+\\
+# Click "Java BuildPath" and under the "Libraries" tab click "Add External Jar".&nbsp;
+\\
+\\  !JavaBuildPathLibraries.JPG!\\
+\\
+# Browse to the incubator-servicemix-3.0-SNAPSHOT.jar location:
+\target\incubator-servicemix-3.0-SNAPSHOT\bin\incubator-servicemix-3.0-SNAPSHOT and Click "Open" then "OK" in the "Properties" screen&nbsp;
+\\
+\\  !JarSelection.JPG!\\
+\\
+# Allow some time for the individual projects to build.
\ No newline at end of file

Added: servicemix/website/trunk/src/main/webapp/documentation.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/documentation.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/documentation.page (added)
+++ servicemix/website/trunk/src/main/webapp/documentation.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,17 @@
+---
+title: Navigation
+--- pipeline:conf
+h1. Documentation
+
+h2. Latest version (4.3.0-SNAPSHOT)
+Quickly navigate to one of the guides below...
+* [Quickstart Guide|http://servicemix.apache.org/docs/4.3.0-SNAPSHOT/quickstart/index.html] ([pdf|http://servicemix.apache.org/docs/4.3.0-SNAPSHOT/quickstart/quickstart.pdf])
+* [Camel Guide|http://servicemix.apache.org/docs/4.3.0-SNAPSHOT/users-guide/camel/index.html] ([pdf|http://servicemix.apache.org/docs/4.3.0-SNAPSHOT/users-guide/camel/camel-guide.pdf])
+* [NMR Guide|http://servicemix.apache.org/docs/4.3.0-SNAPSHOT/users-guide/nmr/index.html] ([pdf|http://servicemix.apache.org/docs/4.3.0-SNAPSHOT/users-guide/nmr/nmr-guide.pdf])
+* [JBI Guide|http://servicemix.apache.org/docs/4.3.0-SNAPSHOT/jbi/index.html] ([pdf|http://servicemix.apache.org/docs/4.3.0-SNAPSHOT/jbi/jbi-guide.pdf])
+* [Karaf Guide|http://servicemix.apache.org/docs/4.3.0-SNAPSHOT/karaf/index.html]
+
+... or browse the [4.3.0-SNAPSHOT documentation site | http://servicemix.apache.org/docs/4.3.0-SNAPSHOT/]
+
+h2. Other versions
+Nothing here yet - let's get the latest version documented first ;-)
\ No newline at end of file

Added: servicemix/website/trunk/src/main/webapp/downloads.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/downloads.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/downloads.page (added)
+++ servicemix/website/trunk/src/main/webapp/downloads.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,18 @@
+---
+title: Download
+page_version: 43
+page_creator: jstrachan
+page_modifier: nanthrax
+--- pipeline:conf
+h1. Latest Releases
+
+The latest release is the [ServiceMix 4.3.0 Release|ServiceMix 4.3.0].
+We strongly encourage all users to use this Release.
+
+{excerpt-include:ServiceMix 4.3.0|nopanel=true}
+
+h2. Previous Releases
+
+An archive of previous releases can be found [here|http://archive.apache.org/dist/servicemix/].
+
+{children:sort=title}

Added: servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.0-m1-release.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.0-m1-release.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.0-m1-release.page (added)
+++ servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.0-m1-release.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,53 @@
+---
+title: ServiceMix 1.0 M1 Release
+page_version: 7
+page_creator: jstrachan
+page_modifier: gnodet
+--- pipeline:conf
+
+We are pleased to announce the 1.0-M1 release of ServiceMix!
+
+h2. Download Here
+||Download||Description||
+|[servicemix-1.0-M1.zip|http://dist.codehaus.org/servicemix/distributions/servicemix-1.0-M1.zip]|Binary Distribution in zip package|
+|[servicemix-1.0-M1-src.zip|http://dist.codehaus.org/servicemix/distributions/servicemix-1.0-M1-src.zip]|Source Distribution in zip package|
+|[servicemix-1.0-M1.tar.gz|http://dist.codehaus.org/servicemix/distributions/servicemix-1.0-M1.tar.gz]|Binary Distribution in gz package|
+|[servicemix-1.0-M1-src.tar.gz|http://dist.codehaus.org/servicemix/distributions/servicemix-1.0-M1-src.tar.gz]|Source Distribution in gz package|
+
+h2. Changelog
+For a more detailed view of new features and bug fixes, see the [release notes|http://jira.logicblaze.com/jira/secure/IssueNavigator.jspa?reset=true&pid=10950&fixfor=11670]
+
+h2. Summary
+ServiceMix is an open source ESB designed from the ground up on JBI (JSR 208) principles, semantics and APIs. ServiceMix includes a complete JBI container including the Normalised Message Service and Router, the [JBI Management MBeans|http://servicemix.org/Management] support for JBI deployment units and [Ant tasks|http://servicemix.org/Ant+Tasks] to install components and manage the container.
+
+In addition ServiceMix contains a suite of JBI components
+
+SOAP Bindings:
+* SAAJ & Apache Axis, WSIF, ActiveSOAP and XFire
+
+Transport components:
+* JMS, HTTP, email, FTP, Jabber, Mule
+
+JBI services:
+* WS-BPEL support via PXE (http://pxe.fivesight.com)
+* transformation via XSLT
+* caching via JCache
+* timing & scheduler services using JCA and Quartz,
+* validation through XSD/RelaxNG
+* scripting via JSR 223 and Groovy
+
+For more detail see the [Components list].
+
+ServiceMix has support for straight through processing, SEDA based process flows or fully clustered [process flows|http://servicemix.org/NMR+Flows].
+
+ServiceMix includes a [fully integrated JCA container|http://servicemix.org/JCA] for high performance inbound message consumption (e.g. via JMS) with connection & thread pooling, transaction management, exception and retry handling and support for highly concurrent processing.
+
+ServiceMix is completely integrated into Apache Geronimo, which allows you to deploy JBI components and services directly into Geronimo and ServiceMix will be JBI certified as part of the Geronimo project.
+
+We welcome [contributions|http://servicemix.org/Contributing], please do come and join our [team|http://servicemix.org/Team].
+
+For more information see the [getting started guide|http://servicemix.org/Getting+Started].
+
+h3. Detail
+{jiraissues:url=http://jira.logicblaze.com/jira/secure/IssueNavigator.jspa?view=rss&pid=10950&fixfor=11670&sorter/field=issuekey&sorter/order=DESC&tempMax=25&reset=true&decorator=none}
+

Added: servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.0-m2-release.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.0-m2-release.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.0-m2-release.page (added)
+++ servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.0-m2-release.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,30 @@
+---
+title: ServiceMix 1.0 M2 Release
+page_version: 6
+page_creator: jstrachan
+page_modifier: gnodet
+--- pipeline:conf
+
+We are pleased to announce the 1.0-M2 release of ServiceMix!
+
+h2. Download Here
+||Download||Description||
+|[servicemix-1.0-M2.zip|http://dist.codehaus.org/servicemix/distributions/servicemix-1.0-M2.zip]|Binary Distribution in zip package|
+|[servicemix-1.0-M2-src.zip|http://dist.codehaus.org/servicemix/distributions/servicemix-1.0-M2-src.zip]|Source Distribution in zip package|
+|[servicemix-1.0-M2.tar.gz|http://dist.codehaus.org/servicemix/distributions/servicemix-1.0-M2.tar.gz]|Binary Distribution in gz package|
+|[servicemix-1.0-M2-src.tar.gz|http://dist.codehaus.org/servicemix/distributions/servicemix-1.0-M2-src.tar.gz]|Source Distribution in gz package|
+
+h2. Changelog
+For a more detailed view of new features and bug fixes, see the [release notes|http://jira.logicblaze.com/jira/secure/IssueNavigator.jspa?reset=true&pid=10950&fixfor=11671]
+
+h2. Summary
+This release includes support for 
+* Completed [BPEL integration|BPEL] using the PXE's full JBI deployment unit for the BPEL engine and JBI deployment units for the actual processes, together with a [working example|BPEL Example]
+* [High performance content based router and transformation engine using XPath|XPath Router]
+* Rules based routing and transformations using [Drools]
+* [JBoss Deployer] for easy deployment of ServiceMix inside JBoss in addition to the current Spring and Geronimo deployers
+* More [Examples] on how to use ServiceMix
+
+h3. Detail
+{jiraissues:url=http://jira.logicblaze.com/jira/secure/IssueNavigator.jspa?view=rss&pid=10950&fixfor=11671&sorter/field=issuekey&sorter/order=DESC&tempMax=25&reset=true&decorator=none}
+

Added: servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.0-release.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.0-release.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.0-release.page (added)
+++ servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.0-release.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,51 @@
+---
+title: ServiceMix 1.0 Release
+page_version: 5
+page_creator: jstrachan
+page_modifier: gnodet
+--- pipeline:conf
+
+We are pleased to announce the 1.1 release of ServiceMix!
+
+ServiceMix is an open source ESB designed from the ground up on JBI (JSR 208) principles, semantics and APIs. ServiceMix includes a complete JBI container including the Normalised Message Service and Router, the [JBI Management MBeans|http://servicemix.org/Management] support for JBI deployment units and [Ant tasks|http://servicemix.org/Ant+Tasks] to install components and manage the container.
+
+In addition ServiceMix contains a suite of JBI [Components list] such as
+
+Services:
+* Orchestration via [BPEL], [Smart Routing|Routing], [Transformation], [Scripting], [Rules|Drools], [Scheduling] and [Caching|JCache]
+
+SOAP Bindings:
+* SAAJ & Apache Axis, WSIF, ActiveSOAP and XFire
+
+Transport components:
+* email, Files, HTTP, JMS, Jabber, RSS and WebDAV
+
+ServiceMix includes a [fully integrated JCA container|http://servicemix.org/JCA] for high performance messaging and is fully integrated into Geronimo, Spring and JBoss.
+
+
+h3. New and Noteworthy
+
+* [JAX WS] support 
+* [Publish Subscribe Routing] for 1-many message dispatching
+* a new [RSS] outbound component as well as inbound so you can generate RSS feeds from message flows
+* new JMS flow for reliable asynchronous message pipelines
+* [WS Notification] support into and out of JBI
+
+h2. Changelog
+For a more detailed view of new features and bug fixes, see the [release notes|http://jira.logicblaze.com/jira/secure/IssueNavigator.jspa?reset=true&pid=10950&fixfor=11672]
+
+We welcome [contributions|http://servicemix.org/Contributing], please do come and join our [team|http://servicemix.org/Team].
+
+For more information see the [getting started guide|http://servicemix.org/Getting+Started].
+
+
+h2. Download Here
+||Download||Description||
+|[servicemix-1.1.1.zip|http://dist.codehaus.org/servicemix/distributions/servicemix-1.1.1.zip]|Binary Distribution in zip package|
+|[servicemix-1.1-src.zip|http://dist.codehaus.org/servicemix/distributions/servicemix-1.1-src.zip]|Source Distribution in zip package|
+|[servicemix-1.1.1.tar.gz|http://dist.codehaus.org/servicemix/distributions/servicemix-1.1.1.tar.gz]|Binary Distribution in gz package|
+|[servicemix-1.1-src.tar.gz|http://dist.codehaus.org/servicemix/distributions/servicemix-1.1-src.tar.gz]|Source Distribution in gz package|
+
+h3. Detail
+{jiraissues:url=http://jira.logicblaze.com/jira/secure/IssueNavigator.jspa?view=rss&pid=10950&fixfor=11672&sorter/field=issuekey&sorter/order=DESC&tempMax=25&reset=true&decorator=none}
+

Added: servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.1-release.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.1-release.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.1-release.page (added)
+++ servicemix/website/trunk/src/main/webapp/downloads/servicemix-1.1-release.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,56 @@
+---
+title: ServiceMix 1.1 Release
+page_version: 6
+page_creator: jstrachan
+page_modifier: gnodet
+--- pipeline:conf
+
+We are pleased to announce the 1.1 release of ServiceMix!
+
+h3. New and Noteworthy
+
+* [JAX WS] support 
+* [Publish Subscribe Routing] for 1-many message dispatching
+* a new [RSS] outbound component as well as inbound so you can generate RSS feeds from message flows
+* new JMS flow for reliable asynchronous message pipelines
+* [WS Notification] support into and out of JBI
+
+In addition a number of bug fixes and performance enhancements were made.
+
+
+h2. Changelog
+For a more detailed view of new features and bug fixes, see the [release notes|http://jira.logicblaze.com/jira/secure/ReleaseNote.jspa?projectId=10950&styleName=Html&version=11683]
+
+We welcome [contributions|http://servicemix.org/Contributing], please do come and join our [team|http://servicemix.org/Team].
+
+For more information see the [getting started guide|http://servicemix.org/Getting+Started].
+
+
+h2. Download Here
+||Download||Description||
+|[servicemix-1.1.zip|http://dist.codehaus.org/servicemix/distributions/servicemix-1.1.zip]|Binary Distribution in zip package|
+|[servicemix-1.1-src.zip|http://dist.codehaus.org/servicemix/distributions/servicemix-1.1-src.zip]|Source Distribution in zip package|
+|[servicemix-1.1.tar.gz|http://dist.codehaus.org/servicemix/distributions/servicemix-1.1.tar.gz]|Binary Distribution in gz package|
+|[servicemix-1.1-src.tar.gz|http://dist.codehaus.org/servicemix/distributions/servicemix-1.1-src.tar.gz]|Source Distribution in gz package|
+
+h3. Detail
+{jiraissues:url=http://jira.logicblaze.com/jira/secure/IssueNavigator.jspa?view=rss&pid=10950&fixfor=11683&sorter/field=issuekey&sorter/order=DESC&tempMax=25&reset=true&decorator=none}
+
+h3. About ServiceMix
+
+ServiceMix is an open source ESB designed from the ground up on JBI (JSR 208) principles, semantics and APIs. ServiceMix includes a complete JBI container including the Normalised Message Service and Router, the [JBI Management MBeans|http://servicemix.org/Management] support for JBI deployment units and [Ant tasks|http://servicemix.org/Ant+Tasks] to install components and manage the container.
+
+In addition ServiceMix contains a suite of JBI [Components list] such as
+
+Services:
+* Orchestration via [BPEL], [Smart Routing|Routing], [Transformation], [Scripting], [Rules|Drools], [Scheduling] and [Caching|JCache]
+
+SOAP Bindings:
+* SAAJ & Apache Axis, WSIF, ActiveSOAP and XFire
+
+Transport components:
+* email, Files, HTTP, JMS, Jabber, RSS and WebDAV
+
+ServiceMix includes a [fully integrated JCA container|http://servicemix.org/JCA] for high performance messaging and is fully integrated into Geronimo, Spring and JBoss.
+
+

Added: servicemix/website/trunk/src/main/webapp/downloads/servicemix-2.0-release.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/downloads/servicemix-2.0-release.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/downloads/servicemix-2.0-release.page (added)
+++ servicemix/website/trunk/src/main/webapp/downloads/servicemix-2.0-release.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,60 @@
+---
+title: ServiceMix 2.0 Release
+page_version: 8
+page_creator: jstrachan
+page_modifier: gnodet
+--- pipeline:conf
+
+We are pleased to announce the 2.0.2 release of ServiceMix!
+
+h3. New and Noteworthy
+
+* Improved JBI support including both interface based routing as well as service based routing together with improved WSDL parsing
+* Support for [Publish Subscribe Routing]
+* Improved [JAX WS] support 
+* Migration to [XBean|http://xbean.org/] as the XML configuration mechanism which works with any Spring release and allows us to mix and match ServiceMix configuration with other XML configuration mechanisms like ActiveMQ and Jencks
+* Migration to backport.util.concurrent to make it easier to move direct to a pure Java 5 solution.
+* a new Loan Broker example from the [EIP Patterns Book|http://www.eaipatterns.com/ComposedMessagingWS.html]
+* a new simpler POJO based deployment model
+* build reorganised to make ServiceMix more modular
+* a new ChainedComponent which implements simple pipelines of components easily
+
+In addition a number of bug fixes and performance enhancements were made.
+
+h2. Changelog
+For a more detailed view of new features and bug fixes, see the [release notes|http://jira.logicblaze.com/jira/secure/ReleaseNote.jspa?projectId=10950&styleName=Html&version=11711]
+
+We welcome [contributions|http://servicemix.org/Contributing], please do come and join our [team|http://servicemix.org/Team].
+
+For more information see the [Getting Started Guide|http://servicemix.org/Getting+Started].
+
+
+h2. Download Here
+||Download||Description||
+|[servicemix-2.0.2.zip|http://dist.codehaus.org/servicemix/distributions/servicemix-2.0.2.zip]|Binary Distribution in zip package|
+|[servicemix-2.0.2-src.zip|http://dist.codehaus.org/servicemix/distributions/servicemix-2.0.2-src.zip]|Source Distribution in zip package|
+|[servicemix-2.0.2.tar.gz|http://dist.codehaus.org/servicemix/distributions/servicemix-2.0.2.tar.gz]|Binary Distribution in gz package|
+|[servicemix-2.0.2-src.tar.gz|http://dist.codehaus.org/servicemix/distributions/servicemix-2.0.2-src.tar.gz]|Source Distribution in gz package|
+
+h3. Detail
+{jiraissues:url=http://jira.logicblaze.com/jira/secure/IssueNavigator.jspa?view=rss&pid=10950&fixfor=11718&sorter/field=issuekey&sorter/order=DESC&tempMax=25&reset=true&decorator=none}
+{jiraissues:url=http://jira.logicblaze.com/jira/secure/IssueNavigator.jspa?view=rss&pid=10950&fixfor=11711&sorter/field=issuekey&sorter/order=DESC&tempMax=25&reset=true&decorator=none}
+
+h3. About ServiceMix
+
+ServiceMix is an open source ESB designed from the ground up on JBI (JSR 208) principles, semantics and APIs. ServiceMix includes a complete JBI container including the Normalised Message Service and Router, the [JBI Management MBeans|http://servicemix.org/Management] support for JBI deployment units and [Ant tasks|http://servicemix.org/Ant+Tasks] to install components and manage the container.
+
+In addition ServiceMix contains a suite of JBI [Components list] such as
+
+Services:
+* Orchestration via [BPEL], [Smart Routing|Routing], [Transformation], [Scripting], [Rules|Drools], [Scheduling] and [Caching|JCache]
+
+SOAP Bindings:
+* SAAJ & Apache Axis, WSIF, ActiveSOAP and XFire
+
+Transport components:
+* email, Files, HTTP, JMS, Jabber, RSS and WebDAV
+
+ServiceMix includes a [fully integrated JCA container|http://servicemix.org/JCA] for high performance messaging and is fully integrated into Geronimo, Spring and JBoss.
+
+

Added: servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0-m1-release.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0-m1-release.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0-m1-release.page (added)
+++ servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0-m1-release.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,24 @@
+---
+title: ServiceMix 3.0-M1 Release
+page_version: 1
+page_creator: gnodet
+page_modifier: gnodet
+--- pipeline:conf
+h2. Download Here
+
+|| Description || Download Link || PGP Signature file of download ||
+| Binary for Windows | [servicemix-3.0-M1.zip|http://people.apache.org/~gnodet/incubator-servicemix-3.0-M1/incubator-servicemix/distributions/servicemix-3.0-M1.zip] | [servicemix-3.0-M1.zip.asc|http://people.apache.org/~gnodet/incubator-servicemix-3.0-M1/incubator-servicemix/distributions/servicemix-3.0-M1.zip.asc] |
+| Source code for Windows | [servicemix-3.0-M1-src.zip|http://people.apache.org/~gnodet/incubator-servicemix-3.0-M1/incubator-servicemix/distributions/servicemix-3.0-M1-src.zip] | [servicemix-3.0-M1-src.zip.asc|http://people.apache.org/~gnodet/incubator-servicemix-3.0-M1/incubator-servicemix/distributions/servicemix-3.0-M1-src.zip.asc] |  |
+| Binary for Unix | [servicemix-3.0-M1.tar.gz|http://people.apache.org/~gnodet/incubator-servicemix-3.0-M1/incubator-servicemix/distributions/servicemix-3.0-M1.tar.gz] | [servicemix-3.0-M1.tar.gz.asc|http://people.apache.org/~gnodet/incubator-servicemix-3.0-M1/incubator-servicemix/distributions/servicemix-3.0-M1.tar.gz.asc] |
+| Source code for Windows | [servicemix-3.0-M1-src.tar.gz|http://people.apache.org/~gnodet/incubator-servicemix-3.0-M1/incubator-servicemix/distributions/servicemix-3.0-M1-src.tar.gz] | [servicemix-3.0-M1-src.tar.gz.asc|http://people.apache.org/~gnodet/incubator-servicemix-3.0-M1/incubator-servicemix/distributions/servicemix-3.0-M1-src.tar.gz.asc]  |
+
+h2. SVN Tag Checkout
+
+{code}
+svn co http://svn.apache.org/repos/asf/incubator/servicemix/tags/servicemix-3.0-M1/
+{code}
+
+h2. Changelog
+
+For a more detailed view of new features and bug fixes, see the [release notes|http://issues.apache.org/activemq/secure/ReleaseNote.jspa?version=11713&styleName=Html&projectId=10950&Create=Create]
+{jiraissues:url=http://issues.apache.org/activemq/secure/IssueNavigator.jspa?view=rss&&pid=10950&fixfor=11713&sorter/field=issuekey&sorter/order=DESC&tempMax=999&reset=true&decorator=none}
\ No newline at end of file

Added: servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0-m2-release.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0-m2-release.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0-m2-release.page (added)
+++ servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0-m2-release.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,24 @@
+---
+title: ServiceMix 3.0-M2 Release
+page_version: 4
+page_creator: gnodet
+page_modifier: gnodet
+--- pipeline:conf
+h2. Download Here
+
+|| Description || Download Link || PGP Signature file of download ||
+| Binary for Windows | [apache-servicemix-3.0-M2-incubating.zip|http://people.apache.org/~gnodet/servicemix-3.0-M2-incubating/m2/org/apache/servicemix/apache-servicemix/3.0-M2-incubating/apache-servicemix-3.0-M2-incubating.zip] | [apache-servicemix-3.0-M2-incubating.zip.asc|http://people.apache.org/~gnodet/servicemix-3.0-M2-incubating/m2/org/apache/servicemix/apache-servicemix/3.0-M2-incubating/apache-servicemix-3.0-M2-incubating.zip.asc] |
+| Source code for Windows | [apache-servicemix-3.0-M2-incubating-src.zip|http://people.apache.org/~gnodet/servicemix-3.0-M2-incubating/m2/org/apache/servicemix/apache-servicemix/3.0-M2-incubating/apache-servicemix-3.0-M2-incubating-src.zip] | [apache-servicemix-3.0-M2-incubating-src.zip.asc|http://people.apache.org/~gnodet/servicemix-3.0-M2-incubating/m2/org/apache/servicemix/apache-servicemix/3.0-M2-incubating/apache-servicemix-3.0-M2-incubating-src.zip.asc] |
+| Binary for Unix | [apache-servicemix-3.0-M2-incubating.tar.gz|http://people.apache.org/~gnodet/servicemix-3.0-M2-incubating/m2/org/apache/servicemix/apache-servicemix/3.0-M2-incubating/apache-servicemix-3.0-M2-incubating.tar.gz] | [apache-servicemix-3.0-M2-incubating.tar.gz.asc|http://people.apache.org/~gnodet/servicemix-3.0-M2-incubating/m2/org/apache/servicemix/apache-servicemix/3.0-M2-incubating/apache-servicemix-3.0-M2-incubating.tar.gz.asc] |
+| Source code for Unix | [apache-servicemix-3.0-M2-incubating-src.tar.gz|http://people.apache.org/~gnodet/servicemix-3.0-M2-incubating/m2/org/apache/servicemix/apache-servicemix/3.0-M2-incubating/apache-servicemix-3.0-M2-incubating-src.tar.gz] | [apache-servicemix-3.0-M2-incubating-src.tar.gz.asc|http://people.apache.org/~gnodet/servicemix-3.0-M2-incubating/m2/org/apache/servicemix/apache-servicemix/3.0-M2-incubating/apache-servicemix-3.0-M2-incubating-src.tar.gz.asc] |
+
+h2. SVN Tag Checkout
+
+{code}
+svn co http://svn.apache.org/repos/asf/incubator/servicemix/tags/servicemix-3.0-M2-incubating/
+{code}
+
+h2. Changelog
+
+For a more detailed view of new features and bug fixes, see the [release notes|http://issues.apache.org/activemq/secure/ReleaseNote.jspa?version=11714&amp;styleName=Html&amp;projectId=10950&amp;Create=Create]
+{jiraissues:url=http://issues.apache.org/activemq/secure/IssueNavigator.jspa?view=rss&amp;&amp;pid=10950&amp;fixfor=11714&amp;sorter/field=issuekey&amp;sorter/order=DESC&amp;tempMax=999&amp;reset=true&amp;decorator=none}

Added: servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0.1.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0.1.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0.1.page (added)
+++ servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0.1.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,83 @@
+---
+title: ServiceMix 3.0.1
+page_version: 1
+page_creator: gnodet
+page_modifier: gnodet
+--- pipeline:conf
+{warning}
+This page is a preview of the release page which will be announced and made official once the release has been approved.
+{warning}
+
+h2. Download Here
+
+*Linux/Mac OS X/Unix Downloads*
+* [Apache ServiceMix 3.0.1-incubating (.tar.gz)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating.tar.gz] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating.tar.gz.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating.tar.gz.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating.tar.gz.md5]
+* [Apache ServiceMix 3.0.1-incubating Sources (.tar.gz)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating-src.tar.gz] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating-src.tar.gz.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating-src.tar.gz.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating-src.tar.gz.md5]
+
+*Windows Downloads*
+* [Apache ServiceMix 3.0.1-incubating (.zip)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating.zip] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating.zip.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating.zip.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating.zip.md5]
+* [Apache ServiceMix 3.0.1-incubating Sources (.zip)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating-src.zip] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating-src.zip.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating-src.zip.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0.1-incubating/apache-servicemix-3.0.1-incubating-src.zip.md5]
+
+
+h2. Release notes
+
+* *Bug*
+    ** [SM-387|https://issues.apache.org/activemq/browse/SM-387] - JBI Spec - Resource Loading Styles not correctly implemented
+    ** [SM-482|https://issues.apache.org/activemq/browse/SM-482] - Missing jars in the BPE component
+    ** [SM-570|https://issues.apache.org/activemq/browse/SM-570] - HTTP connector can blow up while trying to report a problem
+    ** [SM-583|https://issues.apache.org/activemq/browse/SM-583] - Jetty context Path verification
+    ** [SM-589|https://issues.apache.org/activemq/browse/SM-589] - The SourceTransformer should not log a warning when calling toResult with a null Source
+    ** [SM-592|https://issues.apache.org/activemq/browse/SM-592] - notifier.run() missing from DefaultState
+    ** [SM-593|https://issues.apache.org/activemq/browse/SM-593] - Jetty jars missing when running servicemix-web example
+    ** [SM-597|https://issues.apache.org/activemq/browse/SM-597] - Drools xpath expression does not use the namespaces defined
+    ** [SM-598|https://issues.apache.org/activemq/browse/SM-598] - MTOM attachments are not output by the jsr181 component
+    ** [SM-599|https://issues.apache.org/activemq/browse/SM-599] - bridge sample client.html providing no status info
+    ** [SM-603|https://issues.apache.org/activemq/browse/SM-603] - NullPointerException at org.apache.servicemix.jms.standard.StandardConsumerProcessor.doStart(StandardConsumerProcessor.java:51)
+    ** [SM-604|https://issues.apache.org/activemq/browse/SM-604] - Allow servicemix-http managed mode to dynamically determine the server, port, and context path it is running on when generating jsr181 WSDLs
+    ** [SM-608|https://issues.apache.org/activemq/browse/SM-608] - Maven based examples should include the needed repositories
+    ** [SM-610|https://issues.apache.org/activemq/browse/SM-610] - The ServiceAssembly mbean should return the names of the ServiceUnits
+    ** [SM-622|https://issues.apache.org/activemq/browse/SM-622] - JCAFlow with Howl Log throws STATUS_NO_TRANSACTION exception
+    ** [SM-674|https://issues.apache.org/activemq/browse/SM-674] - jbi:installComponent (and others) fails authentication against default SM container
+    ** [SM-676|https://issues.apache.org/activemq/browse/SM-676] - In the instance2 of the ws-notification example, the org.apache.servicemix.tck.ReceiverComponent should be removed
+    ** [SM-677|https://issues.apache.org/activemq/browse/SM-677] - FTP connection not recovered after ftp server failure/recovery
+    ** [SM-678|https://issues.apache.org/activemq/browse/SM-678] - Jsr181Component not using SU classloader to load service interface
+    ** [SM-691|https://issues.apache.org/activemq/browse/SM-691] - Client.html pages do not work in IE
+    ** [SM-697|https://issues.apache.org/activemq/browse/SM-697] - Using XSLT servicemix component causes a "java.io.IOException: Too many open files"
+    ** [SM-700|https://issues.apache.org/activemq/browse/SM-700] - ClientFactory should log problems at warning level as they are not critical
+    ** [SM-707|https://issues.apache.org/activemq/browse/SM-707] - Subscription Manager and Flow MBeans do not get unregistered.
+    ** [SM-722|https://issues.apache.org/activemq/browse/SM-722] - ExtendedXMLStreamReader strips whitespaces, which breaks servicemix-http when a SOAP invocation contains whitespace nodes
+    ** [SM-723|https://issues.apache.org/activemq/browse/SM-723] - ServiceMixClientFacade should not call "done" method
+    ** [SM-727|https://issues.apache.org/activemq/browse/SM-727] - Schema Import problem in a WSDL which doesn't let the service to be doployed on Servicemix
+
+* *Improvement*
+    ** [SM-565|https://issues.apache.org/activemq/browse/SM-585] - Enhance the JSR181 Proxy so that it can proxy non WSDL publishing components
+    ** [SM-578|https://issues.apache.org/activemq/browse/SM-578] - HttpComponent can not be deployed as managed!
+    ** [SM-581|https://issues.apache.org/activemq/browse/SM-581] - Use WSDL of servicemix-http endpoint if none is supplied by the target ServiceEndpoint
+    ** [SM-586|https://issues.apache.org/activemq/browse/SM-586] - Upgrade loan-broker example to lingo 1.1 and use different queues to avoid recieving messages from previous client runs
+    ** [SM-612|https://issues.apache.org/activemq/browse/SM-612] - servicemix-service-engine could set the scope of servicemix-core to provided
+    ** [SM-701|https://issues.apache.org/activemq/browse/SM-701] - Standardized the return of exceptions from the AdminCommandsService, also extended the ANT tasks to provide a deferExceptions settings which if set to true allows you to use the same semantics as the deploy/install directories.
+    ** [SM-702|https://issues.apache.org/activemq/browse/SM-702] - Components instantiated multiple times
+    ** [SM-709|https://issues.apache.org/activemq/browse/SM-709] - Upgrade to xbean 2.7 and Spring 2.0
+    ** [SM-710|https://issues.apache.org/activemq/browse/SM-710] - Upgrade to jetty 6.0.1
+    ** [SM-711|https://issues.apache.org/activemq/browse/SM-711] - Upgrade to woodstox 3.0.2
+    ** [SM-712|https://issues.apache.org/activemq/browse/SM-712] - Upgrade to xfire 1.2.2
+    ** [SM-715|https://issues.apache.org/activemq/browse/SM-715] - Document usage of jsr181:endpoint style parameter
+
+* *New Feature*
+    ** [SM-605|https://issues.apache.org/activemq/browse/SM-605] - Ability to configure jbi:projectDeploy goal to exclude updating dependencies
+    ** [SM-616|https://issues.apache.org/activemq/browse/SM-616] - Archetypes for the servicemix-saxon service engine
+    ** [SM-705|https://issues.apache.org/activemq/browse/SM-705] - Static Parameter map injected into XsltComponent
+
+* *Task*
+    ** [SM-671|https://issues.apache.org/activemq/browse/SM-671] - Use RI implementations for activation and javamail instead of geronimo ones
+
+h2. SVN Tag Checkout
+
+{code}
+svn co http://svn.apache.org/repos/asf/incubator/servicemix/tags/servicemix-3.0.1/
+{code}
+
+h2. Changelog
+
+For a more detailed view of new features and bug fixes, see the [changelog|http://issues.apache.org/activemq/secure/IssueNavigator.jspa?pid=10950&fixfor=11716&sorter/field=issuekey&sorter/order=DESC&tempMax=999&reset=true]
+

Added: servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0.page (added)
+++ servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.0.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,110 @@
+---
+title: ServiceMix 3.0
+page_version: 7
+page_creator: gnodet
+page_modifier: gnodet
+--- pipeline:conf
+h2. Download Here
+
+*Linux/Mac OS X/Unix Downloads*
+* [Apache ServiceMix 3.0-incubating (.tar.gz)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating.tar.gz] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating.tar.gz.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating.tar.gz.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating.tar.gz.md5]
+* [Apache ServiceMix 3.0-incubating Sources (.tar.gz)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating-src.tar.gz] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating-src.tar.gz.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating-src.tar.gz.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating-src.tar.gz.md5]
+
+*Windows Downloads*
+* [Apache ServiceMix 3.0-incubating (.zip)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating.zip] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating.zip.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating.zip.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating.zip.md5]
+* [Apache ServiceMix 3.0-incubating Sources (.zip)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating-src.zip] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating-src.zip.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating-src.zip.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.0-incubating/apache-servicemix-3.0-incubating-src.zip.md5]
+
+
+h2. Release notes
+
+* *Bug*
+    ** [SM-352|https://issues.apache.org/activemq/browse/SM-352] - Empty service assembly name prevents service units from start
+    ** [SM-367|https://issues.apache.org/activemq/browse/SM-367] - Add a JCA processor to servicemix-jms
+    ** [SM-403|https://issues.apache.org/activemq/browse/SM-403] - The JMS spec  mandates that all properties on JMS message are valid java identifiers
+    ** [SM-439|https://issues.apache.org/activemq/browse/SM-439] - servicemix-beanflow - Workflow.joinAll failure to register onStop callback if first Activity stops during start handler
+    ** [SM-477|https://issues.apache.org/activemq/browse/SM-477] - servicemix-http does not reply with HTTP 202 when processing "oneway" SOAP messages
+    ** [SM-484|https://issues.apache.org/activemq/browse/SM-484] - Missing dependencies for Maven 2 build
+    ** [SM-490|https://issues.apache.org/activemq/browse/SM-490] - Inconsistent property names for JbiConstants.PROTOCOL_TYPE and JbiConstants.PROTOCOL_HEADERS
+    ** [SM-493|https://issues.apache.org/activemq/browse/SM-493] - CopyTransformer does not copy SecuritySubject
+    ** [SM-498|https://issues.apache.org/activemq/browse/SM-498] - StaxSource: Bug in parse() method for character streams
+    ** [SM-499|https://issues.apache.org/activemq/browse/SM-499] - main.wsdl not accessible after deploying WSDL to servicemix-http component
+    ** [SM-502|https://issues.apache.org/activemq/browse/SM-502] - *ProviderProcessor in servicemix-jms overwrites the MimeMessage content-type with the one from the incoming normalizedmessage
+    ** [SM-503|https://issues.apache.org/activemq/browse/SM-503] - servicemix-http provider should not add the inMessage content-type header to the response if a new content-type is generated (mime messages)
+    ** [SM-504|https://issues.apache.org/activemq/browse/SM-504] - Beanflow: Multiple execution of beanflow steps
+    ** [SM-505|https://issues.apache.org/activemq/browse/SM-505] - When a component sendSync an InOut exchange to itself, the exchange is never delivered
+    ** [SM-508|https://issues.apache.org/activemq/browse/SM-508] - Marshaller spelled wrong in API
+    ** [SM-511|https://issues.apache.org/activemq/browse/SM-511] - Problem with schemas' import when there are multiple xsds in many dirs
+    ** [SM-512|https://issues.apache.org/activemq/browse/SM-512] - sendsync from a service to another service seems to cause a deadlock under load
+    ** [SM-514|https://issues.apache.org/activemq/browse/SM-514] - ValidateComponent does not create StreamSource with a SystemId which breaks schema includes and imports
+    ** [SM-515|https://issues.apache.org/activemq/browse/SM-515] - StringSource should throw an NPE when built with a null string instead of throwing it when calling getInputStream
+    ** [SM-516|https://issues.apache.org/activemq/browse/SM-516] - MessageUtil should support empty content when copying messages
+    ** [SM-520|https://issues.apache.org/activemq/browse/SM-520] - commons-pool need to be included as a dependency of servicemix-core
+    ** [SM-522|https://issues.apache.org/activemq/browse/SM-522] - Missing buildSharedLibrary implementation in ServiceMixConfigBuilder gbean
+    ** [SM-524|https://issues.apache.org/activemq/browse/SM-524] - XML generated by AdminCommmandsService.listComponents() is not well-formed
+    ** [SM-526|https://issues.apache.org/activemq/browse/SM-526] - Fault messages returned to BPEL via servicemix-bpe are not accessible in BPEL
+    ** [SM-529|https://issues.apache.org/activemq/browse/SM-529] - Servicemix-Component's MPSSettingTest.java hangs indefinitely.
+    ** [SM-535|https://issues.apache.org/activemq/browse/SM-535] - Allow interface to be used with jsr181 annotations
+    ** [SM-542|https://issues.apache.org/activemq/browse/SM-542] - NPE occurs in ODE-BPE when undeploying and redeploying the loan broker demo.
+    ** [SM-544|https://issues.apache.org/activemq/browse/SM-544] - Configuration is not available for lighweight deployment
+    ** [SM-545|https://issues.apache.org/activemq/browse/SM-545] - jbi-maven-plugin throws an error when building a jbi-service-assembly with 2 or more dependencies using the same component.
+    ** [SM-547|https://issues.apache.org/activemq/browse/SM-547] - When the xbean deployer throws a RuntimeException or Error on first deployment, redeployment of the SU fails
+    ** [SM-549|https://issues.apache.org/activemq/browse/SM-549] - QuartzComponent start sending messages when initialized rather than when started
+    ** [SM-551|https://issues.apache.org/activemq/browse/SM-551] - wsdlsoap:address generated by http component for proxied endpoint misses trailing slash
+    ** [SM-552|https://issues.apache.org/activemq/browse/SM-552] - JBoss Deployer fails when uninstalling / reinstalling Service Assemblies
+    ** [SM-553|https://issues.apache.org/activemq/browse/SM-553] - MessageExchangeImpl.toString() converts message content to DOMSource
+    ** [SM-554|https://issues.apache.org/activemq/browse/SM-554] - Deployment problem when one SU ina SA fail to deploy.  Other SU may not be properly shutdown.
+    ** [SM-558|https://issues.apache.org/activemq/browse/SM-558] - ComponentContext.resolveEndpointReference does not resolve JBI internal EPR format
+    ** [SM-560|https://issues.apache.org/activemq/browse/SM-560] - Internal EPR document fragments provided by ServiceMix are not valid NS-aware DOMs
+    ** [SM-562|https://issues.apache.org/activemq/browse/SM-562] - Unable to start due to missing lib/optional directory
+    ** [SM-563|https://issues.apache.org/activemq/browse/SM-563] - service unite declaration orderi in jbi.xml does not correspond to the service assembly pom
+    ** [SM-566|https://issues.apache.org/activemq/browse/SM-566] - JmsReceiverComponent trying to receive message before its JBI properties have been fully initialised
+    ** [SM-571|https://issues.apache.org/activemq/browse/SM-571] - Memory leak in DeliveryChannelImpl
+    ** [SM-572|https://issues.apache.org/activemq/browse/SM-572] - servicemix-wsn2005 always use the anonymous publisher
+    ** [SM-574|https://issues.apache.org/activemq/browse/SM-574] - JBoss Deployer fails to deploy ServiceMix properly on startup of JBoss
+
+* *Improvement*
+    ** [SM-292|https://issues.apache.org/activemq/browse/SM-292] - Add a toDOMElement method to SourceTransformer and check all calls to toDOMNode for possible CCE
+    ** [SM-406|https://issues.apache.org/activemq/browse/SM-406] - Email component should support attachment (multipart MIME email)
+    ** [SM-474|https://issues.apache.org/activemq/browse/SM-474] - Add validation code in for jbi descriptor to enforce the inclusion of bootstrap classname and classpath elements
+    ** [SM-478|https://issues.apache.org/activemq/browse/SM-478] - allow URIs to be easily used by the ServiceMixClient
+    ** [SM-479|https://issues.apache.org/activemq/browse/SM-479] - Add support for relative schema imports in WSDLFlattener
+    ** [SM-488|https://issues.apache.org/activemq/browse/SM-488] - SoapHelper Improvement:  Resolve WSDL operation name based on message content
+    ** [SM-489|https://issues.apache.org/activemq/browse/SM-489] - XalanComponent (XSLT Transform Component)
+    ** [SM-496|https://issues.apache.org/activemq/browse/SM-496] - Allows the soap-binding example to run in FireFox.
+    ** [SM-500|https://issues.apache.org/activemq/browse/SM-500] - FTPClientPool can't put its clients into passive mode
+    ** [SM-501|https://issues.apache.org/activemq/browse/SM-501] - ServiceMix Ant tasks: accept URL for file
+    ** [SM-506|https://issues.apache.org/activemq/browse/SM-506] - Improve jsr181 proxy to use a service factory
+    ** [SM-517|https://issues.apache.org/activemq/browse/SM-517] - Re-structure the common/soap shared libraries
+    ** [SM-518|https://issues.apache.org/activemq/browse/SM-518] - MessageExchangeFactoryImpl.setDefaults(MessageExchangeImpl exchange) check for null
+    ** [SM-525|https://issues.apache.org/activemq/browse/SM-525] - Enhancement to ValidateComponent to implement a complete and flexible error handling scheme for schema validation
+    ** [SM-528|https://issues.apache.org/activemq/browse/SM-528] - using the new ClientFactory for the JSR181 proxy inside jsr181 service unit
+    ** [SM-539|https://issues.apache.org/activemq/browse/SM-539] - Move org.apache.servicemix.eip.MessageUtil to org.apache.servicemix.jbi.util.MessageUtil (in servicemix-core)
+    ** [SM-550|https://issues.apache.org/activemq/browse/SM-550] - The http provider endpoint should use send instead of sendSync
+    ** [SM-567|https://issues.apache.org/activemq/browse/SM-567] - Allow the soap style to be set for jsr181 endpoint
+
+* *New Feature*
+    ** [SM-457|https://issues.apache.org/activemq/browse/SM-457] - Classloader for XBean deployment should support child delegation and class exclusions
+    ** [SM-486|https://issues.apache.org/activemq/browse/SM-486] - MessagePropertySetter
+    ** [SM-495|https://issues.apache.org/activemq/browse/SM-495] - Provide a jndi factory to create clients and bind it to the JNDI tree when the container is started
+    ** [SM-509|https://issues.apache.org/activemq/browse/SM-509] - Support mtom and attachments
+    ** [SM-513|https://issues.apache.org/activemq/browse/SM-513] - Support for HTTP basic authentication
+    ** [SM-540|https://issues.apache.org/activemq/browse/SM-540] - Add a new handler to force parsing the input message as a DOM
+
+* *Task*
+    ** [SM-458|https://issues.apache.org/activemq/browse/SM-458] - Remove xbean patches
+    ** [SM-519|https://issues.apache.org/activemq/browse/SM-519] - Update LICENSE and NOTICE files according to http://www.apache.org/dev/apply-license.html#license
+    ** [SM-533|https://issues.apache.org/activemq/browse/SM-533] - Change all tooling version from 1.0-incubating-SNAPSHOT to 3.0-incubating-SNAPSHOT
+
+
+* *Wish*
+    ** [SM-491|https://issues.apache.org/activemq/browse/SM-491] - Links in apache-servicemix-3.0-M2-incubating/README are stale/broken.
+
+h2. SVN Tag Checkout
+
+{code}
+svn co http://svn.apache.org/repos/asf/incubator/servicemix/tags/servicemix-3.0/
+{code}
+
+h2. Changelog
+
+For a more detailed view of new features and bug fixes, see the [changelog|http://issues.apache.org/activemq/secure/IssueNavigator.jspa?pid=10950&fixfor=11785&sorter/field=issuekey&sorter/order=DESC&tempMax=999&reset=true]

Added: servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.1.1.page
URL: http://svn.apache.org/viewvc/servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.1.1.page?rev=1140882&view=auto
==============================================================================
--- servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.1.1.page (added)
+++ servicemix/website/trunk/src/main/webapp/downloads/servicemix-3.1.1.page Tue Jun 28 22:53:18 2011
@@ -0,0 +1,97 @@
+---
+title: ServiceMix 3.1.1
+page_version: 3
+page_creator: gnodet
+page_modifier: gnodet
+--- pipeline:conf
+
+h2. Download Here
+
+*Linux/Mac OS X/Unix Downloads*
+* [Apache ServiceMix 3.1.1-incubating (.tar.gz)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating.tar.gz] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating.tar.gz.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating.tar.gz.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating.tar.gz.md5]
+* [Apache ServiceMix 3.1.1-incubating Sources (.tar.gz)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating-src.tar.gz] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating-src.tar.gz.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating-src.tar.gz.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating-src.tar.gz.md5]
+
+*Windows Downloads*
+* [Apache ServiceMix 3.1.1-incubating (.zip)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating.zip] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating.zip.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating.zip.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating.zip.md5]
+* [Apache ServiceMix 3.1.1-incubating Sources (.zip)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating-src.zip] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating-src.zip.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating-src.zip.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix/3.1.1-incubating/apache-servicemix-3.1.1-incubating-src.zip.md5]
+
+*Web Application*
+* [Apache ServiceMix Web Application 3.1.1-incubating (.war)|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix-web/3.1.1-incubating/apache-servicemix-web-3.1.1-incubating.war] [PGP|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix-web/3.1.1-incubating/apache-servicemix-web-3.1.1-incubating.war.asc] [SHA|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix-web/3.1.1-incubating/apache-servicemix-web-3.1.1-incubating.war.sha1] [MD5|http://people.apache.org/repo/m2-incubating-repository/org/apache/servicemix/apache-servicemix-web/3.1.1-incubating/apache-servicemix-web-3.1.1-incubating.war.md5]
+
+
+h2. Release notes
+
+* *Bug*
+    ** [SM-331|https://issues.apache.org/activemq/browse/SM-331] - JabberComponentSupport attempts to create a jabber account every time on start
+    ** [SM-828|https://issues.apache.org/activemq/browse/SM-828] - OutBinding doesn't allow for DeliveryChannel.accept()
+    ** [SM-829|https://issues.apache.org/activemq/browse/SM-829] - Incorrect file encoding of created jbi.xml
+    ** [SM-832|https://issues.apache.org/activemq/browse/SM-832] - Ws-Security signature does not work for outbound
+    ** [SM-835|https://issues.apache.org/activemq/browse/SM-835] - achetypes should not contain the <classpath/> tag inside the spring files
+    ** [SM-839|https://issues.apache.org/activemq/browse/SM-839] - java.lang.IllegalStateException: Could not find valid implementation for: 2.0
+    ** [SM-840|https://issues.apache.org/activemq/browse/SM-840] - JMS connections not close in servicemix-wsn2005
+    ** [SM-841|https://issues.apache.org/activemq/browse/SM-841] - The servicemix-http provider endpoint does not properly handle web services that return faults with multiple elements in the detail section.
+    ** [SM-842|https://issues.apache.org/activemq/browse/SM-842] - AuthenticationService set on the configuration is not used
+    ** [SM-843|https://issues.apache.org/activemq/browse/SM-843] - The defaultMep attribute is missing on the jms endpoint in loan-broker-bpel demo
+    ** [SM-845|https://issues.apache.org/activemq/browse/SM-845] - servicemix-quartz includes unneeded spring libraries
+    ** [SM-846|https://issues.apache.org/activemq/browse/SM-846] - Call to default constructor of JBIContainer changes log4j log level
+    ** [SM-847|https://issues.apache.org/activemq/browse/SM-847] - Old version of xml-apis in distribution
+    ** [SM-849|https://issues.apache.org/activemq/browse/SM-849] - The web console fails when displaying an error
+    ** [SM-850|https://issues.apache.org/activemq/browse/SM-850] - Error starting ServiceMix on AIX
+    ** [SM-853|https://issues.apache.org/activemq/browse/SM-853] - NPE in DotViewFlowListener
+    ** [SM-860|https://issues.apache.org/activemq/browse/SM-860] - EndpointReferenceBuilder.getReference() should cache its DocumentBuilderFactory instance
+    ** [SM-861|https://issues.apache.org/activemq/browse/SM-861] - servicemix-common does not properly set the correlationId for exchanges that are sent using sendSync
+    ** [SM-862|https://issues.apache.org/activemq/browse/SM-862] - Possible problem when @WebMethod returns an empty string for the operation name
+    ** [SM-863|https://issues.apache.org/activemq/browse/SM-863] - Generated ids are too long, it may cause problems when using them in databases as indexes
+    ** [SM-866|https://issues.apache.org/activemq/browse/SM-866] - wsn-http-binding fails to start 
+    ** [SM-867|https://issues.apache.org/activemq/browse/SM-867] - Cannot add soap header in JSR181 component
+    ** [SM-873|https://issues.apache.org/activemq/browse/SM-873] - servicemix-http does not return a valid fault when the xml is invalid
+    ** [SM-874|https://issues.apache.org/activemq/browse/SM-874] - servicemix-http does not honor the soap version for certain kinds of faults
+    ** [SM-878|https://issues.apache.org/activemq/browse/SM-878] - servicemix-bean is not include in the distribution
+    ** [SM-879|https://issues.apache.org/activemq/browse/SM-879] - EIP XPath Splitter and Drools3.1 used together cause problems in xpath evaluation
+    ** [SM-890|https://issues.apache.org/activemq/browse/SM-890] - Security Subject can not be propagated in servicemix-jsr181 when using the jsr181 proxies
+    ** [SM-891|https://issues.apache.org/activemq/browse/SM-891] - Maven plugin should use finalName
+    ** [SM-892|https://issues.apache.org/activemq/browse/SM-892] - ManagementContext.shutdown() calls wrong method to unregister MBeans
+    ** [SM-893|https://issues.apache.org/activemq/browse/SM-893] - Messages lost under heavy load using JMSFlow
+    ** [SM-900|https://issues.apache.org/activemq/browse/SM-900] - WSDLFlattenner does not handle schemas inclusions
+    ** [SM-902|https://issues.apache.org/activemq/browse/SM-902] -  File Binding example error with JaxenStringXPathExpression 
+    ** [SM-904|https://issues.apache.org/activemq/browse/SM-904] - The jmx url is wrong if there are spaces at the end of the properties
+    ** [SM-911|https://issues.apache.org/activemq/browse/SM-911] - JDBCComponent: The first column index is 1 in a result from sql query (non zero)
+    ** [SM-914|https://issues.apache.org/activemq/browse/SM-914] - Exception upon generating a dot file from the apache-servicemix-web distribution in Tomcat 
+    ** [SM-923|https://issues.apache.org/activemq/browse/SM-923] - NPE in the web console when viewing component with lightweight components deployed
+    ** [SM-928|https://issues.apache.org/activemq/browse/SM-928] - ProviderProcessor leaks memory for https endpoints
+    ** [SM-938|https://issues.apache.org/activemq/browse/SM-938] - Component updates (from the hot deployer) sometimes fail
+    ** [SM-940|https://issues.apache.org/activemq/browse/SM-940] - OneWay operation are not supported
+    ** [SM-941|https://issues.apache.org/activemq/browse/SM-941] - NPE in BeanComponent - checkEndOfRequest
+    ** [SM-951|https://issues.apache.org/activemq/browse/SM-951] - Remove servicemix-sca which is hosted in tuscany and which is completely outdated
+
+* *Improvement*
+    ** [SM-611|https://issues.apache.org/activemq/browse/SM-611] - Reduce non-optional core dependencies
+    ** [SM-795|https://issues.apache.org/activemq/browse/SM-795] - HTTP headers attached as properties may cause requests to fail
+    ** [SM-830|https://issues.apache.org/activemq/browse/SM-830] - Replace System.out printing with logger
+    ** [SM-865|https://issues.apache.org/activemq/browse/SM-865] - Remove jta and j2ee-connector from the mandatory dependencies when running an embedded ServiceMix instance
+    ** [SM-869|https://issues.apache.org/activemq/browse/SM-869] - Avoid creating xml factories in jsr181
+    ** [SM-870|https://issues.apache.org/activemq/browse/SM-870] - StaxSourceTransformer should reuse the XMLStreamReader when available
+    ** [SM-871|https://issues.apache.org/activemq/browse/SM-871] - Optimize wsdl-first example
+    ** [SM-876|https://issues.apache.org/activemq/browse/SM-876] - jmx.xml should use the jmx.url property
+    ** [SM-877|https://issues.apache.org/activemq/browse/SM-877] - Bottleneck in SoapReader.readSoapUsingDom()
+    ** [SM-889|https://issues.apache.org/activemq/browse/SM-889] - Add possibility to rename files after FTP upload
+    ** [SM-913|https://issues.apache.org/activemq/browse/SM-913] - Improve archetypes and add a batch file for ease of use
+    ** [SM-922|https://issues.apache.org/activemq/browse/SM-922] - When browsing for available services, existing urls should end with the needed '/' when displayed
+
+
+* *Task*
+    ** [SM-901|https://issues.apache.org/activemq/browse/SM-901] - Upgrade to xfire 1.2.5
+    ** [SM-916|https://issues.apache.org/activemq/browse/SM-916] - Upgrade to ActiveMQ 4.1.1
+    ** [SM-946|https://issues.apache.org/activemq/browse/SM-946] - Upgrade loan-broker-bpel example to use Apache Ode
+
+
+h2. SVN Tag Checkout
+
+{code}
+svn co http://svn.apache.org/repos/asf/incubator/servicemix/tags/servicemix-3.1.1/
+{code}
+
+h2. Changelog
+
+For a more detailed view of new features and bug fixes, see the [changelog|http://issues.apache.org/activemq/secure/IssueNavigator.jspa?pid=10950&fixfor=11811&sorter/field=issuekey&sorter/order=DESC&tempMax=999&reset=true]
+