[wise-commits] wise SVN: r494 - in core/trunk/distribution/main/resouces/samples: ant and 8 other directories.

wise-commits at lists.jboss.org wise-commits at lists.jboss.org
Tue Feb 5 07:42:46 EST 2013


Author: alessio.soldano at jboss.com
Date: 2013-02-05 07:42:46 -0500 (Tue, 05 Feb 2013)
New Revision: 494

Removed:
   core/trunk/distribution/main/resouces/samples/jaxrs/
Modified:
   core/trunk/distribution/main/resouces/samples/README.txt
   core/trunk/distribution/main/resouces/samples/ant/build.xml
   core/trunk/distribution/main/resouces/samples/helloWorld/src/client/org/jboss/wise/samples/HelloWorldClient.java
   core/trunk/distribution/main/resouces/samples/helloWorld/src/server/org/jboss/wise/samples/HelloWorldWS.java
   core/trunk/distribution/main/resouces/samples/helloWorldGroovy/src/server/org/jboss/wise/samples/HelloWorldWS.java
   core/trunk/distribution/main/resouces/samples/helloWorldRuby/src/server/org/jboss/wise/samples/HelloWorldWS.java
   core/trunk/distribution/main/resouces/samples/helloWorldServlet/src/client/org/jboss/wise/samples/HelloWorldServlet.java
   core/trunk/distribution/main/resouces/samples/helloWorldServlet/src/server/org/jboss/wise/samples/HelloWorldServletWS.java
   core/trunk/distribution/main/resouces/samples/interactiveHelloWorld/src/client/org/jboss/wise/samples/InteractiveHelloWorldClient.java
   core/trunk/distribution/main/resouces/samples/interactiveHelloWorld/src/server/org/jboss/wise/samples/InteractiveHelloWorldWS.java
Log:
Misc fixes / updates on distribution samples


Modified: core/trunk/distribution/main/resouces/samples/README.txt
===================================================================
--- core/trunk/distribution/main/resouces/samples/README.txt	2013-02-05 12:14:44 UTC (rev 493)
+++ core/trunk/distribution/main/resouces/samples/README.txt	2013-02-05 12:42:46 UTC (rev 494)
@@ -1,4 +1,4 @@
-Wise Invoke Services Easily samples
+Wise Invokes Services Easily samples
 
 Here you find a set of samples demonstrating how to use Wise in a standalone application.
 Any directory, except for 'lib' and 'ant', contains a single example. The directory's name suggests
@@ -13,7 +13,7 @@
 1. Edit ant/sample.properties
 2. Enter in specific example directory
 3. Edit resources/META-INF/wise-log4j.xml and change properties according to your environment if needed.
-4. Start your JBoss AS 7 instance
+4. Start your JBoss AS 7.1.1.Final instance
 5. Type "ant deployTestWS" to deploy server side content (an archive shipping the WS endpoint invoked by the sample)
 6. Type "ant runTest" to run the client side example
 7. Type "ant undeployTestWS" to undeploy server side content

Modified: core/trunk/distribution/main/resouces/samples/ant/build.xml
===================================================================
--- core/trunk/distribution/main/resouces/samples/ant/build.xml	2013-02-05 12:14:44 UTC (rev 493)
+++ core/trunk/distribution/main/resouces/samples/ant/build.xml	2013-02-05 12:42:46 UTC (rev 494)
@@ -5,7 +5,7 @@
      ====================================================================== -->
 <project name="WiseSamples">
 	<description>
-            It's the base file used by all samples's build
+            It's the base file used by all samples' build
     </description>
         <property environment="env"/>
 	<property name="log.dir" value="log" />

