[jboss-user] [JBoss Portal] - SVN Project Preferences File Incorrect

2008-03-10 Thread arnieOag
The preferences file referenced by this article (http://wiki.jboss.org/wiki/Wiki.jsp?page=UsingEclipse) is wrong. File http://anonsvn.jboss.org/repos/portal/ trunk/build/ide/eclipse/3.2/team/anonymous-projectSet.psf references directories that are not present on the SVN server. What I found is:

[jboss-user] [JBoss Portal] - Re: SVN Project Preferences File Incorrect

2008-03-10 Thread arnieOag
build.xml - main throws error: C:\Dev\ProjectsPortal\tools\etc\buildfragments\buildmagic.ent:152: taskdef A class needed by class org.jboss.portal.common.junit.ant.ConfigurableJUnitTask cannot be found: junit/framework/TestListener View the original post :

[jboss-user] [JBoss Portal] - Re: How to build custom User/Role/UserProfile/Membership Mod

2008-03-10 Thread arnieOag
Thanks for the reply, but the psf file for Eclipse is broken (there is no /portal/trunk on the server). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4135413#4135413 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4135413

[jboss-user] [JBoss Portal] - Re: How to build custom User/Role/UserProfile/Membership Mod

2008-03-10 Thread arnieOag
I'm trying to download the code base for the portal so I can eventually code and test my replacement modules for the ones listed at the top of this thread. The eclipse PSF file references directories that aren't under the SVN path. The line: has a path

[jboss-user] [JBoss Portal] - Re: How to build custom User/Role/UserProfile/Membership Mod

2008-03-10 Thread arnieOag
I understand that, I can pull that down w/o issue (assuming /modules/identity/trunk) is what I need. But when I go to http://anonsvn.jboss.org/repos/portal/branches/JBoss_Portal_Branch_2_7/ and drill down to

[jboss-user] [JBoss Portal] - How to build custom User/Role/UserProfile/Membership Modules

2008-03-07 Thread arnieOag
I have read through chapters 16 and 18 in the 2.6.4 portal and was finally able to get authentication to our Novell eDirectory (LDAP) server working, but I could see the portal was throwing a lot of errors in the background, mainly because the schema wasn't what it was expecting. No biggie

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Named Query - results as object?

2008-02-09 Thread arnieOag
I'm not entirely sure if creating a non-table-related class in Hibernate is entirely supported, but it compiles w/o issue. In the mapping file below, the class is intended to represent the record returned by the Named Query defined below it. The problem is that the query tag doesn't take the

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: How to do a Max in a sub query...

2008-01-11 Thread arnieOag
I figured out a way to do it: | from us.tx.state.oag.olrap.db.InfoApplication as apps | where apps.codeStatus.statusId = :codeStatus | and apps.infoWorkflows.emplid = :emplId | group by apps.applicationId | having apps.infoWorkflows.entryDate =

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - How to do a Max in a sub query...

2008-01-10 Thread arnieOag
I need to select records that are linked together based on two parameters, one in table a the other in table b. The named query below is the item in question. | class name=us.tx.state.oag.olrap.db.InfoApplication table=info_application | | id name=applicationId

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: How to do a Max in a sub query...

2008-01-10 Thread arnieOag
I've tried this: | from us.tx.state.oag.olrap.db.InfoApplication as apps | where apps.codeStatus.statusId = :codeStatus | and apps.infoWorkflows.emplid = :emplId | and apps.infoWorkflows.entryDate = ( | select max(entryDate) from apps.infoWorkflows wf |

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: How to do a Max in a sub query...

2008-01-10 Thread arnieOag
This compiles and runs but doesn't get rid of the first record. | from us.tx.state.oag.olrap.db.InfoApplication as apps | where | apps.codeStatus.statusId = :codeStatus | and apps.infoWorkflows.emplid = :emplId | and apps.infoWorkflows.entryDate = ( select

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - setMaxResults(100) NE set rowcount 100

2008-01-09 Thread arnieOag
I have a database with 23,350,000+ records, 842,960 of which are for the city of Austin. When I issue the following SQL through my IDE: | set rowcount 100 | select * from state_card_holders where phys_adrs_city = 'AUSTIN' | The database responds in less than a second with the top 100

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Best Practices Question

2007-08-28 Thread arnieOag
BACKGROUND I'm in the process of building a suite of classes for my team to use when authenticating and authorizing users to applications and determining their rights w/i an application. The suite uses Hibernate as our auditing rules require such information in a database setup for such

[jboss-user] [JNDI/Naming/Network] - Re: SessionFactory in java:namespace - not bound?!

2007-08-23 Thread arnieOag
No need. Figured it out. Other non-dbms related posts got me to thinking and sure enough, MyEclipse was putting duplicate jars in the /web-inf/lib folder - when they were already in the ./default/lib folder. Removing them and restarting solved the problem. Its just ODD that no error message

[jboss-user] [JNDI/Naming/Network] - Re: Why is TransactionManager not Bound in JNDI

2007-08-21 Thread arnieOag
Did you ever get this cleared up? I am getting it too... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4076456#4076456 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4076456 ___

[jboss-user] [JNDI/Naming/Network] - SessionFactory in java:namespace - not bound?!

2007-08-21 Thread arnieOag
I'm deploying a .har alongside my .war in an .ear. My session factory is using a secured data source (security-domain) as shown below: | datasources | !-- connection to appsec -- | local-tx-datasource | jndi-nameus/tx/state/oag/dev/ApplicationSecurity/jndi-name |