svn commit: r1050793 - /axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/dispatch/StringDispatchTests.java

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 10:32:45 2010
New Revision: 1050793

URL: http://svn.apache.org/viewvc?rev=1050793&view=rev
Log:
Added some code to investigate the recent build failure on Hudson.

Modified:

axis/axis2/java/core/trunk/modules/jaxws-integration/test/org/apache/axis2/jaxws/dispatch/StringDispatchTests.java

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=1050793&r1=1050792&r2=1050793&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
 Sun Dec 19 10:32:45 2010
@@ -29,6 +29,9 @@ import javax.xml.ws.ProtocolException;
 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;
@@ -431,7 +434,16 @@ public class StringDispatchTests extends
}
 
 
-public void testSyncPayloadMode_badHostName() {
+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
+}
+
 TestLogger.logger.debug("---");
 TestLogger.logger.debug("test: " + getName());
 




svn commit: r1050819 - /axis/axis2/java/core/trunk/modules/jibx/src/org/apache/axis2/jibx/template/JibXDatabindingTemplate.xsl

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 12:01:45 2010
New Revision: 1050819

URL: http://svn.apache.org/viewvc?rev=1050819&view=rev
Log:
AXIS2-4586: Applied the patch provided by Anuj Bhatia.

Modified:

axis/axis2/java/core/trunk/modules/jibx/src/org/apache/axis2/jibx/template/JibXDatabindingTemplate.xsl

Modified: 
axis/axis2/java/core/trunk/modules/jibx/src/org/apache/axis2/jibx/template/JibXDatabindingTemplate.xsl
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/jibx/src/org/apache/axis2/jibx/template/JibXDatabindingTemplate.xsl?rev=1050819&r1=1050818&r2=1050819&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/jibx/src/org/apache/axis2/jibx/template/JibXDatabindingTemplate.xsl
 (original)
+++ 
axis/axis2/java/core/trunk/modules/jibx/src/org/apache/axis2/jibx/template/JibXDatabindingTemplate.xsl
 Sun Dec 19 12:01:45 2010
@@ -404,6 +404,8 @@
 
+// create message context
+final org.apache.axis2.context.MessageContext _messageContext = 
new org.apache.axis2.context.MessageContext();
 try {
 int _opIndex = ;
 javax.xml.namespace.QName opname = 
_operations[_opIndex].getName();
@@ -431,8 +433,7 @@
 // add SOAP headers
 _serviceClient.addHeadersToEnvelope(env);
 
-// create message context with that envelope
-org.apache.axis2.context.MessageContext _messageContext = new 
org.apache.axis2.context.MessageContext();
+// set that envelope on the message context
 _messageContext.setEnvelope(env);
 
 // add the message context to the operation client
@@ -467,6 +468,8 @@
 // should never happen, but just in case
 throw new RuntimeException("Unexpected exception type: " +
 outex.getClass().getName(), outex);
+} finally {
+
_messageContext.getTransportOut().getSender().cleanup(_messageContext);
 }
 }
 
@@ -487,6 +490,12 @@
 }
 } catch (Exception e) {
 onError(e);
+} finally {
+try {
+
_messageContext.getTransportOut().getSender().cleanup(_messageContext);
+} catch (org.apache.axis2.AxisFault axisFault) {
+onError(axisFault);
+}   
 }
 }
 




svn commit: r1050823 - /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 12:12:32 2010
New Revision: 1050823

URL: http://svn.apache.org/viewvc?rev=1050823&view=rev
Log:
Fixed an issue that occurs when deploying a classpath module from a path that 
contains spaces.

Modified:

axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java

Modified: 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java?rev=1050823&r1=1050822&r2=1050823&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java
 Sun Dec 19 12:12:32 2010
