I work with the Dept. of Veteran's Affairs in the U.S.  All of our
applications are required to be compliant with Section 508 of the U.S.
Disabilities Act.  Basically this Act requires any application to be usable
by someone who is blind or otherwise handicapped.  Generally, for tables,
this requires a cell label that corresponds to the row and column.  Unless,
I am mistaken, DBforms cell labels do not appear to have a correlation to
the row and column and would be difficult to use with a text reader as
required for someone who is blind.   Is this a correct statement?

Thanks,
Roy

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 27, 2003 4:23 PM
To: [EMAIL PROTECTED]
Subject: jDbForms-interest digest, Vol 1 #577 - 10 msgs


Send jDbForms-interest mailing list submissions to
        [EMAIL PROTECTED]

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.sourceforge.net/lists/listinfo/jdbforms-interest
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of jDbForms-interest digest..."


Today's Topics:

   1. (Fwd) Re: AW: AW: [dbforms] Problem with Jakarta Connection Po
(=?ISO-8859-1?Q?Siegfried_G=F6schl?=)
   2. Canoo WebTest - Was: New developers release
(=?ISO-8859-1?Q?Siegfried_G=F6schl?=)
   3. Re:  Switch to Java 1.4 (Shawn)
   4. New developers release (Henner Kollmann)
   5. Avoiding FileHolder to store BLOBs
(=?ISO-8859-1?Q?Siegfried_G=F6schl?=)
   6. Weird problem with navNew/Insert & rows displayed (Julio Ortuzar O.)
   7. AW: [dbforms] Avoiding FileHolder to store BLOBs (Henner Kollmann)
   8. AW: [dbforms] Weird problem with navNew/Insert & rows displayed
(Henner Kollmann)
   9. Re: AW: [dbforms] Avoiding FileHolder to store BLOBs
(=?ISO-8859-1?Q?Siegfried_G=F6schl?=)
  10. RE: Weird problem with navNew/Insert & rows displayed (Julio Ortuzar
O.)

--__--__--

Message: 1
From: "=?ISO-8859-1?Q?Siegfried_G=F6schl?=" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Date: Tue, 27 May 2003 09:09:49 +0200
Subject: (Fwd) Re: AW: AW: [dbforms] Problem with Jakarta Connection Po

Oops - did not send the solution to the mailing list  ....

------- Forwarded message follows -------
From:                   Siegfried G=F6schl <[EMAIL PROTECTED]>
To:                     "Henner Kollmann" <[EMAIL PROTECTED]>
Subject:                Re: AW: AW: [dbforms] Problem with Jakarta 
Connection Pool
Date sent:              Fri, 23 May 2003 16:16:59 +0200

This bug is a  thing of beauty .... :-)

I got it working with the following configuration
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

  <dbconnection
        id                      =3D "jakarta-commons-dbcp"
        isJndi                  =3D "false"
        isPow2                  =3D "true"
        default                 =3D "false"
        connectionProviderClass 
"org.dbforms.conprovider.JakartaConnectionProvider"
        conClass                =3D "org.hsqldb.jdbcDriver"
        name                    =3D "jdbc:hsqldb:hsql://localhost"
        username                =3D "root"
        password                =3D "root">

        <!-- jdbc properties -->
        <property name=3D"charSet" value=3D"ISO-8859-1" />

        <pool-property name=3D"validationQuery" value=3D"SELECT * FROM
PARTY;"/>
        <pool-property name=3D"maxActive"       value=3D"2"/>
        <pool-property name=3D"maxIdle"         value=3D"1"/>
        <pool-property name=3D"maxWait"         value=3D"-1"/>
        <pool-property name=3D"useLog"          value=3D"false"/>     

  </dbconnection>  

The Bug!!
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

The moment I set "useLog" to "true" it falls apart ... :-)

I initially set it to "true" since I found it within the user guide
and logging is fine if something does not seem to work.



Thanks for the quick help ...

Sigi



On 23 May 2003 at 15:46, Henner Kollmann wrote:

