Re: Struts and XForms Support.

2001-12-31 Thread Ted Husted
I'd post this to the user list, where it will get a wider distribution. I know people have mentioned XForms before, so you might be able to find some colleagues. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Building Java web applications with Struts. -- Tel +1 585 737-3463. -- Web http://ww

Struts and XForms Support.

2001-12-31 Thread Ramanswamy, Muthu
Currently we are using HTML Forms with Struts. If we migrate from HTML Forms to XForms (http://www.w3.org/TR/xforms/), will it impact my existing app that uses Struts? BTW I am new to XForms also. I see XForms sending data in the form of XML Stream (XML Instance Data). Struts form beans rely on

Re: Single Signon (was role based actions)

2001-12-31 Thread Dr. BaTien Duong
Yes, I am interested in exploring open souce solution for single SignOn. I am watching Liberty Alliance, while internally develop solution based on JAAS, OpenLDAP, and Kerberos. BaTien - Original Message - From: "Sandra Cann" <[EMAIL PROTECTED]> To: "Struts Developers List" <[EMAIL PROT

Single Signon (was role based actions)

2001-12-31 Thread Sandra Cann
Batien et al, I wonder if members of this list would be interested in collaborating with the Expresso community on single sign-on features via our opensource listserv or the Expresso Users Forum (Single Sign-on topic). The following document url is a summation of a detailed discussion on single

Re: Struts Controller Scalability

2001-12-31 Thread Craig R. McClanahan
On Mon, 31 Dec 2001, Ted Husted wrote: > Date: Mon, 31 Dec 2001 08:58:46 -0500 > From: Ted Husted <[EMAIL PROTECTED]> > Reply-To: Struts Developers List <[EMAIL PROTECTED]> > To: Struts Developers List <[EMAIL PROTECTED]> > Subject: Re: Struts Controller Scalability > > Since Java is multithrea

RES: Struts Controller Scalability

2001-12-31 Thread RODRIGO CARVALHO DOS SANTOS
Thanks. -Mensagem original- De: Ted Husted [mailto:[EMAIL PROTECTED]] Enviada em: segunda-feira, 31 de dezembro de 2001 10:59 Para: Struts Developers List Assunto: Re: Struts Controller Scalability Since Java is multithreaded, raw scalability should in fact be better with a single

Re: Struts Controller Scalability

2001-12-31 Thread Ted Husted
Since Java is multithreaded, raw scalability should in fact be better with a single servlet. Threads are lighter than running more servlets. But, in practice, its the hardware and bandwidth that will determine true scalability. The impact of servlets versus threads will be lost in the rounding. Ev

Struts Controller Scalability

2001-12-31 Thread RODRIGO CARVALHO DOS SANTOS
Hi, I am thinking in using STRUTS in my next Web Application project. But I am not sure if using only one servlet controller will give me the scalability I need in the project. Another point about having only one controller is about the management of the project. I think will be more di