@@ -134,7 +134,7 @@ public class RepositoryListener implemen
 String path = url.getPath();
 int idx = path.lastIndexOf("!/");
 if (idx != -1 && 
path.substring(idx+2).equals("META-INF/module.xml")) {
-moduleURI = new URI(path.substring(0, idx));
+moduleURI = new URI(path.substring(0, 
idx).replaceAll(" ", "%20"));
 if (!moduleURI.getScheme().equals("file")) {
 continue;
 }




svn commit: r1050826 - in /axis/axis2/java/core/branches/1_5: ./ modules/distribution/ modules/kernel/src/org/apache/axis2/deployment/ modules/kernel/src/org/apache/axis2/transport/http/util/ modules/

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 12:15:49 2010
New Revision: 1050826

URL: http://svn.apache.org/viewvc?rev=1050826&view=rev
Log:
Merged r1050823 to the 1.5 branch since the issue shows up in the build of the 
Sandesha2 1.4 branch (although it doesn't cause a failure).

Modified:
axis/axis2/java/core/branches/1_5/   (props changed)
axis/axis2/java/core/branches/1_5/modules/distribution/   (props changed)

axis/axis2/java/core/branches/1_5/modules/kernel/src/org/apache/axis2/deployment/RepositoryListener.java

axis/axis2/java/core/branches/1_5/modules/kernel/src/org/apache/axis2/transport/http/util/QueryStringParser.java
   (props changed)

axis/axis2/java/core/branches/1_5/modules/kernel/test/org/apache/axis2/transport/http/util/QueryStringParserTest.java
   (props changed)
axis/axis2/java/core/branches/1_5/modules/parent/   (props changed)

axis/axis2/java/core/branches/1_5/modules/saaj/test/org/apache/axis2/saaj/TestUtils.java
   (props changed)
axis/axis2/java/core/branches/1_5/modules/soapmonitor/module/   (props 
changed)
axis/axis2/java/core/branches/1_5/modules/soapmonitor/module/pom.xml   
(props changed)

axis/axis2/java/core/branches/1_5/modules/soapmonitor/module/src/main/java/org/apache/axis2/handlers/
   (props changed)

axis/axis2/java/core/branches/1_5/modules/soapmonitor/module/src/main/resources/META-INF/module.xml
   (props changed)
axis/axis2/java/core/branches/1_5/modules/soapmonitor/servlet/   (props 
changed)

axis/axis2/java/core/branches/1_5/modules/soapmonitor/servlet/src/main/java/org/apache/axis2/soapmonitor/applet/
   (props changed)

axis/axis2/java/core/branches/1_5/modules/soapmonitor/servlet/src/main/java/org/apache/axis2/soapmonitor/servlet/
   (props changed)
axis/axis2/java/core/branches/1_5/modules/tool/axis2-repo-maven-plugin/   
(props changed)
axis/axis2/java/core/branches/1_5/modules/transport/http/pom.xml   (props 
changed)
axis/axis2/java/core/branches/1_5/modules/transport/http/src/   (props 
changed)
axis/axis2/java/core/branches/1_5/modules/transport/local/   (props changed)

axis/axis2/java/core/branches/1_5/modules/webapp/src/main/java/org/apache/axis2/webapp/AdminAgent.java
   (props changed)

axis/axis2/java/core/branches/1_5/modules/webapp/src/main/java/org/apache/axis2/webapp/AxisAdminServlet.java
   (props changed)

Propchange: axis/axis2/java/core/branches/1_5/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Dec 19 12:15:49 2010
@@ -1,2 +1,2 @@
-/axis/axis2/java/core/trunk:922914,922941,922983,935169,935174,935338,937004,944347,944915,951385,960693,960976,960978,960984,960995,961012,961964,962844,963081,963147,965032,965036,965056,965068,965074,965213,965268,965277,965302,965454,966371,966401,966428,966536,979882-979883,979886,980242,981036,981038,981055-981056,981058,981095,981188,981220-981221,981237,981262,981278,981293,981306,981311,981985,981992,982008,982387,982393,982795,982800,983101,983110,983114,983119-983120,983128,983185,983236,983270,983276,983280,983316,983363,983370,983372,985458,985464,985626,985634,985661,985715,985717,985744,985748,985752,985763,985791,985796,985851,986844,986889,987313,987712-987715,987783,987832,987873,987883,987913,987935,990350,990369,990377,990384,990394,990398,990404,990434,990445,990449,1001279,1001452-1001466,1001673,1029034,1029153,1029308,1029372,1029377,1029610-1029651,1030008,1030538,1031350,1031352,1031799,1032001,1032390,1032401,1032681,1032694,1033898,1033942,1033956
 
,1034010,1034015,1034142,1034173,1034213,1034254,1035545,1036624,1036659,1037144,1037210,1037617,1038024,1038070,1039635,1039712-1039729,1039862,1039881,1042118,1042416,1042442,1042527,1050589,1050632
+/axis/axis2/java/core/trunk:922914,922941,922983,935169,935174,935338,937004,944347,944915,951385,960693,960976,960978,960984,960995,961012,961964,962844,963081,963147,965032,965036,965056,965068,965074,965213,965268,965277,965302,965454,966371,966401,966428,966536,979882-979883,979886,980242,981036,981038,981055-981056,981058,981095,981188,981220-981221,981237,981262,981278,981293,981306,981311,981985,981992,982008,982387,982393,982795,982800,983101,983110,983114,983119-983120,983128,983185,983236,983270,983276,983280,983316,983363,983370,983372,985458,985464,985626,985634,985661,985715,985717,985744,985748,985752,985763,985791,985796,985851,986844,986889,987313,987712-987715,987783,987832,987873,987883,987913,987935,990350,990369,990377,990384,990394,990398,990404,990434,990445,990449,1001279,1001452-1001466,1001673,1029034,1029153,1029308,1029372,1029377,1029610-1029651,1030008,1030538,1031350,1031352,1031799,1032001,1032390,1032401,1032681,1032694,1033898,1033942,1033956
 
,1034010,1034015,1034142,1034173,1034213,1034254,1035545,1036624,1036659,1037144,1037210,1037617,1038024,1038070,1039635,1039712-1039729,1039862,1039881,1042118,1042416,1042442,1042527,1050589,1050632,1050823
 

svn commit: r1050836 - /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/AxisService.java

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 12:50:36 2010
New Revision: 1050836

URL: http://svn.apache.org/viewvc?rev=1050836&view=rev
Log:
AXIS2-4674, AXIS2-4871: Applied patch provided by Pradeep Fernando.

Modified:

axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/AxisService.java

Modified: 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/AxisService.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/AxisService.java?rev=1050836&r1=1050835&r2=1050836&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/AxisService.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/AxisService.java
 Sun Dec 19 12:50:36 2010
@@ -1307,7 +1307,7 @@ public class AxisService extends AxisDes
ArrayList schemas = getSchema();
 
// a name is present - try to pump the requested schema
-if (!"".equals(xsd)) {
+if ((xsd != null) && (!"".equals(xsd))) {
 XmlSchema schema = (XmlSchema) schemaMappingtable.get(xsd);
 if (schema == null) {
 int dotIndex = xsd.indexOf('.');
@@ -1735,8 +1735,9 @@ public class AxisService extends AxisDes
  */
 public int printWSDL2(OutputStream out, String requestIP, String wsdl) 
 throws IOException, AxisFault {
-// a name is present - try to pump the requested wsdl file
-if (!"".equals(wsdl)) {
+// if the wsdl2 parameter is not empty or null in the requested URL, 
get the wsdl  from the META-INF and serve.
+//else construct the wsdl out of axis service and serve.
+if ((wsdl != null ) && (!"".equals(wsdl))) {
 // make sure we are only serving .wsdl files and ignore requests 
with
 // ".." in the name.
 if (wsdl.endsWith(".wsdl") && wsdl.indexOf("..") == -1) {




svn commit: r1050844 - /axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 13:30:44 2010
New Revision: 1050844

URL: http://svn.apache.org/viewvc?rev=1050844&view=rev
Log:
Don't deploy the distributions to the Maven repository. Users should download 
them from the mirrors.

Modified:
axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml

Modified: axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml?rev=1050844&r1=1050843&r2=1050844&view=diff
==
--- axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml Sun Dec 19 
13:30:44 2010
@@ -165,6 +165,18 @@
 false
 
 
+
+
+maven-deploy-plugin
+
+true
+
+
 
 
 




svn commit: r1050847 - /axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 13:35:18 2010
New Revision: 1050847

URL: http://svn.apache.org/viewvc?rev=1050847&view=rev
Log:
Sandesha2 1.2 has already been archived.

Modified:
axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml

Modified: axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml?rev=1050847&r1=1050846&r2=1050847&view=diff
==
--- axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml (original)
+++ axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml Sun Dec 19 
13:35:18 2010
@@ -57,17 +57,17 @@ the binay distribution and the source di
   
   1.2Release
   Source Distribution 
-  zip
-  http://www.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-src.zip.md5"; 
class="externalLink" 
title="http://www.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-src.zip.md5";>MD5
-  http://www.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-src.zip.asc"; 
class="externalLink" 
title="http://www.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-src.zip.asc";>PGP
+  http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-src.zip"; 
title="http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-src.zip";>zip
+  http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-src.zip.md5";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-src.zip.md5";>MD5
+  http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-src.zip.asc";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-src.zip.asc";>PGP
   
   Binary Distribution
-  zip
-  http://www.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip.md5"; 
class="externalLink" 
title="http://www.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip.md5";>MD5
-  http://www.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip.asc"; 
class="externalLink" 
title="http://www.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip.asc";>PGP
+  http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip"; 
title="http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip";>zip
+  http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip.md5";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip.md5";>MD5
+  http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip.asc";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip.asc";>PGP
   
 10 - 06 - 2007
-1.2 Release (Mirrored)
+1.2 Release (Archived)
 1.2
   
   1.1Release
@@ -82,7 +82,7 @@ the binay distribution and the source di
   http://archive.apache.org/dist/ws/sandesha2/1_1/sandesha2-1.1-bin.zip.asc";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/1_1/sandesha2-1.1-bin.zip.asc";>PGP
   
 12 - 10 - 2006
-1.1 Release (Mirrored)
+1.1 Release (Archived)
 1.1
   
  1.0Release
@@ -97,7 +97,7 @@ the binay distribution and the source di
   http://archive.apache.org/dist/ws/sandesha2/1_0/sandesha2-1.0-bin.zip.asc";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/1_0/sandesha2-1.0-bin.zip.asc";>PGP
   
 05 - 08 - 2006
-1.0 Release (Mirrored)
+1.0 Release (Archived)
 1.0
   
  0.9Release
@@ -112,7 +112,7 @@ the binay distribution and the source di
   http://archive.apache.org/dist/ws/sandesha2/0_9/Sandesha2-0.9-bin.zip.asc";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/0_9/Sandesha2-0.9-bin.zip.asc";>PGP
   
 12 - 05 - 2005
-0.9 Release
+0.9 Release (Archived)
 0.93
   
 




svn commit: r1050849 - in /axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly: bin.xml doc.xml src.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 13:41:30 2010
New Revision: 1050849

URL: http://svn.apache.org/viewvc?rev=1050849&view=rev
Log:
Added missing NOTICE.txt file to the distributions.

Modified:

axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/bin.xml

axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/doc.xml

axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/src.xml

Modified: 
axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/bin.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/bin.xml?rev=1050849&r1=1050848&r2=1050849&view=diff
==
--- 
axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/bin.xml 
(original)
+++ 
axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/bin.xml 
Sun Dec 19 13:41:30 2010
@@ -30,6 +30,7 @@
 sandesha2-${version}-bin
 
 LICENSE.txt
+NOTICE.txt
 
 
 

Modified: 
axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/doc.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/doc.xml?rev=1050849&r1=1050848&r2=1050849&view=diff
==
--- 
axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/doc.xml 
(original)
+++ 
axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/doc.xml 
Sun Dec 19 13:41:30 2010
@@ -44,6 +44,7 @@
 
 
 LICENSE.txt
+NOTICE.txt
 
 
 

Modified: 
axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/src.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/src.xml?rev=1050849&r1=1050848&r2=1050849&view=diff
==
--- 
axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/src.xml 
(original)
+++ 
axis/axis2/java/sandesha/trunk/modules/distribution/src/main/assembly/src.xml 
Sun Dec 19 13:41:30 2010
@@ -36,6 +36,7 @@
 

 LICENSE.txt
+NOTICE.txt
 
 
 **/target




svn commit: r1050852 - /axis/axis2/java/sandesha/trunk/src/site/xdoc/index.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 13:51:22 2010
New Revision: 1050852

URL: http://svn.apache.org/viewvc?rev=1050852&view=rev
Log:
Converted index.xml to a real XDoc document.

Modified:
axis/axis2/java/sandesha/trunk/src/site/xdoc/index.xml

Modified: axis/axis2/java/sandesha/trunk/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/src/site/xdoc/index.xml?rev=1050852&r1=1050851&r2=1050852&view=diff
==
--- axis/axis2/java/sandesha/trunk/src/site/xdoc/index.xml (original)
+++ axis/axis2/java/sandesha/trunk/src/site/xdoc/index.xml Sun Dec 19 13:51:22 
2010
@@ -17,28 +17,22 @@
  specific language governing permissions and limitations
  under the License.
 -->
-http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";>
-http://www.w3.org/1999/xhtml";>
-
-  
-  Welcome to Sandesha2 home page
-  http://www.w3.org/Amaya/";
-  />
-
-
-
-Welcome to Apache Sandesha2
-
-Sandesha2 is an implementation of http://www.ibm.com/developerworks/webservices/library/specification/ws-rm/";
 target="_blank">WS-ReliableMessaging
-specification published by IBM, Microsoft, BEA and TIBCO. Sandesha2 was
-built on top of Axis2. Therefore by using Sandesha2 you can add reliable
-messaging capability to the web services hosted using Axis2. Sandesha2 can
-also be used with Axis2 client to interact with already hosted web services
-in a reliable manner. Please see sandesha2 user guide for more information on
-using Sandesha2. Read Sandesha2 Architecture guide to see how Sandesha2 work
-internally.
-
-
-
+http://maven.apache.org/XDOC/2.0";
+  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
http://maven.apache.org/xsd/xdoc-2.0.xsd";>
+
+Welcome to Sandesha2 home page
+
+
+Welcome to Apache Sandesha2
+Sandesha2 is an implementation of http://www.ibm.com/developerworks/webservices/library/specification/ws-rm/";
 target="_blank">WS-ReliableMessaging
+specification published by IBM, Microsoft, BEA and TIBCO. 
Sandesha2 was
+built on top of Axis2. Therefore by using Sandesha2 you can add 
reliable
+messaging capability to the web services hosted using Axis2. Sandesha2 
can
+also be used with Axis2 client to interact with already hosted web 
services
+in a reliable manner. Please see sandesha2 user guide for more 
information on
+using Sandesha2. Read Sandesha2 Architecture guide to see how 
Sandesha2 work
+internally.
+
+




svn commit: r1050856 - in /axis/axis2/java/core/branches/1_5: ./ modules/distribution/ modules/kernel/src/org/apache/axis2/description/ modules/kernel/src/org/apache/axis2/transport/http/util/ modules

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 14:13:26 2010
New Revision: 1050856

URL: http://svn.apache.org/viewvc?rev=1050856&view=rev
Log:
AXIS2-3784: Merged r802447 to the 1.5 branch.

Modified:
axis/axis2/java/core/branches/1_5/   (props changed)
axis/axis2/java/core/branches/1_5/modules/distribution/   (props changed)

axis/axis2/java/core/branches/1_5/modules/kernel/src/org/apache/axis2/description/AxisService.java

axis/axis2/java/core/branches/1_5/modules/kernel/src/org/apache/axis2/transport/http/util/QueryStringParser.java
   (props changed)

axis/axis2/java/core/branches/1_5/modules/kernel/test/org/apache/axis2/transport/http/util/QueryStringParserTest.java
   (props changed)
axis/axis2/java/core/branches/1_5/modules/parent/   (props changed)

axis/axis2/java/core/branches/1_5/modules/saaj/test/org/apache/axis2/saaj/TestUtils.java
   (props changed)
axis/axis2/java/core/branches/1_5/modules/soapmonitor/module/   (props 
changed)
axis/axis2/java/core/branches/1_5/modules/soapmonitor/module/pom.xml   
(props changed)

axis/axis2/java/core/branches/1_5/modules/soapmonitor/module/src/main/java/org/apache/axis2/handlers/
   (props changed)

axis/axis2/java/core/branches/1_5/modules/soapmonitor/module/src/main/resources/META-INF/module.xml
   (props changed)
axis/axis2/java/core/branches/1_5/modules/soapmonitor/servlet/   (props 
changed)

axis/axis2/java/core/branches/1_5/modules/soapmonitor/servlet/src/main/java/org/apache/axis2/soapmonitor/applet/
   (props changed)

axis/axis2/java/core/branches/1_5/modules/soapmonitor/servlet/src/main/java/org/apache/axis2/soapmonitor/servlet/
   (props changed)
axis/axis2/java/core/branches/1_5/modules/tool/axis2-repo-maven-plugin/   
(props changed)
axis/axis2/java/core/branches/1_5/modules/transport/http/pom.xml   (props 
changed)
axis/axis2/java/core/branches/1_5/modules/transport/http/src/   (props 
changed)

axis/axis2/java/core/branches/1_5/modules/transport/http/src/org/apache/axis2/transport/http/HTTPWorker.java

axis/axis2/java/core/branches/1_5/modules/transport/http/src/org/apache/axis2/transport/http/ListingAgent.java
axis/axis2/java/core/branches/1_5/modules/transport/local/   (props changed)

axis/axis2/java/core/branches/1_5/modules/webapp/src/main/java/org/apache/axis2/webapp/AdminAgent.java
   (props changed)

axis/axis2/java/core/branches/1_5/modules/webapp/src/main/java/org/apache/axis2/webapp/AxisAdminServlet.java
   (props changed)

Propchange: axis/axis2/java/core/branches/1_5/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Dec 19 14:13:26 2010
@@ -1,2 +1,2 @@
 
/axis/axis2/java/core/trunk:922914,922941,922983,935169,935174,935338,937004,944347,944915,951385,960693,960976,960978,960984,960995,961012,961964,962844,963081,963147,965032,965036,965056,965068,965074,965213,965268,965277,965302,965454,966371,966401,966428,966536,979882-979883,979886,980242,981036,981038,981055-981056,981058,981095,981188,981220-981221,981237,981262,981278,981293,981306,981311,981985,981992,982008,982387,982393,982795,982800,983101,983110,983114,983119-983120,983128,983185,983236,983270,983276,983280,983316,983363,983370,983372,985458,985464,985626,985634,985661,985715,985717,985744,985748,985752,985763,985791,985796,985851,986844,986889,987313,987712-987715,987783,987832,987873,987883,987913,987935,990350,990369,990377,990384,990394,990398,990404,990434,990445,990449,1001279,1001452-1001466,1001673,1029034,1029153,1029308,1029372,1029377,1029610-1029651,1030008,1030538,1031350,1031352,1031799,1032001,1032390,1032401,1032681,1032694,1033898,1033942,1033956
 
,1034010,1034015,1034142,1034173,1034213,1034254,1035545,1036624,1036659,1037144,1037210,1037617,1038024,1038070,1039635,1039712-1039729,1039862,1039881,1042118,1042416,1042442,1042527,1050589,1050632,1050819,1050823
-/webservices/axis2/trunk/java:728674,729037,731798,732539,732541,732873,732877,732924,732927,732939,733293,733295,733304,733306,733348,733354,733394,733399,733463-733464,733533,733539-733540,733676,733776,733900,733910,734227,734237,734261,738057,738067,738071,738086,738110,738113,738117,738158,740332,740357,740360,741300,741784,741873,741878,741881,748761,751958,752906,754458,754467,754503,757151-757153,759488,759507,759878,759968,761025,761044,761068,761709,761770,761952,763148,765102,771051,777648,777882,777897,777934,778060,780546,783479,788202,795431,801630,803725,804541,805578,805981,805999,806085,806331,807160,807487,807512,816740,816804,816812,816891,817965,821686,821689,823960,834058,834175,889783,902271,904660,904780,905980
+/webservices/axis2/trunk/java:728674,729037,731798,732539,732541,732873,732877,732924,732927,732939,733293,733295,733304,733306,733348,733354,733394,733399,733463-733464,733533,733539-733540,733676,733776,733900,733910,734227,734237,734261,738057,738067,738071,738086,738110,738113,738117,738158,740332,740357,

svn commit: r1050861 - in /axis/axis2/java/sandesha/trunk: etc/ etc/sandesha2.rdf src/site/site.xml src/site/xdoc/index.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 14:32:27 2010
New Revision: 1050861

URL: http://svn.apache.org/viewvc?rev=1050861&view=rev
Log:
Implemented Apache Project Branding Requirements.

Added:
axis/axis2/java/sandesha/trunk/etc/
axis/axis2/java/sandesha/trunk/etc/sandesha2.rdf
Modified:
axis/axis2/java/sandesha/trunk/src/site/site.xml
axis/axis2/java/sandesha/trunk/src/site/xdoc/index.xml

Added: axis/axis2/java/sandesha/trunk/etc/sandesha2.rdf
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/etc/sandesha2.rdf?rev=1050861&view=auto
==
--- axis/axis2/java/sandesha/trunk/etc/sandesha2.rdf (added)
+++ axis/axis2/java/sandesha/trunk/etc/sandesha2.rdf Sun Dec 19 14:32:27 2010
@@ -0,0 +1,58 @@
+
+
+http://usefulinc.com/ns/doap#"; 
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"; 
+ xmlns:asfext="http://projects.apache.org/ns/asfext#";
+xmlns:foaf="http://xmlns.com/foaf/0.1/";>
+  http://ws.apache.org/commons/axiom/";>
+2010-12-19
+http://usefulinc.com/doap/licenses/asl20"/>
+Apache Axiom
+http://axis.apache.org/axis2/java/sandesha/"/>
+http://axis.apache.org"/>
+Apache Sandesha2 is an Axis2 module implementing 
WS-RM.
+Apache Sandesha2 is an Axis2 module that implements the 
WS-ReliableMessaging specification. It can be used both on the client side and 
on the server side.
+http://issues.apache.org/jira/browse/SANDESHA2"/>
+http://axis.apache.org/axis2/java/sandesha/mail-lists.html"/>
+http://axis.apache.org/axis2/java/sandesha/download.cgi"/>
+Java
+http://projects.apache.org/category/xml"/>
+Apache 
Sandesha208-10-20071.3
+
+  
+http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/trunk"/>
+http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk"/>
+  
+
+
+  
+Axis2 Development Team
+mailto:java-...@axis.apache.org?subject=[sandesha2]"/>
+  
+
+
+  WS-ReliableMessaging
+  OASIS
+  WSRM
+  http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=ws-rx"/>
+
+  
+

Modified: axis/axis2/java/sandesha/trunk/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/src/site/site.xml?rev=1050861&r1=1050860&r2=1050861&view=diff
==
--- axis/axis2/java/sandesha/trunk/src/site/site.xml (original)
+++ axis/axis2/java/sandesha/trunk/src/site/site.xml Sun Dec 19 14:32:27 2010
@@ -20,7 +20,7 @@
 
 Apache Software Foundation
 http://www.apache.org/images/asf-logo.gif
-http://apache.org/
+http://www.apache.org/
 
 
 Sandesha
@@ -28,6 +28,10 @@
 index.html
 
 
+
+http://axis.apache.org/axis2/java/core/"/>
+http://www.apache.org"/>
+
 
 
 
@@ -45,6 +49,10 @@
 
 
 
+http://www.apache.org/licenses/"/>
+http://www.apache.org/foundation/sponsorship.html"/>
+http://www.apache.org/foundation/thanks.html"/>
+http://www.apache.org/security/"/>
 
 
 

Modified: axis/axis2/java/sandesha/trunk/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/src/site/xdoc/index.xml?rev=1050861&r1=1050860&r2=1050861&view=diff
==
--- axis/axis2/java/sandesha/trunk/src/site/xdoc/index.xml (original)
+++ axis/axis2/java/sandesha/trunk/src/site/xdoc/index.xml Sun Dec 19 14:32:27 
2010
@@ -25,14 +25,15 @@
 
 
 Welcome to Apache Sandesha2
-Sandesha2 is an implementation of Apache Sandesha2™ is an Axis2 module that implements the http://www.ibm.com/developerworks/webservices/library/specification/ws-rm/";
 target="_blank">WS-ReliableMessaging
-specification published by IBM, Microsoft, BEA and TIBCO. 
Sandesha2 was
-built on top of Axis2. Therefore by using Sandesha2 you can add 
reliable
+specification published by IBM, Microsoft, BEA and TIBCO.
+By using Sandesha2 you can add reliable
 messaging capability to the web services hosted using Axis2. Sandesha2 
can
 also be used with Axis2 client to interact with already hosted web 
services
 in a reliable manner. Please see sandesha2 user guide for more 
information on
 using Sandesha2. Read Sandesha2 Architecture guide to see how 
Sandesha2 work
-internally.
+internally.
+Apache Sandesha2, Sandesha2, Apache, the Apache feather logo, and 
the Apache Sandesha2 project logo are trademarks of The Apache Software 
Foundation.
 
 




svn commit: r1050863 - /axis/axis2/java/sandesha/trunk/modules/tests/pom.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 14:48:18 2010
New Revision: 1050863

URL: http://svn.apache.org/viewvc?rev=1050863&view=rev
Log:
Skip deployment of artifacts for the sandesha2-tests module.

Modified:
axis/axis2/java/sandesha/trunk/modules/tests/pom.xml

Modified: axis/axis2/java/sandesha/trunk/modules/tests/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/tests/pom.xml?rev=1050863&r1=1050862&r2=1050863&view=diff
==
--- axis/axis2/java/sandesha/trunk/modules/tests/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/tests/pom.xml Sun Dec 19 14:48:18 
2010
@@ -156,6 +156,12 @@
 false
 
 
+
+maven-deploy-plugin
+
+true
+
+
 
 
 




svn commit: r1050876 - in /axis/axis2/java/sandesha/branches/1_4: ./ etc/ modules/distribution/ modules/distribution/src/main/assembly/ modules/tests/ src/site/ src/site/xdoc/

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 15:13:45 2010
New Revision: 1050876

URL: http://svn.apache.org/viewvc?rev=1050876&view=rev
Log:
Merged latest changes from trunk to the release branch.

Added:
axis/axis2/java/sandesha/branches/1_4/etc/
  - copied from r1050875, axis/axis2/java/sandesha/trunk/etc/
axis/axis2/java/sandesha/branches/1_4/etc/sandesha2.rdf
  - copied unchanged from r1050875, 
axis/axis2/java/sandesha/trunk/etc/sandesha2.rdf
Modified:
axis/axis2/java/sandesha/branches/1_4/   (props changed)
axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml

axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/bin.xml

axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/doc.xml

axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/src.xml
axis/axis2/java/sandesha/branches/1_4/modules/tests/pom.xml
axis/axis2/java/sandesha/branches/1_4/src/site/site.xml
axis/axis2/java/sandesha/branches/1_4/src/site/xdoc/download.xml
axis/axis2/java/sandesha/branches/1_4/src/site/xdoc/index.xml

Propchange: axis/axis2/java/sandesha/branches/1_4/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Dec 19 15:13:45 2010
@@ -1 +1 @@
-/axis/axis2/java/sandesha/trunk:1050705
+/axis/axis2/java/sandesha/trunk:1050214-1050875

Modified: axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml?rev=1050876&r1=1050875&r2=1050876&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml 
(original)
+++ axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml Sun Dec 
19 15:13:45 2010
@@ -165,6 +165,18 @@
 false
 
 
+
+
+maven-deploy-plugin
+
+true
+
+
 
 
 

Modified: 
axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/bin.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/bin.xml?rev=1050876&r1=1050875&r2=1050876&view=diff
==
--- 
axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/bin.xml
 (original)
+++ 
axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/bin.xml
 Sun Dec 19 15:13:45 2010
@@ -30,6 +30,7 @@
 sandesha2-${version}-bin
 
 LICENSE.txt
+NOTICE.txt
 
 
 

Modified: 
axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/doc.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/doc.xml?rev=1050876&r1=1050875&r2=1050876&view=diff
==
--- 
axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/doc.xml
 (original)
+++ 
axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/doc.xml
 Sun Dec 19 15:13:45 2010
@@ -44,6 +44,7 @@
 
 
 LICENSE.txt
+NOTICE.txt
 
 
 

Modified: 
axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/src.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/src.xml?rev=1050876&r1=1050875&r2=1050876&view=diff
==
--- 
axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/src.xml
 (original)
+++ 
axis/axis2/java/sandesha/branches/1_4/modules/distribution/src/main/assembly/src.xml
 Sun Dec 19 15:13:45 2010
@@ -36,6 +36,7 @@
 

 LICENSE.txt
+NOTICE.txt
 
 
 **/target

Modified: axis/axis2/java/sandesha/branches/1_4/modules/tests/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/tests/pom.xml?rev=1050876&r1=1050875&r2=1050876&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/modules/tests/pom.xml (original)
+++ axis/axis2/java/sandesha/branches/1_4/modules/tests/pom.xml Sun Dec 19 
15:13:45 2010
@@ -156,6 +156,12 @@
 false
 
 
+
+maven-deploy-plugin
+
+true
+
+
 
 
 

Modified: axis/axis2/java/sandesha/

svn commit: r1050879 - in /axis/axis2/java/sandesha/trunk: ./ modules/client/ modules/core/ modules/interop/ modules/mar/ modules/persistence/ modules/policy/ modules/rampart-integration/ modules/reso

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 15:40:47 2010
New Revision: 1050879

URL: http://svn.apache.org/viewvc?rev=1050879&view=rev
Log:
Make sure that the right NOTICE file is included in Maven artifacts.

Added:
axis/axis2/java/sandesha/trunk/modules/resource-bundle/
axis/axis2/java/sandesha/trunk/modules/resource-bundle/pom.xml   (with 
props)
axis/axis2/java/sandesha/trunk/modules/resource-bundle/src/
axis/axis2/java/sandesha/trunk/modules/resource-bundle/src/main/
axis/axis2/java/sandesha/trunk/modules/resource-bundle/src/main/resources/

axis/axis2/java/sandesha/trunk/modules/resource-bundle/src/main/resources/META-INF/

axis/axis2/java/sandesha/trunk/modules/resource-bundle/src/main/resources/META-INF/LICENSE.vm
  - copied unchanged from r1050874, 
axis/axis2/java/sandesha/trunk/LICENSE.txt

axis/axis2/java/sandesha/trunk/modules/resource-bundle/src/main/resources/META-INF/NOTICE.vm
  - copied unchanged from r1050874, 
axis/axis2/java/sandesha/trunk/NOTICE.txt
Modified:
axis/axis2/java/sandesha/trunk/modules/client/pom.xml
axis/axis2/java/sandesha/trunk/modules/core/pom.xml
axis/axis2/java/sandesha/trunk/modules/interop/pom.xml
axis/axis2/java/sandesha/trunk/modules/mar/pom.xml
axis/axis2/java/sandesha/trunk/modules/persistence/pom.xml
axis/axis2/java/sandesha/trunk/modules/policy/pom.xml
axis/axis2/java/sandesha/trunk/modules/rampart-integration/pom.xml
axis/axis2/java/sandesha/trunk/modules/samples/pom.xml
axis/axis2/java/sandesha/trunk/pom.xml

Modified: axis/axis2/java/sandesha/trunk/modules/client/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/client/pom.xml?rev=1050879&r1=1050878&r2=1050879&view=diff
==
--- axis/axis2/java/sandesha/trunk/modules/client/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/client/pom.xml Sun Dec 19 15:40:47 
2010
@@ -43,6 +43,21 @@
 
 
 
+maven-remote-resources-plugin
+
+
+
+process
+
+
+
+
org.apache.sandesha2:sandesha2-resource-bundle:${project.version}
+
+
+
+
+
+
 org.apache.maven.plugins
 maven-shade-plugin
 1.4

Modified: axis/axis2/java/sandesha/trunk/modules/core/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/core/pom.xml?rev=1050879&r1=1050878&r2=1050879&view=diff
==
--- axis/axis2/java/sandesha/trunk/modules/core/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/core/pom.xml Sun Dec 19 15:40:47 2010
@@ -43,6 +43,21 @@
 
 
 
+maven-remote-resources-plugin
+
+
+
+process
+
+
+
+
org.apache.sandesha2:sandesha2-resource-bundle:${project.version}
+
+
+
+
+
+
 org.apache.maven.plugins
 maven-source-plugin
 

Modified: axis/axis2/java/sandesha/trunk/modules/interop/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/interop/pom.xml?rev=1050879&r1=1050878&r2=1050879&view=diff
==
--- axis/axis2/java/sandesha/trunk/modules/interop/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/interop/pom.xml Sun Dec 19 15:40:47 
2010
@@ -42,6 +42,21 @@
 
 
 
+maven-remote-resources-plugin
+
+
+
+process
+
+
+
+
org.apache.sandesha2:sandesha2-resource-bundle:${project.version}
+
+
+
+
+
+
 org.apache.maven.plugins
 maven-source-plugin
 

Modified: axis/axis2/java/sandesha/trunk/modules/mar/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/mar/pom.xml?rev=1050879&r1=1050878&r2=1050879&view=diff
==
--- axis/axis2/java/sandesha/trunk/modules/mar/pom.xml (original)
+++ axis/axis2/java/sa

svn commit: r1050880 - in /axis/axis2/java/sandesha/branches/1_4: ./ modules/client/ modules/core/ modules/interop/ modules/mar/ modules/persistence/ modules/policy/ modules/rampart-integration/ modul

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 15:48:36 2010
New Revision: 1050880

URL: http://svn.apache.org/viewvc?rev=1050880&view=rev
Log:
Merged r1050879 (which changes) to the release branch.

Added:
axis/axis2/java/sandesha/branches/1_4/modules/resource-bundle/
  - copied from r1050879, 
axis/axis2/java/sandesha/trunk/modules/resource-bundle/
axis/axis2/java/sandesha/branches/1_4/modules/resource-bundle/pom.xml
  - copied, changed from r1050879, 
axis/axis2/java/sandesha/trunk/modules/resource-bundle/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/resource-bundle/src/
  - copied from r1050879, 
axis/axis2/java/sandesha/trunk/modules/resource-bundle/src/
axis/axis2/java/sandesha/branches/1_4/modules/resource-bundle/src/main/
  - copied from r1050879, 
axis/axis2/java/sandesha/trunk/modules/resource-bundle/src/main/

axis/axis2/java/sandesha/branches/1_4/modules/resource-bundle/src/main/resources/
  - copied from r1050879, 
axis/axis2/java/sandesha/trunk/modules/resource-bundle/src/main/resources/

axis/axis2/java/sandesha/branches/1_4/modules/resource-bundle/src/main/resources/META-INF/
  - copied from r1050879, 
axis/axis2/java/sandesha/trunk/modules/resource-bundle/src/main/resources/META-INF/

axis/axis2/java/sandesha/branches/1_4/modules/resource-bundle/src/main/resources/META-INF/LICENSE.vm
  - copied unchanged from r1050879, 
axis/axis2/java/sandesha/trunk/modules/resource-bundle/src/main/resources/META-INF/LICENSE.vm

axis/axis2/java/sandesha/branches/1_4/modules/resource-bundle/src/main/resources/META-INF/NOTICE.vm
  - copied unchanged from r1050879, 
axis/axis2/java/sandesha/trunk/modules/resource-bundle/src/main/resources/META-INF/NOTICE.vm
Modified:
axis/axis2/java/sandesha/branches/1_4/   (props changed)
axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/interop/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/mar/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/persistence/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/policy/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/rampart-integration/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/samples/pom.xml
axis/axis2/java/sandesha/branches/1_4/pom.xml

Propchange: axis/axis2/java/sandesha/branches/1_4/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Dec 19 15:48:36 2010
@@ -1 +1 @@
-/axis/axis2/java/sandesha/trunk:1050214-1050875
+/axis/axis2/java/sandesha/trunk:1050214-1050875,1050879

Modified: axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml?rev=1050880&r1=1050879&r2=1050880&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml (original)
+++ axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml Sun Dec 19 
15:48:36 2010
@@ -43,6 +43,21 @@
 
 
 
+maven-remote-resources-plugin
+
+
+
+process
+
+
+
+
org.apache.sandesha2:sandesha2-resource-bundle:${project.version}
+
+
+
+
+
+
 org.apache.maven.plugins
 maven-shade-plugin
 1.4

Modified: axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml?rev=1050880&r1=1050879&r2=1050880&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml (original)
+++ axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml Sun Dec 19 
15:48:36 2010
@@ -43,6 +43,21 @@
 
 
 
+maven-remote-resources-plugin
+
+
+
+process
+
+
+
+
org.apache.sandesha2:sandesha2-resource-bundle:${project.version}
+
+
+
+
+
+
 org.apache.maven.plugins
 maven-source-plugin
 

Modified: axis/axis2/java/sandesha/branches/1_4/modules/interop/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/interop/pom.

svn commit: r1050894 - /axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 16:36:47 2010
New Revision: 1050894

URL: http://svn.apache.org/viewvc?rev=1050894&view=rev
Log:
Disambiguate the release dates in the download page.

Modified:
axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml

Modified: axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml?rev=1050894&r1=1050893&r2=1050894&view=diff
==
--- axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml (original)
+++ axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml Sun Dec 19 
16:36:47 2010
@@ -51,7 +51,7 @@ the binay distribution and the source di
   http://www.apache.org/dist/ws/sandesha2/1_3/sandesha2-1.3-bin.zip.md5"; 
class="externalLink" 
title="http://www.apache.org/dist/ws/sandesha2/1_3/sandesha2-1.3-bin.zip.md5";>MD5
   http://www.apache.org/dist/ws/sandesha2/1_3/sandesha2-1.3-bin.zip.asc"; 
class="externalLink" 
title="http://www.apache.org/dist/ws/sandesha2/1_3/sandesha2-1.3-bin.zip.asc";>PGP
   
-08 - 10 - 2007
+08 - Oct - 2007
 1.3 Release (Mirrored)
 1.3
   
@@ -66,7 +66,7 @@ the binay distribution and the source di
   http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip.md5";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip.md5";>MD5
   http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip.asc";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/1_2/sandesha2-1.2-bin.zip.asc";>PGP
   
-10 - 06 - 2007
+10 - Jun - 2007
 1.2 Release (Archived)
 1.2
   
@@ -81,7 +81,7 @@ the binay distribution and the source di
   http://archive.apache.org/dist/ws/sandesha2/1_1/sandesha2-1.1-bin.zip.md5";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/1_1/sandesha2-1.1-bin.zip.md5";>MD5
   http://archive.apache.org/dist/ws/sandesha2/1_1/sandesha2-1.1-bin.zip.asc";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/1_1/sandesha2-1.1-bin.zip.asc";>PGP
   
-12 - 10 - 2006
+12 - Oct - 2006
 1.1 Release (Archived)
 1.1
   
@@ -96,7 +96,7 @@ the binay distribution and the source di
   http://archive.apache.org/dist/ws/sandesha2/1_0/sandesha2-1.0-bin.zip.md5";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/1_0/sandesha2-1.0-bin.zip.md5";>MD5
   http://archive.apache.org/dist/ws/sandesha2/1_0/sandesha2-1.0-bin.zip.asc";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/1_0/sandesha2-1.0-bin.zip.asc";>PGP
   
-05 - 08 - 2006
+05 - Aug - 2006
 1.0 Release (Archived)
 1.0
   
@@ -111,7 +111,7 @@ the binay distribution and the source di
   http://archive.apache.org/dist/ws/sandesha2/0_9/Sandesha2-0.9-bin.zip.md5";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/0_9/Sandesha2-0.9-bin.zip.md5";>MD5
   http://archive.apache.org/dist/ws/sandesha2/0_9/Sandesha2-0.9-bin.zip.asc";
 class="externalLink" 
title="http://archive.apache.org/dist/ws/sandesha2/0_9/Sandesha2-0.9-bin.zip.asc";>PGP
   
-12 - 05 - 2005
+12 - May - 2005
 0.9 Release (Archived)
 0.93
   




svn commit: r1050895 - /axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 16:46:11 2010
New Revision: 1050895

URL: http://svn.apache.org/viewvc?rev=1050895&view=rev
Log:
Added an entry for 1.4 to the download page.

Modified:
axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml

Modified: axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml?rev=1050895&r1=1050894&r2=1050895&view=diff
==
--- axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml (original)
+++ axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml Sun Dec 19 
16:46:11 2010
@@ -40,6 +40,21 @@ the binay distribution and the source di
 Description
 Compatible Axis2 version
   
+  1.4Release
+  Source Distribution 
+  zip
+  http://www.apache.org/dist/axis/axis2/java/sandesha/1.4/sandesha2-1.4-src.zip.md5";
 class="externalLink" 
title="http://www.apache.org/dist/axis/axis2/java/sandesha/1.4/sandesha2-1.4-src.zip.md5";>MD5
+  http://www.apache.org/dist/axis/axis2/java/sandesha/1.4/sandesha2-1.4-src.zip.asc";
 class="externalLink" 
title="http://www.apache.org/dist/axis/axis2/java/sandesha/1.4/sandesha2-1.4-src.zip.asc";>PGP
+  
+  Binary Distribution
+  zip
+  http://www.apache.org/dist/axis/axis2/java/sandesha/1.4/sandesha2-1.4-bin.zip.md5";
 class="externalLink" 
title="http://www.apache.org/dist/axis/axis2/java/sandesha/1.4/sandesha2-1.4-bin.zip.md5";>MD5
+  http://www.apache.org/dist/axis/axis2/java/sandesha/1.4/sandesha2-1.4-bin.zip.asc";
 class="externalLink" 
title="http://www.apache.org/dist/axis/axis2/java/sandesha/1.4/sandesha2-1.4-bin.zip.asc";>PGP
+  
+19 - Dec - 2010
+1.4 Release (Mirrored)
+1.4
+  
   1.3Release
   Source Distribution 
   zip




svn commit: r1050909 - /axis/axis2/java/sandesha/trunk/modules/tests/src/test/java/org/apache/sandesha2/SandeshaTestCase.java

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 17:19:29 2010
New Revision: 1050909

URL: http://svn.apache.org/viewvc?rev=1050909&view=rev
Log:
Avoid IOExceptions when sandesha2-tests is executed in a multi-module build.

Modified:

axis/axis2/java/sandesha/trunk/modules/tests/src/test/java/org/apache/sandesha2/SandeshaTestCase.java

Modified: 
axis/axis2/java/sandesha/trunk/modules/tests/src/test/java/org/apache/sandesha2/SandeshaTestCase.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/tests/src/test/java/org/apache/sandesha2/SandeshaTestCase.java?rev=1050909&r1=1050908&r2=1050909&view=diff
==
--- 
axis/axis2/java/sandesha/trunk/modules/tests/src/test/java/org/apache/sandesha2/SandeshaTestCase.java
 (original)
+++ 
axis/axis2/java/sandesha/trunk/modules/tests/src/test/java/org/apache/sandesha2/SandeshaTestCase.java
 Sun Dec 19 17:19:29 2010
@@ -81,17 +81,20 @@ public class SandeshaTestCase extends Te
 String testRource = "target" + File.separator + "test-classes";
 resourceDir = new File(testRource).getPath();
 
-String propFileStr = resourceDir + File.separator + PROPERTY_FILE_NAME;
-properties = new Properties ();
-
-try {
-   FileInputStream propertyFile = new FileInputStream (new 
File(propFileStr));
-   properties.load(propertyFile);
-   } catch (FileNotFoundException e) {
-   log.error(e);
-   } catch (IOException e) {
-   log.error(e);
-   }
+// TODO: This doesn't work as expected when the sandesha2-test module 
is executed in a multi-module build.
+//   Anyway, sandesha2-test.properties only contains a value for 
the test server port. This value is
+//   the same as the default, so we may as well skip the code.
+//String propFileStr = resourceDir + File.separator + 
PROPERTY_FILE_NAME;
+//properties = new Properties ();
+//
+//try {
+// FileInputStream propertyFile = new FileInputStream (new 
File(propFileStr));
+// properties.load(propertyFile);
+// } catch (FileNotFoundException e) {
+// log.error(e);
+// } catch (IOException e) {
+// log.error(e);
+// }
 }
 
 public void setUp () throws Exception {




svn commit: r1050911 - /axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 17:28:55 2010
New Revision: 1050911

URL: http://svn.apache.org/viewvc?rev=1050911&view=rev
Log:
Let Maven generate checksums when installing the distributions into the local 
repository.

Modified:
axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml

Modified: axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml?rev=1050911&r1=1050910&r2=1050911&view=diff
==
--- axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml Sun Dec 19 
17:28:55 2010
@@ -179,4 +179,21 @@
 
 
 
+
+
+
+apache-release
+
+
+
+
+maven-install-plugin
+
+true
+
+
+
+
+
+
 




svn commit: r1050916 - in /axis/axis2/java/core/trunk: etc/doap_Axis2.rdf src/site/site.xml src/site/xdoc/index.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 17:39:20 2010
New Revision: 1050916

URL: http://svn.apache.org/viewvc?rev=1050916&view=rev
Log:
Implemented the Apache branding requirements.

Modified:
axis/axis2/java/core/trunk/etc/doap_Axis2.rdf
axis/axis2/java/core/trunk/src/site/site.xml
axis/axis2/java/core/trunk/src/site/xdoc/index.xml

Modified: axis/axis2/java/core/trunk/etc/doap_Axis2.rdf
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/etc/doap_Axis2.rdf?rev=1050916&r1=1050915&r2=1050916&view=diff
==
--- axis/axis2/java/core/trunk/etc/doap_Axis2.rdf (original)
+++ axis/axis2/java/core/trunk/etc/doap_Axis2.rdf Sun Dec 19 17:39:20 2010
@@ -23,11 +23,11 @@
   ~ specific language governing permissions and limitations
   ~ under the License.
   -->
-  http://ws.apache.org/axis2";>
+  http://axis.apache.org/axis2/java/core";>
 2007-06-08
 http://usefulinc.com/doap/licenses/asl20"; />
 Apache Axis2
-http://ws.apache.org/axis2"; />
+http://axis.apache.org/axis2/java/core"; />
 http://axis.apache.org"; />
 Apache Axis2 is a service hosting and consumption framework 
that makes it easy to use SOAP and Web Services
 Apache Axis2 is a toolkit for creating and using Web 
Services, including SOAP, MTOM, XML/HTTP and advanced WS-* standards such as 
WSRM and WSSecurity.
@@ -36,8 +36,8 @@
 Axis2 runs either standalone or hosted in Tomcat or other servlet 
containers. 
 
 https://issues.apache.org/jira/browse/AXIS2"; />
-http://ws.apache.org/axis2/mail-lists.html"; />
-http://ws.apache.org/axis2/download.cgi"; />
+http://axis.apache.org/axis2/java/core/mail-lists.html"; />
+http://axis.apache.org/axis2/java/core/download.cgi"; />
 Java
 C
 http://projects.apache.org/category/xml"; />
@@ -65,8 +65,8 @@
 
 
   
-Paul Fremantle
-  mailto:p...@apache.org"/>
+Axis2 Development Team
+mailto:java-...@axis.apache.org?subject=[axis2]"/>
   
 
 

Modified: axis/axis2/java/core/trunk/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/src/site/site.xml?rev=1050916&r1=1050915&r2=1050916&view=diff
==
--- axis/axis2/java/core/trunk/src/site/site.xml (original)
+++ axis/axis2/java/core/trunk/src/site/site.xml Sun Dec 19 17:39:20 2010
@@ -83,6 +83,9 @@
 
 http://www.apache.org/licenses/LICENSE-2.0.html"; />
+http://www.apache.org/foundation/sponsorship.html"/>
+http://www.apache.org/foundation/thanks.html"/>
+http://www.apache.org/security/"/>
 
 
 

Modified: axis/axis2/java/core/trunk/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/src/site/xdoc/index.xml?rev=1050916&r1=1050915&r2=1050916&view=diff
==
--- axis/axis2/java/core/trunk/src/site/xdoc/index.xml (original)
+++ axis/axis2/java/core/trunk/src/site/xdoc/index.xml Sun Dec 19 17:39:20 2010
@@ -24,7 +24,7 @@
 
 
 Welcome to Apache Axis2/Java
-Axis2 is a Web Services / SOAP / WSDL engine, the successor to the
+Apache Axis2™ is a Web Services / SOAP / WSDL engine, the successor 
to the
 widely used http://ws.apache.org/axis/";>Apache Axis SOAP stack.
 There are two implementations
@@ -34,6 +34,7 @@ Apache Axis2/C
 here, you can visit the http://axis.apache.org/axis2/c/";>Apache Axis2/C
 Web site for Axis2/C implementation information.
+Apache Axis2, Axis2, Apache, the Apache feather logo, and the Apache Axis2 
project logo are trademarks of The Apache Software Foundation.
 November 12, 2010 - Apache Axis2/Java Version 1.5.3 Released!
 1.5.3 is a maintenance release that contains the following improvements:
 




svn commit: r1050922 - /axis/axis2/java/core/branches/1_5/release-notes.html

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 17:58:32 2010
New Revision: 1050922

URL: http://svn.apache.org/viewvc?rev=1050922&view=rev
Log:
Updated release notes for 1.5.4.

Modified:
axis/axis2/java/core/branches/1_5/release-notes.html

Modified: axis/axis2/java/core/branches/1_5/release-notes.html
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_5/release-notes.html?rev=1050922&r1=1050921&r2=1050922&view=diff
==
--- axis/axis2/java/core/branches/1_5/release-notes.html (original)
+++ axis/axis2/java/core/branches/1_5/release-notes.html Sun Dec 19 17:58:32 
2010
@@ -20,29 +20,37 @@
 
 
   
-  Apache Axis2 1.5.3 Release Notes
+  Apache Axis2 1.5.4 Release Notes
 
 
 
-Apache Axis2 1.5.3 Release Notes
+Apache Axis2 1.5.4 Release Notes
 
 About this version
 
-1.5.3 is a maintenance release that contains the following improvements:
+1.5.4 is a maintenance release that contains fixes for the following 
issues:
 
-Improved support for SSL when using the servlet transport: Axis2 can now 
be configured
-so that generated WSDLs contain https endpoints (https://issues.apache.org/jira/browse/AXIS2-4465";>AXIS2-4465).
-Improved compatibility with Rampart (https://issues.apache.org/jira/browse/AXIS2-3213";>AXIS2-3213
-and https://issues.apache.org/jira/browse/AXIS2-4870";>AXIS2-4870) 
and Sandesha2 (potential HTTP connection pool starvation).
-Axiom has been upgraded to 1.2.10. This version contains performance 
improvements relevant for Rampart.
-Application (business) faults are no longer logged at level ERROR (https://issues.apache.org/jira/browse/AXIS2-4280";>AXIS2-4280).
-Improved conformance to the SAAJ specifications. The 1.5.3 release 
contains a set of fixes and improvements for the SAAJ
-implementation developed on the trunk and not included in previous releases 
from the 1.5 branch.
-Axis2 now relies exclusively on dependencies available from the Maven 
central repository, and no other Maven
-repositories are required. This in particular fixes a build problem that 
appeared after the 1.5.2 release.
-The Eclipse and IntelliJ IDEA plugins are again available for http://axis.apache.org/axis2/java/core/tools/index.html";>download via 
the Axis2 Web site
-(previous 1.5.x versions could only be downloaded from the Maven 
repository).
+https://issues.apache.org:443/jira/browse/AXIS2-3784";>AXIS2-3784: 
WSDL port address is not correctly generated for machines having multiple 
network interfaces
+https://issues.apache.org:443/jira/browse/AXIS2-3793";>AXIS2-3793: 
move image to the correct place
+https://issues.apache.org:443/jira/browse/AXIS2-3851";>AXIS2-3851: 
adb-codegen no longer accepts schemas without targetNamespace
+https://issues.apache.org:443/jira/browse/AXIS2-4261";>AXIS2-4261: 
Enable axis2server.sh to start SimpleAxis2Server in remote debug mode
+https://issues.apache.org:443/jira/browse/AXIS2-4586";>AXIS2-4586: 
JiBX Client Stub not cleaning up HTTP connections after each operation
+https://issues.apache.org:443/jira/browse/AXIS2-4642";>AXIS2-4642: 
?wsdl query calls out.close() twice, confusing at least some Tomcat 
connectors
+https://issues.apache.org:443/jira/browse/AXIS2-4674";>AXIS2-4674: 
Unable to get WSDL2 doc for services on WebSphere 7.0 and Axis2 1.5.1
+https://issues.apache.org:443/jira/browse/AXIS2-4819";>AXIS2-4819: 
Race condition in WSDLDataLocator
+https://issues.apache.org:443/jira/browse/AXIS2-4827";>AXIS2-4827: ADB 
class org.apache.axis2.databinding.types.Union does not implement 
java.io.Serializable
+https://issues.apache.org:443/jira/browse/AXIS2-4842";>AXIS2-4842: NPE 
in TempFileManager
+https://issues.apache.org:443/jira/browse/AXIS2-4871";>AXIS2-4871: 
Null Pointer Exception in AxisService.printXSD
+https://issues.apache.org:443/jira/browse/AXIS2-4883";>AXIS2-4883: 
Javadoc link broken on site and in documents distribution
+https://issues.apache.org:443/jira/browse/AXIS2-4885";>AXIS2-4885: 
Unsubstituted variable ${axis2_version} in 1.5.3 site and documents 
distribution 
+https://issues.apache.org:443/jira/browse/AXIS2-4887";>AXIS2-4887: 
TargetNameSpace required for XSD2Java
+https://issues.apache.org:443/jira/browse/AXIS2-4888";>AXIS2-4888: The 
org.apache.axis2:axis2 Maven artifact should not have a classifier
+https://issues.apache.org:443/jira/browse/AXIS2-4889";>AXIS2-4889: 
SOAPConnectionTest#testGet slows down the build
+https://issues.apache.org:443/jira/browse/AXIS2-4896";>AXIS2-4896: 
Unable to install axis2.eclipse.codegen.plugin into eclipse
+https://issues.apache.org:443/jira/browse/AXIS2-4901";>AXIS2-4901: 
LinkageError related to DOM classes when using the codegen plugin for 
Eclipse
+https://issues.apache.org:443/jira/browse/AXIS2-4909";>AXIS2-4909: 
Simple MTOM web service no longer works due to missing closing MIME 
boundary.
 
+In addition, this release contains changes required for the Sandesha2 1.4 
release.
 
 About Axis2
 




svn commit: r1050923 - in /axis/axis2/java/core/trunk/src/site/xdoc: download.xml index.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 18:01:17 2010
New Revision: 1050923

URL: http://svn.apache.org/viewvc?rev=1050923&view=rev
Log:
Preparing the site for the 1.5.4 release.

Modified:
axis/axis2/java/core/trunk/src/site/xdoc/download.xml
axis/axis2/java/core/trunk/src/site/xdoc/index.xml

Modified: axis/axis2/java/core/trunk/src/site/xdoc/download.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/src/site/xdoc/download.xml?rev=1050923&r1=1050922&r2=1050923&view=diff
==
--- axis/axis2/java/core/trunk/src/site/xdoc/download.xml (original)
+++ axis/axis2/java/core/trunk/src/site/xdoc/download.xml Sun Dec 19 18:01:17 
2010
@@ -76,6 +76,32 @@
 Distribution
 
 
+1.5.4
+19 - Dec - 2010
+1.5.4 Release (Mirrored)
+
+Binary Distribution
+zip |
+http://www.apache.org/dist/axis/axis2/java/core/1.5.4/axis2-1.5.4-bin.zip.md5";>MD5
 |
+http://www.apache.org/dist/axis/axis2/java/core/1.5.4/axis2-1.5.4-bin.zip.asc";>PGP
+
+Source Distribution
+zip |
+http://www.apache.org/dist/axis/axis2/java/core/1.5.4/axis2-1.5.4-src.zip.md5";>MD5
 |
+http://www.apache.org/dist/axis/axis2/java/core/1.5.4/axis2-1.5.4-src.zip.asc";>PGP
+
+WAR Distribution
+zip |
+http://www.apache.org/dist/axis/axis2/java/core/1.5.4/axis2-1.5.4-war.zip.md5";>MD5
 |
+http://www.apache.org/dist/axis/axis2/java/core/1.5.4/axis2-1.5.4-war.zip.asc";>PGP
+
+Documents Distribution
+zip |
+http://www.apache.org/dist/axis/axis2/java/core/1.5.4/axis2-1.5.4-docs.zip.md5";>MD5
 |
+http://www.apache.org/dist/axis/axis2/java/core/1.5.4/axis2-1.5.4-docs.zip.asc";>PGP
+
+
+
 1.5.3
 12 - Nov - 2010
 1.5.3 Release (Mirrored)

Modified: axis/axis2/java/core/trunk/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/src/site/xdoc/index.xml?rev=1050923&r1=1050922&r2=1050923&view=diff
==
--- axis/axis2/java/core/trunk/src/site/xdoc/index.xml (original)
+++ axis/axis2/java/core/trunk/src/site/xdoc/index.xml Sun Dec 19 18:01:17 2010
@@ -35,6 +35,30 @@ here, you can visit the http://axis.apache.org/axis2/c/";>Apache Axis2/C
 Web site for Axis2/C implementation information.
 Apache Axis2, Axis2, Apache, the Apache feather logo, and the Apache Axis2 
project logo are trademarks of The Apache Software Foundation.
+December 19, 2010 - Apache Axis2/Java Version 1.5.4 Released!
+1.5.4 is a maintenance release that contains fixes for the following 
issues:
+
+https://issues.apache.org:443/jira/browse/AXIS2-3784";>AXIS2-3784: 
WSDL port address is not correctly generated for machines having multiple 
network interfaces
+https://issues.apache.org:443/jira/browse/AXIS2-3793";>AXIS2-3793: 
move image to the correct place
+https://issues.apache.org:443/jira/browse/AXIS2-3851";>AXIS2-3851: 
adb-codegen no longer accepts schemas without targetNamespace
+https://issues.apache.org:443/jira/browse/AXIS2-4261";>AXIS2-4261: 
Enable axis2server.sh to start SimpleAxis2Server in remote debug mode
+https://issues.apache.org:443/jira/browse/AXIS2-4586";>AXIS2-4586: 
JiBX Client Stub not cleaning up HTTP connections after each operation
+https://issues.apache.org:443/jira/browse/AXIS2-4642";>AXIS2-4642: 
?wsdl query calls out.close() twice, confusing at least some Tomcat 
connectors
+https://issues.apache.org:443/jira/browse/AXIS2-4674";>AXIS2-4674: 
Unable to get WSDL2 doc for services on WebSphere 7.0 and Axis2 1.5.1
+https://issues.apache.org:443/jira/browse/AXIS2-4819";>AXIS2-4819: 
Race condition in WSDLDataLocator
+https://issues.apache.org:443/jira/browse/AXIS2-4827";>AXIS2-4827: ADB 
class org.apache.axis2.databinding.types.Union does not implement 
java.io.Serializable
+https://issues.apache.org:443/jira/browse/AXIS2-4842";>AXIS2-4842: NPE 
in TempFileManager
+https://issues.apache.org:443/jira/browse/AXIS2-4871";>AXIS2-4871: 
Null Pointer Exception in AxisService.printXSD
+https://issues.apache.org:443/jira/browse/AXIS2-4883";>AXIS2-4883: 
Javadoc link broken on site and in documents distribution
+https://issues.apache.org:443/jira/browse/AXIS2-4885";>AXIS2-4885: 
Unsubstituted v

svn commit: r1050924 - /axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 18:06:58 2010
New Revision: 1050924

URL: http://svn.apache.org/viewvc?rev=1050924&view=rev
Log:
Fixed a mistake in the 1.4 download entry. This release will be compatible with 
Axis2 1.5.4.

Modified:
axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml

Modified: axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml?rev=1050924&r1=1050923&r2=1050924&view=diff
==
--- axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml (original)
+++ axis/axis2/java/sandesha/trunk/src/site/xdoc/download.xml Sun Dec 19 
18:06:58 2010
@@ -53,7 +53,7 @@ the binay distribution and the source di
   
 19 - Dec - 2010
 1.4 Release (Mirrored)
-1.4
+1.5.4
   
   1.3Release
   Source Distribution 




svn commit: r1050932 - in /axis/axis2/java/sandesha/branches/1_4: ./ modules/distribution/pom.xml modules/tests/src/test/java/org/apache/sandesha2/SandeshaTestCase.java src/site/xdoc/download.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 19:01:01 2010
New Revision: 1050932

URL: http://svn.apache.org/viewvc?rev=1050932&view=rev
Log:
Bulk merged latest changes from trunk to the release branch.

Modified:
axis/axis2/java/sandesha/branches/1_4/   (props changed)
axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml

axis/axis2/java/sandesha/branches/1_4/modules/tests/src/test/java/org/apache/sandesha2/SandeshaTestCase.java
axis/axis2/java/sandesha/branches/1_4/src/site/xdoc/download.xml

Propchange: axis/axis2/java/sandesha/branches/1_4/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Dec 19 19:01:01 2010
@@ -1 +1 @@
-/axis/axis2/java/sandesha/trunk:1050214-1050875,1050879
+/axis/axis2/java/sandesha/trunk:1050214-1050926

Modified: axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml?rev=1050932&r1=1050931&r2=1050932&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml 
(original)
+++ axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml Sun Dec 
19 19:01:01 2010
@@ -179,4 +179,21 @@
 
 
 
+
+
+
+apache-release
+
+
+
+
+maven-install-plugin
+
+true
+
+
+
+
+
+
 

Modified: 
axis/axis2/java/sandesha/branches/1_4/modules/tests/src/test/java/org/apache/sandesha2/SandeshaTestCase.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/tests/src/test/java/org/apache/sandesha2/SandeshaTestCase.java?rev=1050932&r1=1050931&r2=1050932&view=diff
==
--- 
axis/axis2/java/sandesha/branches/1_4/modules/tests/src/test/java/org/apache/sandesha2/SandeshaTestCase.java
 (original)
+++ 
axis/axis2/java/sandesha/branches/1_4/modules/tests/src/test/java/org/apache/sandesha2/SandeshaTestCase.java
 Sun Dec 19 19:01:01 2010
@@ -81,17 +81,20 @@ public class SandeshaTestCase extends Te
 String testRource = "target" + File.separator + "test-classes";
 resourceDir = new File(testRource).getPath();
 
-String propFileStr = resourceDir + File.separator + PROPERTY_FILE_NAME;
-properties = new Properties ();
-
-try {
-   FileInputStream propertyFile = new FileInputStream (new 
File(propFileStr));
-   properties.load(propertyFile);
-   } catch (FileNotFoundException e) {
-   log.error(e);
-   } catch (IOException e) {
-   log.error(e);
-   }
+// TODO: This doesn't work as expected when the sandesha2-test module 
is executed in a multi-module build.
+//   Anyway, sandesha2-test.properties only contains a value for 
the test server port. This value is
+//   the same as the default, so we may as well skip the code.
+//String propFileStr = resourceDir + File.separator + 
PROPERTY_FILE_NAME;
+//properties = new Properties ();
+//
+//try {
+// FileInputStream propertyFile = new FileInputStream (new 
File(propFileStr));
+// properties.load(propertyFile);
+// } catch (FileNotFoundException e) {
+// log.error(e);
+// } catch (IOException e) {
+// log.error(e);
+// }
 }
 
 public void setUp () throws Exception {

Modified: axis/axis2/java/sandesha/branches/1_4/src/site/xdoc/download.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/src/site/xdoc/download.xml?rev=1050932&r1=1050931&r2=1050932&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/src/site/xdoc/download.xml (original)
+++ axis/axis2/java/sandesha/branches/1_4/src/site/xdoc/download.xml Sun Dec 19 
19:01:01 2010
@@ -40,6 +40,21 @@ the binay distribution and the source di
 Description
 Compatible Axis2 version
   
+  1.4Release
+  Source Distribution 
+  zip
+  http://www.apache.org/dist/axis/axis2/java/sandesha/1.4/sandesha2-1.4-src.zip.md5";
 class="externalLink" 
title="http://www.apache.org/dist/axis/axis2/java/sandesha/1.4/sandesha2-1.4-src.zip.md5";>MD5
+  http://www.apache.org/dist/axis/axis2/java/sandesha/1.4/sandesha2-1.4-src.zip.asc";
 class="externalLink" 
title="http://www.apache.org/dist/axis/axis2/java/sandesha/1.4/san

svn commit: r1050935 - /axis/axis2/java/core/tags/v1.5.4/

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 19:10:14 2010
New Revision: 1050935

URL: http://svn.apache.org/viewvc?rev=1050935&view=rev
Log:
[maven-scm] copy for tag v1.5.4

Added:
axis/axis2/java/core/tags/v1.5.4/   (props changed)
  - copied from r1050934, axis/axis2/java/core/branches/1_5/

Propchange: axis/axis2/java/core/tags/v1.5.4/
--
--- svn:ignore (added)
+++ svn:ignore Sun Dec 19 19:10:14 2010
@@ -0,0 +1,4 @@
+*.ipr
+*.iml
+*.iws
+target

Propchange: axis/axis2/java/core/tags/v1.5.4/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Sun Dec 19 19:10:14 2010
@@ -0,0 +1,2 @@
+/axis/axis2/java/core/trunk:922914,922941,922983,935169,935174,935338,937004,937237,939924,944347,944915,951385,960693,960976,960978,960984,960995,961012,961964,962844,963081,963147,965032,965036,965056,965068,965074,965213,965268,965277,965302,965454,966371,966401,966428,966536,979882-979883,979886,980242,981036,981038,981055-981056,981058,981095,981188,981220-981221,981237,981262,981278,981293,981306,981311,981985,981992,982008,982387,982393,982795,982800,983101,983110,983114,983119-983120,983128,983185,983236,983270,983276,983280,983316,983363,983370,983372,985458,985464,985626,985634,985661,985715,985717,985744,985748,985752,985763,985791,985796,985851,986844,986889,987313,987712-987715,987783,987832,987873,987883,987913,987935,990350,990369,990377,990384,990394,990398,990404,990434,990445,990449,1001279,1001452-1001466,1001673,1029034,1029153,1029308,1029372,1029377,1029610-1029651,1030008,1030538,1031350,1031352,1031799,1032001,1032390,1032401,1032681,1032694,1033898,1
 
033942,1033956,1034010,1034015,1034142,1034173,1034213,1034254,1035545,1036624,1036659,1037144,1037210,1037617,1038024,1038070,1039635,1039712-1039729,1039862,1039881,1042118,1042416,1042442,1042527,1050589,1050632,1050819,1050823,1050836,1050916,1050923
+/webservices/axis2/trunk/java:728674,729037,731798,732539,732541,732873,732877,732924,732927,732939,733293,733295,733304,733306,733348,733354,733394,733399,733463-733464,733533,733539-733540,733676,733776,733900,733910,734227,734237,734261,738057,738067,738071,738086,738110,738113,738117,738158,740332,740357,740360,741300,741784,741873,741878,741881,748761,751958,752906,754458,754467,754503,757151-757153,759488,759507,759878,759968,761025,761044,761068,761709,761770,761952,763148,765102,771051,777648,777882,777897,777934,778060,780546,783479,788202,795431,801630,802447,803725,804541,805578,805981,805999,806085,806331,807160,807487,807512,816740,816804,816812,816891,817965,821686,821689,823960,834058,834175,889783,902271,904660,904780,905980




svn commit: r1050945 - /axis/axis2/java/sandesha/branches/1_4/pom.xml

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 21:21:35 2010
New Revision: 1050945

URL: http://svn.apache.org/viewvc?rev=1050945&view=rev
Log:
Resolving last remaining snapshot version (Axis2 1.5.4 has been staged).

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=1050945&r1=1050944&r2=1050945&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/pom.xml (original)
+++ axis/axis2/java/sandesha/branches/1_4/pom.xml Sun Dec 19 21:21:35 2010
@@ -366,7 +366,7 @@
 
 
 
-1.5.4-SNAPSHOT
+1.5.4
 1.5
 1.2.10
 2.0.4




svn commit: r1050947 - in /axis/axis2/java/sandesha/branches/1_4: ./ modules/client/ modules/core/ modules/distribution/ modules/interop/ modules/mar/ modules/persistence/ modules/policy/ modules/ramp

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 21:40:15 2010
New Revision: 1050947

URL: http://svn.apache.org/viewvc?rev=1050947&view=rev
Log:
[maven-release-plugin] prepare release 1_4

Modified:
axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/interop/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/mar/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/persistence/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/policy/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/rampart-integration/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/resource-bundle/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/samples/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/tests/pom.xml
axis/axis2/java/sandesha/branches/1_4/pom.xml

Modified: axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml?rev=1050947&r1=1050946&r2=1050947&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml (original)
+++ axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml Sun Dec 19 
21:40:15 2010
@@ -21,7 +21,7 @@
 
 org.apache.sandesha2
 sandesha2-parent
-1.4-SNAPSHOT
+1.4
 ../../pom.xml
 
 
@@ -33,9 +33,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/branches/1_4/modules/client
-
scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/sandesha/branches/1_4/modules/client
-
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/client
+
scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/tags/1_4/modules/client
+
scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/sandesha/tags/1_4/modules/client
+
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/tags/1_4/modules/client
 
 
 http://axis.apache.org/axis2/java/sandesha/

Modified: axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml?rev=1050947&r1=1050946&r2=1050947&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml (original)
+++ axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml Sun Dec 19 
21:40:15 2010
@@ -21,7 +21,7 @@
 
 org.apache.sandesha2
 sandesha2-parent
-1.4-SNAPSHOT
+1.4
 ../../pom.xml
 
 
@@ -33,9 +33,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/branches/1_4/modules/core
-
scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/sandesha/branches/1_4/modules/core
-
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/core
+
scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/tags/1_4/modules/core
+
scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/sandesha/tags/1_4/modules/core
+
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/tags/1_4/modules/core
 
 
 http://axis.apache.org/axis2/java/sandesha/

Modified: axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml?rev=1050947&r1=1050946&r2=1050947&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml 
(original)
+++ axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml Sun Dec 
19 21:40:15 2010
@@ -21,7 +21,7 @@
 
 org.apache.sandesha2
 sandesha2-parent
-1.4-SNAPSHOT
+1.4
 ../../pom.xml
 
 
@@ -33,9 +33,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/branches/1_4/modules/distribution
-
scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/sandesha/branches/1_4/modules/distribution
-
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/distribution
+
scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/tags/1_4/modules/distribution
+
scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/sandesha/tags/1_4/modules/distribution
+
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/tags/1_4/modules/distribution
 
 
 http://axis.apache.org/axis2/java/sandesha/

Modified: axis/axis2/java/sandesha/branches/1_4/modules/interop/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java

svn commit: r1050948 - /axis/axis2/java/sandesha/tags/1_4/

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 21:40:27 2010
New Revision: 1050948

URL: http://svn.apache.org/viewvc?rev=1050948&view=rev
Log:
[maven-scm] copy for tag 1_4

Added:
axis/axis2/java/sandesha/tags/1_4/   (props changed)
  - copied from r1050947, axis/axis2/java/sandesha/branches/1_4/

Propchange: axis/axis2/java/sandesha/tags/1_4/
--
--- svn:ignore (added)
+++ svn:ignore Sun Dec 19 21:40:27 2010
@@ -0,0 +1 @@
+target

Propchange: axis/axis2/java/sandesha/tags/1_4/
--
svn:mergeinfo = /axis/axis2/java/sandesha/trunk:1050214-1050926




svn commit: r1050949 - in /axis/axis2/java/sandesha/branches/1_4: ./ modules/client/ modules/core/ modules/distribution/ modules/interop/ modules/mar/ modules/persistence/ modules/policy/ modules/ramp

2010-12-19 Thread veithen
Author: veithen
Date: Sun Dec 19 21:40:36 2010
New Revision: 1050949

URL: http://svn.apache.org/viewvc?rev=1050949&view=rev
Log:
[maven-release-plugin] prepare for next development iteration

Modified:
axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/interop/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/mar/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/persistence/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/policy/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/rampart-integration/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/resource-bundle/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/samples/pom.xml
axis/axis2/java/sandesha/branches/1_4/modules/tests/pom.xml
axis/axis2/java/sandesha/branches/1_4/pom.xml

Modified: axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml?rev=1050949&r1=1050948&r2=1050949&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml (original)
+++ axis/axis2/java/sandesha/branches/1_4/modules/client/pom.xml Sun Dec 19 
21:40:36 2010
@@ -21,7 +21,7 @@
 
 org.apache.sandesha2
 sandesha2-parent
-1.4
+1.4.1-SNAPSHOT
 ../../pom.xml
 
 
@@ -33,9 +33,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/tags/1_4/modules/client
-
scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/sandesha/tags/1_4/modules/client
-
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/tags/1_4/modules/client
+
scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/branches/1_4/modules/client
+
scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/sandesha/branches/1_4/modules/client
+
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/client
 
 
 http://axis.apache.org/axis2/java/sandesha/

Modified: axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml?rev=1050949&r1=1050948&r2=1050949&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml (original)
+++ axis/axis2/java/sandesha/branches/1_4/modules/core/pom.xml Sun Dec 19 
21:40:36 2010
@@ -21,7 +21,7 @@
 
 org.apache.sandesha2
 sandesha2-parent
-1.4
+1.4.1-SNAPSHOT
 ../../pom.xml
 
 
@@ -33,9 +33,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/tags/1_4/modules/core
-
scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/sandesha/tags/1_4/modules/core
-
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/tags/1_4/modules/core
+
scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/branches/1_4/modules/core
+
scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/sandesha/branches/1_4/modules/core
+
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/core
 
 
 http://axis.apache.org/axis2/java/sandesha/

Modified: axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml?rev=1050949&r1=1050948&r2=1050949&view=diff
==
--- axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml 
(original)
+++ axis/axis2/java/sandesha/branches/1_4/modules/distribution/pom.xml Sun Dec 
19 21:40:36 2010
@@ -21,7 +21,7 @@
 
 org.apache.sandesha2
 sandesha2-parent
-1.4
+1.4.1-SNAPSHOT
 ../../pom.xml
 
 
@@ -33,9 +33,9 @@
 
 
 
-
scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/tags/1_4/modules/distribution
-
scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/sandesha/tags/1_4/modules/distribution
-
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/tags/1_4/modules/distribution
+
scm:svn:http://svn.apache.org/repos/asf/axis/axis2/java/sandesha/branches/1_4/modules/distribution
+
scm:svn:https://svn.apache.org/repos/asf/axis/axis2/java/sandesha/branches/1_4/modules/distribution
+
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/branches/1_4/modules/distribution
 
 
 http://axis.apache.org/axis2/java/sandesha/

Modified: axis/axis2/java/sandesha/branches/1_4/modules/interop/pom.xml
URL: 
http://svn.apache.o