svn commit: r1052223 - in /axis/axis2/java/core/trunk: ./ modules/jaxws-integration/ modules/jaxws-integration/test/org/apache/axis2/jaxws/dispatch/ modules/jaxws-integration/test/org/apache/axis2/jax
Author: veithen Date: Thu Dec 23 11:07:19 2010 New Revision: 1052223 URL: http://svn.apache.org/viewvc?rev=1052223&view=rev Log: Attempt to fix the build failures seen on one of the Ubuntu executors (which are caused by an unusual DNS setup). Added: axis/axis2/java/core/trunk/modules/testutils/ axis/axis2/java/core/trunk/modules/testutils/pom.xml (with props) axis/axis2/java/core/trunk/modules/testutils/src/ axis/axis2/java/core/trunk/modules/testutils/src/main/ axis/axis2/java/core/trunk/modules/testutils/src/main/java/ axis/axis2/java/core/trunk/modules/testutils/src/main/java/org/ axis/axis2/java/core/trunk/modules/testutils/src/main/java/org/apache/ axis/axis2/java/core/trunk/modules/testutils/src/main/java/org/apache/axis2/ axis/axis2/java/core/trunk/modules/testutils/src/main/java/org/apache/axis2/testutils/ axis/axis2/java/core/trunk/modules/testutils/src/main/java/org/apache/axis2/testutils/AllTestsWithRuntimeIgnore.java (with props) axis/axis2/java/core/trunk/modules/testutils/src/main/java/org/apache/axis2/testutils/JUnit38ClassRunnerWithRuntimeIgnore.java (with props) axis/axis2/java/core/trunk/modules/testutils/src/main/java/org/apache/axis2/testutils/RuntimeIgnoreException.java (with props) axis/axis2/java/core/trunk/modules/testutils/src/main/java/org/apache/axis2/testutils/RuntimeIgnoreRunNotifier.java (with props) axis/axis2/java/core/trunk/modules/testutils/src/main/java/org/apache/axis2/testutils/package-info.java (with props) Modified: axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/dispatch/StringDispatchTests.java axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/framework/AbstractTestCase.java axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/sample/FaultyWebServiceTests.java axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/sample/RuntimeExceptionsAsyncMepTest.java axis/axis2/java/core/trunk/pom.xml Modified: axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml?rev=1052223&r1=105&r2=1052223&view=diff == --- axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml (original) +++ axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml Thu Dec 23 11:07:19 2010 @@ -81,6 +81,12 @@ ${project.version} +org.apache.axis2 +axis2-testutils +${project.version} +test + + log4j log4j test Modified: axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/dispatch/StringDispatchTests.java URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/dispatch/StringDispatchTests.java?rev=1052223&r1=105&r2=1052223&view=diff == --- axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/dispatch/StringDispatchTests.java (original) +++ axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/dispatch/StringDispatchTests.java Thu Dec 23 11:07:19 2010 @@ -23,6 +23,8 @@ import junit.framework.Test; import junit.framework.TestSuite; import org.apache.axis2.jaxws.TestLogger; import org.apache.axis2.jaxws.framework.AbstractTestCase; +import org.apache.axis2.testutils.AllTestsWithRuntimeIgnore; +import org.junit.runner.RunWith; import javax.xml.ws.Dispatch; import javax.xml.ws.ProtocolException; @@ -30,12 +32,11 @@ import javax.xml.ws.Response; import javax.xml.ws.Service; import javax.xml.ws.WebServiceException; -import java.net.InetAddress; -import java.net.URL; import java.net.UnknownHostException; import java.util.concurrent.ExecutionException; import java.util.concurrent.Future; +...@runwith(AllTestsWithRuntimeIgnore.class) public class StringDispatchTests extends AbstractTestCase { @@ -435,14 +436,7 @@ public class StringDispatchTests extends public void testSyncPayloadMode_badHostName() throws Exception { -String host = new URL(DispatchTestConstants.BADURL).getHost(); -try { -InetAddress addr = InetAddress.getByName(host); -System.out.println(host + " resolves to " + addr.getHostAddress() + "; skipping test case"); -return; -} catch (UnknownHostException ex) { -// This is what we expect -} +checkUnknownHostURL(DispatchTestConstants.BADURL); TestLogger.logger.debug("---"); TestLogger.log
svn commit: r1052274 - /axis/axis2/java/rampart/trunk/pom.xml
Author: veithen Date: Thu Dec 23 14:15:35 2010 New Revision: 1052274 URL: http://svn.apache.org/viewvc?rev=1052274&view=rev Log: Switching back trunk dependencies to snapshot versions, so that the Hudson build can be used to detect integration issues with upstream projects. Modified: axis/axis2/java/rampart/trunk/pom.xml Modified: axis/axis2/java/rampart/trunk/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/rampart/trunk/pom.xml?rev=1052274&r1=1052273&r2=1052274&view=diff == --- axis/axis2/java/rampart/trunk/pom.xml (original) +++ axis/axis2/java/rampart/trunk/pom.xml Thu Dec 23 14:15:35 2010 @@ -382,10 +382,10 @@ SNAPSHOT SNAPSHOT -1.5.3 -1.2.10 +SNAPSHOT +1.2.11-SNAPSHOT -1.5.10 +1.5.11-SNAPSHOT 1.4.2 1.1
svn commit: r1052303 - /axis/axis2/java/core/branches/1_5/modules/testutils/pom.xml
Author: veithen Date: Thu Dec 23 15:50:43 2010 New Revision: 1052303 URL: http://svn.apache.org/viewvc?rev=1052303&view=rev Log: Forgot to update the POM metadata after merging r1052223. Modified: axis/axis2/java/core/branches/1_5/modules/testutils/pom.xml Modified: axis/axis2/java/core/branches/1_5/modules/testutils/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/modules/testutils/pom.xml?rev=1052303&r1=1052302&r2=1052303&view=diff == --- axis/axis2/java/core/branches/1_5/modules/testutils/pom.xml (original) +++ axis/axis2/java/core/branches/1_5/modules/testutils/pom.xml Thu Dec 23 15:50:43 2010 @@ -22,7 +22,7 @@ org.apache.axis2 axis2-parent -SNAPSHOT +1.5.5-SNAPSHOT ../parent/pom.xml axis2-testutils @@ -36,9 +36,9 @@ - scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/core/trunk/modules/testutils - scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/core/trunk/modules/testutils - http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/testutils + scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/core/branches/1_5/modules/testutils + scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/core/branches/1_5/modules/testutils + http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/modules/testutils
svn commit: r1052333 - /axis/axis2/java/sandesha/branches/1_4/pom.xml
Author: veithen Date: Thu Dec 23 17:23:35 2010 New Revision: 1052333 URL: http://svn.apache.org/viewvc?rev=1052333&view=rev Log: Preparing to reactivate the Sandesha2 1.4 branch build. Modified: axis/axis2/java/sandesha/branches/1_4/pom.xml Modified: axis/axis2/java/sandesha/branches/1_4/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/pom.xml?rev=1052333&r1=1052332&r2=1052333&view=diff == --- axis/axis2/java/sandesha/branches/1_4/pom.xml (original) +++ axis/axis2/java/sandesha/branches/1_4/pom.xml Thu Dec 23 17:23:35 2010 @@ -366,9 +366,10 @@ -1.5.4 +1.5.5-SNAPSHOT + 1.5 -1.2.10 +1.2.11-SNAPSHOT 2.0.4 1.1.1 3.8.2
svn commit: r1052384 - /axis/axis2/java/core/trunk/src/site/resources/css/site.css
Author: veithen Date: Thu Dec 23 21:52:19 2010 New Revision: 1052384 URL: http://svn.apache.org/viewvc?rev=1052384&view=rev Log: Fixed incorrect vertical alignment in breadcrumbs. Modified: axis/axis2/java/core/trunk/src/site/resources/css/site.css Modified: axis/axis2/java/core/trunk/src/site/resources/css/site.css URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/src/site/resources/css/site.css?rev=1052384&r1=1052383&r2=1052384&view=diff == --- axis/axis2/java/core/trunk/src/site/resources/css/site.css (original) +++ axis/axis2/java/core/trunk/src/site/resources/css/site.css Thu Dec 23 21:52:19 2010 @@ -88,7 +88,6 @@ body { background-position: left top; background-repeat: repeat-x; border-bottom: solid 1px #d4d4d4; -height: 28px; font-size: 0.8em; background-color: transparent; border: 1px solid #6895c2; @@ -97,13 +96,19 @@ body { #banner{ margin-top:10px; } -.xleft, #bannerLeft img { + +#bannerLeft img { +margin-top: 10px; +} + +.xleft { text-shadow: none; -margin-top:10px; +margin: 0.4em; } -.xright, #bannerRight { +.xright { text-shadow: none; +margin: 0.4em; } #leftColumn {
svn commit: r1052395 - in /axis/axis2/java/rampart/trunk: modules/documentation/src/site/xdoc/download.xml modules/documentation/src/site/xdoc/svn.xml pom.xml
Author: veithen Date: Thu Dec 23 22:17:10 2010 New Revision: 1052395 URL: http://svn.apache.org/viewvc?rev=1052395&view=rev Log: Fixed a couple of incorrect/outdated URLs that I discovered while reviewing the 1.5.1 site. Modified: axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/download.xml axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/svn.xml axis/axis2/java/rampart/trunk/pom.xml Modified: axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/download.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/download.xml?rev=1052395&r1=1052394&r2=1052395&view=diff == --- axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/download.xml (original) +++ axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/download.xml Thu Dec 23 22:17:10 2010 @@ -87,11 +87,11 @@ -Apache Rampart Distributions : http://people.apache.org/~ruchithf/rampart/SNAPSHOT";>Nightly builds +Apache Rampart Distributions : https://hudson.apache.org/hudson/job/Rampart/lastStableBuild/org.apache.rampart$rampart-dist/";>Nightly builds -Maven Repository: http://people.apache.org/repo/m2-ibiblio-rsync-repository/";>Released Apache Rampart jars | http://people.apache.org/repo/m2-snapshot-repository/";>Nightly SNAPSHOT +Maven Repository: http://people.apache.org/repo/m2-ibiblio-rsync-repository/";>Released Apache Rampart jars | http://repository.apache.org/snapshots/";>Nightly SNAPSHOT Modified: axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/svn.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/svn.xml?rev=1052395&r1=1052394&r2=1052395&view=diff == --- axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/svn.xml (original) +++ axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/svn.xml Thu Dec 23 22:17:10 2010 @@ -71,7 +71,7 @@ information, please read the ASF Once you have successfully installed Subversion, you can check out Rampart trunk by following these steps: -Run svn coaxis2 where +Run svn co rampart where the repository URL is one of the URLs from the previous list. This step will check out the latest version of the Rampart Java codebase to a directory named "rampart". The second parameter to the Modified: axis/axis2/java/rampart/trunk/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/rampart/trunk/pom.xml?rev=1052395&r1=1052394&r2=1052395&view=diff == --- axis/axis2/java/rampart/trunk/pom.xml (original) +++ axis/axis2/java/rampart/trunk/pom.xml Thu Dec 23 22:17:10 2010 @@ -14,7 +14,7 @@ WS-Security, WS-Trust and WS-SecureConversation implementaion for Apache Axis2 SNAPSHOT Apache Rampart -http://ws.apache.org/rampart +http://axis.apache.org/axis2/java/rampart
svn commit: r1052405 - in /axis/axis2/java/core/site: ./ api/ api/org/apache/axis2/ api/org/apache/axis2/addressing/ api/org/apache/axis2/addressing/class-use/ api/org/apache/axis2/addressing/i18n/ ap
Author: veithen Date: Thu Dec 23 23:00:57 2010 New Revision: 1052405 URL: http://svn.apache.org/viewvc?rev=1052405&view=rev Log: Updated site for 1.5.4 release. [This commit notification would consist of 467 parts, which exceeds the limit of 50 ones, so it was shortened to the summary.]
svn commit: r1052418 - in /axis/axis2/java/sandesha/site: ./ apidocs/ apidocs/org/apache/sandesha2/ apidocs/org/apache/sandesha2/addressing/ apidocs/org/apache/sandesha2/addressing/class-use/ apidocs/
Author: veithen Date: Fri Dec 24 00:36:46 2010 New Revision: 1052418 URL: http://svn.apache.org/viewvc?rev=1052418&view=rev Log: Updated site for 1.4 release. [This commit notification would consist of 109 parts, which exceeds the limit of 50 ones, so it was shortened to the summary.]