svn commit: r916406 - /axis/axis2/java/transports/trunk/modules/jms/src/main/java/org/apache/axis2/transport/jms/ServiceTaskManager.java

2010-02-25 Thread ruwan
Author: ruwan
Date: Thu Feb 25 19:19:32 2010
New Revision: 916406

URL: http://svn.apache.org/viewvc?rev=916406&view=rev
Log:
Applying the patch from Rajika, for WSCOMMONS-524

Modified:

axis/axis2/java/transports/trunk/modules/jms/src/main/java/org/apache/axis2/transport/jms/ServiceTaskManager.java

Modified: 
axis/axis2/java/transports/trunk/modules/jms/src/main/java/org/apache/axis2/transport/jms/ServiceTaskManager.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/jms/src/main/java/org/apache/axis2/transport/jms/ServiceTaskManager.java?rev=916406&r1=916405&r2=916406&view=diff
==
--- 
axis/axis2/java/transports/trunk/modules/jms/src/main/java/org/apache/axis2/transport/jms/ServiceTaskManager.java
 (original)
+++ 
axis/axis2/java/transports/trunk/modules/jms/src/main/java/org/apache/axis2/transport/jms/ServiceTaskManager.java
 Thu Feb 25 19:19:32 2010
@@ -531,9 +531,6 @@
 }
 }
 
-// close the consumer
-closeConsumer(false);
-
 // if session was transacted, commit it or rollback
 try {
 if (session.getTransacted()) {
@@ -574,6 +571,9 @@
 " JTA txn for message : " + messageId + " from the 
session", e);
 }
 
+// close the consumer
+closeConsumer(false);
+
 closeSession(false);
 closeConnection();
 }




svn commit: r916401 - /axis/axis2/java/transports/trunk/modules/jms/src/main/java/org/apache/axis2/transport/jms/JMSConnectionFactory.java

2010-02-25 Thread ruwan
Author: ruwan
Date: Thu Feb 25 19:14:57 2010
New Revision: 916401

URL: http://svn.apache.org/viewvc?rev=916401&view=rev
Log:
Applying the patch from Rajika for WSCOMMONS-515

Modified:

axis/axis2/java/transports/trunk/modules/jms/src/main/java/org/apache/axis2/transport/jms/JMSConnectionFactory.java

Modified: 
axis/axis2/java/transports/trunk/modules/jms/src/main/java/org/apache/axis2/transport/jms/JMSConnectionFactory.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/transports/trunk/modules/jms/src/main/java/org/apache/axis2/transport/jms/JMSConnectionFactory.java?rev=916401&r1=916400&r2=916401&view=diff
==
--- 
axis/axis2/java/transports/trunk/modules/jms/src/main/java/org/apache/axis2/transport/jms/JMSConnectionFactory.java
 (original)
+++ 
axis/axis2/java/transports/trunk/modules/jms/src/main/java/org/apache/axis2/transport/jms/JMSConnectionFactory.java
 Thu Feb 25 19:14:57 2010
@@ -252,7 +252,7 @@
  * @return session transaction required by the clients of this?
  */
 private boolean isSessionTransacted() {
-return parameters.get(JMSConstants.PARAM_SESSION_TRANSACTED) == null ||
+return parameters.get(JMSConstants.PARAM_SESSION_TRANSACTED) != null &&
 
Boolean.valueOf(parameters.get(JMSConstants.PARAM_SESSION_TRANSACTED));
 }
 




svn commit: r920200 - /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/engine/AxisConfiguration.java

2010-03-07 Thread ruwan
Author: ruwan
Date: Mon Mar  8 06:05:44 2010
New Revision: 920200

URL: http://svn.apache.org/viewvc?rev=920200&view=rev
Log:
Adding a method to the AxisConfiguration to add a service to an axisting active 
service group

Modified:

axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/engine/AxisConfiguration.java

Modified: 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/engine/AxisConfiguration.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/engine/AxisConfiguration.java?rev=920200&r1=920199&r2=920200&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/engine/AxisConfiguration.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/engine/AxisConfiguration.java
 Mon Mar  8 06:05:44 2010
@@ -407,6 +407,70 @@
 addChild(axisServiceGroup);
 }
 
