Well, that's web services if you are sharing data across networks, sharing between technologies that don't integrate well, or are sharing data that is in XML form within your network. Otherwise, you have the overhead of setUp and teardown of the HTTP protocol and XML creation/parsing to share data on the same network and within the same technology platform.
If you are within the same VM you could use a singleton data manager - this isn't clusterable however. If you are within the same network, then you could use the database and maybe even a CMP or BMP entity bean or stateful session bean that is managed by the EJB container is a clustered environment. James > -----Original Message----- > From: Rakesh Ayilliath [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, May 15, 2002 10:33 AM > To: Struts Users Mailing List; [EMAIL PROTECTED] > Subject: Re: Sharing information among web apps > > > Thats web services buddy...!! > > ----- Original Message ----- > From: "Roshan Paiva" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, May 15, 2002 9:44 PM > Subject: Sharing information among web apps > > > > Hi.. > > > > This is not a struts related question.. but I need to know > if there is > > a way of sharing information between web applications. for > example I > > have a common class.. maybe in the server's classpath .. > and one web > > app accesses it and sets some values.. and then another web app > > accesses it and gets those values.. > > > > Thanks and Kind Regards > > Roshan > > > > > > -- > To unsubscribe, e-mail: > <mailto:struts-user-> [EMAIL PROTECTED]> > For > additional commands, > e-mail: <mailto:[EMAIL PROTECTED]> > > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