> Please try to remove the pool-property lines!  Here is working
> example of pooling:
> 
>  <!-- =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Connection =3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D
> -->
>      <dbconnection
>       isPow2                                  =3D "true"
>       connectionProviderClass =3D
> "org.dbforms.conprovider.JakartaConnectionProvider"
>    name   =3D
> "jdbc:hsqldb:$(SERVLETCONTEXT_REALPATH)/WEB-
INF/db_hsqldb/bookstore"
>    isJndi =3D "false"
>    conClass  =3D "org.hsqldb.jdbcDriver"
>    username =3D "sa"
>    password  =3D ""
>   />
> 
> Regards,
> Henner
> 
> > -----Urspr=FCngliche Nachricht-----
> > Von: Siegfried G=F6schl [mailto:[EMAIL PROTECTED] 
> > Gesendet: Freitag, 23. Mai 2003 14:48
> > An: Henner Kollmann
> > Betreff: Re: AW: [dbforms] Problem with Jakarta Connection Pool
> > 
> > 
> > Hi Henner
> > 
> > I removed the validation query to no avail. I also tried to use
> > mySQL instead of HSQLDB with the following configuration - it 
does
> > not work either ... :-(
> > 
> >   <dbconnection
> >         id                      =3D "jakarta-commons-dbcp"
> >         isJndi                  =3D "false"
> >         isPow2                  =3D "true"
> >         default                 =3D "true"
> >         connectionProviderClass =3D 
> > "org.dbforms.conprovider.JakartaConnectionProvider"
> >         connectionPoolURL       =3D ""
> >         conClass                =3D "org.gjt.mm.mysql.Driver"
> >         name                    =3D 
> > "jdbc:mysql://localhost:3306/eprocurement"
> >         username                =3D "root"
> >         password                =3D "root">
> > 
> >         <property name=3D"charSet" value=3D"ISO-8859-1" />
> > 
> >         <pool-property name=3D"validationQuery" value=3D""     />
> >         <pool-property name=3D"maxActive"       value=3D"2"    />
> >         <pool-property name=3D"maxIdle"         value=3D"1"    />
> >         <pool-property name=3D"maxWait"         value=3D"-1"   />
> >         <pool-property name=3D"useLog"          value=3D"true" />
> > 
> >     </dbconnection>  
> > 
> > But it DOES work without connection pool
> > 
> >   <dbconnection
> >     name   =3D "jdbc:mysql://localhost:3306/eprocurement"
> >     isJndi =3D "false"
> >     conClass  =3D "org.gjt.mm.mysql.Driver"
> >     username =3D "root"
> >     password  =3D "root"
> >   />
> > 
> > 
> > Thanks,
> > 
> > Siegfried Goeschl
> > CTO
> >
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D
> > IT20one GmbH
> > mail: [EMAIL PROTECTED]
> > phone: +43-1-9900046
> > fax: +43-1-52 37 888
> > www.it20one.at
> > 
> > On 23 May 2003 at 14:19, Henner Kollmann wrote:
> > 
> > > Maybe the hsqldriver do not understand the validation query.
> > > Please try without it!
> > > 
> > > Regards,
> > > Henner
> > > 
> > > > -----Urspr=FCngliche Nachricht-----
> > > > Von: [EMAIL PROTECTED]
> > > > [mailto:[EMAIL PROTECTED] Im
> > > > Auftrag von Siegfried G=F6schl Gesendet: Freitag, 23. Mai 2003
> > > > 13:58 An: [EMAIL PROTECTED] Betreff:
> > > > [dbforms] Problem with Jakarta Connection Pool
> > > > 
> > > > 
> > > > Hi folks,
> > > > 
> > > > I spent the last few days happily using DBFORMS ... 
> > brilliant stuff!
> > > > 
> > > > Today I tried to cofigure a JAKARTA connection pool and 
> > it does not 
> > > > work - I get a meaningless JASPER exception and nothing 
useful
> > > > in the log
> > > > 
> > > > 
> > > > LIB
> > > > 
> > 
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 
>
> > > I added commons-pool-1.0.jar since it is mentioned in the > >
User Guide > > > > but not part of the distro dbforms1.1.3_20030407 >
> > > > > > > > > > > The following DB connection without pool works >
> > > > >
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 
>
> > > > > > >   <dbconnection > > > >     name   =3D
"jdbc:hsqldb:hsql://localhost" > > > >     isJndi =3D "false" > > > >   

 conClass  =3D "org.hsqldb.jdbcDriver" > > > >     username =3D "root" > 
>
> >     password  =3D "root" > > > >   /> > > > > > > > > > > > > The
following conenction pool does not work > > > > > >
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 
>
> > > > > > >   <dbconnection > > > >         id                     
=3D "jakarta-commons-dbcp" > > > >         isJndi                  =3D
"false" > > > >         isPow2                  =3D "true" > > > >      

  default                 =3D "true" > > > >        
connectionProviderClass =3D > > > >
"org.dbforms.conprovider.JakartaConnectionProvider" > > > >        
connectionPoolURL       =3D "" > > > >         conClass                
=3D
"org.hsqldb.jdbcDriver" > > > >         name                    =3D
"jdbc:hsqldb:hsql://localhost" > > > >         username               

=3D "root" password             

> > > >         =3D "root">
> > > > 
> > > >         <property name=3D"charSet" value=3D"ISO-8859-1" />
> > > > 
> > > >         <pool-property name=3D"validationQuery" 
> > value=3D"SELECT * FROM 
> > > > PARTY;"     />
> > > >         <pool-property name=3D"maxActive"       value=3D"2"   />
> > > >         <pool-property name=3D"maxIdle"         value=3D"1"    />
> > > >         <pool-property name=3D"maxWait"         value=3D"-1"   />
> > > >         <pool-property name=3D"useLog"          value=3D"true" />
> > > > 
> > > >     </dbconnection>
> > > > 
> > > > +) Tomcat shows the following output
> > > > 
> > 
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 
>
> > > 5844 [Thread-3] INFO > > > >
org.dbforms.conprovider.JakartaConnectionProvider  - ::init - > > > >
dataSource property [charSet] =3D [ISO -8859-1] 5844 > > [Thread-3] 
INFO
> > > > org.dbforms.conprovider.JakartaConnectionProvider  - ::init -
> > > > dataSource log activated 5844 [Thread-3] INFO > > > >
org.dbforms.taglib.DbFormTag  - doCatch called - > > > >
java.lang.NoSuchMethodError 5844 [Thread-3] INFO > > > >
org.dbforms.taglib.DbFormTag  - doFinally called 82250 > > > >
[Thread-3] INFO > > > >
org.dbforms.conprovider.JakartaConnectionProvider  > > - ::init - > >
> > dataSource property [charSet] =3D [IS O-8859-1] 94203 > > [Thread-3]
INFO > > > > org.dbforms.conprovider.JakartaConnectionProvider  -
::init - > > > > dataSource log activated 94203 [Thread-3] INFO > > >
> org.dbforms.taglib.DbFormTag  - doCatch called - > > > >
java.lang.NoSuchMethodError 94203 [Thread-3] INFO > > > >
org.dbforms.taglib.DbFormTag  - doFinally called > > > >     > > > >
Conclusion > > > > > >
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D 
>
> > > > > > > The Jakarta Connection Provider seems to be used but it
seems > > > > that I get a java.lang.NoSuchMethodError > > > > > > > 
>
> > > > Thanks in advance > > > > > > > > Siegfried Goeschl > > > >
CTO > > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > > > IT20one GmbH > 
>
> > mail: [EMAIL PROTECTED] > > > > phone: +43-1-9900046 >
> > > fax: +43-1-52 37 888 > > > > www.it20one.at > > > > > > > > > >
> > ------------------------------------------------------- > > > >
This SF.net email is sponsored by: ObjectStore. > > > > If flattening
out C++ or Java code to make your application fit > > > > in a
relational database is painful, don't do it! Check out > > > >
ObjectStore. Now part of Progress Software. > > >
http://www.objectstore.net/sourceforge > > >
_______________________________________________ > > > DbForms Mailing
List > > > > > > http://www.wap-force.net/dbforms > > > > > > 

------- End of forwarded message -------

Siegfried Goeschl
CTO
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D
IT20one GmbH
mail: [EMAIL PROTECTED]
phone: +43-1-9900046
fax: +43-1-52 37 888
www.it20one.at
Siegfried Goeschl
CTO
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D

IT20one GmbH
mail: [EMAIL PROTECTED]
phone: +43-1-9900046
www.it20one.at



--__--__--

Message: 2
From: "=?ISO-8859-1?Q?Siegfried_G=F6schl?=" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Date: Tue, 27 May 2003 09:31:45 +0200
Subject: [dbforms] Canoo WebTest - Was: New developers release

Hi folks,

as a newbie I just read 

>>> Snippet >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

"Another idea is to have an test platform and database to test 
DbForms
with all developers. One could build an example 
page in the bookstore example to verify the bug an another developer 
has an working enviroment to reproduce the bug."

<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

Question is - are you aiming at black-box testing or white-box-
testing. In the case of black-box testing (i.e. testing the DBForms 
app with the browser) Canoo WebTest might be of interest.

Canoo WebTest can be run with ANT and Maven and generates ready-to-
use test reports

More Infos can be found at

+) http://webtest.canoo.com
+) http://www.javausergroup.at/events/14052003.htm
+) http://maven-plugins.sourceforge.net/


