Author: veithen
Date: Sat Oct 20 18:35:25 2012
New Revision: 1400499
URL: http://svn.apache.org/viewvc?rev=1400499&view=rev
Log:
Moved the JWS support to a separate Maven module and disabled it by default
(most enterprise projects don't use JWS).
Added:
axis/axis1/java/trunk/axis-rt-core/src/test/java/test/wsdd/DummyHandler.java
(with props)
axis/axis1/java/trunk/axis-rt-jws/ (with props)
axis/axis1/java/trunk/axis-rt-jws/pom.xml (with props)
axis/axis1/java/trunk/axis-rt-jws/src/
axis/axis1/java/trunk/axis-rt-jws/src/main/
axis/axis1/java/trunk/axis-rt-jws/src/main/java/
axis/axis1/java/trunk/axis-rt-jws/src/main/java/org/
axis/axis1/java/trunk/axis-rt-jws/src/main/java/org/apache/
axis/axis1/java/trunk/axis-rt-jws/src/main/java/org/apache/axis/
axis/axis1/java/trunk/axis-rt-jws/src/main/java/org/apache/axis/components/
axis/axis1/java/trunk/axis-rt-jws/src/main/java/org/apache/axis/components/compiler/
- copied from r1400471,
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/components/compiler/
axis/axis1/java/trunk/axis-rt-jws/src/main/java/org/apache/axis/handlers/
axis/axis1/java/trunk/axis-rt-jws/src/main/java/org/apache/axis/handlers/JWSHandler.java
- copied unchanged from r1400471,
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/handlers/JWSHandler.java
axis/axis1/java/trunk/axis-rt-jws/src/main/java/org/apache/axis/utils/
axis/axis1/java/trunk/axis-rt-jws/src/main/java/org/apache/axis/utils/ClasspathUtils.java
- copied unchanged from r1400471,
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/utils/ClasspathUtils.java
axis/axis1/java/trunk/axis-rt-jws/src/main/java/org/apache/axis/utils/JWSClassLoader.java
- copied unchanged from r1400471,
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/utils/JWSClassLoader.java
axis/axis1/java/trunk/axis-standalone-server/src/main/resources/org/apache/axis/server/standalone/jws-handler.wsdd
axis/axis1/java/trunk/axis-war/src/main/webapp/WEB-INF/server-config.wsdd
Removed:
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/components/compiler/
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/handlers/JWSHandler.java
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/utils/ClasspathUtils.java
axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/utils/JWSClassLoader.java
Modified:
axis/axis1/java/trunk/axis-rt-core/src/main/resources/org/apache/axis/server/server-config.wsdd
axis/axis1/java/trunk/axis-rt-core/src/test/java/test/wsdd/TestStructure.java
axis/axis1/java/trunk/axis-rt-core/src/test/resources/test/wsdd/testStructure1.wsdd
axis/axis1/java/trunk/axis-standalone-server/src/main/java/org/apache/axis/server/standalone/StandaloneAxisServer.java
axis/axis1/java/trunk/axis-standalone-server/src/main/java/org/apache/axis/server/standalone/StandaloneAxisServlet.java
axis/axis1/java/trunk/axis-war/pom.xml
axis/axis1/java/trunk/axis/pom.xml
axis/axis1/java/trunk/integration/pom.xml
axis/axis1/java/trunk/pom.xml
axis/axis1/java/trunk/samples/stock-sample/pom.xml
Modified:
axis/axis1/java/trunk/axis-rt-core/src/main/resources/org/apache/axis/server/server-config.wsdd
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-core/src/main/resources/org/apache/axis/server/server-config.wsdd?rev=1400499&r1=1400498&r2=1400499&view=diff
==============================================================================
---
axis/axis1/java/trunk/axis-rt-core/src/main/resources/org/apache/axis/server/server-config.wsdd
(original)
+++
axis/axis1/java/trunk/axis-rt-core/src/main/resources/org/apache/axis/server/server-config.wsdd
Sat Oct 20 18:35:25 2012
@@ -9,6 +9,8 @@
<parameter name="dotNetSoapEncFix" value="true"/>
<parameter name="enableNamespacePrefixOptimization" value="false"/>
<requestFlow>
+ <!-- uncomment this if you want JWS support -->
+ <!--
<handler type="java:org.apache.axis.handlers.JWSHandler">
<parameter name="scope" value="session"/>
</handler>
@@ -16,6 +18,7 @@
<parameter name="scope" value="request"/>
<parameter name="extension" value=".jwr"/>
</handler>
+ -->
<!-- uncomment this if you want the SOAP monitor -->
<!--
<handler type="java:org.apache.axis.handlers.SOAPMonitorHandler"/>
Added:
axis/axis1/java/trunk/axis-rt-core/src/test/java/test/wsdd/DummyHandler.java
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-core/src/test/java/test/wsdd/DummyHandler.java?rev=1400499&view=auto
==============================================================================
---
axis/axis1/java/trunk/axis-rt-core/src/test/java/test/wsdd/DummyHandler.java
(added)
+++
axis/axis1/java/trunk/axis-rt-core/src/test/java/test/wsdd/DummyHandler.java
Sat Oct 20 18:35:25 2012
@@ -0,0 +1,28 @@
+/*
+ * 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.
+ */
+package test.wsdd;
+
+import org.apache.axis.AxisFault;
+import org.apache.axis.MessageContext;
+import org.apache.axis.handlers.BasicHandler;
+
+public class DummyHandler extends BasicHandler {
+ public void invoke(MessageContext msgContext) throws AxisFault {
+ }
+}
Propchange:
axis/axis1/java/trunk/axis-rt-core/src/test/java/test/wsdd/DummyHandler.java
------------------------------------------------------------------------------
svn:eol-style = native
Modified:
axis/axis1/java/trunk/axis-rt-core/src/test/java/test/wsdd/TestStructure.java
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-core/src/test/java/test/wsdd/TestStructure.java?rev=1400499&r1=1400498&r2=1400499&view=diff
==============================================================================
---
axis/axis1/java/trunk/axis-rt-core/src/test/java/test/wsdd/TestStructure.java
(original)
+++
axis/axis1/java/trunk/axis-rt-core/src/test/java/test/wsdd/TestStructure.java
Sat Oct 20 18:35:25 2012
@@ -39,9 +39,8 @@ public class TestStructure extends TestC
Handler chainOne_handler = chainOne_handlers[0];
assertNotNull("chain.one's handler should be non-null!",
chainOne_handler);
- assertTrue("chain.one's handler should be a JWSHandler!",
- (chainOne_handler instanceof
- org.apache.axis.handlers.JWSHandler));
+ assertTrue("chain.one's handler should be a DummyHandler!",
+ (chainOne_handler instanceof DummyHandler));
}
public void testServiceBackReference() throws Exception
Modified:
axis/axis1/java/trunk/axis-rt-core/src/test/resources/test/wsdd/testStructure1.wsdd
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-core/src/test/resources/test/wsdd/testStructure1.wsdd?rev=1400499&r1=1400498&r2=1400499&view=diff
==============================================================================
---
axis/axis1/java/trunk/axis-rt-core/src/test/resources/test/wsdd/testStructure1.wsdd
(original)
+++
axis/axis1/java/trunk/axis-rt-core/src/test/resources/test/wsdd/testStructure1.wsdd
Sat Oct 20 18:35:25 2012
@@ -8,7 +8,7 @@
</documentation>
<chain name="chain.one">
- <handler type="java:org.apache.axis.handlers.JWSHandler"/>
+ <handler type="java:test.wsdd.DummyHandler"/>
</chain>
<service name="service.one" provider="java:RPC">
Propchange: axis/axis1/java/trunk/axis-rt-jws/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Sat Oct 20 18:35:25 2012
@@ -0,0 +1,4 @@
+.classpath
+.project
+target
+.settings
Added: axis/axis1/java/trunk/axis-rt-jws/pom.xml
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-jws/pom.xml?rev=1400499&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis-rt-jws/pom.xml (added)
+++ axis/axis1/java/trunk/axis-rt-jws/pom.xml Sat Oct 20 18:35:25 2012
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ ~ 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.
+ -->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.axis</groupId>
+ <artifactId>axis-project</artifactId>
+ <version>1.4.1-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <artifactId>axis-rt-jws</artifactId>
+ <name>JWS Support</name>
+ <dependencies>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>axis-rt-core</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+</project>
Propchange: axis/axis1/java/trunk/axis-rt-jws/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Modified:
axis/axis1/java/trunk/axis-standalone-server/src/main/java/org/apache/axis/server/standalone/StandaloneAxisServer.java
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-standalone-server/src/main/java/org/apache/axis/server/standalone/StandaloneAxisServer.java?rev=1400499&r1=1400498&r2=1400499&view=diff
==============================================================================
---
axis/axis1/java/trunk/axis-standalone-server/src/main/java/org/apache/axis/server/standalone/StandaloneAxisServer.java
(original)
+++
axis/axis1/java/trunk/axis-standalone-server/src/main/java/org/apache/axis/server/standalone/StandaloneAxisServer.java
Sat Oct 20 18:35:25 2012
@@ -85,6 +85,8 @@ public class StandaloneAxisServer {
int port = Integer.parseInt(cmdLine.getOptionValue("p"));
+ StandaloneAxisServlet servlet = new StandaloneAxisServlet();
+
List resources = new ArrayList();
// Add the work dir as a resource so that Axis can create its
server-config.wsdd file there
@@ -98,6 +100,7 @@ public class StandaloneAxisServer {
for (int i=0; i<jwsDirs.length; i++) {
resources.add(Resource.newResource(jwsDirs[i]));
}
+ servlet.enableJWS();
enableJWS = true;
} else {
enableJWS = false;
@@ -111,9 +114,9 @@ public class StandaloneAxisServer {
QuitListener quitListener = new QuitListener();
context.setAttribute(QuitHandler.QUIT_LISTENER, quitListener);
ServletHandler servletHandler = context.getServletHandler();
- ServletHolder axisServlet = new
ServletHolder(StandaloneAxisServlet.class);
- axisServlet.setName("AxisServlet");
- servletHandler.addServlet(axisServlet);
+ ServletHolder axisServletHolder = new ServletHolder(servlet);
+ axisServletHolder.setName("AxisServlet");
+ servletHandler.addServlet(axisServletHolder);
{
ServletMapping mapping = new ServletMapping();
mapping.setServletName("AxisServlet");
Modified:
axis/axis1/java/trunk/axis-standalone-server/src/main/java/org/apache/axis/server/standalone/StandaloneAxisServlet.java
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-standalone-server/src/main/java/org/apache/axis/server/standalone/StandaloneAxisServlet.java?rev=1400499&r1=1400498&r2=1400499&view=diff
==============================================================================
---
axis/axis1/java/trunk/axis-standalone-server/src/main/java/org/apache/axis/server/standalone/StandaloneAxisServlet.java
(original)
+++
axis/axis1/java/trunk/axis-standalone-server/src/main/java/org/apache/axis/server/standalone/StandaloneAxisServlet.java
Sat Oct 20 18:35:25 2012
@@ -18,9 +18,15 @@
*/
package org.apache.axis.server.standalone;
+import java.net.URL;
+import java.util.ArrayList;
+import java.util.Iterator;
+import java.util.List;
+
import javax.servlet.ServletException;
import org.apache.axis.WSDDEngineConfiguration;
+import org.apache.axis.deployment.wsdd.WSDDDeployment;
import org.apache.axis.deployment.wsdd.WSDDDocument;
import org.apache.axis.server.AxisServer;
import org.apache.axis.transport.http.AxisServlet;
@@ -32,13 +38,27 @@ import org.apache.axis.utils.XMLUtils;
* @author Andreas Veithen
*/
public class StandaloneAxisServlet extends AxisServlet {
+ private final List/*<URL>*/ wsddUrls;
+
+ public StandaloneAxisServlet() {
+ wsddUrls = new ArrayList();
+
wsddUrls.add(StandaloneAxisServlet.class.getResource("quit-handler-deploy.wsdd"));
+ }
+
+ public void enableJWS() {
+
wsddUrls.add(StandaloneAxisServlet.class.getResource("jws-handler.wsdd"));
+ }
+
public void init() throws ServletException {
super.init();
try {
AxisServer engine = getEngine();
- WSDDDocument wsdd = new WSDDDocument(XMLUtils.newDocument(
-
StandaloneAxisServlet.class.getResource("quit-handler-deploy.wsdd").toExternalForm()));
-
wsdd.deploy(((WSDDEngineConfiguration)engine.getConfig()).getDeployment());
+ WSDDDeployment registry =
((WSDDEngineConfiguration)engine.getConfig()).getDeployment();
+ for (Iterator it = wsddUrls.iterator(); it.hasNext(); ) {
+ URL url = (URL)it.next();
+ WSDDDocument wsdd = new
WSDDDocument(XMLUtils.newDocument(url.toExternalForm()));
+ wsdd.deploy(registry);
+ }
} catch (Exception ex) {
throw new ServletException(ex);
}
Added:
axis/axis1/java/trunk/axis-standalone-server/src/main/resources/org/apache/axis/server/standalone/jws-handler.wsdd
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-standalone-server/src/main/resources/org/apache/axis/server/standalone/jws-handler.wsdd?rev=1400499&view=auto
==============================================================================
---
axis/axis1/java/trunk/axis-standalone-server/src/main/resources/org/apache/axis/server/standalone/jws-handler.wsdd
(added)
+++
axis/axis1/java/trunk/axis-standalone-server/src/main/resources/org/apache/axis/server/standalone/jws-handler.wsdd
Sat Oct 20 18:35:25 2012
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ ~ 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.
+ -->
+<deployment name="jws-handler"
+ xmlns="http://xml.apache.org/axis/wsdd/"
+ xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
+
+ <globalConfiguration>
+ <requestFlow>
+ <handler type="java:org.apache.axis.handlers.JWSHandler">
+ <parameter name="scope" value="session"/>
+ </handler>
+ <handler type="java:org.apache.axis.handlers.JWSHandler">
+ <parameter name="scope" value="request"/>
+ <parameter name="extension" value=".jwr"/>
+ </handler>
+ </requestFlow>
+ </globalConfiguration>
+
+</deployment>
\ No newline at end of file
Modified: axis/axis1/java/trunk/axis-war/pom.xml
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-war/pom.xml?rev=1400499&r1=1400498&r2=1400499&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-war/pom.xml (original)
+++ axis/axis1/java/trunk/axis-war/pom.xml Sat Oct 20 18:35:25 2012
@@ -35,6 +35,11 @@
<version>${project.version}</version>
</dependency>
<dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>axis-rt-jws</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
Added: axis/axis1/java/trunk/axis-war/src/main/webapp/WEB-INF/server-config.wsdd
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-war/src/main/webapp/WEB-INF/server-config.wsdd?rev=1400499&view=auto
==============================================================================
--- axis/axis1/java/trunk/axis-war/src/main/webapp/WEB-INF/server-config.wsdd
(added)
+++ axis/axis1/java/trunk/axis-war/src/main/webapp/WEB-INF/server-config.wsdd
Sat Oct 20 18:35:25 2012
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<deployment name="defaultClientConfig"
+ xmlns="http://xml.apache.org/axis/wsdd/"
+ xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"
+ xmlns:handler="http://xml.apache.org/axis/wsdd/providers/handler">
+
+ <globalConfiguration>
+ <parameter name="disablePrettyXML" value="true"/>
+ <parameter name="dotNetSoapEncFix" value="true"/>
+ <parameter name="enableNamespacePrefixOptimization" value="false"/>
+ <requestFlow>
+ <handler type="java:org.apache.axis.handlers.JWSHandler">
+ <parameter name="scope" value="session"/>
+ </handler>
+ <handler type="java:org.apache.axis.handlers.JWSHandler">
+ <parameter name="scope" value="request"/>
+ <parameter name="extension" value=".jwr"/>
+ </handler>
+ <!-- uncomment this if you want the SOAP monitor -->
+ <!--
+ <handler type="java:org.apache.axis.handlers.SOAPMonitorHandler"/>
+ -->
+ </requestFlow>
+ <!-- uncomment this if you want the SOAP monitor -->
+ <!--
+ <responseFlow>
+ <handler type="java:org.apache.axis.handlers.SOAPMonitorHandler"/>
+ </responseFlow>
+ -->
+ </globalConfiguration>
+
+ <handler type="java:org.apache.axis.handlers.http.URLMapper"
name="URLMapper"/>
+ <handler type="java:org.apache.axis.transport.local.LocalResponder"
name="LocalResponder"/>
+ <handler type="java:org.apache.axis.handlers.SimpleAuthenticationHandler"
name="Authenticate"/>
+
+ <service name="AdminService" provider="java:MSG">
+ <namespace>http://xml.apache.org/axis/wsdd/</namespace>
+ <parameter name="allowedMethods" value="AdminService"/>
+ <parameter name="enableRemoteAdmin" value="false"/>
+ <parameter name="className" value="org.apache.axis.utils.Admin"/>
+ </service>
+
+ <service name="Version" provider="java:RPC">
+ <parameter name="allowedMethods" value="getVersion"/>
+ <parameter name="className" value="org.apache.axis.Version"/>
+ </service>
+
+ <transport name="http">
+ <parameter name="qs:list"
+ value="org.apache.axis.transport.http.QSListHandler"/>
+ <parameter name="qs:method"
+ value="org.apache.axis.transport.http.QSMethodHandler"/>
+ <parameter name="qs:wsdl"
+ value="org.apache.axis.transport.http.QSWSDLHandler"/>
+ <requestFlow>
+ <handler type="URLMapper"/>
+ <handler type="java:org.apache.axis.handlers.http.HTTPAuthHandler"/>
+ </requestFlow>
+ </transport>
+
+ <transport name="local">
+ <responseFlow>
+ <handler type="LocalResponder"/>
+ </responseFlow>
+ </transport>
+
+</deployment>
Modified: axis/axis1/java/trunk/axis/pom.xml
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis/pom.xml?rev=1400499&r1=1400498&r2=1400499&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis/pom.xml (original)
+++ axis/axis1/java/trunk/axis/pom.xml Sat Oct 20 18:35:25 2012
@@ -48,6 +48,11 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
+ <artifactId>axis-rt-jws</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
<artifactId>axis-rt-provider-bsf</artifactId>
<version>${project.version}</version>
</dependency>
@@ -83,6 +88,7 @@
<includes>
<include>${project.groupId}:axis-rt-core</include>
<include>${project.groupId}:axis-rt-databinding-castor</include>
+
<include>${project.groupId}:axis-rt-jws</include>
<include>${project.groupId}:axis-rt-provider-bsf</include>
<include>${project.groupId}:axis-rt-transport-mail</include>
<include>${project.groupId}:axis-codegen</include>
Modified: axis/axis1/java/trunk/integration/pom.xml
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/integration/pom.xml?rev=1400499&r1=1400498&r2=1400499&view=diff
==============================================================================
--- axis/axis1/java/trunk/integration/pom.xml (original)
+++ axis/axis1/java/trunk/integration/pom.xml Sat Oct 20 18:35:25 2012
@@ -35,6 +35,11 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
+ <artifactId>axis-rt-jws</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>${project.groupId}</groupId>
<artifactId>axis-codegen</artifactId>
<version>${project.version}</version>
</dependency>
Modified: axis/axis1/java/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/pom.xml?rev=1400499&r1=1400498&r2=1400499&view=diff
==============================================================================
--- axis/axis1/java/trunk/pom.xml (original)
+++ axis/axis1/java/trunk/pom.xml Sat Oct 20 18:35:25 2012
@@ -62,6 +62,7 @@
<module>axis-codegen</module>
<module>axis-jaxrpc</module>
<module>axis-rt-core</module>
+ <module>axis-rt-jws</module>
<module>axis-rt-databinding-castor</module>
<module>axis-rt-provider-bsf</module>
<module>axis-rt-transport-http-javanet</module>
Modified: axis/axis1/java/trunk/samples/stock-sample/pom.xml
URL:
http://svn.apache.org/viewvc/axis/axis1/java/trunk/samples/stock-sample/pom.xml?rev=1400499&r1=1400498&r2=1400499&view=diff
==============================================================================
--- axis/axis1/java/trunk/samples/stock-sample/pom.xml (original)
+++ axis/axis1/java/trunk/samples/stock-sample/pom.xml Sat Oct 20 18:35:25 2012
@@ -34,6 +34,11 @@
<version>${project.version}</version>
</dependency>
<dependency>
+ <groupId>${project.groupId}</groupId>
+ <artifactId>axis-rt-jws</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>