Re: Disadvantages of Struts?

2003-12-03 Thread Dynamic Systems
Hello all!

That's my first intercourse on the list

Does anyone use different languages? I've setup all the JSP with html:html
locale=true and created the bla.properties, bla_en.properties and
bla_pt.properties. So, when I access in my browser, independent of the
selected language and order, I always see just one language. Can anyone help
me?

Thanks,

Renan Viegas
Dynamic Systems


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Database

2003-12-03 Thread Dynamic Systems
Another problem. I've setup a database connection in the struts-config.xml.
Is the data-sources position correct? I'm getting the following error:

Cannot find ActionMappings or ActionFormBeans collection

Take a look at the file:

?xml version=1.0 encoding=ISO-8859-1 ?
!DOCTYPE struts-config PUBLIC
-//Apache Software Foundation//DTD Struts Configuration 1.0//EN
http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd;

struts-config

form-beans
!-- Struts Example form bean --
  form-bean name=StrutsInputFormBean
type=org.struts.example.StrutsInputForm /
  form-bean name=StrutsDisplayFormBean
type=org.struts.example.StrutsDisplayForm /
/form-beans

global-forwards
  forward name=Menu path=/index.html/
/global-forwards

action-mappings

!-- StrutsExample --
action path=/StrutsInputPath
 type=org.struts.example.StrutsInputAction
 name=StrutsInputFormBean
 scope=request input=/PgInput.jsp
  forward name=Next path=/PgDisplay.jsp /
/action

action path=/StrutsDisplayPath
 type=org.struts.example.StrutsDisplayAction
 name=StrutsDisplayFormBean
 scope=request input=/PgDisplay.jsp 
/action

/action-mappings

data-sources
!-- configuration for commons BasicDataSource --
data-source type=org.apache.commons.dbcp.BasicDataSource
set-property property=driverClassName value=com.mysql.jdbc.Driver
/
set-property
  property=key
  value=databasename /
set-property
  property=url
  value=jdbc:mysql://localhost/databasename /
set-property
  property=username
  value=userxxx /
set-property
  property=password
  value=passxxx /
set-property
  property=maxActive
  value=10 /
set-property
  property=maxWait
  value=5000 /
set-property
  property=defaultAutoCommit
  value=false /
set-property
  property=defaultReadOnly
  value=false /
set-property
  property=validationQuery
  value=SELECT COUNT(*) FROM TEST /
/data-source
/data-sources

/struts-config


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]