JBossWS SVN: r5495 - spi/tags.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-21 04:19:36 -0500 (Mon, 21 Jan 2008)
New Revision: 5495
Added:
spi/tags/jbossws-spi-1.0.1.GA/
Log:
Create 1.0.1 tag from trunk-r5493
Copied: spi/tags/jbossws-spi-1.0.1.GA (from rev 5494, spi/trunk)
16 years, 11 months
JBossWS SVN: r5494 - spi/trunk.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-21 04:15:35 -0500 (Mon, 21 Jan 2008)
New Revision: 5494
Modified:
spi/trunk/version.properties
Log:
Release 1.0.1 and increment version 1.0.2.DEV
Modified: spi/trunk/version.properties
===================================================================
--- spi/trunk/version.properties 2008-01-18 08:40:04 UTC (rev 5493)
+++ spi/trunk/version.properties 2008-01-21 09:15:35 UTC (rev 5494)
@@ -5,8 +5,8 @@
specification.vendor=JBoss (http://www.jboss.org)
specification.version=jbossws-2.0
-version.id=1.0.1.GA
-repository.id=snapshot
+version.id=1.0.2.DEV
+repository.id=1.0.2.DEV
implementation.title=JBoss Web Services - SPI
implementation.url=http://www.jboss.org/products/jbossws
16 years, 11 months
JBossWS SVN: r5493 - stack/native/trunk/src/test/resources.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-18 03:40:04 -0500 (Fri, 18 Jan 2008)
New Revision: 5493
Modified:
stack/native/trunk/src/test/resources/test-excludes-jboss421.txt
stack/native/trunk/src/test/resources/test-excludes-jboss422.txt
Log:
Exclude JBWS1813 for 4.2.1 and 4.2.2
Modified: stack/native/trunk/src/test/resources/test-excludes-jboss421.txt
===================================================================
--- stack/native/trunk/src/test/resources/test-excludes-jboss421.txt 2008-01-17 19:57:47 UTC (rev 5492)
+++ stack/native/trunk/src/test/resources/test-excludes-jboss421.txt 2008-01-18 08:40:04 UTC (rev 5493)
@@ -18,4 +18,8 @@
org/jboss/test/ws/*/jbws1762/**
#[JBWS-1841] WebServiceRef injection from DD doesn't work
-org/jboss/test/ws/*/jbws1841/**
\ No newline at end of file
+org/jboss/test/ws/*/jbws1841/**
+
+#[JBWS-1813] context-root from jboss.xml
+org/jboss/test/ws/*/jbws1813/**
+
Modified: stack/native/trunk/src/test/resources/test-excludes-jboss422.txt
===================================================================
--- stack/native/trunk/src/test/resources/test-excludes-jboss422.txt 2008-01-17 19:57:47 UTC (rev 5492)
+++ stack/native/trunk/src/test/resources/test-excludes-jboss422.txt 2008-01-18 08:40:04 UTC (rev 5493)
@@ -19,3 +19,6 @@
#[JBWS-1841] WebServiceRef injection from DD doesn't work
org/jboss/test/ws/*/jbws1841/**
+
+#[JBWS-1813] context-root from jboss.xml
+org/jboss/test/ws/*/jbws1813/**
16 years, 11 months
JBossWS SVN: r5492 - in stack/native/trunk/src/test: resources/jaxws/jbws1813/META-INF and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-17 14:57:47 -0500 (Thu, 17 Jan 2008)
New Revision: 5492
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1813/JBWS1813TestCase.java
stack/native/trunk/src/test/resources/jaxws/jbws1813/META-INF/jboss.xml
Log:
Enable JBWS-1813 for AS 4.2
Modified: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1813/JBWS1813TestCase.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1813/JBWS1813TestCase.java 2008-01-17 19:53:03 UTC (rev 5491)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1813/JBWS1813TestCase.java 2008-01-17 19:57:47 UTC (rev 5492)
@@ -33,7 +33,7 @@
/**
* context-root in jboss.xml is ignored
- *
+ *
* http://jira.jboss.org/jira/browse/JBWS-1813
*
* @author Thomas.Diesler(a)jboss.com
@@ -50,16 +50,16 @@
public void testPositive() throws Exception
{
- if (isTargetJBoss42() || isTargetJBoss40())
+ if ( isTargetJBoss40() )
{
System.out.println("FIXME [JBWS-1813] context-root in jboss.xml is ignored");
return;
- }
-
+ }
+
URL wsdlURL = new URL(TARGET_ENDPOINT_ADDRESS + "?wsdl");
QName serviceName = new QName("http://org.jboss.ws/jbws1813", "EndpointService");
Endpoint port = Service.create(wsdlURL, serviceName).getPort(Endpoint.class);
-
+
String retObj = port.echo("Hello");
assertEquals("Hello", retObj);
}
Modified: stack/native/trunk/src/test/resources/jaxws/jbws1813/META-INF/jboss.xml
===================================================================
--- stack/native/trunk/src/test/resources/jaxws/jbws1813/META-INF/jboss.xml 2008-01-17 19:53:03 UTC (rev 5491)
+++ stack/native/trunk/src/test/resources/jaxws/jbws1813/META-INF/jboss.xml 2008-01-17 19:57:47 UTC (rev 5492)
@@ -5,7 +5,6 @@
<jboss>
<webservices>
- <context-root>/test-context</context-root>
+ <context-root>/test-context</context-root>
</webservices>
-
</jboss>
16 years, 11 months
JBossWS SVN: r5491 - spi/trunk/src/main/java/org/jboss/wsf/spi/annotation.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-17 14:53:03 -0500 (Thu, 17 Jan 2008)
New Revision: 5491
Added:
spi/trunk/src/main/java/org/jboss/wsf/spi/annotation/WebContextImpl.java
Log:
Default values for WebContextImpl
Added: spi/trunk/src/main/java/org/jboss/wsf/spi/annotation/WebContextImpl.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/annotation/WebContextImpl.java (rev 0)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/annotation/WebContextImpl.java 2008-01-17 19:53:03 UTC (rev 5491)
@@ -0,0 +1,153 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2006, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.wsf.spi.annotation;
+
+import java.lang.annotation.Annotation;
+
+/**
+ * Represents a {@link org.jboss.wsf.spi.annotation.WebContext} annotation
+ * and reflects the annotation defult values. <br>
+ * This implementation is used to provide a meta data representation (descriptor overrides) for the jboss EJB3 project.
+ *
+ * @author Heiko.Braun(a)jboss.com
+ */
+public class WebContextImpl implements WebContext
+{
+ private String contextRoot = "";
+ private String authmethod = "";
+ private String[] virtualHosts = new String[] {};
+ private String urlpattern = "";
+ private String transportGuarantee = "";
+ private boolean securedWsdl = false;
+
+ /**
+ * The contextRoot element specifies the context root that the web service endpoint is deployed to.
+ * If it is not specified it will be derived from the deployment short name.
+ *
+ * Applies to server side port components only.
+ */
+ public String contextRoot()
+ {
+ return this.contextRoot;
+ };
+
+
+ public void setContextRoot(String contextRoot)
+ {
+ this.contextRoot = contextRoot;
+ }
+
+ /**
+ * The virtual hosts that the web service endpoint is deployed to.
+ *
+ * Applies to server side port components only.
+ */
+ public String[] virtualHosts(){
+ return virtualHosts;
+ };
+
+
+ public void setVirtualHosts(String[] virtualHosts)
+ {
+ this.virtualHosts = virtualHosts;
+ }
+
+ /**
+ * Relative path that is appended to the contextRoot to form fully qualified
+ * endpoint address for the web service endpoint.
+ *
+ * Applies to server side port components only.
+ */
+ public String urlPattern() {
+ return urlpattern;
+ };
+
+
+ public void setUrlpattern(String urlpattern)
+ {
+ this.urlpattern = urlpattern;
+ }
+
+ /**
+ * The authMethod is used to configure the authentication mechanism for the web service.
+ * As a prerequisite to gaining access to any web service which are protected by an authorization
+ * constraint, a user must have authenticated using the configured mechanism.
+ *
+ * Legal values for this element are "BASIC", or "CLIENT-CERT".
+ */
+ public String authMethod()
+ {
+ return authmethod;
+ };
+
+
+ public void setAuthmethod(String authmethod)
+ {
+ this.authmethod = authmethod;
+ }
+
+ /**
+ * The transportGuarantee specifies that the communication
+ * between client and server should be NONE, INTEGRAL, or
+ * CONFIDENTIAL. NONE means that the application does not require any
+ * transport guarantees. A value of INTEGRAL means that the application
+ * requires that the data sent between the client and server be sent in
+ * such a way that it can't be changed in transit. CONFIDENTIAL means
+ * that the application requires that the data be transmitted in a
+ * fashion that prevents other entities from observing the contents of
+ * the transmission. In most cases, the presence of the INTEGRAL or
+ * CONFIDENTIAL flag will indicate that the use of SSL is required.
+ */
+ public String transportGuarantee()
+ {
+ return transportGuarantee;
+ };
+
+
+ public void setTransportGuarantee(String transportGuarantee)
+ {
+ this.transportGuarantee = transportGuarantee;
+ }
+
+ /**
+ * A secure endpoint does not secure wsdl access by default.
+ * Explicitly setting secureWSDLAccess overrides this behaviour.
+ *
+ * Protect access to WSDL. See http://jira.jboss.org/jira/browse/JBWS-723
+ */
+ public boolean secureWSDLAccess()
+ {
+ return securedWsdl;
+ };
+
+
+ public void setSecuredWsdl(boolean securedWsdl)
+ {
+ this.securedWsdl = securedWsdl;
+ }
+
+ public Class<? extends Annotation> annotationType()
+ {
+ return WebContext.class;
+ }
+
+}
Property changes on: spi/trunk/src/main/java/org/jboss/wsf/spi/annotation/WebContextImpl.java
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
16 years, 11 months
JBossWS SVN: r5490 - stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1813.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-17 05:59:41 -0500 (Thu, 17 Jan 2008)
New Revision: 5490
Modified:
stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1813/JBWS1813TestCase.java
Log:
JBWS-1813: Disable JBWS1813 for 4.2 again
Modified: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1813/JBWS1813TestCase.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1813/JBWS1813TestCase.java 2008-01-17 10:58:55 UTC (rev 5489)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1813/JBWS1813TestCase.java 2008-01-17 10:59:41 UTC (rev 5490)
@@ -50,11 +50,11 @@
public void testPositive() throws Exception
{
- /* if (isTargetJBoss42() || isTargetJBoss40())
+ if (isTargetJBoss42() || isTargetJBoss40())
{
System.out.println("FIXME [JBWS-1813] context-root in jboss.xml is ignored");
return;
- } */
+ }
URL wsdlURL = new URL(TARGET_ENDPOINT_ADDRESS + "?wsdl");
QName serviceName = new QName("http://org.jboss.ws/jbws1813", "EndpointService");
16 years, 11 months
JBossWS SVN: r5489 - stack/native/trunk/src/test/resources/jaxws/jbws1813/META-INF.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-17 05:58:55 -0500 (Thu, 17 Jan 2008)
New Revision: 5489
Modified:
stack/native/trunk/src/test/resources/jaxws/jbws1813/META-INF/jboss.xml
Log:
JBWS-1813: Refer to jboss_4_2.dtd
Modified: stack/native/trunk/src/test/resources/jaxws/jbws1813/META-INF/jboss.xml
===================================================================
--- stack/native/trunk/src/test/resources/jaxws/jbws1813/META-INF/jboss.xml 2008-01-17 10:16:47 UTC (rev 5488)
+++ stack/native/trunk/src/test/resources/jaxws/jbws1813/META-INF/jboss.xml 2008-01-17 10:58:55 UTC (rev 5489)
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE jboss PUBLIC "-//JBoss//DTD JBOSS 4.0//EN" "http://www.jboss.org/j2ee/dtd/jboss_4_0.dtd">
+<!DOCTYPE jboss PUBLIC "-//JBoss//DTD JBOSS 4.2//EN" "http://www.jboss.org/j2ee/dtd/jboss_4_2.dtd">
<jboss>
-
- <webservices>
- <context-root>/test-context</context-root>
- </webservices>
-
+
+ <webservices>
+ <context-root>/test-context</context-root>
+ </webservices>
+
</jboss>
16 years, 11 months
JBossWS SVN: r5488 - stack/cxf/trunk/src/main/resources.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-01-17 05:16:47 -0500 (Thu, 17 Jan 2008)
New Revision: 5488
Modified:
stack/cxf/trunk/src/main/resources/jbossws-cxf-config.xml
Log:
Configuring record processors
Modified: stack/cxf/trunk/src/main/resources/jbossws-cxf-config.xml
===================================================================
--- stack/cxf/trunk/src/main/resources/jbossws-cxf-config.xml 2008-01-17 10:15:03 UTC (rev 5487)
+++ stack/cxf/trunk/src/main/resources/jbossws-cxf-config.xml 2008-01-17 10:16:47 UTC (rev 5488)
@@ -38,6 +38,14 @@
</property>
</bean>
+ <!-- Installed Record Processors-->
+ <bean name="WSMemoryBufferRecorder" class="org.jboss.wsf.framework.management.recording.MemoryBufferRecorder">
+ <property name="recording">false</property>
+ </bean>
+ <bean name="WSLogRecorder" class="org.jboss.wsf.framework.management.recording.LogRecorder">
+ <property name="recording">false</property>
+ </bean>
+
<!--
The stack specific deployment aspects
-->
@@ -65,7 +73,13 @@
<bean name="WSCXFEndpointRecordProcessorDeploymentAspect" class="org.jboss.wsf.framework.deployment.EndpointRecordProcessorDeploymentAspect">
<property name="mbeanServer"><inject bean="WSMBeanServerLocator" property="mbeanServer"/></property>
<property name="requires">RegisteredEndpoint</property>
- <property name="provides">EndpointRecordProcessors</property>
+ <property name="provides">EndpointRecordProcessors</property>
+ <property name="processors">
+ <list class="java.util.ArrayList" elementClass="org.jboss.wsf.spi.management.recording.RecordProcessor">
+ <inject bean="WSMemoryBufferRecorder"/>
+ <inject bean="WSLogRecorder"/>
+ </list>
+ </property>
</bean>
<!-- Deployment aspect installers -->
16 years, 11 months
JBossWS SVN: r5487 - framework/trunk/src/main/java/org/jboss/wsf/framework/deployment.
by jbossws-commits@lists.jboss.org
Author: alessio.soldano(a)jboss.com
Date: 2008-01-17 05:15:03 -0500 (Thu, 17 Jan 2008)
New Revision: 5487
Modified:
framework/trunk/src/main/java/org/jboss/wsf/framework/deployment/EndpointRecordProcessorDeploymentAspect.java
Log:
[JBWS-1956] Preventing NPE when no processor list is configured
Modified: framework/trunk/src/main/java/org/jboss/wsf/framework/deployment/EndpointRecordProcessorDeploymentAspect.java
===================================================================
--- framework/trunk/src/main/java/org/jboss/wsf/framework/deployment/EndpointRecordProcessorDeploymentAspect.java 2008-01-17 09:45:29 UTC (rev 5486)
+++ framework/trunk/src/main/java/org/jboss/wsf/framework/deployment/EndpointRecordProcessorDeploymentAspect.java 2008-01-17 10:15:03 UTC (rev 5487)
@@ -58,18 +58,21 @@
for (Endpoint ep : dep.getService().getEndpoints())
{
List<RecordProcessor> processorList = new LinkedList<RecordProcessor>();
- for (RecordProcessor pr : processors)
+ if (processors != null)
{
- try
+ for (RecordProcessor pr : processors)
{
- RecordProcessor clone = (RecordProcessor)pr.clone();
- registerRecordProcessor(clone, ep);
- processorList.add(clone);
+ try
+ {
+ RecordProcessor clone = (RecordProcessor)pr.clone();
+ registerRecordProcessor(clone, ep);
+ processorList.add(clone);
+ }
+ catch (CloneNotSupportedException ex)
+ {
+ throw new RuntimeException(ex);
+ }
}
- catch (CloneNotSupportedException ex)
- {
- throw new RuntimeException(ex);
- }
}
ep.setRecordProcessors(processorList);
}
16 years, 11 months
JBossWS SVN: r5486 - in stack/native/trunk: src/test/java/org/jboss/test/ws/benchmark/jaxws and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: heiko.braun(a)jboss.com
Date: 2008-01-17 04:45:29 -0500 (Thu, 17 Jan 2008)
New Revision: 5486
Added:
stack/native/trunk/src/test/java/org/jboss/test/ws/benchmark/jaxws/handlers.xml
Removed:
stack/native/trunk/src/test/resources/benchmark/jaxws/doclit/WEB-INF/handlers.xml
Modified:
stack/native/trunk/ant-import-tests/build-jars-jaxws.xml
stack/native/trunk/src/test/java/org/jboss/test/ws/benchmark/jaxws/BenchmarkJSEHandlerEndpoint.java
Log:
Fix jaxws benchmark tests
Modified: stack/native/trunk/ant-import-tests/build-jars-jaxws.xml
===================================================================
--- stack/native/trunk/ant-import-tests/build-jars-jaxws.xml 2008-01-17 08:29:29 UTC (rev 5485)
+++ stack/native/trunk/ant-import-tests/build-jars-jaxws.xml 2008-01-17 09:45:29 UTC (rev 5486)
@@ -34,13 +34,11 @@
<war warfile="${tests.output.dir}/libs/jaxws-benchmark-doclit.war" webxml="${tests.output.dir}/resources/benchmark/jaxws/doclit/WEB-INF/web.xml">
<classes dir="${tests.output.dir}/classes">
<include name="org/jboss/test/ws/benchmark/jaxws/**/*.class"/>
+ <include name="org/jboss/test/ws/benchmark/jaxws/**/*.xml"/>
</classes>
<webinf dir="${tests.output.dir}/resources/benchmark/jaxws/doclit/WEB-INF">
<include name="wsdl/**"/>
- </webinf>
- <webinf dir="${tests.output.dir}/resources/benchmark/jaxws/doclit/WEB-INF">
- <include name="handlers.xml"/>
- </webinf>
+ </webinf>
</war>
<war warfile="${tests.output.dir}/libs/ri-benchmark-doclit.war" webxml="${tests.output.dir}/resources/benchmark/jaxws/doclit/ri/WEB-INF/web.xml">
Modified: stack/native/trunk/src/test/java/org/jboss/test/ws/benchmark/jaxws/BenchmarkJSEHandlerEndpoint.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/benchmark/jaxws/BenchmarkJSEHandlerEndpoint.java 2008-01-17 08:29:29 UTC (rev 5485)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/benchmark/jaxws/BenchmarkJSEHandlerEndpoint.java 2008-01-17 09:45:29 UTC (rev 5486)
@@ -39,7 +39,7 @@
targetNamespace = "http://org.jboss.ws/benchmark",
endpointInterface = "org.jboss.test.ws.benchmark.jaxws.doclit.BenchmarkService"
)
-@HandlerChain(file = "WEB-INF/handlers.xml")
+@HandlerChain(file = "handlers.xml")
public class BenchmarkJSEHandlerEndpoint implements BenchmarkService {
@WebMethod
Copied: stack/native/trunk/src/test/java/org/jboss/test/ws/benchmark/jaxws/handlers.xml (from rev 5485, stack/native/trunk/src/test/resources/benchmark/jaxws/doclit/WEB-INF/handlers.xml)
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/benchmark/jaxws/handlers.xml (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/benchmark/jaxws/handlers.xml 2008-01-17 09:45:29 UTC (rev 5486)
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<handler-chains xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:ns1="http://org.jboss.ws/jaxws/samples/logicalhandler"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/javaee javaee_web_services_1_2.xsd">
+
+ <handler-chain>
+ <protocol-bindings>##SOAP11_HTTP</protocol-bindings>
+ <handler>
+ <handler-name> SOAP11ServerHandler </handler-name>
+ <handler-class> org.jboss.test.ws.benchmark.jaxws.ProtocolHandler </handler-class>
+ </handler>
+ </handler-chain>
+
+</handler-chains>
\ No newline at end of file
Deleted: stack/native/trunk/src/test/resources/benchmark/jaxws/doclit/WEB-INF/handlers.xml
===================================================================
--- stack/native/trunk/src/test/resources/benchmark/jaxws/doclit/WEB-INF/handlers.xml 2008-01-17 08:29:29 UTC (rev 5485)
+++ stack/native/trunk/src/test/resources/benchmark/jaxws/doclit/WEB-INF/handlers.xml 2008-01-17 09:45:29 UTC (rev 5486)
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<handler-chains xmlns="http://java.sun.com/xml/ns/javaee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:ns1="http://org.jboss.ws/jaxws/samples/logicalhandler"
- xsi:schemaLocation="http://java.sun.com/xml/ns/javaee javaee_web_services_1_2.xsd">
-
- <handler-chain>
- <protocol-bindings>##SOAP11_HTTP</protocol-bindings>
- <handler>
- <handler-name> SOAP11ServerHandler </handler-name>
- <handler-class> org.jboss.test.ws.benchmark.jaxws.ProtocolHandler </handler-class>
- </handler>
- </handler-chain>
-
-</handler-chains>
\ No newline at end of file
16 years, 11 months