From dev-return-70065-apmail-geronimo-dev-archive=geronimo.apache.org@geronimo.apache.org Wed Dec 03 10:49:59 2008 Return-Path: Delivered-To: apmail-geronimo-dev-archive@www.apache.org Received: (qmail 86552 invoked from network); 3 Dec 2008 10:49:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Dec 2008 10:49:58 -0000 Received: (qmail 50393 invoked by uid 500); 3 Dec 2008 10:50:09 -0000 Delivered-To: apmail-geronimo-dev-archive@geronimo.apache.org Received: (qmail 50335 invoked by uid 500); 3 Dec 2008 10:50:09 -0000 Mailing-List: contact dev-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list dev@geronimo.apache.org Received: (qmail 50324 invoked by uid 99); 3 Dec 2008 10:50:09 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Dec 2008 02:50:09 -0800 X-ASF-Spam-Status: No, hits=1.1 required=10.0 tests=FB_GET_MEDS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of jason.dillon@gmail.com designates 74.125.44.29 as permitted sender) Received: from [74.125.44.29] (HELO yx-out-2324.google.com) (74.125.44.29) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Dec 2008 10:48:38 +0000 Received: by yx-out-2324.google.com with SMTP id 3so1870742yxj.85 for ; Wed, 03 Dec 2008 02:49:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender :to:subject:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references :x-google-sender-auth; bh=AryfAe/EB/GiuLnFZ1oH7RkvunJrELnSacRKI38nAig=; b=GzrK5xxt1IA40TCqeBFDL7FSV+XtRnI92cU19cKFtHz38XJIJo/UgMUdEEvMqWJMTh qFqXNVhxO7cFnmJ0kMs0zt41YD8SuhiJdsmf2JH8J+NzOXaeSGtwoLPcKM/9K7WNg0HW d06xmYVbFMLAS/tmy5yBsZDNA1A8KXomeD53A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references:x-google-sender-auth; b=RiDIU5rnTx4xZ8kMaagNuo5oiwrNtK54vHdbzeFQcBEAqeIm+1csdCpYo870l3Qsgr dBB03S/ZDFGZH6SR05AQkLEdYnOqK+8yT+ArhNtJyJG+KSWNi88RPiI9mmcNvZzRJfHN I6fMGvl40F6Uu9fLKFminfN0N9dEQgWDZEwWs= Received: by 10.143.45.14 with SMTP id x14mr5321576wfj.165.1228301365262; Wed, 03 Dec 2008 02:49:25 -0800 (PST) Received: by 10.142.180.2 with HTTP; Wed, 3 Dec 2008 02:49:25 -0800 (PST) Message-ID: <937046e80812030249m4eac72beu5a9bb85bc8e8fb73@mail.gmail.com> Date: Wed, 3 Dec 2008 17:49:25 +0700 From: "Jason Dillon" Sender: jason.dillon@gmail.com To: dev@geronimo.apache.org Subject: Re: Status of server/trunk wrt any release? In-Reply-To: <5eb405c70812010731t15053465ybf7a1538c71bd839@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <0C44790D-F1D1-49AA-BC64-C4A5FE5DC17D@planet57.com> <5eb405c70812010731t15053465ybf7a1538c71bd839@mail.gmail.com> X-Google-Sender-Auth: 6514323cb6112541 X-Virus-Checked: Checked by ClamAV on apache.org For example your WsgenCommand.java becomes: package org.apache.geronimo.jaxws.builder; import org.apache.geronimo.gshell.command.CommandAction; import org.apache.geronimo.gshell.command.CommandContext; import org.apache.geronimo.gshell.command.Arguments; import org.apache.geronimo.gshell.application.Application; /** * GShell command for wsgen tool. * * @version $Rev: 595889 $ $Date: 2007-11-16 20:13:06 -0500 (Fri, 16 Nov 2007) $ */ public class WsgenCommand implements CommandAction { private Application app; public WsgenCommand(final Application app) { assert app != null; this.app = app; } public Object execute(final CommandContext context) throws Exception { assert context != null; return JAXWSToolsCLI.run(JAXWSToolsCLI.Command.WSGEN, app.getHomeDir().getAbsolutePath(), Arguments.toStringArray(context.getArguments()), context.getIo().outputStream); } } And then the geronimo-jaxws-sun-tools jar gets a META-INF/gshell/components.xml with: And finally 2 resource bundle files for i18n of the descriptions (one for WsgenCommand and another for WsimportCommand). >From the gshell this plugin can be installed either by adding the dependency to etc/application.xml or dynamically by running the 'admin/install-plugin' command. --jason On Mon, Dec 1, 2008 at 10:31 PM, Jarek Gawor wrote: > Jason, > > Will the existing gshell commands need to be updated to work with the > latest gshell? > > Jarek > > On Fri, Nov 28, 2008 at 4:59 AM, Jason Dillon wrote: >> Is there any release planned for server/trunk soonerish? I ask because I'm >> about ready to release GShell 1.0-alpha-2, and I'd like to update >> server/trunk to use its awesome goodness. Anyone see any problems with >> that? >> >> --jason >> >