Thanks in advance,

Siegfried Goeschl



--__--__--

Message: 3
Date: Tue, 27 May 2003 16:26:40 +0900
To: "'dbf interest'" <[EMAIL PROTECTED]>
From: Shawn <[EMAIL PROTECTED]>
Subject: [dbforms] Re:  Switch to Java 1.4

Even if it is stable enough, let's not make that move for something a 
little patch can handle.  Most users won't have to worry about multibyte 
characters with linkURL.  If necessary, I could release a patched jar for 
people who couldn't do it themselves, but right now it doesn't seem 
necessary.

If moving to 1.4 allows new features to be introduced/enhanced, then I 
guess we should consider it, but I would image there are users who can't 
switch jvms so freely.

> Maybe we should switch to java 1.4? Do you think that it is stable
> enough to use? Do it exist for all platforms?
>
> What do you think?
>
> Regards,
> Henner
>
 -- Shawn

Happily using M2, Opera's revolutionary e-mail client: 
http://www.opera.com/m2/


--__--__--

Message: 4
From: "Henner Kollmann" <[EMAIL PROTECTED]>
To: "'dbf interest'" <[EMAIL PROTECTED]>
Date: Tue, 27 May 2003 09:59:21 +0200
Subject: [dbforms] New developers release

OK, now it's back again and the files are working!