Modified: core/trunk/distribution/main/resouces/samples/helloWorld/src/client/org/jboss/wise/samples/HelloWorldClient.java
===================================================================
--- core/trunk/distribution/main/resouces/samples/helloWorld/src/client/org/jboss/wise/samples/HelloWorldClient.java	2013-02-05 12:14:44 UTC (rev 493)
+++ core/trunk/distribution/main/resouces/samples/helloWorld/src/client/org/jboss/wise/samples/HelloWorldClient.java	2013-02-05 12:42:46 UTC (rev 494)
@@ -1,25 +1,24 @@
 /*
- * JBoss, Home of Professional Open Source Copyright 2006, 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.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2013, Red Hat, Inc., 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.wise.samples;
 
 import java.net.ConnectException;

Modified: core/trunk/distribution/main/resouces/samples/helloWorld/src/server/org/jboss/wise/samples/HelloWorldWS.java
===================================================================
--- core/trunk/distribution/main/resouces/samples/helloWorld/src/server/org/jboss/wise/samples/HelloWorldWS.java	2013-02-05 12:14:44 UTC (rev 493)
+++ core/trunk/distribution/main/resouces/samples/helloWorld/src/server/org/jboss/wise/samples/HelloWorldWS.java	2013-02-05 12:42:46 UTC (rev 494)
@@ -1,25 +1,24 @@
 /*
- * JBoss, Home of Professional Open Source Copyright 2006, 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.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2013, Red Hat, Inc., 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.wise.samples;
 
 import javax.jws.WebMethod;

Modified: core/trunk/distribution/main/resouces/samples/helloWorldGroovy/src/server/org/jboss/wise/samples/HelloWorldWS.java
===================================================================
--- core/trunk/distribution/main/resouces/samples/helloWorldGroovy/src/server/org/jboss/wise/samples/HelloWorldWS.java	2013-02-05 12:14:44 UTC (rev 493)
+++ core/trunk/distribution/main/resouces/samples/helloWorldGroovy/src/server/org/jboss/wise/samples/HelloWorldWS.java	2013-02-05 12:42:46 UTC (rev 494)
@@ -1,25 +1,24 @@
 /*
- * JBoss, Home of Professional Open Source Copyright 2006, 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.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2013, Red Hat, Inc., 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.wise.samples;
 
 import javax.jws.WebMethod;

Modified: core/trunk/distribution/main/resouces/samples/helloWorldRuby/src/server/org/jboss/wise/samples/HelloWorldWS.java
===================================================================
--- core/trunk/distribution/main/resouces/samples/helloWorldRuby/src/server/org/jboss/wise/samples/HelloWorldWS.java	2013-02-05 12:14:44 UTC (rev 493)
+++ core/trunk/distribution/main/resouces/samples/helloWorldRuby/src/server/org/jboss/wise/samples/HelloWorldWS.java	2013-02-05 12:42:46 UTC (rev 494)
@@ -1,25 +1,24 @@
 /*
- * JBoss, Home of Professional Open Source Copyright 2006, 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.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2013, Red Hat, Inc., 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.wise.samples;
 
 import javax.jws.WebMethod;

Modified: core/trunk/distribution/main/resouces/samples/helloWorldServlet/src/client/org/jboss/wise/samples/HelloWorldServlet.java
===================================================================
--- core/trunk/distribution/main/resouces/samples/helloWorldServlet/src/client/org/jboss/wise/samples/HelloWorldServlet.java	2013-02-05 12:14:44 UTC (rev 493)
+++ core/trunk/distribution/main/resouces/samples/helloWorldServlet/src/client/org/jboss/wise/samples/HelloWorldServlet.java	2013-02-05 12:42:46 UTC (rev 494)
@@ -1,3 +1,24 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2013, Red Hat, Inc., 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.wise.samples;
 
 import java.io.IOException;

Modified: core/trunk/distribution/main/resouces/samples/helloWorldServlet/src/server/org/jboss/wise/samples/HelloWorldServletWS.java
===================================================================
--- core/trunk/distribution/main/resouces/samples/helloWorldServlet/src/server/org/jboss/wise/samples/HelloWorldServletWS.java	2013-02-05 12:14:44 UTC (rev 493)
+++ core/trunk/distribution/main/resouces/samples/helloWorldServlet/src/server/org/jboss/wise/samples/HelloWorldServletWS.java	2013-02-05 12:42:46 UTC (rev 494)
@@ -1,25 +1,24 @@
 /*
- * JBoss, Home of Professional Open Source Copyright 2006, 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.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2013, Red Hat, Inc., 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.wise.samples;
 
 import javax.jws.WebMethod;

Modified: core/trunk/distribution/main/resouces/samples/interactiveHelloWorld/src/client/org/jboss/wise/samples/InteractiveHelloWorldClient.java
===================================================================
--- core/trunk/distribution/main/resouces/samples/interactiveHelloWorld/src/client/org/jboss/wise/samples/InteractiveHelloWorldClient.java	2013-02-05 12:14:44 UTC (rev 493)
+++ core/trunk/distribution/main/resouces/samples/interactiveHelloWorld/src/client/org/jboss/wise/samples/InteractiveHelloWorldClient.java	2013-02-05 12:42:46 UTC (rev 494)
@@ -1,25 +1,24 @@
 /*
- * JBoss, Home of Professional Open Source Copyright 2006, 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.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2013, Red Hat, Inc., 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.wise.samples;
 
 import java.net.ConnectException;

Modified: core/trunk/distribution/main/resouces/samples/interactiveHelloWorld/src/server/org/jboss/wise/samples/InteractiveHelloWorldWS.java
===================================================================
--- core/trunk/distribution/main/resouces/samples/interactiveHelloWorld/src/server/org/jboss/wise/samples/InteractiveHelloWorldWS.java	2013-02-05 12:14:44 UTC (rev 493)
+++ core/trunk/distribution/main/resouces/samples/interactiveHelloWorld/src/server/org/jboss/wise/samples/InteractiveHelloWorldWS.java	2013-02-05 12:42:46 UTC (rev 494)
@@ -1,25 +1,24 @@
 /*
- * JBoss, Home of Professional Open Source Copyright 2006, 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.
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2013, Red Hat, Inc., 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.wise.samples;
 
 import javax.jws.WebMethod;



More information about the wise-commits mailing list