RES: Using Torque and Struts

2002-03-06 Thread Rubens Gama
where can i get information about Torque, please? thanks in advance Rubens Gama -Mensagem original- De: Hoang, Hai [mailto:[EMAIL PROTECTED]] Enviada em: quarta-feira, 6 de março de 2002 14:18 Para: 'struts-user' Assunto: Using Torque and Struts I am having hard time setting

RES: Taglib 'struts'

2002-02-15 Thread Rubens Gama
quot; prefix="html" %> <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="struts-html" %> It's the prefix specified in the taglib definition. I guess people who use lots of tags prefix the struts tags with struts-. People who only use struts leave it off.

Taglib 'struts'

2002-02-15 Thread Rubens Gama
Exists tags defined in struts.tld that seems like tags defined in the struts-html.tld For example: or or . What's the diference between them ? thanks in advice -- To unsubscribe, e-mail: For additional commands, e-mail:

taglibs struts X struts-html

2002-02-14 Thread Rubens Gama
What's the diference between the tags struts and struts-html in the struts 1.0.1? For example: or or . thanks in advice -- To unsubscribe, e-mail: For additional commands, e-mail:

RES: RES: Tool for Building Visual Java Server Pages

2002-01-30 Thread Rubens Gama
Extension called 'cpwr_optimalj_jsp.mxp'. Do you know? -Mensagem original- De: Duncan Harris [mailto:[EMAIL PROTECTED]] Enviada em: quarta-feira, 30 de janeiro de 2002 11:23 Para: [EMAIL PROTECTED] Assunto: Re: RES: Tool for Building Visual Java Server Pages [EMAIL PROTECTE

RES: Tool for Building Visual Java Server Pages

2002-01-29 Thread Rubens Gama
anks. >Greg Voss >Manager, Web Development >Silverstream Software Inc. -- John Yu Scioworks Technologies e: [EMAIL PROTECTED] w: +(65) 873 5989 w: http://www.scioworks.com m: +(65) 9782 9610 Scioworks Camino - "Rapid WebApp Assembly for Struts" ---

Tool for Building Visual Java Server Pages

2002-01-29 Thread Rubens Gama
Since my staff begun to constructing web applications with struts, the major problem was a tool for this purpose. Can somebody know a visual tool for struts development? -- To unsubscribe, e-mail: For additional commands, e-mail:

RES: Formatting Dates, Integers...

2002-01-28 Thread Rubens Gama
My solution was : create a proprietary class that make all conversion types. -Mensagem original- De: Hudayioglu, Fehmi [mailto:[EMAIL PROTECTED]] Enviada em: segunda-feira, 28 de janeiro de 2002 15:39 Para: '[EMAIL PROTECTED]' Assunto: Formatting Dates, Integers... Hi fellows, I have

RES: Formatting Dates, Integers...

2002-01-28 Thread Rubens Gama
public static String formatDecimal(String format,String value) { double valueDouble = Double.parseDouble(value); DecimalFormat decimalFormat = new DecimalFormat(); decimalFormat.applyPattern(format); return decimalFormat.format(valueDouble); } try to do it: format

RES: handling exceptions

2002-01-28 Thread Rubens Gama
Thanks. I want to know if your framework of handling exception will be opensource, like struts. -Mensagem original- De: Chuck Cavaness [mailto:[EMAIL PROTECTED]] Enviada em: segunda-feira, 28 de janeiro de 2002 10:27 Para: Struts Users Mailing List Assunto: Re: handling exceptions We'v

Handling Exceptions with Struts

2002-01-28 Thread Rubens Gama
To debug my Action classes, i use a method call "System.out.println()" or "servlet.log()"... is it a good practice? -- To unsubscribe, e-mail: For additional commands, e-mail:

handling exceptions

2002-01-28 Thread Rubens Gama
Could somebody help me ? I have to many problems with handling exception of the Struts. what do you suggest to handling exception of the deployment applications? -- To unsubscribe, e-mail: For additional commands, e-mail:

RES: html:errors error?

2002-01-16 Thread Rubens Gama
you must define in ApplicationResourses.properties: error.header="" error.footer="" the problem is solved. ok? -Mensagem original- De: Frank Lawlor [mailto:[EMAIL PROTECTED]] Enviada em: quarta-feira, 16 de janeiro de 2002 15:15 Para: Struts (E-mail) Assunto: html:errors error? I just

Report TagLib

2002-01-16 Thread Rubens Gama
can somebody tell if exists some report taglib ? -- To unsubscribe, e-mail: For additional commands, e-mail:

RES: Report's Tag

2002-01-15 Thread Rubens Gama
aasen (TeleRelay) [mailto:[EMAIL PROTECTED]] Enviada em: terca-feira, 15 de janeiro de 2002 15:28 Para: Struts Users Mailing List Assunto: RE: Report's Tag > -Original Message- > From: Rubens Gama [mailto:[EMAIL PROTECTED]] > Sent: dinsdag 15 januari 2002 17:52 > To: Struts-Us

Report Taglib

2002-01-15 Thread Rubens Gama
where can i found taglib report using the Struts Framework? thanks in advance. -- To unsubscribe, e-mail: For additional commands, e-mail:

Report's Tag

2002-01-15 Thread Rubens Gama
could you tell me if exists any JSP report tag? thanks in advance -- To unsubscribe, e-mail: For additional commands, e-mail:

Resin X Tomcat

2002-01-15 Thread Rubens Gama
what JSP Engine i must to use, Tomcat or Resin? what is the best? thanks in advance... -- To unsubscribe, e-mail: For additional commands, e-mail:

RES: datasources

2002-01-11 Thread Rubens Gama
List' Assunto: RE: datasources I am using struts 1.0 and it works for me, however I don't use set-property attribute and assign each property directly. E.g.: Mark. -Original Message----- From: Rubens Gama [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 3:1

RES: datasources

2002-01-11 Thread Rubens Gama
Mark [mailto:[EMAIL PROTECTED]] Enviada em: sexta-feira, 11 de janeiro de 2002 18:04 Para: 'Struts Users Mailing List' Assunto: RE: datasources Rubens, You can use key="dataSourceName" attribute in tag. To retrieve: ActionServlet.findDataSource( "dataSourceName") M

RES: datasources

2002-01-11 Thread Rubens Gama
Original Message----- From: Rubens Gama [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 2:38 PM To: Struts-User Subject: datasources i have two datasources defined in the struts-config.xml. how can i reference each one from my application? for example: servlet.findDataSource(1) or serv

datasources

2002-01-11 Thread Rubens Gama
i have two datasources defined in the struts-config.xml. how can i reference each one from my application? for example: servlet.findDataSource(1) or servlet.findDataSource(2) thanks in advance -- To unsubscribe, e-mail: For additional commands, e-mail:

RES: RES: RES:

2002-01-10 Thread Rubens Gama
n [mailto:[EMAIL PROTECTED]] > Enviada em: quinta-feira, 10 de janeiro de 2002 13:19 > Para: Struts Users Mailing List > Assunto: Re: RES: RES: > > > > Do you mean you want this? > > > > > > where you array list contains objects eachRow

RES: RES: RES:

2002-01-10 Thread Rubens Gama
[mailto:[EMAIL PROTECTED]] Enviada em: quinta-feira, 10 de janeiro de 2002 13:19 Para: Struts Users Mailing List Assunto: Re: RES: RES: Do you mean you want this? where you array list contains objects eachRow, which has methods String getMyField1(), getMyField2 etc. K. ---

RES: RES:

2002-01-10 Thread Rubens Gama
Sorry for the excessive code, but these do work. Hope that helps. -- Geoff > thanks for the fast reply but... > for example: > listClients - collection of client's > objects(ArrayList for example) > client - object > code - client object property > >

RES:

2002-01-10 Thread Rubens Gama
viada em: quinta-feira, 10 de janeiro de 2002 11:56 Para: Struts Users Mailing List Assunto: Re: hope I'm not wrong :) - Original Message ----- From: "Rubens Gama" <[EMAIL PROTECTED]> To: "Struts-User" <[EMAIL PROTECTED]> Sent: Thursday, January 10,

struts-user@jakarta.apache.org

2002-01-10 Thread Rubens Gama
How can i write an object's property that belongs to an 'ArrayList' object using the clause ? Thanks in advance -- To unsubscribe, e-mail: For additional commands, e-mail: