Author: jim.ma
Date: 2010-05-21 02:52:24 -0400 (Fri, 21 May 2010)
New Revision: 12299
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/GeneralClientHandler.java
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/InvalidPortClientHandler.java
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/InvalidServiceClientHandler.java
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/PortClientHandler.java
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/PortWildcardClientHandler.java
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/SOAP11ClientHandler.java
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/SOAP12ClientHandler.java
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/SOAPClientHandler.java
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/ServiceClientHandler.java
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/ServiceWildcardClientHandler.java
Modified:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/jaxws-client-handlers.xml
Log:
[JBWS-3020]:Fixed the handler name issues in client side handlers
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/GeneralClientHandler.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/GeneralClientHandler.java
(rev 0)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/GeneralClientHandler.java 2010-05-21
06:52:24 UTC (rev 12299)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.test.ws.jaxws.handlerscope;
+
+public class GeneralClientHandler extends ProtocolHandler
+{
+ @Override
+ public String getHandlerName()
+ {
+ return "GeneralClientHandler";
+ }
+}
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/InvalidPortClientHandler.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/InvalidPortClientHandler.java
(rev 0)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/InvalidPortClientHandler.java 2010-05-21
06:52:24 UTC (rev 12299)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.test.ws.jaxws.handlerscope;
+
+public class InvalidPortClientHandler extends ProtocolHandler
+{
+ @Override
+ public String getHandlerName()
+ {
+ return "InvalidPortClientHandler";
+ }
+}
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/InvalidServiceClientHandler.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/InvalidServiceClientHandler.java
(rev 0)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/InvalidServiceClientHandler.java 2010-05-21
06:52:24 UTC (rev 12299)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.test.ws.jaxws.handlerscope;
+
+public class InvalidServiceClientHandler extends ProtocolHandler
+{
+ @Override
+ public String getHandlerName()
+ {
+ return "InvalidServiceClientHandler";
+ }
+}
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/PortClientHandler.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/PortClientHandler.java
(rev 0)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/PortClientHandler.java 2010-05-21
06:52:24 UTC (rev 12299)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.test.ws.jaxws.handlerscope;
+
+public class PortClientHandler extends ProtocolHandler
+{
+ @Override
+ public String getHandlerName()
+ {
+ return "PortClientHandler";
+ }
+}
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/PortWildcardClientHandler.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/PortWildcardClientHandler.java
(rev 0)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/PortWildcardClientHandler.java 2010-05-21
06:52:24 UTC (rev 12299)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.test.ws.jaxws.handlerscope;
+
+public class PortWildcardClientHandler extends ProtocolHandler
+{
+ @Override
+ public String getHandlerName()
+ {
+ return "PortWildcardClientHandler";
+ }
+}
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/SOAP11ClientHandler.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/SOAP11ClientHandler.java
(rev 0)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/SOAP11ClientHandler.java 2010-05-21
06:52:24 UTC (rev 12299)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.test.ws.jaxws.handlerscope;
+
+public class SOAP11ClientHandler extends ProtocolHandler
+{
+ @Override
+ public String getHandlerName()
+ {
+ return "SOAP11ClientHandler";
+ }
+}
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/SOAP12ClientHandler.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/SOAP12ClientHandler.java
(rev 0)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/SOAP12ClientHandler.java 2010-05-21
06:52:24 UTC (rev 12299)
@@ -0,0 +1,32 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.test.ws.jaxws.handlerscope;
+
+public class SOAP12ClientHandler extends ProtocolHandler
+{
+ @Override
+ public String getHandlerName()
+ {
+ return "SOAP12ClientHandler";
+ }
+
+}
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/SOAPClientHandler.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/SOAPClientHandler.java
(rev 0)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/SOAPClientHandler.java 2010-05-21
06:52:24 UTC (rev 12299)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.test.ws.jaxws.handlerscope;
+
+public class SOAPClientHandler extends ProtocolHandler
+{
+ @Override
+ public String getHandlerName()
+ {
+ return "SOAPClientHandler";
+ }
+}
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/ServiceClientHandler.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/ServiceClientHandler.java
(rev 0)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/ServiceClientHandler.java 2010-05-21
06:52:24 UTC (rev 12299)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.test.ws.jaxws.handlerscope;
+
+public class ServiceClientHandler extends ProtocolHandler
+{
+ @Override
+ public String getHandlerName()
+ {
+ return "ServiceClientHandler";
+ }
+}
Added:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/ServiceWildcardClientHandler.java
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/ServiceWildcardClientHandler.java
(rev 0)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/ServiceWildcardClientHandler.java 2010-05-21
06:52:24 UTC (rev 12299)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2010, 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.test.ws.jaxws.handlerscope;
+
+public class ServiceWildcardClientHandler extends ProtocolHandler
+{
+ @Override
+ public String getHandlerName()
+ {
+ return "ServiceWildcardClientHandler";
+ }
+}
Modified:
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/jaxws-client-handlers.xml
===================================================================
---
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/jaxws-client-handlers.xml 2010-05-21
06:42:40 UTC (rev 12298)
+++
framework/trunk/testsuite/test/java/org/jboss/test/ws/jaxws/handlerscope/jaxws-client-handlers.xml 2010-05-21
06:52:24 UTC (rev 12299)
@@ -9,7 +9,7 @@
<protocol-bindings>##SOAP11_HTTP</protocol-bindings>
<handler>
<handler-name> SOAP11ClientHandler </handler-name>
- <handler-class> org.jboss.test.ws.jaxws.handlerscope.ProtocolHandler
</handler-class>
+ <handler-class> org.jboss.test.ws.jaxws.handlerscope.SOAP11ClientHandler
</handler-class>
</handler>
</handler-chain>
@@ -17,7 +17,7 @@
<protocol-bindings>##SOAP12_HTTP</protocol-bindings>
<handler>
<handler-name> SOAP12ClientHandler </handler-name>
- <handler-class> org.jboss.test.ws.jaxws.handlerscope.ProtocolHandler
</handler-class>
+ <handler-class> org.jboss.test.ws.jaxws.handlerscope.SOAP12ClientHandler
</handler-class>
</handler>
</handler-chain>
@@ -25,7 +25,7 @@
<protocol-bindings>##SOAP11_HTTP ##SOAP12_HTTP</protocol-bindings>
<handler>
<handler-name> SOAPClientHandler </handler-name>
- <handler-class> org.jboss.test.ws.jaxws.handlerscope.ProtocolHandler
</handler-class>
+ <handler-class> org.jboss.test.ws.jaxws.handlerscope.SOAPClientHandler
</handler-class>
</handler>
</handler-chain>
@@ -33,7 +33,7 @@
<service-name-pattern>ns1:SOAPEndpointService</service-name-pattern>
<handler>
<handler-name> ServiceClientHandler </handler-name>
- <handler-class> org.jboss.test.ws.jaxws.handlerscope.ProtocolHandler
</handler-class>
+ <handler-class> org.jboss.test.ws.jaxws.handlerscope.ServiceClientHandler
</handler-class>
</handler>
</handler-chain>
@@ -41,7 +41,7 @@
<service-name-pattern>ns1:SOAPEndpointSer*</service-name-pattern>
<handler>
<handler-name> ServiceWildcardClientHandler </handler-name>
- <handler-class> org.jboss.test.ws.jaxws.handlerscope.ProtocolHandler
</handler-class>
+ <handler-class>
org.jboss.test.ws.jaxws.handlerscope.ServiceWildcardClientHandler </handler-class>
</handler>
</handler-chain>
@@ -49,7 +49,7 @@
<service-name-pattern>ns1:InvalidService</service-name-pattern>
<handler>
<handler-name> InvalidServiceClientHandler </handler-name>
- <handler-class> org.jboss.test.ws.jaxws.handlerscope.ProtocolHandler
</handler-class>
+ <handler-class> org.jboss.test.ws.jaxws.handlerscope.InvalidServiceClientHandler
</handler-class>
</handler>
</handler-chain>
@@ -57,7 +57,7 @@
<port-name-pattern>ns1:SOAPEndpointPort</port-name-pattern>
<handler>
<handler-name> PortClientHandler </handler-name>
- <handler-class> org.jboss.test.ws.jaxws.handlerscope.ProtocolHandler
</handler-class>
+ <handler-class> org.jboss.test.ws.jaxws.handlerscope.PortClientHandler
</handler-class>
</handler>
</handler-chain>
@@ -65,7 +65,7 @@
<port-name-pattern>ns1:SOAPEndpointPo*</port-name-pattern>
<handler>
<handler-name> PortWildcardClientHandler </handler-name>
- <handler-class> org.jboss.test.ws.jaxws.handlerscope.ProtocolHandler
</handler-class>
+ <handler-class>
org.jboss.test.ws.jaxws.handlerscope.PortWildcardClientHandler</handler-class>
</handler>
</handler-chain>
@@ -73,14 +73,14 @@
<port-name-pattern>ns1:InvalidPort</port-name-pattern>
<handler>
<handler-name> InvalidPortClientHandler </handler-name>
- <handler-class> org.jboss.test.ws.jaxws.handlerscope.ProtocolHandler
</handler-class>
+ <handler-class> org.jboss.test.ws.jaxws.handlerscope.InvalidPortClientHandler
</handler-class>
</handler>
</handler-chain>
<handler-chain>
<handler>
<handler-name> GeneralClientHandler </handler-name>
- <handler-class> org.jboss.test.ws.jaxws.handlerscope.ProtocolHandler
</handler-class>
+ <handler-class> org.jboss.test.ws.jaxws.handlerscope.GeneralClientHandler
</handler-class>
</handler>
</handler-chain>