+/**
+ * This method is used to add a service to an existing active service 
group in the axis configuration
+ *
+ * @param axisService service to be added to the existing service group 
provided
+ * @param serviceGroupName name of the service group which should be 
existing in the axis configuration
+ * @throws AxisFault in case of an error in adding the service to the 
group specified or if the group is not existing
+ */
+public void addServiceToExistingServiceGroup(AxisService axisService,
+ String serviceGroupName) 
throws AxisFault {
+
+AxisServiceGroup serviceGroup = getServiceGroup(serviceGroupName);
+if (serviceGroup == null) {
+String message = "A ServiceGroup with the provided name "
++ serviceGroupName + " is not existing";
+log.error(message);
+throw new AxisFault(message);
+}
+
+if (axisService.getSchemaTargetNamespace() == null) {
+axisService.setSchemaTargetNamespace(Java2WSDLConstants.AXIS2_XSD);
+}
+
+if (axisService.isUseDefaultChains()) {
+Iterator operations = axisService.getOperations();
+while (operations.hasNext()) {
+AxisOperation operation = operations.next();
+phasesinfo.setOperationPhases(operation);
+}
+}
+
+Map endpoints = axisService.getEndpoints();
+if (endpoints == null || endpoints.size() == 0) {
+   
org.apache.axis2.deployment.util.Utils.addEndpointsToService(
+   axisService, 
axisService.getAxisConfiguration());
+endpoints = axisService.getEndpoints();
+   }
+
+String serviceName = axisService.getName();
+addToAllServicesMap(axisService);
+
+if (endpoints != null) {
+Iterator endpointNameIter = endpoints.keySet().iterator();
+while (endpointNameIter.hasNext()) {
+String endpointName = endpointNameIter.next();
+if (log.isDebugEnabled()) {
+log.debug("Adding service to allEndpoints map: ("
++ serviceName + "," + endpointName + ") ");
+}
+
+allEndpoints.put(serviceName + "." + endpointName, 
axisService);
+}
+if (log.isDebugEnabled()) {
+log.debug("After adding to allEndpoints map, size is "
++ allEndpoints.size());
+}
+}
+
+serviceGroup.addService(axisService);
+
+if (!axisService.isClientSide()) {
+notifyObservers(new AxisEvent(AxisEvent.SERVICE_DEPLOY, 
axisService), axisService);
+}
+}
+
 public void addToAllServicesMap(AxisService axisService) throws AxisFault {
 String serviceName = axisService.getName();
 AxisService oldService = allServices.get(serviceName);




svn commit: r1054944 - /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/Constants.java

2011-01-04 Thread ruwan
Author: ruwan
Date: Tue Jan  4 09:46:27 2011
New Revision: 1054944

URL: http://svn.apache.org/viewvc?rev=1054944&view=rev
Log:
Fixing minor typos

Modified:

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

Modified: 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/Constants.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/Constants.java?rev=1054944&r1=1054943&r2=1054944&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/Constants.java 
(original)
+++ 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/Constants.java 
Tue Jan  4 09:46:27 2011
@@ -23,6 +23,7 @@ package org.apache.axis2;
 /**
  * Class Constants
  */
+...@suppresswarnings({"UnusedDeclaration"})
 public class Constants extends org.apache.axis2.namespace.Constants {
 
 /**
@@ -76,14 +77,16 @@ public class Constants extends org.apach
 
 
 /**
- * To chenge the conetext path from axis2/service to something else
+ * To change the context path from axis2/service to something else
  */
 public static final String PARAM_CONTEXT_ROOT = "contextRoot";
 /**
- * To chenage the service path to somthing else
+ * To change the service path to something else
  */
 public static final String PARAM_SERVICE_PATH = "servicePath";
-//Parameter name for transport session managemntt
+/**
+ * Parameter name for transport session management
+ */
 public static final String MANAGE_TRANSPORT_SESSION = 
"manageTransportSession";
 
 public static final String HTTP_RESPONSE_STATE = 
"axis2.http.response.state";
@@ -288,7 +291,7 @@ public class Constants extends org.apach
 public static final String JAXWS_OUTBOUND_SOAP_HEADERS  = 
"jaxws.binding.soap.headers.outbound";
 public static final String JAXWS_INBOUND_SOAP_HEADERS = 
"jaxws.binding.soap.headers.inbound";
 
-// If the JAXWS WebMethod throws an exception on the server, the exception 
is
+// If the JAX-WS WebMethod throws an exception on the server, the 
exception is
 // stored on the server outbound MessageContext.  This is the key to 
access that Throwable object.
 public static final String JAXWS_WEBMETHOD_EXCEPTION = 
 "jaxws.outbound.response.webmethod.exception";
@@ -301,7 +304,7 @@ public class Constants extends org.apach
 public static final String MODULE_VERSION ="version";
 
 /**
- * Following constant are used for JTA transaction supporyt in Axis2
+ * Following constant are used for JTA transaction support in Axis2
  */
 public static final String USER_TRANSACTION = "UserTransaction";
 public static final String TRANSACTION_MANAGER = "TransactionManager";
@@ -427,12 +430,12 @@ public class Constants extends org.apach
 /**
  * If this is set to a Boolean 'true' value, then 
RequestResponseTransport instances will
  * not be signalled by the Dispatch phase. This is useful for modules 
that add wish to
- * send extra messages in the backchannel.
+ * send extra messages in the back-channel.
  */
 public static final String DISABLE_RESPONSE_ACK = "DisableResponseAck";
 
 /**
- * This constant is used to add an deployment life cycle listner to 
Axis2
+ * This constant is used to add an deployment life cycle listener to 
Axis2
  */
 
 public static final String DEPLOYMENT_LIFE_CYCLE_LISTENER = 
"deploymentLifeCycleListener";




svn commit: r1054953 - in /axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui: JavaWSDLOutputLocationPage.java OutputPage.java

2011-01-04 Thread ruwan
Author: ruwan
Date: Tue Jan  4 10:09:35 2011
New Revision: 1054953

URL: http://svn.apache.org/viewvc?rev=1054953&view=rev
Log:
Fixing the issue AXIS2-4008, committing Harshana's patch

Modified:

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/OutputPage.java

Modified: 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java?rev=1054953&r1=1054952&r2=1054953&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java
 Tue Jan  4 10:09:35 2011
@@ -20,6 +20,7 @@
 package org.apache.axis2.tool.codegen.eclipse.ui;
 
 import org.apache.axis2.tool.codegen.eclipse.plugin.CodegenWizardPlugin;
+import org.eclipse.core.resources.IProject;
 import org.eclipse.core.resources.IWorkspaceRoot;
 import org.eclipse.core.resources.ResourcesPlugin;
 import org.eclipse.core.runtime.Path;
@@ -42,6 +43,10 @@ import java.io.File;
 
 public class JavaWSDLOutputLocationPage extends AbstractWizardPage {
 
+   private static final String EMPTY_STRING = "";
+
+   private static final int ECLIPSE_PROJECT_NAME_SEGMENT_INDEX = 0;
+
private Text outputFolderTextBox;
 
private Text outputFileNameTextBox;
@@ -52,39 +57,46 @@ public class JavaWSDLOutputLocationPage 
 
private boolean workspaceSaveOption = false;
 
-   /**
-* @param pageName
-*/
public JavaWSDLOutputLocationPage() {
super("page6");
}
 
-   /* (non-Javadoc)
-* @see 
org.apache.axis2.tool.codegen.eclipse.ui.AbstractWizardPage#initializeDefaultSettings()
+   /*
+* (non-Javadoc)
+* 
+* @see org.apache.axis2.tool.codegen.eclipse.ui.AbstractWizardPage#
+* initializeDefaultSettings()
 */
protected void initializeDefaultSettings() {
-   settings.put(PREF_JAVA_OUTPUT_WSDL_LOCATION, "");
+   settings.put(PREF_JAVA_OUTPUT_WSDL_LOCATION, EMPTY_STRING);
settings.put(JAVA_OUTPUT_WSDL_NAME, "services.wsdl");
settings.put(PREF_JAVA_OUTPUT_FILESYATEM, true);
settings.put(PREF_JAVA_OUTPUT_WORKSPACE, false);
 
}
 
-   /* (non-Javadoc)
-* @see 
org.apache.axis2.tool.codegen.eclipse.ui.AbstractWizardPage#getPageType()
+   /*
+* (non-Javadoc)
+* 
+* @see
+* 
org.apache.axis2.tool.codegen.eclipse.ui.AbstractWizardPage#getPageType()
 */
public int getPageType() {
return JAVA_2_WSDL_TYPE;
}
 
-   /* (non-Javadoc)
-* @see 
org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets.Composite)
+   /*
+* (non-Javadoc)
+* 
+* @see
+* 
org.eclipse.jface.dialogs.IDialogPage#createControl(org.eclipse.swt.widgets
+* .Composite)
 */
public void createControl(Composite parent) {
Composite container = new Composite(parent, SWT.NULL);
GridLayout layout = new GridLayout();
layout.numColumns = 3;
-   //layout.verticalSpacing = 9;
+   // layout.verticalSpacing = 9;
container.setLayout(layout);
 
GridData gd = new GridData(GridData.FILL_HORIZONTAL);
@@ -137,7 +149,7 @@ public class JavaWSDLOutputLocationPage 
gd = new GridData(GridData.FILL_HORIZONTAL);
outputFolderTextBox = new Text(container, SWT.BORDER);
outputFolderTextBox.setLayoutData(gd);
-   outputFolderTextBox.setText("");
+   outputFolderTextBox.setText(EMPTY_STRING);
outputFolderTextBox.addModifyListener(new ModifyListener() {
public void modifyText(ModifyEvent e) {
handleFolderTextChange();
@@ -195,7 +207,7 @@ public class JavaWSDLOutputLocationPage 
private void handleFolderTextChange() {
String outputFolder = outputFolderTextBox.getText();
settings.put(PREF_JAVA_OUTPUT_WSDL_LOCATION, outputFolder);
-   if (&q

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

2011-01-04 Thread ruwan
Author: ruwan
Date: Wed Jan  5 05:54:22 2011
New Revision: 1055301

URL: http://svn.apache.org/viewvc?rev=1055301&view=rev
Log:
Fixing the issue AXIS2-4150, committing for Chamith

Modified:

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

Modified: 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/AxisBindingOperation.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/AxisBindingOperation.java?rev=1055301&r1=1055300&r2=1055301&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/AxisBindingOperation.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/AxisBindingOperation.java
 Wed Jan  5 05:54:22 2011
@@ -233,7 +233,7 @@ public class AxisBindingOperation extend

// Add the input element
AxisBindingMessage inMessage = (AxisBindingMessage) this
-   
.getChild(WSDLConstants.WSDL_MESSAGE_DIRECTION_IN);
+   .getChild(WSDLConstants.MESSAGE_LABEL_IN_VALUE);
if (inMessage != null) {
bindingOpElement.addChild(inMessage.toWSDL20(wsdl, tns, 
wsoap,
whttp, namespaceMap));
@@ -241,7 +241,7 @@ public class AxisBindingOperation extend
 
// Add the output element
AxisBindingMessage outMessage = (AxisBindingMessage) this
-   
.getChild(WSDLConstants.WSDL_MESSAGE_DIRECTION_OUT);
+   
.getChild(WSDLConstants.MESSAGE_LABEL_OUT_VALUE);
if (outMessage != null) {
bindingOpElement.addChild(outMessage.toWSDL20(wsdl, 
tns, wsoap,
whttp, namespaceMap));




svn commit: r1055423 - /axis/axis2/java/core/trunk/src/site/xdoc/docs/builder-formatter.xml

2011-01-05 Thread ruwan
Author: ruwan
Date: Wed Jan  5 11:25:29 2011
New Revision: 1055423

URL: http://svn.apache.org/viewvc?rev=1055423&view=rev
Log:
Initial version of the builder formatter guide

Added:
axis/axis2/java/core/trunk/src/site/xdoc/docs/builder-formatter.xml

Added: axis/axis2/java/core/trunk/src/site/xdoc/docs/builder-formatter.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/src/site/xdoc/docs/builder-formatter.xml?rev=1055423&view=auto
==
--- axis/axis2/java/core/trunk/src/site/xdoc/docs/builder-formatter.xml (added)
+++ axis/axis2/java/core/trunk/src/site/xdoc/docs/builder-formatter.xml Wed Jan 
 5 11:25:29 2011
@@ -0,0 +1,82 @@
+  
+
+http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+http://www.w3.org/1999/xhtml";>
+
+
+Supporting new/custom message types with 
MessageBuilder/Formatter
+
+
+Supporting new/custom message types with MessageBuilder/Formatter
+Axis2 provides extended support for new or custom message types. This is 
done with
+using a extension point in the Axis2 architecture, called message builders and 
formatters.
+In Axis2 a builder is responsible of building the MessageContext by looking at 
the raw message
+transmitted and the formatter is responsible of the inverse of that, which is 
to serialize a
+MessageContext to the wire transfer format. Let's create a
+custom MessageBuilder/Formatter to add the support for a new message type.
+Send your feedback or questions to: mailto:java-...@axis.apache.org?subject=[axis2]";>java-...@axis.apache.org.
+( Subscription details are available on the Axis2 
site.)
+Kindly prefix subject with [Axis2].
+Contents
+
+New ContentType handling 
with a custom message builder and formatter
+
+Step1 : MessageBuilder 
implementation
+Step2 : MessageFormatter 
implementation
+Step3 : Register the builder 
and formatter with Axis2
+Step4 : Packaging builder and formatter
+Step5 : Testing the new ContentType with the echo 
service
+
+
+
+
+New ContentType handling with a custom message builder and formatter
+Let's write a simple builder and formatter to add the support for a new 
content type
+
+
+Step1 : MessageBuilder implementation
+
+
+
+
+
+
+
+
+
+
+
+
+
+Step2 : MessageFormatter implementation
+
+
+Step3 : Register the builder and formatter with Axis2
+
+
+Step4 : Packaging builder and formatter
+
+
+Step5 : Testing the new ContentType with the echo service
+
+
+




svn commit: r1063631 - /axis/axis2/java/core/trunk/modules/json/src/org/apache/axis2/json/AbstractJSONOMBuilder.java

2011-01-26 Thread ruwan
Author: ruwan
Date: Wed Jan 26 08:46:50 2011
New Revision: 1063631

URL: http://svn.apache.org/viewvc?rev=1063631&view=rev
Log:
Applying the patch from Miyuru on the issue AXIS2-4941

Modified:

axis/axis2/java/core/trunk/modules/json/src/org/apache/axis2/json/AbstractJSONOMBuilder.java

Modified: 
axis/axis2/java/core/trunk/modules/json/src/org/apache/axis2/json/AbstractJSONOMBuilder.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/json/src/org/apache/axis2/json/AbstractJSONOMBuilder.java?rev=1063631&r1=1063630&r2=1063631&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/json/src/org/apache/axis2/json/AbstractJSONOMBuilder.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/json/src/org/apache/axis2/json/AbstractJSONOMBuilder.java
 Wed Jan 26 08:46:50 2011
@@ -63,6 +63,9 @@ public abstract class AbstractJSONOMBuil
 String prefix = "";
 OMNamespace ns = factory.createOMNamespace("", "");
 
+//sets DoingREST to true because, security scenarios needs to handle 
in REST way
+messageContext.setDoingREST(true);
+
 Reader reader;
 
 //if the input stream is null, then check whether the HTTP method is 
GET, if so get the




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

2011-01-26 Thread ruwan
Author: ruwan
Date: Wed Jan 26 08:58:05 2011
New Revision: 1063637

URL: http://svn.apache.org/viewvc?rev=1063637&view=rev
Log:
Applying the patch from Pradeep on the issue AXIS2-4651

Modified:

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

Modified: 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/WSDL20ToAxisServiceBuilder.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/WSDL20ToAxisServiceBuilder.java?rev=1063637&r1=1063636&r2=1063637&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/WSDL20ToAxisServiceBuilder.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/description/WSDL20ToAxisServiceBuilder.java
 Wed Jan 26 08:58:05 2011
@@ -659,7 +659,7 @@ public class WSDL20ToAxisServiceBuilder 
 // If httpLocation is not null we should extract a constant part 
from it and add its value and the
 // corresponding AxisOperation to a map in order to dispatch rest 
messages. If httpLocation is null we add
 // the operation name into this map.
-String httpLocationString = "";
+String httpLocationString = null;
 if (httpLocation != null) {
 String httpLocationTemplete = 
httpLocation.getOriginalLocation();
 axisBindingOperation
@@ -667,8 +667,10 @@ public class WSDL20ToAxisServiceBuilder 
 httpLocationString = 
WSDLUtil.getConstantFromHTTPLocation(httpLocationTemplete, 
HTTPConstants.HEADER_POST);
 
 }
-
-httpLocationTable.put(httpLocationString, axisOperation);
+if (httpLocationString != null){
+// this map is used to dispatch operation based on request URI 
, in the HTTPLocationBasedDispatcher
+httpLocationTable.put(httpLocationString, axisOperation);
+}
 
axisBindingOperation.setProperty(WSDL2Constants.ATTR_WHTTP_CONTENT_ENCODING,
  
soapBindingOperationExtensions.getHttpContentEncodingDefault());
 
axisBindingOperation.setProperty(WSDL2Constants.ATTR_WHTTP_QUERY_PARAMETER_SEPARATOR,




svn commit: r1063648 - in /axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool: core/ service/bean/ service/control/ service/eclipse/ui/ service/sw

2011-01-26 Thread ruwan
Author: ruwan
Date: Wed Jan 26 09:16:54 2011
New Revision: 1063648

URL: http://svn.apache.org/viewvc?rev=1063648&view=rev
Log:
Applying the patch from Harshana on the issue AXIS2-4920

Modified:

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/core/ClassFileHandler.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/core/FileCopier.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/core/JarFileWriter.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/core/ServiceFileCreator.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/service/bean/LibrarySelectionBean.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/service/control/Controller.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/service/eclipse/ui/LibraryAddingPage.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/service/eclipse/ui/ServiceArchiveWizard.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/service/eclipse/ui/ServiceXMLFileSelectionPage.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/service/eclipse/ui/WSDLFileSelectionPage.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/service/eclipse/ui/WSDLOptionsPage.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/service/swing/ui/MainWindow.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/service/swing/ui/WizardPane.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/util/Constants.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/util/ServicePluginUtils.java

Modified: 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/core/ClassFileHandler.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/core/ClassFileHandler.java?rev=1063648&r1=1063647&r2=1063648&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/core/ClassFileHandler.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/core/ClassFileHandler.java
 Wed Jan 26 09:16:54 2011
@@ -24,7 +24,9 @@ import java.io.IOException;
 import java.lang.reflect.Method;
 import java.net.URL;
 import java.net.URLClassLoader;
+import java.security.AccessController;
 import java.util.ArrayList;
+import java.security.PrivilegedAction;
 
 public class ClassFileHandler {
 
@@ -41,10 +43,15 @@ public class ClassFileHandler {
 public ArrayList getMethodNamesFromClass(String classFileName,String 
location) throws IOException, ClassNotFoundException{
 ArrayList returnList = new ArrayList();
 File fileEndpoint = new File(location);
-if (!fileEndpoint.exists())
+if (!fileEndpoint.exists()){
 throw new IOException("the location is invalid");
-URL[] urlList = {fileEndpoint.toURL()};
-URLClassLoader clazzLoader = new URLClassLoader(urlList);
+}
+final URL[] urlList = {fileEndpoint.toURL()};
+URLClassLoader clazzLoader = AccessController.doPrivileged(new 
PrivilegedAction() {
+   public URLClassLoader run() {
+   return new URLClassLoader(urlList);
+   }
+   });
 Class clazz = clazzLoader.loadClass(classFileName);
 Method[] methods = clazz.getDeclaredMethods();
 

Modified: 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/core/FileCopier.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/core/FileCopier.java?rev=1063648&r1=1063647&r2=1063648&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/src/main/java/org/apache/axis2/tool/core/FileCopier.java
 (original)
+++ 
axis/axis2/java/core/tr

svn commit: r1063651 - in /axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool: codegen/ codegen/eclipse/ codegen/eclipse/ui/ codegen/eclipse/util/

2011-01-26 Thread ruwan
Author: ruwan
Date: Wed Jan 26 09:20:00 2011
New Revision: 1063651

URL: http://svn.apache.org/viewvc?rev=1063651&view=rev
Log:
Applying the patch from Harshana on the issue AXIS2-4920 - part2

Modified:

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/WSDL2JavaGenerator.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/JavaWSDLOutputLocationPage.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/OptionsPage.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/OutputPage.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/ui/WSDLJavaAdvanceDialog.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/util/ClassFileReader.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/util/NamespaceFinder.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/core/ClassFileHandler.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/core/FileCopier.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/core/JarFileWriter.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/core/SrcCompiler.java

axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/util/Constants.java

Modified: 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/WSDL2JavaGenerator.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/WSDL2JavaGenerator.java?rev=1063651&r1=1063650&r2=1063651&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/WSDL2JavaGenerator.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/WSDL2JavaGenerator.java
 Wed Jan 26 09:20:00 2011
@@ -33,6 +33,7 @@ import java.net.URL;
 import java.util.HashMap;
 import java.util.Iterator;
 import java.util.Map;
+import java.util.Map.Entry;
 
 
 public class WSDL2JavaGenerator {
@@ -147,15 +148,14 @@ public class WSDL2JavaGenerator {
}

if (advanceOptions != null) {
-   for (Iterator iterator = 
advanceOptions.keySet().iterator(); iterator
-   .hasNext();) {
-   String type = (String) iterator.next();
-   String[] parameters;
-   if (advanceOptions.get(type) == null)
-   parameters = new String[0];
-   else
-   parameters = (String[]) 
advanceOptions.get(type);
-   optionMap.put(type, new CommandLineOption(type, 
parameters));
+   for (Iterator iterator = 
advanceOptions.entrySet().iterator(); iterator.hasNext();) {
+   Entry entry=(Entry) iterator.next();
+   String key=(String) entry.getKey();
+   String[] value=(String[]) entry.getValue();
+   if (value == null) {
+   value = new String[0];
+   }
+   optionMap.put(key, new CommandLineOption(key, 
value));
}
}
return optionMap;

Modified: 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codegen/eclipse/CodeGenWizard.java?rev=1063651&r1=1063650&r2=1063651&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/src/main/java/org/apache/axis2/tool/codege

svn commit: r1063678 - in /axis/axis2/java/core/trunk/modules/webapp/src/main: java/org/apache/axis2/webapp/AdminAgent.java webapp/axis2-web/deleteService.jsp webapp/axis2-web/listService.jsp webapp/a

2011-01-26 Thread ruwan
Author: ruwan
Date: Wed Jan 26 11:17:22 2011
New Revision: 1063678

URL: http://svn.apache.org/viewvc?rev=1063678&view=rev
Log:
Fixing the issue AXIS2-1755, added a remove service link to remove the serivce 
from the admin page of services. Though this has been done in the same manner 
the rest of the admin console stuff were. I think there need to be a whole 
re-write of the admin console of axis2, including the style of writing the 
webapp as well as the UI, but that is out of the scope of the 1.6 release.

Added:

axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/deleteService.jsp
Modified:

axis/axis2/java/core/trunk/modules/webapp/src/main/java/org/apache/axis2/webapp/AdminAgent.java

axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/listService.jsp

axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/listServices.jsp

Modified: 
axis/axis2/java/core/trunk/modules/webapp/src/main/java/org/apache/axis2/webapp/AdminAgent.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/webapp/src/main/java/org/apache/axis2/webapp/AdminAgent.java?rev=1063678&r1=1063677&r2=1063678&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/webapp/src/main/java/org/apache/axis2/webapp/AdminAgent.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/webapp/src/main/java/org/apache/axis2/webapp/AdminAgent.java
 Wed Jan 26 11:17:22 2011
@@ -599,6 +599,20 @@ public class AdminAgent extends Abstract
 renderView("disengage.jsp", req, res);
 }
 
+public void processdeleteService(HttpServletRequest req, 
HttpServletResponse res)
+throws IOException, ServletException {
+String serviceName = req.getParameter("serviceName");
+AxisConfiguration axisConfiguration = 
configContext.getAxisConfiguration();
+if (axisConfiguration.getService(serviceName) != null) {
+axisConfiguration.removeService(serviceName);
+req.getSession().setAttribute("status", "Service '" + serviceName 
+ "' has been successfully removed.");
+} else {
+req.getSession().setAttribute("status", "Failed to delete service 
'" + serviceName + "'. Service doesn't exist.");
+}
+
+renderView("deleteService.jsp", req, res);
+}
+
 public void processSelectService(HttpServletRequest req, 
HttpServletResponse res)
 throws IOException, ServletException {
 populateSessionInformation(req);

Added: 
axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/deleteService.jsp
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/deleteService.jsp?rev=1063678&view=auto
==
--- 
axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/deleteService.jsp
 (added)
+++ 
axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/deleteService.jsp
 Wed Jan 26 11:17:22 2011
@@ -0,0 +1,23 @@
+<%--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements. See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership. The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License. You may obtain a copy of the License at
+  ~
+  ~ http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing,
+  ~ software distributed under the License is distributed on an
+  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  ~ KIND, either express or implied. See the License for the
+  ~ specific language governing permissions and limitations
+  ~ under the License.
+  --%>
+<%@ page contentType="text/html;charset=UTF-8" language="java" %>
+
+<%=request.getSession().getAttribute("status")%>
+Click here to go to the service list 
page
+
\ No newline at end of file

Modified: 
axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/listService.jsp
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/listService.jsp?rev=1063678&r1=1063677&r2=1063678&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/listService.jsp
 (original)
+++ 
axis/axis2/java/core/trunk/modules/webapp/src/main/webapp/axis2-web/listService.jsp
 Wed Jan 26 11:17:22 2011
@@ -49,7 +49,6 @@
 operations = axisService.getOperations();
   

svn commit: r1063980 - /axis/axis2/java/core/trunk/modules/saaj/src/org/apache/axis2/saaj/util/SAAJUtil.java

2011-01-26 Thread ruwan
Author: ruwan
Date: Thu Jan 27 04:13:27 2011
New Revision: 1063980

URL: http://svn.apache.org/viewvc?rev=1063980&view=rev
Log:
Fixing the issue AXIS2-4810, committing the patch from Pradeep

Modified:

axis/axis2/java/core/trunk/modules/saaj/src/org/apache/axis2/saaj/util/SAAJUtil.java

Modified: 
axis/axis2/java/core/trunk/modules/saaj/src/org/apache/axis2/saaj/util/SAAJUtil.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/saaj/src/org/apache/axis2/saaj/util/SAAJUtil.java?rev=1063980&r1=1063979&r2=1063980&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/saaj/src/org/apache/axis2/saaj/util/SAAJUtil.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/saaj/src/org/apache/axis2/saaj/util/SAAJUtil.java
 Thu Jan 27 04:13:27 2011
@@ -63,7 +63,7 @@ public class SAAJUtil {
 factory = DOOMAbstractFactory.getSOAP11Factory();
 } else {
 nsURI = SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI;
-factory = DOOMAbstractFactory.getSOAP11Factory();
+factory = DOOMAbstractFactory.getSOAP12Factory();
 }
 
 StAXSOAPModelBuilder stAXSOAPModelBuilder =




svn commit: r1064018 - in /axis/axis2/java/core/trunk/modules: addressing/src/org/apache/axis2/handlers/addressing/ jaxws/src/org/apache/axis2/jaxws/dispatchers/ kernel/src/org/apache/axis2/engine/ ke

2011-01-27 Thread ruwan
Author: ruwan
Date: Thu Jan 27 08:05:22 2011
New Revision: 1064018

URL: http://svn.apache.org/viewvc?rev=1064018&view=rev
Log:
Fixing the issue AXIS2-4881, with proper API, AbstractHandler will remain as it 
is to keep the backwards compatibility. I have refactored the classes which 
were using the invoke_stage1/2 methods, but I think we can improve most of the 
handlers with this approach

Added:

axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/handlers/AbstractTemplatedHandler.java
Modified:

axis/axis2/java/core/trunk/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingInHandler.java

axis/axis2/java/core/trunk/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingOutHandler.java

axis/axis2/java/core/trunk/modules/jaxws/src/org/apache/axis2/jaxws/dispatchers/MustUnderstandChecker.java

axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/engine/Phase.java

axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/handlers/AbstractHandler.java

Modified: 
axis/axis2/java/core/trunk/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingInHandler.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingInHandler.java?rev=1064018&r1=1064017&r2=1064018&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingInHandler.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingInHandler.java
 Thu Jan 27 08:05:22 2011
@@ -39,6 +39,7 @@ import org.apache.axis2.description.Para
 import org.apache.axis2.engine.AxisConfiguration;
 import org.apache.axis2.engine.Handler.InvocationResponse;
 import org.apache.axis2.handlers.AbstractHandler;
+import org.apache.axis2.handlers.AbstractTemplatedHandler;
 import org.apache.axis2.util.JavaUtils;
 import org.apache.axis2.util.LoggingControl;
 import org.apache.axis2.util.Utils;
@@ -49,7 +50,7 @@ import javax.xml.namespace.QName;
 import java.util.ArrayList;
 import java.util.Iterator;
 
-public class AddressingInHandler extends AbstractHandler implements 
AddressingConstants {
+public class AddressingInHandler extends AbstractTemplatedHandler implements 
AddressingConstants {
 
 private static final int TO_FLAG = 1, FROM_FLAG = 2, REPLYTO_FLAG = 3,
 FAULTO_FLAG = 4, MESSAGEID_FLAG = 6, ACTION_FLAG = 0;
@@ -59,7 +60,7 @@ public class AddressingInHandler extends
 private boolean disableRefparamExtract = false;
 private AxisConfiguration configuration = null;
 private RolePlayer rolePlayer = null;
-
+
 public void init(HandlerDescription handlerdesc){
super.init(handlerdesc);
// check whether to process reference parameters.
@@ -72,15 +73,7 @@ public class AddressingInHandler extends
 }
 }
 
-public InvocationResponse invoke(MessageContext msgContext) throws 
AxisFault {
-
-if (invoke_stage1(msgContext)) {
-return invoke_stage2(msgContext);
-} else {
-return InvocationResponse.CONTINUE;
-}
-}
-public boolean invoke_stage1(MessageContext msgContext) throws AxisFault {
+public boolean shouldInvoke(MessageContext msgContext) throws AxisFault {
 //Set the defaults on the message context.
 msgContext.setProperty(DISABLE_ADDRESSING_FOR_OUT_MESSAGES, 
Boolean.TRUE);
 msgContext.setProperty(IS_ADDR_INFO_ALREADY_PROCESSED, Boolean.FALSE);
@@ -100,13 +93,10 @@ public class AddressingInHandler extends
 
 // if there are not headers put a flag to disable addressing temporary
 SOAPHeader header = msgContext.getEnvelope().getHeader();
-if (header == null) {
-return false;
-}
-return true;
+return header != null;
 }
 
-public InvocationResponse invoke_stage2(MessageContext msgContext) throws 
AxisFault {
+public InvocationResponse doInvoke(MessageContext msgContext) throws 
AxisFault {
 SOAPHeader header = msgContext.getEnvelope().getHeader();
 if(configuration == null){
AxisConfiguration conf = 
msgContext.getConfigurationContext().getAxisConfiguration();

Modified: 
axis/axis2/java/core/trunk/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingOutHandler.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingOutHandler.java?rev=1064018&r1=1064017&r2=1064018&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingOutHandler.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/add

svn commit: r1065907 - in /axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl: codegen/emitter/ template/java/

2011-01-31 Thread ruwan
Author: ruwan
Date: Tue Feb  1 04:50:46 2011
New Revision: 1065907

URL: http://svn.apache.org/viewvc?rev=1065907&view=rev
Log:
Committing the fix for AXIS2-4914, patch from Pradeep

Modified:

axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java

axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/template/java/CallbackHandlerTemplate.xsl

axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl

axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceTemplate.xsl

axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/template/java/TestClassTemplate.xsl

Modified: 
axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java?rev=1065907&r1=1065906&r2=1065907&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/codegen/emitter/AxisServiceBasedMultiLanguageEmitter.java
 Tue Feb  1 04:50:46 2011
@@ -2279,11 +2279,20 @@ public class AxisServiceBasedMultiLangua
 String localPart = axisOperation.getName().getLocalPart();
 
 if (this.codeGenConfiguration.isUseOperationName()) {
-addAttribute(doc, "name", JavaUtils.xmlNameToJava(localPart), 
methodElement);
+String temp = JavaUtils.xmlNameToJava(localPart);
+addAttribute(doc, "name", temp, methodElement);
+// we need first character capitalized version at times,
+// to preserve the CamelCase name generation
+addAttribute(doc,"firstCharCapitalizedName",
+JavaUtils.capitalizeFirstChar(temp), methodElement);
 } else {
-addAttribute(doc, "name", 
JavaUtils.xmlNameToJavaIdentifier(localPart), methodElement);
+String temp =  JavaUtils.xmlNameToJavaIdentifier(localPart);
+addAttribute(doc, "name", temp , methodElement);
+// we need first character capitalized version at times,
+// to preserve the CamelCase name generation
+addAttribute(doc,"firstCharCapitalizedName",
+JavaUtils.capitalizeFirstChar(temp), methodElement);
 }
-
 addAttribute(doc, "originalName", localPart, methodElement);
 addAttribute(doc, "namespace", 
axisOperation.getName().getNamespaceURI(), methodElement);
 addAttribute(doc, "style", (String) getBindingPropertyFromOperation(

Modified: 
axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/template/java/CallbackHandlerTemplate.xsl
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/template/java/CallbackHandlerTemplate.xsl?rev=1065907&r1=1065906&r2=1065907&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/template/java/CallbackHandlerTemplate.xsl
 (original)
+++ 
axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/template/java/CallbackHandlerTemplate.xsl
 Tue Feb  1 04:50:46 2011
@@ -79,7 +79,7 @@
 * auto generated Axis2 call back method for  method
 * override this method for handling normal response from 
 operation
 */
-   public void receiveResult(
+   public void receiveResult(
 
 
   
result
@@ -99,7 +99,7 @@
* auto generated Axis2 Error handler
* override this method for handling error response from 
 operation
*/
-public void receiveError(java.lang.Exception e) {
+public void receiveError(java.lang.Exception e) {
 }
 
 

Modified: 
axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl?rev=1065907&r1=1065906&r2=1065907&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/codegen/src/org/apache/axis2/wsdl/template/java/InterfaceImplementationTemplate.xsl
 (original)
+++ 
axis/axis

svn commit: r1066001 - /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/util/MessageContextBuilder.java

2011-02-01 Thread ruwan
Author: ruwan
Date: Tue Feb  1 11:27:06 2011
New Revision: 1066001

URL: http://svn.apache.org/viewvc?rev=1066001&view=rev
Log:
Fixing the issue AXIS2-3296, and minor reformatting + adding docs

Modified:

axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/util/MessageContextBuilder.java

Modified: 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/util/MessageContextBuilder.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/util/MessageContextBuilder.java?rev=1066001&r1=1066000&r2=1066001&view=diff
==
--- 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/util/MessageContextBuilder.java
 (original)
+++ 
axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/util/MessageContextBuilder.java
 Tue Feb  1 11:27:06 2011
@@ -22,7 +22,6 @@ package org.apache.axis2.util;
 import org.apache.axiom.om.OMAbstractFactory;
 import org.apache.axiom.om.OMElement;
 import org.apache.axiom.om.OMNamespace;
-import org.apache.axiom.soap.SOAP11Constants;
 import org.apache.axiom.soap.SOAP12Constants;
 import org.apache.axiom.soap.SOAPConstants;
 import org.apache.axiom.soap.SOAPEnvelope;
@@ -68,6 +67,10 @@ public class MessageContextBuilder {
 /**
  * Creates a new 'response' message context based on a 'request' message 
context
  * Only deals with properties/fields that are the same for both 'normal' 
and fault responses.
+ *
+ * @param inMessageContext context for which the response will be created
+ * @return response message context for the given in message context
+ * @throws org.apache.axis2.AxisFault error in creating the response 
message context
  */
 private static MessageContext createResponseMessageContext(MessageContext 
inMessageContext)
 throws AxisFault {
@@ -116,6 +119,10 @@ public class MessageContextBuilder {
 
 /**
  * Creates a MessageContext for use with a non-fault response based on an 
request MessageContext
+ *
+ * @param inMessageContext for the out message context to be created
+ * @return created out message context from the given in message context
+ * @throws org.apache.axis2.AxisFault error in creating the out message 
context
  */
 public static MessageContext createOutMessageContext(MessageContext 
inMessageContext)
 throws AxisFault {
@@ -485,6 +492,7 @@ public class MessageContextBuilder {
log.debug("faultCode != null");
}
 fault.setCode((SOAPFaultCode) faultCode);
+soapFaultCode = ((SOAPFaultCode) faultCode).getText();
 } else if (soapException != null) {
if(log.isDebugEnabled()){
log.debug("soapException != null");
@@ -542,6 +550,7 @@ public class MessageContextBuilder {
}
 if (axisFault.getFaultCodeElement() != null) {
 fault.setCode(axisFault.getFaultCodeElement());
+soapFaultCode = axisFault.getFaultCodeElement().getText(); 
  
 } else {
 QName faultCodeQName = axisFault.getFaultCode();
 if (faultCodeQName != null) {
@@ -770,7 +779,7 @@ public class MessageContextBuilder {
 if(log.isDebugEnabled()){
 log.debug("stripping old prefix and adding the new one - " 
+ prefix);
 }
-// Strip the orginal prefix 
+// Strip the original prefix
 int index = soapFaultCode.indexOf(':') + 1;
 soapFaultCode = soapFaultCode.substring(index);
 // Use the correct prefix for the outgoing soap envelope 
namespace 
@@ -782,15 +791,14 @@ public class MessageContextBuilder {
 }
 return soapFaultCode;
 }
-
-
-
 
 /**
  * By the time the exception comes here it can be wrapped by so many 
levels. This will crip down
  * to the root cause and get the initial error depending on the property
  *
- * @param e
+ * @param e exception to get the string representation
+ * @param context current message context for which the exception occurred
+ * @return generated fault reason as a string
  */
 private static String getFaultReasonFromException(Throwable e, 
MessageContext context) {
 Throwable throwable = e;
@@ -806,11 +814,4 @@ public class MessageContextBuilder {
 return throwable.getMessage();
 }
 
-private static String getSenderFaultCode(OMNamespace soapNamespace) {
-return 
SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI.equals(soapNamespace.getNamespaceURI())
-? SOAP12Constants.SOAP_DEFAULT_NAMESPACE_PREFIX + ":"
-+ SOAP12Constants.FAULT_CODE_SENDER
-: SOAP12Constants.SOAP_DEFAULT_NAMESPACE_PREFIX + ":"
-+ SOAP11Constants.FAULT_CODE_SENDER;
-}
 }




svn commit: r1068393 - in /axis/axis2/java/core/trunk: ./ modules/adb-codegen/ modules/adb/ modules/addressing/ modules/clustering/ modules/codegen/ modules/corba/ modules/fastinfoset/ modules/integra

2011-02-08 Thread ruwan
Author: ruwan
Date: Tue Feb  8 13:54:48 2011
New Revision: 1068393

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

Modified:
axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml
axis/axis2/java/core/trunk/modules/adb/pom.xml
axis/axis2/java/core/trunk/modules/addressing/pom.xml
axis/axis2/java/core/trunk/modules/clustering/pom.xml
axis/axis2/java/core/trunk/modules/codegen/pom.xml
axis/axis2/java/core/trunk/modules/corba/pom.xml
axis/axis2/java/core/trunk/modules/fastinfoset/pom.xml
axis/axis2/java/core/trunk/modules/integration/pom.xml
axis/axis2/java/core/trunk/modules/java2wsdl/pom.xml
axis/axis2/java/core/trunk/modules/jaxbri/pom.xml
axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml
axis/axis2/java/core/trunk/modules/jaxws-mar/pom.xml
axis/axis2/java/core/trunk/modules/jaxws/pom.xml
axis/axis2/java/core/trunk/modules/jibx/pom.xml
axis/axis2/java/core/trunk/modules/json/pom.xml
axis/axis2/java/core/trunk/modules/kernel/pom.xml
axis/axis2/java/core/trunk/modules/metadata/pom.xml
axis/axis2/java/core/trunk/modules/mex/pom.xml
axis/axis2/java/core/trunk/modules/mtompolicy-mar/pom.xml
axis/axis2/java/core/trunk/modules/mtompolicy/pom.xml
axis/axis2/java/core/trunk/modules/osgi/pom.xml
axis/axis2/java/core/trunk/modules/parent/pom.xml
axis/axis2/java/core/trunk/modules/ping/pom.xml
axis/axis2/java/core/trunk/modules/resource-bundle/pom.xml
axis/axis2/java/core/trunk/modules/saaj/pom.xml
axis/axis2/java/core/trunk/modules/samples/version/pom.xml
axis/axis2/java/core/trunk/modules/scripting/pom.xml
axis/axis2/java/core/trunk/modules/soapmonitor/module/pom.xml
axis/axis2/java/core/trunk/modules/soapmonitor/servlet/pom.xml
axis/axis2/java/core/trunk/modules/spring/pom.xml
axis/axis2/java/core/trunk/modules/testutils/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-aar-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-idea-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-java2wsdl-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-mar-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-repo-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/transport/http/pom.xml
axis/axis2/java/core/trunk/modules/transport/local/pom.xml
axis/axis2/java/core/trunk/modules/webapp/pom.xml
axis/axis2/java/core/trunk/modules/xmlbeans/pom.xml
axis/axis2/java/core/trunk/pom.xml

Modified: axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml?rev=1068393&r1=1068392&r2=1068393&view=diff
==
--- axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml Tue Feb  8 13:54:48 
2011
@@ -24,7 +24,7 @@
 
 org.apache.axis2
 axis2-parent
-SNAPSHOT
+1.6.0-SNAPSHOT
 ../parent/pom.xml
 
 axis2-adb-codegen

Modified: axis/axis2/java/core/trunk/modules/adb/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/adb/pom.xml?rev=1068393&r1=1068392&r2=1068393&view=diff
==
--- axis/axis2/java/core/trunk/modules/adb/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/adb/pom.xml Tue Feb  8 13:54:48 2011
@@ -24,7 +24,7 @@
 
 org.apache.axis2
 axis2-parent
-SNAPSHOT
+1.6.0-SNAPSHOT
 ../parent/pom.xml
 
 

Modified: axis/axis2/java/core/trunk/modules/addressing/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/addressing/pom.xml?rev=1068393&r1=1068392&r2=1068393&view=diff
==
--- axis/axis2/java/core/trunk/modules/addressing/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/addressing/pom.xml Tue Feb  8 13:54:48 
2011
@@ -24,7 +24,7 @@
 
 org.apache.axis2
 axis2-parent
-SNAPSHOT
+1.6.0-SNAPSHOT
 ../parent/pom.xml
 
 addressing

Modified: axis/axis2/java/core/trunk/modules/clustering/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/clustering/pom.xml?rev=1068393&r1=1068392&r2=1068393&view=diff
==
--- axis/axis2/

svn commit: r1068395 - in /axis/axis2/java/core/branches/1_6: ./ modules/adb-codegen/ modules/adb/ modules/addressing/ modules/clustering/ modules/codegen/ modules/corba/ modules/distribution/ modules

2011-02-08 Thread ruwan
Author: ruwan
Date: Tue Feb  8 13:56:42 2011
New Revision: 1068395

URL: http://svn.apache.org/viewvc?rev=1068395&view=rev
Log:
[maven-release-plugin]  copy for branch 1_6

Added:
axis/axis2/java/core/branches/1_6/   (props changed)
  - copied from r1068387, axis/axis2/java/core/trunk/
axis/axis2/java/core/branches/1_6/modules/adb-codegen/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml
axis/axis2/java/core/branches/1_6/modules/adb/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/adb/pom.xml
axis/axis2/java/core/branches/1_6/modules/addressing/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/addressing/pom.xml
axis/axis2/java/core/branches/1_6/modules/clustering/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/clustering/pom.xml
axis/axis2/java/core/branches/1_6/modules/codegen/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/codegen/pom.xml
axis/axis2/java/core/branches/1_6/modules/corba/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/corba/pom.xml
axis/axis2/java/core/branches/1_6/modules/distribution/pom.xml
  - copied unchanged from r1068390, 
axis/axis2/java/core/trunk/modules/distribution/pom.xml
axis/axis2/java/core/branches/1_6/modules/fastinfoset/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/fastinfoset/pom.xml
axis/axis2/java/core/branches/1_6/modules/integration/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/integration/pom.xml
axis/axis2/java/core/branches/1_6/modules/java2wsdl/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/java2wsdl/pom.xml
axis/axis2/java/core/branches/1_6/modules/jaxbri/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/jaxbri/pom.xml
axis/axis2/java/core/branches/1_6/modules/jaxws-integration/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml
axis/axis2/java/core/branches/1_6/modules/jaxws-mar/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/jaxws-mar/pom.xml
axis/axis2/java/core/branches/1_6/modules/jaxws/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/jaxws/pom.xml
axis/axis2/java/core/branches/1_6/modules/jibx/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/jibx/pom.xml
axis/axis2/java/core/branches/1_6/modules/json/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/json/pom.xml
axis/axis2/java/core/branches/1_6/modules/kernel/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/kernel/pom.xml
axis/axis2/java/core/branches/1_6/modules/metadata/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/metadata/pom.xml
axis/axis2/java/core/branches/1_6/modules/mex/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/mex/pom.xml
axis/axis2/java/core/branches/1_6/modules/mtompolicy-mar/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/mtompolicy-mar/pom.xml
axis/axis2/java/core/branches/1_6/modules/mtompolicy/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/mtompolicy/pom.xml
axis/axis2/java/core/branches/1_6/modules/osgi/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/osgi/pom.xml
axis/axis2/java/core/branches/1_6/modules/parent/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/parent/pom.xml
axis/axis2/java/core/branches/1_6/modules/ping/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/ping/pom.xml
axis/axis2/java/core/branches/1_6/modules/resource-bundle/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/resource-bundle/pom.xml
axis/axis2/java/core/branches/1_6/modules/saaj/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/saaj/pom.xml
axis/axis2/java/core/branches/1_6/modules/samples/version/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/samples/version/pom.xml
axis/axis2/java/core/branches/1_6/modules/scripting/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/scripting/pom.xml
axis/axis2/java/core/branches/1_6/modules/soapmonitor/module/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/trunk/modules/soapmonitor/module/pom.xml
axis/axis2/java/core/branches/1_6/modules/soapmonitor/servlet/pom.xml
  - copied unchanged from r1068393, 
axis/axis2/java/core/t

svn commit: r1068396 - in /axis/axis2/java/core/trunk: ./ modules/adb-codegen/ modules/adb/ modules/addressing/ modules/clustering/ modules/codegen/ modules/corba/ modules/fastinfoset/ modules/integra

2011-02-08 Thread ruwan
Author: ruwan
Date: Tue Feb  8 13:57:38 2011
New Revision: 1068396

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

Modified:
axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml
axis/axis2/java/core/trunk/modules/adb/pom.xml
axis/axis2/java/core/trunk/modules/addressing/pom.xml
axis/axis2/java/core/trunk/modules/clustering/pom.xml
axis/axis2/java/core/trunk/modules/codegen/pom.xml
axis/axis2/java/core/trunk/modules/corba/pom.xml
axis/axis2/java/core/trunk/modules/fastinfoset/pom.xml
axis/axis2/java/core/trunk/modules/integration/pom.xml
axis/axis2/java/core/trunk/modules/java2wsdl/pom.xml
axis/axis2/java/core/trunk/modules/jaxbri/pom.xml
axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml
axis/axis2/java/core/trunk/modules/jaxws-mar/pom.xml
axis/axis2/java/core/trunk/modules/jaxws/pom.xml
axis/axis2/java/core/trunk/modules/jibx/pom.xml
axis/axis2/java/core/trunk/modules/json/pom.xml
axis/axis2/java/core/trunk/modules/kernel/pom.xml
axis/axis2/java/core/trunk/modules/metadata/pom.xml
axis/axis2/java/core/trunk/modules/mex/pom.xml
axis/axis2/java/core/trunk/modules/mtompolicy-mar/pom.xml
axis/axis2/java/core/trunk/modules/mtompolicy/pom.xml
axis/axis2/java/core/trunk/modules/osgi/pom.xml
axis/axis2/java/core/trunk/modules/parent/pom.xml
axis/axis2/java/core/trunk/modules/ping/pom.xml
axis/axis2/java/core/trunk/modules/resource-bundle/pom.xml
axis/axis2/java/core/trunk/modules/saaj/pom.xml
axis/axis2/java/core/trunk/modules/samples/version/pom.xml
axis/axis2/java/core/trunk/modules/scripting/pom.xml
axis/axis2/java/core/trunk/modules/soapmonitor/module/pom.xml
axis/axis2/java/core/trunk/modules/soapmonitor/servlet/pom.xml
axis/axis2/java/core/trunk/modules/spring/pom.xml
axis/axis2/java/core/trunk/modules/testutils/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-aar-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-idea-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-java2wsdl-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-mar-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-repo-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/transport/http/pom.xml
axis/axis2/java/core/trunk/modules/transport/local/pom.xml
axis/axis2/java/core/trunk/modules/webapp/pom.xml
axis/axis2/java/core/trunk/modules/xmlbeans/pom.xml
axis/axis2/java/core/trunk/pom.xml

Modified: axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml?rev=1068396&r1=1068395&r2=1068396&view=diff
==
--- axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml Tue Feb  8 13:57:38 
2011
@@ -24,7 +24,7 @@
 
 org.apache.axis2
 axis2-parent
-1.6.0-SNAPSHOT
+SNAPSHOT
 ../parent/pom.xml
 
 axis2-adb-codegen

Modified: axis/axis2/java/core/trunk/modules/adb/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/adb/pom.xml?rev=1068396&r1=1068395&r2=1068396&view=diff
==
--- axis/axis2/java/core/trunk/modules/adb/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/adb/pom.xml Tue Feb  8 13:57:38 2011
@@ -24,7 +24,7 @@
 
 org.apache.axis2
 axis2-parent
-1.6.0-SNAPSHOT
+SNAPSHOT
 ../parent/pom.xml
 
 

Modified: axis/axis2/java/core/trunk/modules/addressing/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/addressing/pom.xml?rev=1068396&r1=1068395&r2=1068396&view=diff
==
--- axis/axis2/java/core/trunk/modules/addressing/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/addressing/pom.xml Tue Feb  8 13:57:38 
2011
@@ -24,7 +24,7 @@
 
 org.apache.axis2
 axis2-parent
-1.6.0-SNAPSHOT
+SNAPSHOT
 ../parent/pom.xml
 
 addressing

Modified: axis/axis2/java/core/trunk/modules/clustering/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/clustering/pom.xml?rev=1068396&r1=1068395&r2=1068396&view=diff
==
--- axis/axis2/

svn commit: r1068402 - /axis/axis2/java/core/branches/1_6/

2011-02-08 Thread ruwan
Author: ruwan
Date: Tue Feb  8 14:01:15 2011
New Revision: 1068402

URL: http://svn.apache.org/viewvc?rev=1068402&view=rev
Log:
removig the mistakenly created branch

Removed:
axis/axis2/java/core/branches/1_6/



svn commit: r1068404 - in /axis/axis2/java/core/trunk: ./ modules/adb-codegen/ modules/adb/ modules/addressing/ modules/clustering/ modules/codegen/ modules/corba/ modules/distribution/ modules/fastin

2011-02-08 Thread ruwan
Author: ruwan
Date: Tue Feb  8 14:04:16 2011
New Revision: 1068404

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

Modified:
axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml
axis/axis2/java/core/trunk/modules/adb/pom.xml
axis/axis2/java/core/trunk/modules/addressing/pom.xml
axis/axis2/java/core/trunk/modules/clustering/pom.xml
axis/axis2/java/core/trunk/modules/codegen/pom.xml
axis/axis2/java/core/trunk/modules/corba/pom.xml
axis/axis2/java/core/trunk/modules/distribution/pom.xml
axis/axis2/java/core/trunk/modules/fastinfoset/pom.xml
axis/axis2/java/core/trunk/modules/integration/pom.xml
axis/axis2/java/core/trunk/modules/java2wsdl/pom.xml
axis/axis2/java/core/trunk/modules/jaxbri/pom.xml
axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml
axis/axis2/java/core/trunk/modules/jaxws-mar/pom.xml
axis/axis2/java/core/trunk/modules/jaxws/pom.xml
axis/axis2/java/core/trunk/modules/jibx/pom.xml
axis/axis2/java/core/trunk/modules/json/pom.xml
axis/axis2/java/core/trunk/modules/kernel/pom.xml
axis/axis2/java/core/trunk/modules/metadata/pom.xml
axis/axis2/java/core/trunk/modules/mex/pom.xml
axis/axis2/java/core/trunk/modules/mtompolicy-mar/pom.xml
axis/axis2/java/core/trunk/modules/mtompolicy/pom.xml
axis/axis2/java/core/trunk/modules/osgi/pom.xml
axis/axis2/java/core/trunk/modules/parent/pom.xml
axis/axis2/java/core/trunk/modules/ping/pom.xml
axis/axis2/java/core/trunk/modules/resource-bundle/pom.xml
axis/axis2/java/core/trunk/modules/saaj/pom.xml
axis/axis2/java/core/trunk/modules/samples/version/pom.xml
axis/axis2/java/core/trunk/modules/scripting/pom.xml
axis/axis2/java/core/trunk/modules/soapmonitor/module/pom.xml
axis/axis2/java/core/trunk/modules/soapmonitor/servlet/pom.xml
axis/axis2/java/core/trunk/modules/spring/pom.xml
axis/axis2/java/core/trunk/modules/testutils/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-aar-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-idea-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-java2wsdl-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-mar-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-repo-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/transport/http/pom.xml
axis/axis2/java/core/trunk/modules/transport/local/pom.xml
axis/axis2/java/core/trunk/modules/webapp/pom.xml
axis/axis2/java/core/trunk/modules/xmlbeans/pom.xml
axis/axis2/java/core/trunk/pom.xml

Modified: axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml?rev=1068404&r1=1068403&r2=1068404&view=diff
==
--- axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml Tue Feb  8 14:04:16 
2011
@@ -24,7 +24,7 @@
 
 org.apache.axis2
 axis2-parent
-SNAPSHOT
+1.6.0-SNAPSHOT
 ../parent/pom.xml
 
 axis2-adb-codegen

Modified: axis/axis2/java/core/trunk/modules/adb/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/adb/pom.xml?rev=1068404&r1=1068403&r2=1068404&view=diff
==
--- axis/axis2/java/core/trunk/modules/adb/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/adb/pom.xml Tue Feb  8 14:04:16 2011
@@ -24,7 +24,7 @@
 
 org.apache.axis2
 axis2-parent
-SNAPSHOT
+1.6.0-SNAPSHOT
 ../parent/pom.xml
 
 

Modified: axis/axis2/java/core/trunk/modules/addressing/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/addressing/pom.xml?rev=1068404&r1=1068403&r2=1068404&view=diff
==
--- axis/axis2/java/core/trunk/modules/addressing/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/addressing/pom.xml Tue Feb  8 14:04:16 
2011
@@ -24,7 +24,7 @@
 
 org.apache.axis2
 axis2-parent
-SNAPSHOT
+1.6.0-SNAPSHOT
 ../parent/pom.xml
 
 addressing

Modified: axis/axis2/java/core/trunk/modules/clustering/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/clustering/pom.xml?rev=1068404&r1=1068403&r2=1068404&view=diff
===

svn commit: r1068405 - in /axis/axis2/java/core/branches/1_6: ./ modules/adb-codegen/ modules/adb/ modules/addressing/ modules/clustering/ modules/codegen/ modules/corba/ modules/distribution/ modules

2011-02-08 Thread ruwan
Author: ruwan
Date: Tue Feb  8 14:06:09 2011
New Revision: 1068405

URL: http://svn.apache.org/viewvc?rev=1068405&view=rev
Log:
[maven-release-plugin]  copy for branch 1_6

Added:
axis/axis2/java/core/branches/1_6/   (props changed)
  - copied from r1068387, axis/axis2/java/core/trunk/
axis/axis2/java/core/branches/1_6/modules/adb-codegen/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml
axis/axis2/java/core/branches/1_6/modules/adb/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/adb/pom.xml
axis/axis2/java/core/branches/1_6/modules/addressing/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/addressing/pom.xml
axis/axis2/java/core/branches/1_6/modules/clustering/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/clustering/pom.xml
axis/axis2/java/core/branches/1_6/modules/codegen/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/codegen/pom.xml
axis/axis2/java/core/branches/1_6/modules/corba/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/corba/pom.xml
axis/axis2/java/core/branches/1_6/modules/distribution/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/distribution/pom.xml
axis/axis2/java/core/branches/1_6/modules/fastinfoset/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/fastinfoset/pom.xml
axis/axis2/java/core/branches/1_6/modules/integration/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/integration/pom.xml
axis/axis2/java/core/branches/1_6/modules/java2wsdl/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/java2wsdl/pom.xml
axis/axis2/java/core/branches/1_6/modules/jaxbri/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/jaxbri/pom.xml
axis/axis2/java/core/branches/1_6/modules/jaxws-integration/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml
axis/axis2/java/core/branches/1_6/modules/jaxws-mar/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/jaxws-mar/pom.xml
axis/axis2/java/core/branches/1_6/modules/jaxws/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/jaxws/pom.xml
axis/axis2/java/core/branches/1_6/modules/jibx/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/jibx/pom.xml
axis/axis2/java/core/branches/1_6/modules/json/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/json/pom.xml
axis/axis2/java/core/branches/1_6/modules/kernel/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/kernel/pom.xml
axis/axis2/java/core/branches/1_6/modules/metadata/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/metadata/pom.xml
axis/axis2/java/core/branches/1_6/modules/mex/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/mex/pom.xml
axis/axis2/java/core/branches/1_6/modules/mtompolicy-mar/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/mtompolicy-mar/pom.xml
axis/axis2/java/core/branches/1_6/modules/mtompolicy/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/mtompolicy/pom.xml
axis/axis2/java/core/branches/1_6/modules/osgi/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/osgi/pom.xml
axis/axis2/java/core/branches/1_6/modules/parent/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/parent/pom.xml
axis/axis2/java/core/branches/1_6/modules/ping/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/ping/pom.xml
axis/axis2/java/core/branches/1_6/modules/resource-bundle/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/resource-bundle/pom.xml
axis/axis2/java/core/branches/1_6/modules/saaj/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/saaj/pom.xml
axis/axis2/java/core/branches/1_6/modules/samples/version/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/samples/version/pom.xml
axis/axis2/java/core/branches/1_6/modules/scripting/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/scripting/pom.xml
axis/axis2/java/core/branches/1_6/modules/soapmonitor/module/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/trunk/modules/soapmonitor/module/pom.xml
axis/axis2/java/core/branches/1_6/modules/soapmonitor/servlet/pom.xml
  - copied unchanged from r1068404, 
axis/axis2/java/core/t

svn commit: r1068406 - in /axis/axis2/java/core/trunk: ./ modules/adb-codegen/ modules/adb/ modules/addressing/ modules/clustering/ modules/codegen/ modules/corba/ modules/distribution/ modules/fastin

2011-02-08 Thread ruwan
Author: ruwan
Date: Tue Feb  8 14:07:02 2011
New Revision: 1068406

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

Modified:
axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml
axis/axis2/java/core/trunk/modules/adb/pom.xml
axis/axis2/java/core/trunk/modules/addressing/pom.xml
axis/axis2/java/core/trunk/modules/clustering/pom.xml
axis/axis2/java/core/trunk/modules/codegen/pom.xml
axis/axis2/java/core/trunk/modules/corba/pom.xml
axis/axis2/java/core/trunk/modules/distribution/pom.xml
axis/axis2/java/core/trunk/modules/fastinfoset/pom.xml
axis/axis2/java/core/trunk/modules/integration/pom.xml
axis/axis2/java/core/trunk/modules/java2wsdl/pom.xml
axis/axis2/java/core/trunk/modules/jaxbri/pom.xml
axis/axis2/java/core/trunk/modules/jaxws-integration/pom.xml
axis/axis2/java/core/trunk/modules/jaxws-mar/pom.xml
axis/axis2/java/core/trunk/modules/jaxws/pom.xml
axis/axis2/java/core/trunk/modules/jibx/pom.xml
axis/axis2/java/core/trunk/modules/json/pom.xml
axis/axis2/java/core/trunk/modules/kernel/pom.xml
axis/axis2/java/core/trunk/modules/metadata/pom.xml
axis/axis2/java/core/trunk/modules/mex/pom.xml
axis/axis2/java/core/trunk/modules/mtompolicy-mar/pom.xml
axis/axis2/java/core/trunk/modules/mtompolicy/pom.xml
axis/axis2/java/core/trunk/modules/osgi/pom.xml
axis/axis2/java/core/trunk/modules/parent/pom.xml
axis/axis2/java/core/trunk/modules/ping/pom.xml
axis/axis2/java/core/trunk/modules/resource-bundle/pom.xml
axis/axis2/java/core/trunk/modules/saaj/pom.xml
axis/axis2/java/core/trunk/modules/samples/version/pom.xml
axis/axis2/java/core/trunk/modules/scripting/pom.xml
axis/axis2/java/core/trunk/modules/soapmonitor/module/pom.xml
axis/axis2/java/core/trunk/modules/soapmonitor/servlet/pom.xml
axis/axis2/java/core/trunk/modules/spring/pom.xml
axis/axis2/java/core/trunk/modules/testutils/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-aar-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-codegen-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-eclipse-service-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-idea-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-java2wsdl-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-mar-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-repo-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/tool/axis2-wsdl2code-maven-plugin/pom.xml
axis/axis2/java/core/trunk/modules/transport/http/pom.xml
axis/axis2/java/core/trunk/modules/transport/local/pom.xml
axis/axis2/java/core/trunk/modules/webapp/pom.xml
axis/axis2/java/core/trunk/modules/xmlbeans/pom.xml
axis/axis2/java/core/trunk/pom.xml

Modified: axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml?rev=1068406&r1=1068405&r2=1068406&view=diff
==
--- axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/adb-codegen/pom.xml Tue Feb  8 14:07:02 
2011
@@ -24,7 +24,7 @@
 
 org.apache.axis2
 axis2-parent
-1.6.0-SNAPSHOT
+SNAPSHOT
 ../parent/pom.xml
 
 axis2-adb-codegen

Modified: axis/axis2/java/core/trunk/modules/adb/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/adb/pom.xml?rev=1068406&r1=1068405&r2=1068406&view=diff
==
--- axis/axis2/java/core/trunk/modules/adb/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/adb/pom.xml Tue Feb  8 14:07:02 2011
@@ -24,7 +24,7 @@
 
 org.apache.axis2
 axis2-parent
-1.6.0-SNAPSHOT
+SNAPSHOT
 ../parent/pom.xml
 
 

Modified: axis/axis2/java/core/trunk/modules/addressing/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/addressing/pom.xml?rev=1068406&r1=1068405&r2=1068406&view=diff
==
--- axis/axis2/java/core/trunk/modules/addressing/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/addressing/pom.xml Tue Feb  8 14:07:02 
2011
@@ -24,7 +24,7 @@
 
 org.apache.axis2
 axis2-parent
-1.6.0-SNAPSHOT
+SNAPSHOT
 ../parent/pom.xml
 
 addressing

Modified: axis/axis2/java/core/trunk/modules/clustering/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/clustering/pom.xml?rev=1068406&r1=1068405&r2=1068406&view=diff
===

svn commit: r1068753 - /axis/axis2/java/core/branches/1_6/modules/parent/pom.xml

2011-02-08 Thread ruwan
Author: ruwan
Date: Wed Feb  9 04:08:04 2011
New Revision: 1068753

URL: http://svn.apache.org/viewvc?rev=1068753&view=rev
Log:
Fixing the neethi version

Modified:
axis/axis2/java/core/branches/1_6/modules/parent/pom.xml

Modified: axis/axis2/java/core/branches/1_6/modules/parent/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/parent/pom.xml?rev=1068753&r1=1068752&r2=1068753&view=diff
==
--- axis/axis2/java/core/branches/1_6/modules/parent/pom.xml (original)
+++ axis/axis2/java/core/branches/1_6/modules/parent/pom.xml Wed Feb  9 
04:08:04 2011
@@ -68,7 +68,7 @@
 

 1.2.12-SNAPSHOT
-3.0.0-SNAPSHOT
+2.0.4
 1.0-SNAPSHOT
 





svn commit: r1068781 - /axis/axis2/java/core/branches/1_6/modules/samples/jaxws-addressbook/pom.xml

2011-02-09 Thread ruwan
Author: ruwan
Date: Wed Feb  9 08:16:14 2011
New Revision: 1068781

URL: http://svn.apache.org/viewvc?rev=1068781&view=rev
Log:
Fixing the missing version changes

Modified:
axis/axis2/java/core/branches/1_6/modules/samples/jaxws-addressbook/pom.xml

Modified: 
axis/axis2/java/core/branches/1_6/modules/samples/jaxws-addressbook/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/samples/jaxws-addressbook/pom.xml?rev=1068781&r1=1068780&r2=1068781&view=diff
==
--- axis/axis2/java/core/branches/1_6/modules/samples/jaxws-addressbook/pom.xml 
(original)
+++ axis/axis2/java/core/branches/1_6/modules/samples/jaxws-addressbook/pom.xml 
Wed Feb  9 08:16:14 2011
@@ -127,7 +127,7 @@
 
 org.apache.axis2
 axis2-jaxws
-SNAPSHOT
+1.6.0-SNAPSHOT
 
 
 




svn commit: r1068785 - /axis/axis2/java/core/branches/1_6/modules/samples/book/pom.xml

2011-02-09 Thread ruwan
Author: ruwan
Date: Wed Feb  9 08:22:25 2011
New Revision: 1068785

URL: http://svn.apache.org/viewvc?rev=1068785&view=rev
Log:
fixing the versions

Modified:
axis/axis2/java/core/branches/1_6/modules/samples/book/pom.xml

Modified: axis/axis2/java/core/branches/1_6/modules/samples/book/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/samples/book/pom.xml?rev=1068785&r1=1068784&r2=1068785&view=diff
==
--- axis/axis2/java/core/branches/1_6/modules/samples/book/pom.xml (original)
+++ axis/axis2/java/core/branches/1_6/modules/samples/book/pom.xml Wed Feb  9 
08:22:25 2011
@@ -37,27 +37,27 @@
 
 org.apache.axis2
 axis2-kernel
-SNAPSHOT
+1.6.0-SNAPSHOT
 
 
 org.apache.axis2
 axis2-codegen
-SNAPSHOT
+1.6.0-SNAPSHOT
 
 
 org.apache.axis2
 axis2-adb
-SNAPSHOT
+1.6.0-SNAPSHOT
 
 
 org.apache.ws.commons.axiom
 axiom-api
-SNAPSHOT
+1.2.12-SNAPSHOT
 
 
 org.apache.ws.commons.axiom
 axiom-impl
-SNAPSHOT
+1.2.12-SNAPSHOT
 
 
 org.apache.ws.commons.schema
@@ -67,7 +67,7 @@
 
 org.apache.neethi
 neethi
-SNAPSHOT
+2.0.4
 
 
 commons-logging
@@ -112,12 +112,12 @@

org.apache.axis2
axis2-transport-http
-   SNAPSHOT
+   1.6.0-SNAPSHOT


org.apache.axis2
axis2-transport-local
-   SNAPSHOT
+   1.6.0-SNAPSHOT

 





svn commit: r1068788 - in /axis/axis2/java/core/branches/1_6/modules: all/ rmi/ samples/book/ samples/java_first_jaxws/ samples/jaxws-addressbook/ samples/jaxws-calculator/ samples/jaxws-interop/ samp

2011-02-09 Thread ruwan
Author: ruwan
Date: Wed Feb  9 08:29:49 2011
New Revision: 1068788

URL: http://svn.apache.org/viewvc?rev=1068788&view=rev
Log:
fixing the versions on the branch

Modified:
axis/axis2/java/core/branches/1_6/modules/all/pom.xml
axis/axis2/java/core/branches/1_6/modules/rmi/pom.xml
axis/axis2/java/core/branches/1_6/modules/samples/book/pom.xml
axis/axis2/java/core/branches/1_6/modules/samples/java_first_jaxws/pom.xml
axis/axis2/java/core/branches/1_6/modules/samples/jaxws-addressbook/pom.xml
axis/axis2/java/core/branches/1_6/modules/samples/jaxws-calculator/pom.xml
axis/axis2/java/core/branches/1_6/modules/samples/jaxws-interop/pom.xml
axis/axis2/java/core/branches/1_6/modules/samples/jaxws-samples/pom.xml
axis/axis2/java/core/branches/1_6/modules/samples/jaxws-version/pom.xml

axis/axis2/java/core/branches/1_6/modules/tool/axis2-java2wsdl-maven-plugin/src/test/test1/pom.xml

axis/axis2/java/core/branches/1_6/modules/tool/axis2-wsdl2code-maven-plugin/src/test/test1/pom.xml

Modified: axis/axis2/java/core/branches/1_6/modules/all/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/all/pom.xml?rev=1068788&r1=1068787&r2=1068788&view=diff
==
--- axis/axis2/java/core/branches/1_6/modules/all/pom.xml (original)
+++ axis/axis2/java/core/branches/1_6/modules/all/pom.xml Wed Feb  9 08:29:49 
2011
@@ -5,7 +5,7 @@
 
 org.apache.axis2
 axis2-parent
-SNAPSHOT
+1.6.0-SNAPSHOT
 ../parent/pom.xml
 
 

Modified: axis/axis2/java/core/branches/1_6/modules/rmi/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/rmi/pom.xml?rev=1068788&r1=1068787&r2=1068788&view=diff
==
--- axis/axis2/java/core/branches/1_6/modules/rmi/pom.xml (original)
+++ axis/axis2/java/core/branches/1_6/modules/rmi/pom.xml Wed Feb  9 08:29:49 
2011
@@ -27,7 +27,7 @@
 
 org.apache.axis2
 axis2-parent
-SNAPSHOT
+1.6.0-SNAPSHOT
 ../parent/pom.xml
 
 

Modified: axis/axis2/java/core/branches/1_6/modules/samples/book/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/samples/book/pom.xml?rev=1068788&r1=1068787&r2=1068788&view=diff
==
--- axis/axis2/java/core/branches/1_6/modules/samples/book/pom.xml (original)
+++ axis/axis2/java/core/branches/1_6/modules/samples/book/pom.xml Wed Feb  9 
08:29:49 2011
@@ -62,7 +62,7 @@
 
 org.apache.ws.commons.schema
 XmlSchema
-SNAPSHOT
+1.4.7
 
 
 org.apache.neethi

Modified: 
axis/axis2/java/core/branches/1_6/modules/samples/java_first_jaxws/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/samples/java_first_jaxws/pom.xml?rev=1068788&r1=1068787&r2=1068788&view=diff
==
--- axis/axis2/java/core/branches/1_6/modules/samples/java_first_jaxws/pom.xml 
(original)
+++ axis/axis2/java/core/branches/1_6/modules/samples/java_first_jaxws/pom.xml 
Wed Feb  9 08:29:49 2011
@@ -38,42 +38,42 @@
 
 org.apache.axis2
 axis2-kernel
-SNAPSHOT
+1.6.0-SNAPSHOT
 
 
 org.apache.axis2
 axis2-jaxws
-SNAPSHOT
+1.6.0-SNAPSHOT
 
 
 org.apache.axis2
 axis2-codegen
-SNAPSHOT
+1.6.0-SNAPSHOT
 
 
 org.apache.axis2
 axis2-adb
-SNAPSHOT
+1.6.0-SNAPSHOT
 
 
 org.apache.ws.commons.axiom
 axiom-api
-SNAPSHOT
+1.2.12-SNAPSHOT
 
 
 org.apache.ws.commons.axiom
 axiom-impl
-SNAPSHOT
+1.2.12-SNAPSHOT
 
 
 org.apache.ws.commons.schema
 XmlSchema
-SNAPSHOT
+1.4.7
 
 
 org.apache.neethi
 neethi
-SNAPSHOT
+2.0.4
 
 
 commons-logging

Modified: 
axis/axis2/java/core/branches/1_6/modules/samples/jaxws-addressbook/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/samples/jaxws-addressbook/pom.xml?rev=1068788&r1=1068787&r2=1068788&view=diff
==
--- axis/axis2/java/core/branches/1_6/modules/samples/jaxws-addressbook/pom.xml 
(original)
+++ axis/axis2/java/core/branches/1_6/modules/samples/jaxws-addressbook/pom.xml 
Wed Feb 

svn commit: r1069263 - /axis/axis2/java/core/trunk/modules/parent/pom.xml

2011-02-10 Thread ruwan
Author: ruwan
Date: Thu Feb 10 08:10:21 2011
New Revision: 1069263

URL: http://svn.apache.org/viewvc?rev=1069263&view=rev
Log:
falling back to neethi 2.0.4 for few days to get the build working temporarily 
till we refactor Axis2 to tally with the changes on the neethi trunk and come 
back to the neethi trunk

Modified:
axis/axis2/java/core/trunk/modules/parent/pom.xml

Modified: axis/axis2/java/core/trunk/modules/parent/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/parent/pom.xml?rev=1069263&r1=1069262&r2=1069263&view=diff
==
--- axis/axis2/java/core/trunk/modules/parent/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/parent/pom.xml Thu Feb 10 08:10:21 2011
@@ -68,7 +68,8 @@
 

 1.2.12-SNAPSHOT
-3.0.0-SNAPSHOT
+
+2.0.4
 1.0-SNAPSHOT
 





svn commit: r1069278 - /axis/axis2/java/sandesha/trunk/pom.xml

2011-02-10 Thread ruwan
Author: ruwan
Date: Thu Feb 10 08:49:38 2011
New Revision: 1069278

URL: http://svn.apache.org/viewvc?rev=1069278&view=rev
Log:
Temporary fix to the neethi trunk changes which caused a compilation failure 
and switch back to the neethi trunk ASA the compatibility issues are fixed

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

Modified: axis/axis2/java/sandesha/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/pom.xml?rev=1069278&r1=1069277&r2=1069278&view=diff
==
--- axis/axis2/java/sandesha/trunk/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/pom.xml Thu Feb 10 08:49:38 2011
@@ -427,7 +427,8 @@
 SNAPSHOT
 SNAPSHOT
 1.2.12-SNAPSHOT
-3.0.0-SNAPSHOT
+
+2.0.4
 1.1.1
 3.8.2
 1.2.15




svn commit: r1069658 - in /axis/axis2/java/core/trunk: modules/parent/pom.xml pom.xml

2011-02-10 Thread ruwan
Author: ruwan
Date: Fri Feb 11 01:36:59 2011
New Revision: 1069658

URL: http://svn.apache.org/viewvc?rev=1069658&view=rev
Log:
Adding myself to the developers

Modified:
axis/axis2/java/core/trunk/modules/parent/pom.xml
axis/axis2/java/core/trunk/pom.xml

Modified: axis/axis2/java/core/trunk/modules/parent/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/parent/pom.xml?rev=1069658&r1=1069657&r2=1069658&view=diff
==
--- axis/axis2/java/core/trunk/modules/parent/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/parent/pom.xml Fri Feb 11 01:36:59 2011
@@ -377,6 +377,12 @@
 veithen AT apache.org
 http://www.linkedin.com/in/aveithen
 
+    
+    Ruwan Linton
+    ruwan
+    ruwan AT apache.org
+http://www.linkedin.com/in/ruwanlinton
+
 
 
 

Modified: axis/axis2/java/core/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/pom.xml?rev=1069658&r1=1069657&r2=1069658&view=diff
==
--- axis/axis2/java/core/trunk/pom.xml (original)
+++ axis/axis2/java/core/trunk/pom.xml Fri Feb 11 01:36:59 2011
@@ -482,6 +482,12 @@
 veithen AT apache.org
 http://www.linkedin.com/in/aveithen
 
+
+    Ruwan Linton
+    ruwan
+ruwan AT apache.org
+http://www.linkedin.com/in/ruwanlinton
+
 
 
 




svn commit: r1070389 - in /axis/axis2/java/core/branches/1_6: modules/parent/pom.xml pom.xml

2011-02-13 Thread ruwan
Author: ruwan
Date: Mon Feb 14 05:05:00 2011
New Revision: 1070389

URL: http://svn.apache.org/viewvc?rev=1070389&view=rev
Log:
adding myself as a developer

Modified:
axis/axis2/java/core/branches/1_6/modules/parent/pom.xml
axis/axis2/java/core/branches/1_6/pom.xml

Modified: axis/axis2/java/core/branches/1_6/modules/parent/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/parent/pom.xml?rev=1070389&r1=1070388&r2=1070389&view=diff
==
--- axis/axis2/java/core/branches/1_6/modules/parent/pom.xml (original)
+++ axis/axis2/java/core/branches/1_6/modules/parent/pom.xml Mon Feb 14 
05:05:00 2011
@@ -376,6 +376,12 @@
 veithen AT apache.org
 http://www.linkedin.com/in/aveithen
 
+    
+    Ruwan Linton
+    ruwan
+    ruwan AT apache.org
+http://www.linkedin.com/in/ruwanlinton
+
 
 
 

Modified: axis/axis2/java/core/branches/1_6/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/pom.xml?rev=1070389&r1=1070388&r2=1070389&view=diff
==
--- axis/axis2/java/core/branches/1_6/pom.xml (original)
+++ axis/axis2/java/core/branches/1_6/pom.xml Mon Feb 14 05:05:00 2011
@@ -482,6 +482,12 @@
 veithen AT apache.org
 http://www.linkedin.com/in/aveithen
 
+
+    Ruwan Linton
+    ruwan
+ruwan AT apache.org
+http://www.linkedin.com/in/ruwanlinton
+
 
 
 




svn commit: r1071883 - in /axis/axis2/java/core/branches/1_6: modules/parent/pom.xml pom.xml

2011-02-17 Thread ruwan
Author: ruwan
Date: Fri Feb 18 04:35:52 2011
New Revision: 1071883

URL: http://svn.apache.org/viewvc?rev=1071883&view=rev
Log:
Fixing the apache root pom version 

Modified:
axis/axis2/java/core/branches/1_6/modules/parent/pom.xml
axis/axis2/java/core/branches/1_6/pom.xml

Modified: axis/axis2/java/core/branches/1_6/modules/parent/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/parent/pom.xml?rev=1071883&r1=1071882&r2=1071883&view=diff
==
--- axis/axis2/java/core/branches/1_6/modules/parent/pom.xml (original)
+++ axis/axis2/java/core/branches/1_6/modules/parent/pom.xml Fri Feb 18 
04:35:52 2011
@@ -23,7 +23,7 @@
 
 org.apache
 apache
-7
+8
 
 4.0.0
 org.apache.axis2

Modified: axis/axis2/java/core/branches/1_6/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/pom.xml?rev=1071883&r1=1071882&r2=1071883&view=diff
==
--- axis/axis2/java/core/branches/1_6/pom.xml (original)
+++ axis/axis2/java/core/branches/1_6/pom.xml Fri Feb 18 04:35:52 2011
@@ -23,7 +23,7 @@
 
 org.apache
 apache
-7
+8
 
 4.0.0
 org.apache.axis2




svn commit: r1071887 - /axis/axis2/java/core/branches/1_6/modules/parent/pom.xml

2011-02-17 Thread ruwan
Author: ruwan
Date: Fri Feb 18 05:05:27 2011
New Revision: 1071887

URL: http://svn.apache.org/viewvc?rev=1071887&view=rev
Log:
fixing the woden version

Modified:
axis/axis2/java/core/branches/1_6/modules/parent/pom.xml

Modified: axis/axis2/java/core/branches/1_6/modules/parent/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/parent/pom.xml?rev=1071887&r1=1071886&r2=1071887&view=diff
==
--- axis/axis2/java/core/branches/1_6/modules/parent/pom.xml (original)
+++ axis/axis2/java/core/branches/1_6/modules/parent/pom.xml Fri Feb 18 
05:05:27 2011
@@ -66,11 +66,8 @@
 http://issues.apache.org/jira/browse/AXIS2
 
 
-   
 2.0.4
-1.0-SNAPSHOT
-
-   
+1.0M9
 1.2.11
 1.4.7
 1.7.0




svn commit: r1072317 - /axis/axis2/java/core/branches/1_6/release-notes.html

2011-02-19 Thread ruwan
Author: ruwan
Date: Sat Feb 19 12:07:44 2011
New Revision: 1072317

URL: http://svn.apache.org/viewvc?rev=1072317&view=rev
Log:
fixing the release notes for the 1.6 release

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

Modified: axis/axis2/java/core/branches/1_6/release-notes.html
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/release-notes.html?rev=1072317&r1=1072316&r2=1072317&view=diff
==
--- axis/axis2/java/core/branches/1_6/release-notes.html (original)
+++ axis/axis2/java/core/branches/1_6/release-notes.html Sat Feb 19 12:07:44 
2011
@@ -28,7 +28,7 @@
 
 @TODAY@
 
-Just over 8 months since the 1.3 release, we are very proud to
+Just over one and half years since the 1.5 release, we are very proud to
 announce the release of Apache Axis2 version @axisVersion@.
 
 Downloads are available at:
@@ -45,19 +45,14 @@ WS-Trust (Apache Rahas), WS-Reliable Mes
 WS-Eventing (Apache Savan) will be available soon after the Apache Axis2
 @axisVersion@ release. Please see these projects' own sites for further 
information.
 
-Major Changes Since 1.3:
-- Support for JAXWS and JSR 181 Annotations
-- Experimental Corba Support
-- Fixed tons of small and not-so-small bugs (See list below)
-
 Known Issues and Limitations in @axisVersion@ Release:
 - Please see JIRA
 
 We are striving for a simple and happy first time user experience as well as a
 satisfying experienced user experience with this release. We welcome any
 and all feedback at:
-axis-u...@ws.apache.org (please include "[axis2]" in the subject)
-axis-...@ws.apache.org (please include "[axis2]" in the subject)
+java-u...@axis.apache.org (please include "[axis2]" in the subject)
+java-...@axis.apache.org (please include "[axis2]" in the subject)
 http://issues.apache.org/jira/browse/AXIS2
 
 Thank you for your interest in Apache Axis2!
@@ -115,479 +110,9 @@ Tools
- Maven2 Plugins
- Web application for administering Apache Axis2

-Bugs marked as Resolved/Fixed after 1.3 Release:
-AXIS2-3757 Miss behaviour in adding handlers to the phase when the handler 
has after attribute
-AXIS2-3758 REST GET invocations fail with httpLocations of the form 
foo/{name} when more than one parameter is present
-AXIS2-3759 JAXWS: Out Of Memory Issues With JAXBContext
-AXIS2-3760 legal/backport-util-concurrent-LICENSE.txt is out of date
-AXIS2-3761 Generated ?wsdl2 docs are invalid when a service has more than 
1 transport enabled
-AXIS2-3762 Generated ?wsdl2 docs do not contain httpLocation for 
HttpBinding hence codegen for httpBinding will not work
-AXIS2-3763 Invalid soap fault
-AXIS2-3764 Attribute containing all upper case characters not included in 
response
-AXIS2-3765 [REST support] when using POST with x-www-form-urlencoded data 
aren't decode from url encoded
-AXIS2-3766 File setLastModified() in deployment code causes problems
-AXIS2-3767 Store UnmarshalInfo instances on AxisOperation instead of 
AxisService
-AXIS2-3768 org.apache.axis2.AxisFault: Connection reset - connections are 
not closing for long time
-AXIS2-3769 Use actaul message to determine the outbound wsa action
-AXIS2-3770 Wrong JAX-WS handler-chain execution
-AXIS2-3771 Rampart has dependancies to classes which was in mex-impl
-AXIS2-3772 JAXWS: CID for SWA Attachments does not comply with the WS-I 
Specification Syntax
-AXIS2-3773 Support for @MTOM Threshold.
-AXIS2-3774 ?wsdl2 does not show engaged security policies
-AXIS2-3775 ?wsdl2 shows endpoints for transports that are dissabled
-AXIS2-3776 Context class loader not restored correctly
-AXIS2-3777 Handling of exceptions raised by handlers in one-way invocations
-AXIS2-3778 Problems loading RequestWrapper/ResponseWrapper etc when JAXWS 
Service is deployed as a jar under servicejars
-AXIS2-3779 JAX-WS: JAXBUtils should not load classes from nested packages
-AXIS2-3780 Array of strings (or other simple types) are serialized as 
xsd:list
-AXIS2-3781 Shell scripts do not tolerate AXIS2_HOME and JAVA_HOME with 
spaces in paths
-AXIS2-3782 All outbound handlers are invoked when an inbound handler 
throws exception or returns false
-AXIS2-3783 CLONE -Classpath/Classloader issue with packaging
-AXIS2-3784 Log.debug statement causes NullPointerException
-AXIS2-3785 Can't use SSL with scope="transportsession"
-AXIS2-3786 Invalid SOAPMessage caching in SoapMessageContext
-AXIS2-3787 MessageContext.REFERENCE_PARAMETERS property not visible in 
handlers
-AXIS2-3788 WSDL2Java fails for WSDL that work for Axis2 1.3
-AXIS2-3789 Adding codegen jar to axis2.war and adding mtompolicy jar to 
distribution
-AXIS2-3790 WSDL2Java throws a StackOverflowError
-AXIS2-3791 If available prefer sending [Su

svn commit: r1072318 - /axis/axis2/java/core/branches/1_6/src/site/xdoc/index.xml

2011-02-19 Thread ruwan
Author: ruwan
Date: Sat Feb 19 12:16:48 2011
New Revision: 1072318

URL: http://svn.apache.org/viewvc?rev=1072318&view=rev
Log:
Fixing the index page for the 1.6 release

Modified:
axis/axis2/java/core/branches/1_6/src/site/xdoc/index.xml

Modified: axis/axis2/java/core/branches/1_6/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/src/site/xdoc/index.xml?rev=1072318&r1=1072317&r2=1072318&view=diff
==
--- axis/axis2/java/core/branches/1_6/src/site/xdoc/index.xml (original)
+++ axis/axis2/java/core/branches/1_6/src/site/xdoc/index.xml Sat Feb 19 
12:16:48 2011
@@ -35,6 +35,9 @@ 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.
+February 19, 2011 - Apache Axis2/Java Version 1.6 Released!
+1.6 is a major release of axis2 with many fixes and improvements to the 
core and all it's modules
+Refer to the following filter https://issues.apache.org/jira/secure/IssueNavigator.jspa?mode=hide&requestId=12315272";>Issues
 fixed for the 1.6 release to find all the issues fixed for the 1.6 
release
 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:
 
@@ -50,7 +53,7 @@ Web site for Axis2/C implementation info
 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-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




svn commit: r1072319 - /axis/axis2/java/core/branches/1_6/src/site/xdoc/download.xml

2011-02-19 Thread ruwan
Author: ruwan
Date: Sat Feb 19 12:30:04 2011
New Revision: 1072319

URL: http://svn.apache.org/viewvc?rev=1072319&view=rev
Log:
preparing the download page for the 1.6.0 release

Modified:
axis/axis2/java/core/branches/1_6/src/site/xdoc/download.xml

Modified: axis/axis2/java/core/branches/1_6/src/site/xdoc/download.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/src/site/xdoc/download.xml?rev=1072319&r1=1072318&r2=1072319&view=diff
==
--- axis/axis2/java/core/branches/1_6/src/site/xdoc/download.xml (original)
+++ axis/axis2/java/core/branches/1_6/src/site/xdoc/download.xml Sat Feb 19 
12:30:04 2011
@@ -76,6 +76,32 @@
 Distribution
 
 
+1.6.0
+19 - Feb - 2011
+1.6.0 Release (Mirrored)
+
+Binary Distribution
+zip |
+http://www.apache.org/dist/axis/axis2/java/core/1.6.0/axis2-1.6.0-bin.zip.md5";>MD5
 |
+http://www.apache.org/dist/axis/axis2/java/core/1.6.0/axis2-1.6.0-bin.zip.asc";>PGP
+
+Source Distribution
+zip |
+http://www.apache.org/dist/axis/axis2/java/core/1.6.0/axis2-1.6.0-src.zip.md5";>MD5
 |
+http://www.apache.org/dist/axis/axis2/java/core/1.6.0/axis2-1.6.0-src.zip.asc";>PGP
+
+WAR Distribution
+zip |
+http://www.apache.org/dist/axis/axis2/java/core/1.6.0/axis2-1.6.0-war.zip.md5";>MD5
 |
+http://www.apache.org/dist/axis/axis2/java/core/1.6.0/axis2-1.6.0-war.zip.asc";>PGP
+
+Documents Distribution
+zip |
+http://www.apache.org/dist/axis/axis2/java/core/1.6.0/axis2-1.6.0-docs.zip.md5";>MD5
 |
+http://www.apache.org/dist/axis/axis2/java/core/1.6.0/axis2-1.6.0-docs.zip.asc";>PGP
+
+
+
 1.5.4
 19 - Dec - 2010
 1.5.4 Release (Mirrored)




svn commit: r1072325 - in /axis/axis2/java/core/branches/1_6: release-notes.html src/site/xdoc/index.xml

2011-02-19 Thread ruwan
Author: ruwan
Date: Sat Feb 19 13:36:12 2011
New Revision: 1072325

URL: http://svn.apache.org/viewvc?rev=1072325&view=rev
Log:
Fixing the error in site generation

Modified:
axis/axis2/java/core/branches/1_6/release-notes.html
axis/axis2/java/core/branches/1_6/src/site/xdoc/index.xml

Modified: axis/axis2/java/core/branches/1_6/release-notes.html
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/release-notes.html?rev=1072325&r1=1072324&r2=1072325&view=diff
==
--- axis/axis2/java/core/branches/1_6/release-notes.html (original)
+++ axis/axis2/java/core/branches/1_6/release-notes.html Sat Feb 19 13:36:12 
2011
@@ -113,6 +113,6 @@ Tools
 Bugs marked as Resolved/Fixed for 1.6 Release:
 
 
- Follow the filter https://issues.apache.org/jira/secure/IssueNavigator.jspa?mode=hide&requestId=12315272";>Issues
 fixed for the 1.6 release 
+ Follow the filter http://bit.ly/issues-fixed-for-1_6";>Issues 
fixed for the 1.6 release 
 
 

Modified: axis/axis2/java/core/branches/1_6/src/site/xdoc/index.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/src/site/xdoc/index.xml?rev=1072325&r1=1072324&r2=1072325&view=diff
==
--- axis/axis2/java/core/branches/1_6/src/site/xdoc/index.xml (original)
+++ axis/axis2/java/core/branches/1_6/src/site/xdoc/index.xml Sat Feb 19 
13:36:12 2011
@@ -37,7 +37,7 @@ Web site for Axis2/C implementation info
 Apache Axis2, Axis2, Apache, the Apache feather logo, and the Apache Axis2 
project logo are trademarks of The Apache Software Foundation.
 February 19, 2011 - Apache Axis2/Java Version 1.6 Released!
 1.6 is a major release of axis2 with many fixes and improvements to the 
core and all it's modules
-Refer to the following filter https://issues.apache.org/jira/secure/IssueNavigator.jspa?mode=hide&requestId=12315272";>Issues
 fixed for the 1.6 release to find all the issues fixed for the 1.6 
release
+Refer to the following filter http://bit.ly/issues-fixed-for-1_6";>Issues fixed for the 1.6 release 
to find all the issues fixed for the 1.6 release
 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:
 




svn commit: r1072337 - /axis/axis2/java/core/tags/v1.6.0/

2011-02-19 Thread ruwan
Author: ruwan
Date: Sat Feb 19 14:31:35 2011
New Revision: 1072337

URL: http://svn.apache.org/viewvc?rev=1072337&view=rev
Log:
tagging the release

Added:
axis/axis2/java/core/tags/v1.6.0/   (props changed)
  - copied from r1072334, axis/axis2/java/core/branches/1_6/

Propchange: axis/axis2/java/core/tags/v1.6.0/
--
--- svn:ignore (added)
+++ svn:ignore Sat Feb 19 14:31:35 2011
@@ -0,0 +1,4 @@
+*.ipr
+*.iml
+*.iws
+target

Propchange: axis/axis2/java/core/tags/v1.6.0/
--
svn:mergeinfo = /axis/axis2/java/core/trunk:1070439,1072077,1072271




svn commit: r1072345 - /axis/axis2/java/core/tags/v1.6.0/

2011-02-19 Thread ruwan
Author: ruwan
Date: Sat Feb 19 14:36:26 2011
New Revision: 1072345

URL: http://svn.apache.org/viewvc?rev=1072345&view=rev
Log:
removing the manually created tag

Removed:
axis/axis2/java/core/tags/v1.6.0/



svn commit: r1072346 - /axis/axis2/java/core/tags/v1.6.0/

2011-02-19 Thread ruwan
Author: ruwan
Date: Sat Feb 19 14:37:04 2011
New Revision: 1072346

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

Added:
axis/axis2/java/core/tags/v1.6.0/   (props changed)
  - copied from r1072345, axis/axis2/java/core/branches/1_6/

Propchange: axis/axis2/java/core/tags/v1.6.0/
--
--- svn:ignore (added)
+++ svn:ignore Sat Feb 19 14:37:04 2011
@@ -0,0 +1,4 @@
+*.ipr
+*.iml
+*.iws
+target

Propchange: axis/axis2/java/core/tags/v1.6.0/
--
svn:mergeinfo = /axis/axis2/java/core/trunk:1070439,1072077,1072271




svn commit: r1072365 - in /axis/axis2/java/core/tags/v1.6.0/modules: all/ rmi/ samples/book/ samples/java_first_jaxws/ samples/jaxws-addressbook/ samples/jaxws-calculator/ samples/jaxws-interop/ sampl

2011-02-19 Thread ruwan
Author: ruwan
Date: Sat Feb 19 15:50:35 2011
New Revision: 1072365

URL: http://svn.apache.org/viewvc?rev=1072365&view=rev
Log:
Fixing the versions on the sample descriptors which were missed by the release 
plugin - yes we need to fix this such that the release plugin can pick them up 
as well

Modified:
axis/axis2/java/core/tags/v1.6.0/modules/all/pom.xml
axis/axis2/java/core/tags/v1.6.0/modules/rmi/pom.xml
axis/axis2/java/core/tags/v1.6.0/modules/samples/book/pom.xml
axis/axis2/java/core/tags/v1.6.0/modules/samples/java_first_jaxws/pom.xml

axis/axis2/java/core/tags/v1.6.0/modules/samples/jaxws-addressbook/README.txt
axis/axis2/java/core/tags/v1.6.0/modules/samples/jaxws-addressbook/pom.xml
axis/axis2/java/core/tags/v1.6.0/modules/samples/jaxws-calculator/README.txt
axis/axis2/java/core/tags/v1.6.0/modules/samples/jaxws-calculator/pom.xml
axis/axis2/java/core/tags/v1.6.0/modules/samples/jaxws-interop/pom.xml
axis/axis2/java/core/tags/v1.6.0/modules/samples/jaxws-samples/pom.xml
axis/axis2/java/core/tags/v1.6.0/modules/samples/jaxws-version/pom.xml

axis/axis2/java/core/tags/v1.6.0/modules/tool/axis2-java2wsdl-maven-plugin/src/test/test1/pom.xml

axis/axis2/java/core/tags/v1.6.0/modules/tool/axis2-wsdl2code-maven-plugin/src/test/test1/pom.xml

Modified: axis/axis2/java/core/tags/v1.6.0/modules/all/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/tags/v1.6.0/modules/all/pom.xml?rev=1072365&r1=1072364&r2=1072365&view=diff
==
--- axis/axis2/java/core/tags/v1.6.0/modules/all/pom.xml (original)
+++ axis/axis2/java/core/tags/v1.6.0/modules/all/pom.xml Sat Feb 19 15:50:35 
2011
@@ -5,7 +5,7 @@
 
 org.apache.axis2
 axis2-parent
-1.6.0-SNAPSHOT
+1.6.0
 ../parent/pom.xml
 
 

Modified: axis/axis2/java/core/tags/v1.6.0/modules/rmi/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/tags/v1.6.0/modules/rmi/pom.xml?rev=1072365&r1=1072364&r2=1072365&view=diff
==
--- axis/axis2/java/core/tags/v1.6.0/modules/rmi/pom.xml (original)
+++ axis/axis2/java/core/tags/v1.6.0/modules/rmi/pom.xml Sat Feb 19 15:50:35 
2011
@@ -27,7 +27,7 @@
 
 org.apache.axis2
 axis2-parent
-1.6.0-SNAPSHOT
+1.6.0
 ../parent/pom.xml
 
 

Modified: axis/axis2/java/core/tags/v1.6.0/modules/samples/book/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/tags/v1.6.0/modules/samples/book/pom.xml?rev=1072365&r1=1072364&r2=1072365&view=diff
==
--- axis/axis2/java/core/tags/v1.6.0/modules/samples/book/pom.xml (original)
+++ axis/axis2/java/core/tags/v1.6.0/modules/samples/book/pom.xml Sat Feb 19 
15:50:35 2011
@@ -37,27 +37,27 @@
 
 org.apache.axis2
 axis2-kernel
-1.6.0-SNAPSHOT
+1.6.0
 
 
 org.apache.axis2
 axis2-codegen
-1.6.0-SNAPSHOT
+1.6.0
 
 
 org.apache.axis2
 axis2-adb
-1.6.0-SNAPSHOT
+1.6.0
 
 
 org.apache.ws.commons.axiom
 axiom-api
-1.2.12-SNAPSHOT
+1.2.11
 
 
 org.apache.ws.commons.axiom
 axiom-impl
-1.2.12-SNAPSHOT
+1.2.11
 
 
 org.apache.ws.commons.schema
@@ -112,12 +112,12 @@

org.apache.axis2
axis2-transport-http
-   1.6.0-SNAPSHOT
+   1.6.0


org.apache.axis2
axis2-transport-local
-   1.6.0-SNAPSHOT
+   1.6.0

 


Modified: 
axis/axis2/java/core/tags/v1.6.0/modules/samples/java_first_jaxws/pom.xml
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/tags/v1.6.0/modules/samples/java_first_jaxws/pom.xml?rev=1072365&r1=1072364&r2=1072365&view=diff
==
--- axis/axis2/java/core/tags/v1.6.0/modules/samples/java_first_jaxws/pom.xml 
(original)
+++ axis/axis2/java/core/tags/v1.6.0/modules/samples/java_first_jaxws/pom.xml 
Sat Feb 19 15:50:35 2011
@@ -38,32 +38,32 @@
 
 org.apache.axis2
 axis2-kernel
-1.6.0-SNAPSHOT
+1.6.0
 
 
 org.apache.axis2
 axis2-jaxws
-1.6.0-SNAPSHOT
+1.6.0
 
 
 org.apache.axis2
 axis2-codegen
-1.6.0-SNAPSHOT
+1.6.0