Return-Path: Delivered-To: apmail-incubator-beehive-dev-archive@www.apache.org Received: (qmail 50521 invoked from network); 29 Sep 2004 22:16:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 29 Sep 2004 22:16:31 -0000 Received: (qmail 76225 invoked by uid 500); 29 Sep 2004 22:16:29 -0000 Delivered-To: apmail-incubator-beehive-dev-archive@incubator.apache.org Received: (qmail 76160 invoked by uid 500); 29 Sep 2004 22:16:28 -0000 Mailing-List: contact beehive-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Beehive Developers" Delivered-To: mailing list beehive-dev@incubator.apache.org Received: (qmail 76147 invoked by uid 99); 29 Sep 2004 22:16:28 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from [216.110.85.132] (HELO newman.motive.com) (216.110.85.132) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 29 Sep 2004 15:16:27 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.0.6556.0 content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: RE: svn commit: rev 47508 - incubator/beehive/trunk/wsm/samples/dropInDeployment/AddressBook/server/web Date: Wed, 29 Sep 2004 17:16:22 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: svn commit: rev 47508 - incubator/beehive/trunk/wsm/samples/dropInDeployment/AddressBook/server/web Thread-Index: AcSmcPP0SNnBA/v6RDqMkogCTT9kkQAAPMhQ From: "Enrico Brunetta" To: "Beehive Dev" X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Works like a charm.... Thanks, I was just trying so I do not get in cvs hell later... Enrico. > -----Original Message----- > From: mmerz@apache.org [mailto:mmerz@apache.org] > Sent: Wednesday, September 29, 2004 5:09 PM > To: beehive-cvs@incubator.apache.org > Subject: svn commit: rev 47508 - > incubator/beehive/trunk/wsm/samples/dropInDeployment/AddressBook/server/ we > b >=20 > Author: mmerz > Date: Wed Sep 29 15:09:08 2004 > New Revision: 47508 >=20 > Added: >=20 > incubator/beehive/trunk/wsm/samples/dropInDeployment/AddressBook/server/ we > b/AddressBookWebService.jws > Log: > Somehow the AddressBookWebService.jws was deleted. Add it again. >=20 > Contributor: Daryoush Mehrtash >=20 >=20 >=20 >=20 > Added: > incubator/beehive/trunk/wsm/samples/dropInDeployment/AddressBook/server/ we > b/AddressBookWebService.jws > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D > =3D=3D=3D=3D > --- (empty file) > +++ > incubator/beehive/trunk/wsm/samples/dropInDeployment/AddressBook/server/ we > b/AddressBookWebService.jws Wed Sep 29 15:09:08 2004 > @@ -0,0 +1,46 @@ > +import java.rmi.RemoteException; > + > +import org.beehive.demo.Address; > +import org.beehive.demo.AddressBook; > +import org.beehive.demo.AddressBookImpl; > + > + > +import javax.jws.Oneway; > +import javax.jws.WebMethod; > +import javax.jws.WebParam; > +import javax.jws.WebResult; > +import javax.jws.WebService; > + > +@WebService( targetNamespace=3D"http://www.beehive.com/AddressBook") > +public class AddressBookWebService implements AddressBook { > + > + AddressBook addressBook; > + > + > + public AddressBookWebService() { > + addressBook=3D new AddressBookImpl(); > + } > + > + /** > + * @param name > + * @param address > + * @throws java.rmi.RemoteException > + */ > + @WebMethod > + public void addEntry(String name, Address address) throws > RemoteException { > + addressBook.addEntry(name, address); > + } > + /** > + * @param name > + * @return > + * @throws java.rmi.RemoteException > + */ > + @WebMethod > + public Address getAddressFromName(String name) throws RemoteException > { > + return addressBook.getAddressFromName(name); > + } > + > + > + public void notWebService() { > + } > +}