Author: ruwan Date: Wed Jan 28 04:18:21 2009 New Revision: 29845 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=29845
Log: Adding the release content Added: trunk/esb/java/BUILDING.txt trunk/esb/java/INSTALL.txt Modified: trunk/esb/java/README.txt trunk/esb/java/modules/distribution/src/main/assembly/bin.xml trunk/esb/java/modules/distribution/src/main/assembly/src.xml Added: trunk/esb/java/BUILDING.txt URL: http://wso2.org/svn/browse/wso2/trunk/esb/java/BUILDING.txt?pathrev=29845 ============================================================================== --- (empty file) +++ trunk/esb/java/BUILDING.txt Wed Jan 28 04:18:21 2009 @@ -0,0 +1,14 @@ +Building WSO2 ESB 2.0 from source + +Requirements +================ +Maven 2.0.8 +JDK 1.5.x (e.g. JDK 1.5.0_15) + +Source code is available at http://wso2.org/repos/wso2/tags/esb/java/2.0/esb/java/ + +To build the WSO2 ESB distribution, execute + + mvn clean install + + Added: trunk/esb/java/INSTALL.txt URL: http://wso2.org/svn/browse/wso2/trunk/esb/java/INSTALL.txt?pathrev=29845 ============================================================================== --- (empty file) +++ trunk/esb/java/INSTALL.txt Wed Jan 28 04:18:21 2009 @@ -0,0 +1,61 @@ +Installing WSO2 Enterprise Service Bus (ESB) 2.0 + +WSO2 ESB 2.0 can be run either in standalone mode or as a webapp within a +servlet container. + +Standalone Mode +======================= +1. The directory containing this INSTALL file will the root and it will be + treated as Carbon home directory and let it be CARBON_HOME. + +2. All the shell scripts and .bat files are available in CARBON_HOME/bin folder. + +3. To start WSAS one can use either wso2server.sh or daemon.sh in all *nix + system & wso2server.bat file on Windows operating systems. + +4. Either of the following commands can be used to start ESB + i) ./wso2server.sh {console|start|stop|restart|status|dump|version} + ii) ./daemon.sh {console|start|stop|restart|status|dump} + iii) wso2server.bat {start|stop|version} + + Usage: wso2server.sh [command] + command: + --debug <port> Start the server in remote debugging mode. + port: The remote debugging port. + --run Run the server + --start Start Carbon as a Unix daemon in the background + --console Start Carbon as a Unix daemon in the foreground + --stop Stop the Carbon Unix daemon + --status Get the status of the Carbon Unix daemon + --dump Print a thread dump of the Carbon Unix daemon + --restart Restart the Carbon Unix daemon + --version What version of the Carbon server are you running + +System Requirements +======================= +1. Minimum memory - 256MB +2. Processor - Pentium 800MHz or equivalent at minimum +3. Java SE Development Kit 1.5.13 or higher +4. The Management Console requires you to enable Javascript of the Web browser, + with MS IE 6 and 7. In addition to JavaScript, ActiveX should also be enabled + with IE. This can be achieved by setting your security level to medium or lower. + NOTE: + On Windows Server 2003, it is not allowed to go below the medium security + level in Internet Explorer 6.x and the default medium security setting with + IE does not allow sufficient level of JS or ActiveX enablement for the management + console to run. +5. To compile and run the sample clients, an Ant version is required. Ant 1.7.0 + version is recommended +6. To build WSO2 ESB from the Source distribution, it is necessary that you have + JDK 1.5.x version and Maven 2.0.6 or later + +For more details see + http://wso2.org/wiki/display/carbon/System+Requirements + +Running Samples +======================= +ESB samples are available at CARBON_HOME/samples directory. +The instructions to run sample are given in README.txt file of the respective +samples. + + Modified: trunk/esb/java/README.txt URL: http://wso2.org/svn/browse/wso2/trunk/esb/java/README.txt?rev=29845&r1=29844&r2=29845&view=diff ============================================================================== --- trunk/esb/java/README.txt (original) +++ trunk/esb/java/README.txt Wed Jan 28 04:18:21 2009 @@ -102,6 +102,9 @@ Note: Please run ant on the bin directory of the extracted distribution before running samples. +5. Samples configurations can be specified by passing the property + -Desb.sample=${SAMPLE_NUMBER} + WSO2 ESB 2.0 distribution directory structure ============================================= Modified: trunk/esb/java/modules/distribution/src/main/assembly/bin.xml URL: http://wso2.org/svn/browse/wso2/trunk/esb/java/modules/distribution/src/main/assembly/bin.xml?rev=29845&r1=29844&r2=29845&view=diff ============================================================================== --- trunk/esb/java/modules/distribution/src/main/assembly/bin.xml (original) +++ trunk/esb/java/modules/distribution/src/main/assembly/bin.xml Wed Jan 28 04:18:21 2009 @@ -145,6 +145,16 @@ <filtered>true</filtered> </file> <file> + <source>../../INSTALL.txt</source> + <outputDirectory>wso2esb-${esb.version}</outputDirectory> + <filtered>true</filtered> + </file> + <file> + <source>../../BUILDING.txt</source> + <outputDirectory>wso2esb-${esb.version}</outputDirectory> + <filtered>true</filtered> + </file> + <file> <source>../../docs/xdoc/release-note.xml</source> <outputDirectory>wso2esb-${esb.version}</outputDirectory> <destName>release-note.html</destName> Modified: trunk/esb/java/modules/distribution/src/main/assembly/src.xml URL: http://wso2.org/svn/browse/wso2/trunk/esb/java/modules/distribution/src/main/assembly/src.xml?rev=29845&r1=29844&r2=29845&view=diff ============================================================================== --- trunk/esb/java/modules/distribution/src/main/assembly/src.xml (original) +++ trunk/esb/java/modules/distribution/src/main/assembly/src.xml Wed Jan 28 04:18:21 2009 @@ -35,10 +35,14 @@ <outputDirectory>wso2esb-src-${pom.version}</outputDirectory> <filtered>true</filtered> </file> - <!--<file>--> - <!--<source>../../release-note.xhtml</source>--> - <!--<outputDirectory>wso2esb-src-${pom.version}</outputDirectory>--> - <!--<filtered>true</filtered>--> - <!--</file>--> + <file> + <source>../../INSTALL.txt</source> + <outputDirectory>wso2esb-src-${pom.version}</outputDirectory> + <filtered>true</filtered> + </file><file> + <source>../../BUILDING.txt</source> + <outputDirectory>wso2esb-src-${pom.version}</outputDirectory> + <filtered>true</filtered> + </file> </files> </assembly> _______________________________________________ Esb-java-dev mailing list [email protected] https://wso2.org/cgi-bin/mailman/listinfo/esb-java-dev
