RE: 1.1B and data-source problems...

2002-06-05 Thread wbchmura

Yep, I got the xml out of the blank struts file...

That and the struts example I do not think uses 1.1 so that looked okay 
when I compared it against that

Thanks all for your help

-Original Message-
From: adam.hardy [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, June 05, 2002 2:03 AM
To: struts-user
Subject: Re: 1.1B and data-source problems...


That's exactly what happened to me as well. I think I got the xml out of 

the struts-blank app. Maybe somebody change it..

Adam

James Holmes wrote:

That's because you are using attributes of the
data-source tag to define the values for those
parameters.  That method has been deprecated for some
time now.  You need to use the new set-property
method for this.

Take a look at the DTD for more info:
http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd

The Struts Console makes easy work of doing that:

http://www.jamesholmes.com/struts/

-james
[EMAIL PROTECTED]


--- [EMAIL PROTECTED] wrote:
  

I cannot seem to get a data-source configured under
1.1b..

I have this entered into my struts-config

  data-sources
 data-source 
  autoCommit=false 
  description=Oracle
  driverClass=oracle.jdbc.driver.OracleDriver 
  maxActive=4
  password=xx 
  url=jdbc:oracle:thin:@db1:1521:WIZARD
  user=xx/
 /data-sources  

I get sax Exceptions telling me I need autoCommit,
description, etc...  
but I have those...

HELP!



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





__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

--
To unsubscribe, e-mail:   
mailto:[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]



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




RE: 1.1B and data-source problems...

2002-06-05 Thread wbchmura

Thanks...  Struts Console is very nice, worked fine except I could not 
find documentation on what everything does.  nice app though

-Original Message-
From: jholmes612 [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 04, 2002 7:30 PM
To: struts-user
Subject: Re: 1.1B and data-source problems...


That's because you are using attributes of the
data-source tag to define the values for those
parameters.  That method has been deprecated for some
time now.  You need to use the new set-property
method for this.

Take a look at the DTD for more info:
http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd

The Struts Console makes easy work of doing that:

http://www.jamesholmes.com/struts/

-james
[EMAIL PROTECTED]


--- [EMAIL PROTECTED] wrote:
 
 I cannot seem to get a data-source configured under
 1.1b..
 
 I have this entered into my struts-config
 
   data-sources
  data-source 
   autoCommit=false 
   description=Oracle
   driverClass=oracle.jdbc.driver.OracleDriver 
   maxActive=4
   password=xx 
   url=jdbc:oracle:thin:@db1:1521:WIZARD
   user=xx/
  /data-sources  
 
 I get sax Exceptions telling me I need autoCommit,
 description, etc...  
 but I have those...
 
 HELP!
 
 
 
 --
 To unsubscribe, e-mail:  
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 


__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

--
To unsubscribe, e-mail:   
mailto:[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]




RE: 1.1B and data-source problems...

2002-06-05 Thread James Holmes

Essentially the docs for the Struts Console is the
Strtus config file DTD.  All Struts Console is is just
a pretty wrapper for modifying the config file.

-james
[EMAIL PROTECTED]
http://www.jamesholmes.com/struts/


--- [EMAIL PROTECTED] wrote:
 Thanks...  Struts Console is very nice, worked fine
 except I could not 
 find documentation on what everything does.  nice
 app though
 
 -Original Message-
 From: jholmes612 [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 04, 2002 7:30 PM
 To: struts-user
 Subject: Re: 1.1B and data-source problems...
 
 
 That's because you are using attributes of the
 data-source tag to define the values for those
 parameters.  That method has been deprecated for
 some
 time now.  You need to use the new set-property
 method for this.
 
 Take a look at the DTD for more info:

http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd
 
 The Struts Console makes easy work of doing that:
 
 http://www.jamesholmes.com/struts/
 
 -james
 [EMAIL PROTECTED]
 
 
 --- [EMAIL PROTECTED] wrote:
  
  I cannot seem to get a data-source configured
 under
  1.1b..
  
  I have this entered into my struts-config
  
data-sources
   data-source 
autoCommit=false 
description=Oracle
   
 driverClass=oracle.jdbc.driver.OracleDriver 
maxActive=4
password=xx 
url=jdbc:oracle:thin:@db1:1521:WIZARD
user=xx/
   /data-sources  
  
  I get sax Exceptions telling me I need autoCommit,
  description, etc...  
  but I have those...
  
  HELP!
  
  
  
  --
  To unsubscribe, e-mail:  
 
 mailto:[EMAIL PROTECTED]
  For additional commands, e-mail:
  mailto:[EMAIL PROTECTED]
  
 
 
 __
 Do You Yahoo!?
 Yahoo! - Official partner of 2002 FIFA World Cup
 http://fifaworldcup.yahoo.com
 
 --
 To unsubscribe, e-mail:   
 mailto:[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]
 


__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

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




1.1B and data-source problems...

2002-06-04 Thread wbchmura


I cannot seem to get a data-source configured under 1.1b..

I have this entered into my struts-config

  data-sources
 data-source 
  autoCommit=false 
  description=Oracle
  driverClass=oracle.jdbc.driver.OracleDriver 
  maxActive=4
  password=xx 
  url=jdbc:oracle:thin:@db1:1521:WIZARD
  user=xx/
 /data-sources  

I get sax Exceptions telling me I need autoCommit, description, etc...  
but I have those...

HELP!



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




Re: 1.1B and data-source problems...

2002-06-04 Thread James Holmes

That's because you are using attributes of the
data-source tag to define the values for those
parameters.  That method has been deprecated for some
time now.  You need to use the new set-property
method for this.

Take a look at the DTD for more info:
http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd

The Struts Console makes easy work of doing that:

http://www.jamesholmes.com/struts/

-james
[EMAIL PROTECTED]


--- [EMAIL PROTECTED] wrote:
 
 I cannot seem to get a data-source configured under
 1.1b..
 
 I have this entered into my struts-config
 
   data-sources
  data-source 
   autoCommit=false 
   description=Oracle
   driverClass=oracle.jdbc.driver.OracleDriver 
   maxActive=4
   password=xx 
   url=jdbc:oracle:thin:@db1:1521:WIZARD
   user=xx/
  /data-sources  
 
 I get sax Exceptions telling me I need autoCommit,
 description, etc...  
 but I have those...
 
 HELP!
 
 
 
 --
 To unsubscribe, e-mail:  
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail:
 mailto:[EMAIL PROTECTED]
 


__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

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




Re: 1.1B and data-source problems...

2002-06-04 Thread Adam Hardy

That's exactly what happened to me as well. I think I got the xml out of 
the struts-blank app. Maybe somebody change it..

Adam

James Holmes wrote:

That's because you are using attributes of the
data-source tag to define the values for those
parameters.  That method has been deprecated for some
time now.  You need to use the new set-property
method for this.

Take a look at the DTD for more info:
http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd

The Struts Console makes easy work of doing that:

http://www.jamesholmes.com/struts/

-james
[EMAIL PROTECTED]


--- [EMAIL PROTECTED] wrote:
  

I cannot seem to get a data-source configured under
1.1b..

I have this entered into my struts-config

  data-sources
 data-source 
  autoCommit=false 
  description=Oracle
  driverClass=oracle.jdbc.driver.OracleDriver 
  maxActive=4
  password=xx 
  url=jdbc:oracle:thin:@db1:1521:WIZARD
  user=xx/
 /data-sources  

I get sax Exceptions telling me I need autoCommit,
description, etc...  
but I have those...

HELP!



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





__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

--
To unsubscribe, e-mail:   mailto:[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]