diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-03-12 17:10:05 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2010-03-12 17:10:05 +0000 |
commit | 4e02cd7d1aefdc41b650e923d4074032d7bb1bb9 (patch) | |
tree | 59ddd42bc9026be01b8436eb8f5d59cd4b7f802f /sandbox/slaws/axis-jaxws-experiment/src/main/webapp/WEB-INF/services/add-service/META-INF | |
parent | 6179ddbac5ff3e02040568c38c34288ae2dd7d7b (diff) |
turn into a axis2 war with no Tuscany involvement
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@922345 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sandbox/slaws/axis-jaxws-experiment/src/main/webapp/WEB-INF/services/add-service/META-INF')
-rw-r--r-- | sandbox/slaws/axis-jaxws-experiment/src/main/webapp/WEB-INF/services/add-service/META-INF/services.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sandbox/slaws/axis-jaxws-experiment/src/main/webapp/WEB-INF/services/add-service/META-INF/services.xml b/sandbox/slaws/axis-jaxws-experiment/src/main/webapp/WEB-INF/services/add-service/META-INF/services.xml new file mode 100644 index 0000000000..8cb5bb4996 --- /dev/null +++ b/sandbox/slaws/axis-jaxws-experiment/src/main/webapp/WEB-INF/services/add-service/META-INF/services.xml @@ -0,0 +1,33 @@ +<!-- + * 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. +--> +<serviceGroup> + <service name="AddService" scope="application"> + + <description>Add Service</description> + + <messageReceivers> + <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" + class="org.apache.axis2.jaxws.server.JAXWSMessageReceiver"/> + </messageReceivers> + <parameter name="ServiceClass">calculator.AddServiceImpl</parameter> + <parameter name="useOriginalwsdl">true</parameter> + </service> + +</serviceGroup> + |