RE: Oracle & Wicket Starter Application Project

2011-01-18 Thread Andrew Hall
It is at: https://github.com/andrewah/Wicket---Postgresql-Template Cheers, Andrew. From: andre...@hotmail.com To: users@wicket.apache.org Subject: Oracle & Wicket Starter Application Project Date: Tue, 21 Dec 2010 22:14:07 + Hi, I've put together a project based on Wicket & Oracle wh

RE: Oracle & Wicket Starter Application Project

2010-12-22 Thread Andrew Hall
user' architecture. > Date: Wed, 22 Dec 2010 00:32:50 -0800 > Subject: Re: Oracle & Wicket Starter Application Project > From: scott.sw...@gmail.com > To: users@wicket.apache.org > > Not only that, but fine-grained data access allows a user to simply > "select * from

RE: Oracle & Wicket Starter Application Project

2010-12-22 Thread Andrew Hall
for Maven. You can grab it from github. You'll still need to download & manually install the oracle jdbc & ucp jars into your maven repository - they aren't available in the public repositories. Cheers, Andrew. > Subject: Re: Oracle & Wicket Starter Application Project > F

RE: Oracle & Wicket Starter Application Project

2010-12-22 Thread Andrew Hall
rning-after-n.html#comments > From: jer...@wickettraining.com > Date: Tue, 21 Dec 2010 23:22:23 -0600 > Subject: Re: Oracle & Wicket Starter Application Project > To: users@wicket.apache.org > > On Tue, Dec 21, 2010 at 6:12 PM, Eelco Hillenius > wrote: > > > >

RE: Oracle & Wicket Starter Application Project

2010-12-22 Thread Andrew Hall
that you guys have taken. Cheers, Andrew. > From: martijn.dasho...@gmail.com > Date: Wed, 22 Dec 2010 11:08:06 +0100 > Subject: Re: Oracle & Wicket Starter Application Project > To: users@wicket.apache.org > > On Wed, Dec 22, 2010 at 10:55 AM, Andrew Hall wrote: >

RE: Oracle & Wicket Starter Application Project

2010-12-22 Thread Andrew Hall
ations. > Date: Tue, 21 Dec 2010 19:31:26 -0500 > Subject: Re: Oracle & Wicket Starter Application Project > From: ja...@carmanconsulting.com > To: users@wicket.apache.org > > Let me guess, you're a dba? > On Dec 21, 2010 5:14 PM, "Andrew Hall" wrote:

Re: Oracle & Wicket Starter Application Project

2010-12-22 Thread Martijn Dashorst
On Wed, Dec 22, 2010 at 10:55 AM, Andrew Hall wrote: > One of the motivations behind this was to find out what was involved in > creating an application broadly consistent with the recommendations of > the Oracle Security Guide (see > http://download.oracle.com/docs/cd/E11882_01/network.112/e1654

RE: Oracle & Wicket Starter Application Project

2010-12-22 Thread Andrew Hall
y applications not following this sort of advice, and because colleagues have told me that it was too much trouble. Thanks, Andrew. > From: eelco.hillen...@gmail.com > Date: Tue, 21 Dec 2010 16:12:55 -0800 > Subject: Re: Oracle & Wicket Starter Application Project > To: users@wick

Re: Oracle & Wicket Starter Application Project

2010-12-22 Thread Scott Swank
Not only that, but fine-grained data access allows a user to simply "select * from some_table" and get the data to which they are allowed access. E.g. each sales person can see the data for their region while an administrator or manager can see all of the regions. You can also build 6 apps that w

Re: Oracle & Wicket Starter Application Project

2010-12-21 Thread Jeremy Thomerson
On Tue, Dec 21, 2010 at 6:12 PM, Eelco Hillenius wrote: > > - using database roles to restrict access to data, and not relying wholly > on application enforced security > > So if you want to determine whether user X can see button Y, you have > to query the database for particular role membership?

Re: Oracle & Wicket Starter Application Project

2010-12-21 Thread Brian Topping
On Dec 21, 2010, at 5:14 PM, Andrew Hall wrote: > It'd be fair to say that some of my Java may not be of the highest standard, > so if anyone has the inclination to look at this, any constructive feedback > would be appreciated. I've thought about how to use the database this way as well. Eel

Re: Oracle & Wicket Starter Application Project

2010-12-21 Thread Scott Swank
You shouldn't need a connection per user with Oracle's "Universal Connection Pool" jar. e.g. in his AbstractOracleDAO UCPMgr.getLabelledConnection( pUsername , pPassword ); Scott On Tue, Dec 21, 2010 at 4:12 PM, Eelco Hillenius wrote: >> - using individual database users to represent real

Re: Oracle & Wicket Starter Application Project

2010-12-21 Thread James Carman
Let me guess, you're a dba? On Dec 21, 2010 5:14 PM, "Andrew Hall" wrote: > > Hi, > I've put together a project based on Wicket & Oracle which I'd hope could serve as a good starting point for applications based on these 2 technologies. > My background is in writing large applications based upon O

Re: Oracle & Wicket Starter Application Project

2010-12-21 Thread Eelco Hillenius
> - using individual database users to represent real users - giving end-to-end > authentication & allowing the use of features such as SQL Trace & fine > grained auditing Does that mean that the number of open connections always equals the number of signed in users? > - using database roles to

Oracle & Wicket Starter Application Project

2010-12-21 Thread Andrew Hall
Hi, I've put together a project based on Wicket & Oracle which I'd hope could serve as a good starting point for applications based on these 2 technologies. My background is in writing large applications based upon Oracle & I wrote this to learn about Wicket & Java and also to prove to myself th