Regards,
Henner



--__--__--

Message: 5
From: "=?ISO-8859-1?Q?Siegfried_G=F6schl?=" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Date: Tue, 27 May 2003 13:08:03 +0200
Subject: [dbforms] Avoiding FileHolder to store BLOBs

Hi folks,

for my application I can't use FileHolder since non-DBForms 
Application needs access to the BLOBs.

Would an interceptor do the trick?! The FileServlet seems to access 
the DB directly so this might not work. 


Thanks in advance,

Siegfried Goeschl



--__--__--

Message: 6
From: "Julio Ortuzar O." <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Date: Tue, 27 May 2003 16:10:52 -0400
Subject: [dbforms] Weird problem with navNew/Insert & rows displayed

Hi, hope somebody can give me some hints here!

Problem:
- I have a form with nested form.
- I have nested dbfrom tag defined as follows:

  <db:dbform tableName=3D"tbl_product_item_var"  maxRows=3D"15"
parentField=3D"product_item_id"=20
  childField=3D"product_item_id" followUp=3D"/frm_product_items.jsp"
autoUpdate=3D"false" localWebEvent=3D"navNew">

- The followUp is the original form (it calls itself).
- On nested form I add new row with navNewButton
- When I commit data (insertButton) I get back only 1 row; the one I
just inserted. I expect to see all the rows of the subform until a max
of 15 (as specified by maxRows).
- I put a isWebEvent trace on the body tag and I only get one instance
of event=3D"insert"

The weird thing is that I have another form with almost exactly the same
definition, and after I insert data I get all of the rows that belong to
the nested form??? The isWebEvent trace on the body tag throws as many
event=3D"insert" trace lines as rows are displayed.

By the way, same thing happens with ver 1.3 & 1.4dev.

THANKS!!!

Julio Ort=FAzar





--__--__--

Message: 7
From: "Henner Kollmann" <[EMAIL PROTECTED]>
To: =?iso-8859-1?Q?'Siegfried_G=F6schl'?= <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Subject: AW: [dbforms] Avoiding FileHolder to store BLOBs
Date: Tue, 27 May 2003 22:30:16 +0200

Could you explain what do you need? Why you could not use a FileHolder?
FileHolder just writes the data to disk which you uploaded...

Regards,
Henner

> -----Urspr=FCngliche Nachricht-----
> Von: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Im=20
> Auftrag von Siegfried G=F6schl
> Gesendet: Dienstag, 27. Mai 2003 13:08
> An: [EMAIL PROTECTED]
> Betreff: [dbforms] Avoiding FileHolder to store BLOBs
>=20
>=20
> Hi folks,
>=20
> for my application I can't use FileHolder since non-DBForms=20
> Application needs access to the BLOBs.
>=20
> Would an interceptor do the trick?! The FileServlet seems to access=20
> the DB directly so this might not work.=20
>=20
>=20
> Thanks in advance,
>=20
> Siegfried Goeschl
>=20
>=20
>=20
> -------------------------------------------------------
> This SF.net email is sponsored by: ObjectStore.
> If flattening out C++ or Java code to make your application=20
> fit in a relational database is painful, don't do it! Check=20
> out ObjectStore. Now part of Progress Software.=20
http://www.objectstore.net/sourceforge
_______________________________________________
DbForms Mailing List

