[jbossws-commits] JBossWS SVN: r4693 - in stack/native/trunk: src/test/java/org/jboss/test/ws/jaxws and 1 other directories.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Mon Oct 8 10:43:53 EDT 2007


Author: richard.opalka at jboss.com
Date: 2007-10-08 10:43:53 -0400 (Mon, 08 Oct 2007)
New Revision: 4693

Added:
   stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/
   stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/IUserAccountService.java
   stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/IUserAccountServiceExt.java
   stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/UserAccountService.java
   stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/UserAccountServiceExt.java
Modified:
   stack/native/trunk/ant-import-tests/build-jars-jaxws.xml
Log:
[JBWS-1799] creating test services

Modified: stack/native/trunk/ant-import-tests/build-jars-jaxws.xml
===================================================================
--- stack/native/trunk/ant-import-tests/build-jars-jaxws.xml	2007-10-08 11:14:59 UTC (rev 4692)
+++ stack/native/trunk/ant-import-tests/build-jars-jaxws.xml	2007-10-08 14:43:53 UTC (rev 4693)
@@ -380,6 +380,13 @@
       </fileset>
     </copy>
 
+    <jar destfile="${tests.output.dir}/libs/jaxws-jbws1799.jar">
+        <fileset dir="${tests.output.dir}/classes">
+            <include name="org/jboss/test/ws/jaxws/jbws1799/*.class"/>
+            <exclude name="org/jboss/test/ws/jaxws/jbws1799/*TestCase.class"/>
+        </fileset>
+    </jar>
+
     <!-- jaxws namespace -->
     <war warfile="${tests.output.dir}/libs/jaxws-namespace.war" webxml="${tests.output.dir}/resources/jaxws/namespace/WEB-INF/web.xml">
       <classes dir="${tests.output.dir}/classes">

Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/IUserAccountService.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/IUserAccountService.java	                        (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/IUserAccountService.java	2007-10-08 14:43:53 UTC (rev 4693)
@@ -0,0 +1,37 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt 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.jbws1799;
+
+import javax.ejb.Remote;
+
+/**
+ * First service interface
+ *
+ * @author richard.opalka at jboss.com
+ *
+ * @since Oct 8, 2007
+ */
+ at Remote
+public interface IUserAccountService
+{
+   public boolean authenticate(String aUsername);
+}


Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/IUserAccountService.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/IUserAccountServiceExt.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/IUserAccountServiceExt.java	                        (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/IUserAccountServiceExt.java	2007-10-08 14:43:53 UTC (rev 4693)
@@ -0,0 +1,37 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt 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.jbws1799;
+
+import javax.ejb.Remote;
+
+/**
+ * Second service interface
+ *
+ * @author richard.opalka at jboss.com
+ *
+ * @since Oct 8, 2007
+ */
+ at Remote
+public interface IUserAccountServiceExt
+{
+   public boolean authenticate(String aUsername, String aPassword);
+}


Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/IUserAccountServiceExt.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/UserAccountService.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/UserAccountService.java	                        (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/UserAccountService.java	2007-10-08 14:43:53 UTC (rev 4693)
@@ -0,0 +1,69 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt 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.jbws1799;
+
+import javax.ejb.Stateless;
+import javax.ejb.TransactionAttribute;
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+
+import org.jboss.wsf.spi.annotation.WebContext;
+
+/**
+ * First service implementation
+ *
+ * @author richard.opalka at jboss.com
+ *
+ * @since Oct 8, 2007
+ */
+ at Stateless
+ at WebService
+(
+      name="UserAccountServiceEndPoint",
+      targetNamespace="namespace1",
+      serviceName="UserAccountService1.0"
+)
+ at SOAPBinding
+(
+      style=SOAPBinding.Style.DOCUMENT,
+      use=SOAPBinding.Use.LITERAL
+)
+ at WebContext
+(
+      transportGuarantee="NONE",
+      contextRoot="/svc-useracctv1.0",
+      urlPattern="/UserAccountService1.0"
+)
+public class UserAccountService implements IUserAccountService
+{
+   @WebMethod
+   @TransactionAttribute(javax.ejb.TransactionAttributeType.SUPPORTS)
+   public boolean authenticate
+   (
+         @WebParam(name="username") String aUsername
+   )
+   {
+       return true;
+   }
+}


Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/UserAccountService.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF

Added: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/UserAccountServiceExt.java
===================================================================
--- stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/UserAccountServiceExt.java	                        (rev 0)
+++ stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/UserAccountServiceExt.java	2007-10-08 14:43:53 UTC (rev 4693)
@@ -0,0 +1,70 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt 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.jbws1799;
+
+import javax.ejb.Stateless;
+import javax.ejb.TransactionAttribute;
+import javax.jws.WebMethod;
+import javax.jws.WebParam;
+import javax.jws.WebService;
+import javax.jws.soap.SOAPBinding;
+
+import org.jboss.wsf.spi.annotation.WebContext;
+
+/**
+ * Second service implementation
+ *
+ * @author richard.opalka at jboss.com
+ *
+ * @since Oct 8, 2007
+ */
+ at Stateless
+ at WebService
+(
+      name="UserAccountServiceExtEndPoint",
+      targetNamespace="namespaceExt",
+      serviceName="UserAccountServiceExt1.0"
+)
+ at SOAPBinding
+(
+      style=SOAPBinding.Style.DOCUMENT,
+      use=SOAPBinding.Use.LITERAL
+)
+ at WebContext
+(
+      transportGuarantee="NONE",
+      contextRoot="/svc-useracctv1.0",
+      urlPattern="/UserAccountServiceExt1.0"
+)
+public class UserAccountServiceExt implements IUserAccountServiceExt 
+{
+   @WebMethod
+   @TransactionAttribute(javax.ejb.TransactionAttributeType.SUPPORTS)
+   public boolean authenticate
+   (
+         @WebParam(name="username") String username, 
+         @WebParam(name="password") String password
+   )
+   {
+       return true;
+   }
+}


Property changes on: stack/native/trunk/src/test/java/org/jboss/test/ws/jaxws/jbws1799/UserAccountServiceExt.java
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + LF




More information about the jbossws-commits mailing list