You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by di...@apache.org on 2007/01/26 22:21:06 UTC

svn commit: r500355 - in /geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http: GreeterHandler.java handlers.xml

Author: dims
Date: Fri Jan 26 13:21:05 2007
New Revision: 500355

URL: http://svn.apache.org/viewvc?view=rev&rev=500355
Log:
Fix for GERONIMO-2781 - Improved CXF-based POJO WebService support

Added:
    geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/GreeterHandler.java
    geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/handlers.xml

Added: geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/GreeterHandler.java
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/GreeterHandler.java?view=auto&rev=500355
==============================================================================
--- geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/GreeterHandler.java (added)
+++ geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/GreeterHandler.java Fri Jan 26 13:21:05 2007
@@ -0,0 +1,192 @@
+/**
+ * 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 org.apache.hello_world_soap_http;
+
+import java.util.Set;
+import javax.xml.namespace.QName;
+import javax.xml.ws.handler.soap.SOAPHandler;
+import javax.xml.ws.handler.soap.SOAPMessageContext;
+import javax.xml.ws.handler.MessageContext;
+
+import javax.annotation.Resource;
+import javax.annotation.PreDestroy;
+import javax.annotation.PostConstruct;
+
+public class GreeterHandler implements SOAPHandler<SOAPMessageContext> {
+    
+    @Resource(name="greeting")
+    private String greeting;
+
+    @PostConstruct
+    public void init() {
+        System.out.println(this + " PostConstruct");
+    }
+
+    @PreDestroy
+    public void destroy() {
+        System.out.println(this + " PreDestroy");
+    }
+
+    public boolean handleMessage(SOAPMessageContext smc) {
+        System.out.println(this + " handleMessage(): " + greeting);
+        return true;
+    }
+       
+    public boolean handleFault(SOAPMessageContext smc) {
+        System.out.println(this + " handleFault()");
+        return true;
+    }
+    
+    public void close(MessageContext messageContext) {
+        System.out.println(this + " close()");
+    }
+    
+    public Set<QName> getHeaders(){
+        return null;
+    }
+    
+}
+/**
+ * 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 org.apache.hello_world_soap_http;
+
+import java.util.Set;
+import javax.xml.namespace.QName;
+import javax.xml.ws.handler.soap.SOAPHandler;
+import javax.xml.ws.handler.soap.SOAPMessageContext;
+import javax.xml.ws.handler.MessageContext;
+
+import javax.annotation.Resource;
+import javax.annotation.PreDestroy;
+import javax.annotation.PostConstruct;
+
+public class GreeterHandler implements SOAPHandler<SOAPMessageContext> {
+    
+    @Resource(name="greeting")
+    private String greeting;
+
+    @PostConstruct
+    public void init() {
+        System.out.println(this + " PostConstruct");
+    }
+
+    @PreDestroy
+    public void destroy() {
+        System.out.println(this + " PreDestroy");
+    }
+
+    public boolean handleMessage(SOAPMessageContext smc) {
+        System.out.println(this + " handleMessage(): " + greeting);
+        return true;
+    }
+       
+    public boolean handleFault(SOAPMessageContext smc) {
+        System.out.println(this + " handleFault()");
+        return true;
+    }
+    
+    public void close(MessageContext messageContext) {
+        System.out.println(this + " close()");
+    }
+    
+    public Set<QName> getHeaders(){
+        return null;
+    }
+    
+}
+/**
+ * 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 org.apache.hello_world_soap_http;
+
+import java.util.Set;
+import javax.xml.namespace.QName;
+import javax.xml.ws.handler.soap.SOAPHandler;
+import javax.xml.ws.handler.soap.SOAPMessageContext;
+import javax.xml.ws.handler.MessageContext;
+
+import javax.annotation.Resource;
+import javax.annotation.PreDestroy;
+import javax.annotation.PostConstruct;
+
+public class GreeterHandler implements SOAPHandler<SOAPMessageContext> {
+    
+    @Resource(name="greeting")
+    private String greeting;
+
+    @PostConstruct
+    public void init() {
+        System.out.println(this + " PostConstruct");
+    }
+
+    @PreDestroy
+    public void destroy() {
+        System.out.println(this + " PreDestroy");
+    }
+
+    public boolean handleMessage(SOAPMessageContext smc) {
+        System.out.println(this + " handleMessage(): " + greeting);
+        return true;
+    }
+       
+    public boolean handleFault(SOAPMessageContext smc) {
+        System.out.println(this + " handleFault()");
+        return true;
+    }
+    
+    public void close(MessageContext messageContext) {
+        System.out.println(this + " close()");
+    }
+    
+    public Set<QName> getHeaders(){
+        return null;
+    }
+    
+}

Added: geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/handlers.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/handlers.xml?view=auto&rev=500355
==============================================================================
--- geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/handlers.xml (added)
+++ geronimo/server/trunk/testsuite/webservices-testsuite/jaxws-tests/jaxws-war/src/main/java/org/apache/hello_world_soap_http/handlers.xml Fri Jan 26 13:21:05 2007
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<jws:handler-chains xmlns:jws="http://java.sun.com/xml/ns/javaee">
+  <jws:handler-chain>
+    <jws:handler>
+      <jws:handler-class>org.apache.hello_world_soap_http.GreeterHandler</jws:handler-class>
+    </jws:handler>
+  </jws:handler-chain>
+</jws:handler-chains>
+<?xml version="1.0" encoding="UTF-8"?>
+<jws:handler-chains xmlns:jws="http://java.sun.com/xml/ns/javaee">
+  <jws:handler-chain>
+    <jws:handler>
+      <jws:handler-class>org.apache.hello_world_soap_http.GreeterHandler</jws:handler-class>
+    </jws:handler>
+  </jws:handler-chain>
+</jws:handler-chains>
+<?xml version="1.0" encoding="UTF-8"?>
+<jws:handler-chains xmlns:jws="http://java.sun.com/xml/ns/javaee">
+  <jws:handler-chain>
+    <jws:handler>
+      <jws:handler-class>org.apache.hello_world_soap_http.GreeterHandler</jws:handler-class>
+    </jws:handler>
+  </jws:handler-chain>
+</jws:handler-chains>