http://www.wap-force.net/dbforms



--__--__--

Message: 8
From: "Henner Kollmann" <[EMAIL PROTECTED]>
To: "'Julio Ortuzar O.'" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Subject: AW: [dbforms] Weird problem with navNew/Insert & rows displayed
Date: Tue, 27 May 2003 22:32:05 +0200

Hi,

What's with the localWebevent? What's happens if you remove it?

Regards,
Henner

> -----Urspr=FCngliche Nachricht-----
> Von: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Im=20
> Auftrag von Julio Ortuzar O.
> Gesendet: Dienstag, 27. Mai 2003 22:11
> An: [EMAIL PROTECTED]
> Betreff: [dbforms] Weird problem with navNew/Insert & rows displayed
>=20
>=20
> Hi, hope somebody can give me some hints here!
>=20
> Problem:
> - I have a form with nested form.
> - I have nested dbfrom tag defined as follows:
>=20
>   <db:dbform tableName=3D"tbl_product_item_var"  maxRows=3D"15"=20
> parentField=3D"product_item_id"=20
>   childField=3D"product_item_id"=20
> followUp=3D"/frm_product_items.jsp" autoUpdate=3D"false"=20
> localWebEvent=3D"navNew">
>=20
> - The followUp is the original form (it calls itself).
> - On nested form I add new row with navNewButton
> - When I commit data (insertButton) I get back only 1 row;=20
> the one I just inserted. I expect to see all the rows of the=20
> subform until a max of 15 (as specified by maxRows).
> - I put a isWebEvent trace on the body tag and I only get one=20
> instance of event=3D"insert"
>=20
> The weird thing is that I have another form with almost=20
> exactly the same definition, and after I insert data I get=20
> all of the rows that belong to the nested form??? The=20
> isWebEvent trace on the body tag throws as many=20
> event=3D"insert" trace lines as rows are displayed.
>=20
> By the way, same thing happens with ver 1.3 & 1.4dev.
>=20
> THANKS!!!
>=20
> Julio Ort=FAzar
>=20
>=20
>=20
>=20
>=20
> -------------------------------------------------------
> This SF.net email is sponsored by: ObjectStore.
> If flattening out C++ or Java code to make your application=20
> fit in a relational database is painful, don't do it! Check=20
> out ObjectStore. Now part of Progress Software.=20
http://www.objectstore.net/sourceforge
_______________________________________________
DbForms Mailing List

http://www.wap-force.net/dbforms



--__--__--

Message: 9
From: "=?ISO-8859-1?Q?Siegfried_G=F6schl?=" <[EMAIL PROTECTED]>
To: "Henner Kollmann" <[EMAIL PROTECTED]>
Date: Tue, 27 May 2003 23:03:18 +0200
Subject: Re: AW: [dbforms] Avoiding FileHolder to store BLOBs
CC: <[EMAIL PROTECTED]>

Hi Henner,

if I understand it correctly the BLOB support (not DISKBLOB) works 
with serializing a FileHolder into a database BLOB. The FileHolder 
contains the filename, mime type and binary content using a multp-
part request upload (or whatever this is called)

That's fine as long only DBFORM is involved but how is a non-Java 
application able to load the BLOB?! 

Am I'm completely on the wrong track (which happens from time to 
time)?!

Thanks in advance

Siegfried Goeschl

On 27 May 2003 at 22:30, Henner Kollmann wrote:

> Could you explain what do you need? Why you could not use a
> FileHolder? FileHolder just writes the data to disk which you
> uploaded...
> 
> Regards,
> Henner
> 
> > -----Urspr=FCngliche Nachricht-----
> > Von: [EMAIL PROTECTED] 
> > [mailto:[EMAIL PROTECTED] Im 
> > Auftrag von Siegfried G=F6schl
> > Gesendet: Dienstag, 27. Mai 2003 13:08
> > An: [EMAIL PROTECTED]
> > Betreff: [dbforms] Avoiding FileHolder to store BLOBs
> > 
> > 
> > Hi folks,
> > 
> > for my application I can't use FileHolder since non-DBForms 
> > Application needs access to the BLOBs.
> > 
> > Would an interceptor do the trick?! The FileServlet seems to access
> > the DB directly so this might not work. 
> > 
> > 
> > Thanks in advance,
> > 
> > Siegfried Goeschl
> > 
> > 
> > 
> > -------------------------------------------------------
> > This SF.net email is sponsored by: ObjectStore.
> > If flattening out C++ or Java code to make your application 
> > fit in a relational database is painful, don't do it! Check 
> > out ObjectStore. Now part of Progress Software. 
> http://www.objectstore.net/sourceforge
> _______________________________________________
> DbForms Mailing List
> 
> http://www.wap-force.net/dbforms
> 



--__--__--

Message: 10
From: "Julio Ortuzar O." <[EMAIL PROTECTED]>
To: "'Henner Kollmann'" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Subject: RE: [dbforms] Weird problem with navNew/Insert & rows displayed
Date: Tue, 27 May 2003 17:21:15 -0400

Same thing happens without localevent.

Here is something else that is curious:
- Say I'm navigating through the main form, and I stop at a case where I
have 5 rows in the subform (maxrows=3D15 for subform)
- Without localWebEvent=3D"navNew": On the subform I execute =
navNextButton
and I can only see the first row. I execute NavPrevButton, and I can see
all rows.
- With    localWebEvent=3D"navNew": On the subform I execute =
navNextButton
and I can only see the first row. I execute NavPrevButton, and I can
only see the previous rows.=20
- To get all rows back from the previous case, I have to execute on the
main form navNextButton and then NavPrevButton. It's as if they were
refreshed or something.
- This anomaly occurs on any of my forms. Even those that work correct
upon insert.

BTW...Now I'm using org.dbforms.event.datalist navigation.=20


Julio

-----Original Message-----
From: Henner Kollmann [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 27, 2003 4:32 PM
To: 'Julio Ortuzar O.'
Cc: [EMAIL PROTECTED]
Subject: AW: [dbforms] Weird problem with navNew/Insert & rows displayed


Hi,

What's with the localWebevent? What's happens if you remove it?

Regards,
Henner

> -----Urspr=FCngliche Nachricht-----
> Von: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Im=20
> Auftrag von Julio Ortuzar O.
> Gesendet: Dienstag, 27. Mai 2003 22:11
> An: [EMAIL PROTECTED]
> Betreff: [dbforms] Weird problem with navNew/Insert & rows displayed
>=20
>=20
> Hi, hope somebody can give me some hints here!
>=20
> Problem:
> - I have a form with nested form.
> - I have nested dbfrom tag defined as follows:
>=20
>   <db:dbform tableName=3D"tbl_product_item_var"  maxRows=3D"15"
> parentField=3D"product_item_id"=20
>   childField=3D"product_item_id"=20
> followUp=3D"/frm_product_items.jsp" autoUpdate=3D"false"=20
> localWebEvent=3D"navNew">
>=20
> - The followUp is the original form (it calls itself).
> - On nested form I add new row with navNewButton
> - When I commit data (insertButton) I get back only 1 row;
> the one I just inserted. I expect to see all the rows of the=20
> subform until a max of 15 (as specified by maxRows).
> - I put a isWebEvent trace on the body tag and I only get one=20
> instance of event=3D"insert"
>=20
> The weird thing is that I have another form with almost
> exactly the same definition, and after I insert data I get=20
> all of the rows that belong to the nested form??? The=20
> isWebEvent trace on the body tag throws as many=20
> event=3D"insert" trace lines as rows are displayed.
>=20
> By the way, same thing happens with ver 1.3 & 1.4dev.
>=20
> THANKS!!!
>=20
> Julio Ort=FAzar
>=20
>=20
>=20
>=20
>=20
> -------------------------------------------------------
> This SF.net email is sponsored by: ObjectStore.
> If flattening out C++ or Java code to make your application
> fit in a relational database is painful, don't do it! Check=20
> out ObjectStore. Now part of Progress Software.=20
http://www.objectstore.net/sourceforge
_______________________________________________
DbForms Mailing List

http://www.wap-force.net/dbforms






--__--__--

_______________________________________________
jDbForms-interest mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jdbforms-interest


End of jDbForms-interest Digest


-------------------------------------------------------
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
_______________________________________________
DbForms Mailing List

http://www.wap-force.net/dbforms

Reply via email to