[jboss-user] [JBoss Seam] - Re: @Observer(

2008-01-17 Thread javalover75
Sorry, yes that works.  I made a foolish mistage and imported the wrong 
FacesContext.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4121026#4121026

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4121026
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - @Observer(

2008-01-16 Thread javalover75
Hello All,

I have a method with the @Observer(org.jboss.seam.security.loginSuccessful) 
annotation that I would like to use to log loggins.  I want to log the users ip 
with the login, however I can not seem to access the facesContext from this 
class.  Is it possible to do this or should I log the information in another 
spot?

Thanks in advance

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4120707#4120707

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4120707
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Security Design Question

2007-11-30 Thread javalover75
I am developing a subscription based site.  When authenticating users I would 
like to be able to do the following.  If the user has valid credentials, but 
the account is not active (through cancelation, credit card failure, etc.) I 
would like to redirect the user to a page that allows them to reactivate the 
account by entering new credit card information.  In this case the login has a 
different outcome than just failed or successful.  

I have not seen an obvious way to accomplish this task with Seam Security.  
Does anyone have any suggestions?  

Thanks in advance.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4109405#4109405

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109405
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Security Design Question

2007-11-30 Thread javalover75
Damian,

Thanks for the quick reply.  It is appreciated.  This helped me get past my 
mind block and solve my problem.

Thanks Again.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4109470#4109470

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109470
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - PojoCache and s:selectItems Value is not valid Issue

2007-08-24 Thread javalover75
I have the following snippet in a page:


  | s:decorate id=creditCardTypeDecoration template=/layout/edit.xhtml
  |   ui:define name=labelCredit Card Type:/ui:define
  | h:selectOneMenu 
value=#{customerHome.instance.creditCardType} required=true
  | s:selectItems 
value=#{userDAO.creditCardTypeList} var=ccType 
label=#{ccType.creditCardType}  noSelectionLabel=Select Type  /
  | s:convertEntity /
  | /h:selectOneMenu
  | /s:decorate
  | 

The userDAO has the following method:


  | public ListCreditCardType getCreditCardTypeList() throws CacheException
  | {
  | ListCreditCardType creditCardType = 
(ArrayListCreditCardType)pojoCache.get( reference, creditCardTypeList );
  | 
  | if ( creditCardType == null )
  | {
  | creditCardType = entityManager.createQuery( from 
CreditCardType creditCardType ).getResultList();
  | pojoCache.put( reference, creditCardTypeList, 
creditCardType );
  | }
  | 
  | return creditCardType;
  | }
  | 

When the data comes from the cache in the validation of the form I get a value 
is not valid error.

When I use the following method all is well - however, a database call is made 
with all of the lookups.  I have this pattern happening many times throughout 
the site and it is very expensive. 


  | public ListCreditCardType getCreditCardTypeList() throws CacheException
  | {
  | return entityManager.createQuery( from CreditCardType 
creditCardType ).getResultList();
  | }
  | 

Any help will be appreciated.

As an FYI I have tried to get this to work using the EJB3EntityTreeCache with 
no luck.  I have the cache configured correctly with no errors, but it still 
goes to the database every time.  Has anyone figured out how to get caching to 
work with a seam managed entity manager?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4077886#4077886

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077886
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: PojoCache and s:selectItems Value is not valid Issue

2007-08-24 Thread javalover75
Thanks Pete,

Implementing the equals and hashCode worked for what I needed.  

Seam is a great product.  Thanks for the teams effort in producing such a 
quality product.



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4077954#4077954

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4077954
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Conditionally Rendering Parameters

2007-08-16 Thread javalover75
I have a seam-gen page with the following in the pages.xml file.


  | page view-id=/admin/manage-customers.xhtml
  | param name=firstResult value=#{customerList.firstResult}/
  | param name=order value=#{customerList.order}/
  | param name=from/
  | param name=firstName value=#{customerList.customer.firstName}/
  | param name=lastName value=#{customerList.customer.lastName}/
  | param name=emailAddress 
value=#{customerList.customer.emailAddress}/
  | /page
  | 


When I enter a value in the form for the first name, all of the parameters are 
rendered in the URL:

http://localhost:8080/admin/manage-users.html?emailAddress=firstName=testlastName=cid=7

This triggers my model validation and I get the error that the Email Address 
must be well formed.  If I manually remove the emailAdress param all works 
well.  How do I prevent the empty email param from being rendered?



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4075018#4075018

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4075018
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Getting Started Documentation] - javax.management.MalformedObjectNameException on startup

2007-04-02 Thread javalover75
Hello,

I am trying to get jboss-4.0.5.GA to run on fedora core 6 with an ejb3 
configuration.  It starts, but with a strange warning.  I believe this warning 
is leading to other issues when I try to deploy my app.  

Is this something specific to FC 6?

Thanks in advance.



  | [EMAIL PROTECTED] jboss-4.0.5.GA]# bin/run.sh
  | =
  | 
  |   JBoss Bootstrap Environment
  | 
  |   JBOSS_HOME: /usr/local/jboss-4.0.5.GA
  | 
  |   JAVA: /usr/java/jdk1.5.0_09/bin/java
  | 
  |   JAVA_OPTS: -Dprogram.name=run.sh -server -Xms128m -Xmx512m 
-Dsun.rmi.dgc.client.gcInterval=360 -Dsun.rmi.dgc.server.gcInterval=360
  | 
  |   CLASSPATH: 
/usr/local/jboss-4.0.5.GA/bin/run.jar:/usr/java/jdk1.5.0_09/lib/tools.jar
  | 
  | =
  | 
  | 17:00:31,787 INFO  [Server] Starting JBoss (MX MicroKernel)...
  | 17:00:31,794 INFO  [Server] Release ID: JBoss [Zion] 4.0.5.GA (build: 
CVSTag=Branch_4_0 date=200610162339)
  | 17:00:31,797 INFO  [Server] Home Dir: /usr/local/jboss-4.0.5.GA
  | 17:00:31,797 INFO  [Server] Home URL: file:/usr/local/jboss-4.0.5.GA/
  | 17:00:31,799 INFO  [Server] Patch URL: null
  | 17:00:31,799 INFO  [Server] Server Name: default
  | 17:00:31,800 INFO  [Server] Server Home Dir: 
/usr/local/jboss-4.0.5.GA/server/default
  | 17:00:31,800 INFO  [Server] Server Home URL: 
file:/usr/local/jboss-4.0.5.GA/server/default/
  | 17:00:31,801 INFO  [Server] Server Log Dir: 
/usr/local/jboss-4.0.5.GA/server/default/log
  | 17:00:31,801 INFO  [Server] Server Temp Dir: 
/usr/local/jboss-4.0.5.GA/server/default/tmp
  | 17:00:31,802 INFO  [Server] Root Deployment Filename: jboss-service.xml
  | 17:00:32,480 INFO  [ServerInfo] Java version: 1.5.0_09,Sun Microsystems Inc.
  | 17:00:32,480 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Server VM 
1.5.0_09-b03,Sun Microsystems Inc.
  | 17:00:32,481 INFO  [ServerInfo] OS-System: Linux 2.6.20-1.2933.fc6,i386
  | 17:00:33,999 INFO  [Server] Core system initialized
  | 17:00:41,371 INFO  [WebService] Using RMI server codebase: 
http://localhost.localdomain:8083/
  | 17:00:41,454 INFO  [Log4jService$URLWatchTimerTask] Configuring from URL: 
resource:log4j.xml
  | 17:00:48,130 WARN  [Connector] Error registering invoker [EMAIL PROTECTED] 
with MBeanServer.
  | javax.management.MalformedObjectNameException: Invalid character ':' in 
value part of property
  | at javax.management.ObjectName.construct(ObjectName.java:529)
  | at javax.management.ObjectName.init(ObjectName.java:1304)
  | at org.jboss.remoting.transport.Connector.init(Connector.java:395)
  | at org.jboss.remoting.transport.Connector.create(Connector.java:745)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:995)
  | at $Proxy0.create(Unknown Source)
  | at 
org.jboss.system.ServiceController.create(ServiceController.java:330)
  | at 
org.jboss.system.ServiceController.create(ServiceController.java:273)
  | at 
org.jboss.system.ServiceController.create(ServiceController.java:349)
  | at 
org.jboss.system.ServiceController.create(ServiceController.java:273)
  | at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at 

[jboss-user] [JBoss Getting Started Documentation] - Re: javax.management.MalformedObjectNameException on startup

2007-04-02 Thread javalover75
These are some additional errors that I have seen with a different intance of 
jboss.  Any help in resolving these issues would be greatly appreciated.

Thanks in advance


  | 17:27:39,255 ERROR [JBossErrorHandler] File .../deploy/hsqldb-ds.xml 
process warning. Location: ; SystemID: ; Line#: 585; Column#: -1. Error 
message: Cannot write an attribute node when no element start tag is open
  | 17:27:39,506 ERROR [MainDeployer] Could not create deployment: 
file:/opt/jboss-4.0.5.GA.5/server/default/deploy/hsqldb-ds.xml
  | org.jboss.deployment.DeploymentException: MBean attribute 'name' must be 
given.
  | at 
org.jboss.system.ServiceConfigurator.parseObjectName(ServiceConfigurator.java:774)
  | at 
org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:447)
  | at 
org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:171)
  | at 
org.jboss.system.ServiceController.install(ServiceController.java:226)
  | at sun.reflect.GeneratedMethodAccessor21.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
  | at $Proxy4.install(Unknown Source)
  | at org.jboss.deployment.SARDeployer.create(SARDeployer.java:249)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
  | at $Proxy38.create(Unknown Source)
  | at 
org.jboss.deployment.XSLSubDeployer.create(XSLSubDeployer.java:192)
  | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:969)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:818)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
  | at sun.reflect.GeneratedMethodAccessor18.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
  | at $Proxy8.deploy(Unknown Source)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
  | at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
  | at 
org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
  |   

[jboss-user] [JBoss Seam] - Re: seam-gen error

2007-03-23 Thread javalover75
As a follow-up, I am able to run seam generate-entities against other 
databases, even databases with hundreds of tables, successfully.  I am 
confident that everything is configured correctly and no stray jars are 
creating the problem.  

The only difference I can find between the schema causing the error and the 
schemas that work correctly, is the schema with the error has multiple many to 
many relationships - although the Entity beans are created correctly with 
proper mappings before this error occurs.  

If anyone has experienced this error - or who has any ideas as to how to solve 
this problem I would greatly appreciate it. It will save me a ton of typing.

Thanks in advance. 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4031161#4031161

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4031161
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: seam-gen error

2007-03-23 Thread javalover75
It was the many to many relationship.  I can duplicate this problem in all of 
my schemas.  

Simply create three tables.  Table A, Table B, Table C.  Table A and Table C 
have a many to many relationship.  Table B is the link between them that just 
contains Table A and Table C primary keys with foreign key constraints to the 
appropriate tables.

Then run seam generate-entities - I can't think of a scenario where this is 
something specific to my environment, but maybe I am missing something.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4031218#4031218

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4031218
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - seam-gen error

2007-03-22 Thread javalover75
Running seam-gen generate-entities command (just built from CVS) I am 
experiencing the error below.  After searching the form and Jira a similiar 
error has appeared and it was suggested by Gavin that old jars are somewhere.  
I have verified this is not the case.  If I can provide any additional 
information to assist please let me know.  Any help would be greatly 
appreciated.  


  | C:\eclipse\workspace\jboss-seamseam generate-entities
  | Buildfile: C:\eclipse\workspace\jboss-seam\seam-gen\build.xml
  | 
  | validate-workspace:
  | 
  | validate-project:
  | 
  | generate-entities:
  | [hibernate] Executing Hibernate Tool with a JDBC Configuration (for reverse 
engineering)
  | [hibernate] 1. task: hbm2java (Generates a set of .java files)
  | [hibernate] Mar 22, 2007 9:36:59 PM org.hibernate.cfg.Environment clinit
  | [hibernate] INFO: Hibernate 3.2.0.cr5
  | [hibernate] Mar 22, 2007 9:36:59 PM org.hibernate.cfg.Environment clinit
  | [hibernate] INFO: hibernate.properties not found
  | [hibernate] Mar 22, 2007 9:36:59 PM org.hibernate.cfg.Environment 
buildBytecodeProvider
  | [hibernate] INFO: Bytecode provider name : cglib
  | [hibernate] Mar 22, 2007 9:36:59 PM org.hibernate.cfg.Environment clinit
  | [hibernate] INFO: using JDK 1.4 java.sql.Timestamp handling
  | [hibernate] Mar 22, 2007 9:37:00 PM 
org.hibernate.connection.DriverManagerConnectionProvider configure
  | [hibernate] INFO: Using Hibernate built-in connection pool (not for 
production use!)
  | [hibernate] Mar 22, 2007 9:37:00 PM 
org.hibernate.connection.DriverManagerConnectionProvider configure
  | [hibernate] INFO: Hibernate connection pool size: 20
  | [hibernate] Mar 22, 2007 9:37:00 PM 
org.hibernate.connection.DriverManagerConnectionProvider configure
  | [hibernate] INFO: autocommit mode: false
  | [hibernate] Mar 22, 2007 9:37:00 PM 
org.hibernate.connection.DriverManagerConnectionProvider configure
  | [hibernate] INFO: using driver: com.mysql.jdbc.Driver at URL: 
jdbc:mysql:///adtutor
  | [hibernate] Mar 22, 2007 9:37:00 PM 
org.hibernate.connection.DriverManagerConnectionProvider configure
  | [hibernate] INFO: connection properties: {user=adtutorapp, password=}
  | [hibernate] Mar 22, 2007 9:37:01 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: RDBMS: MySQL, version: 5.0.27-community-nt
  | [hibernate] Mar 22, 2007 9:37:01 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: JDBC driver: MySQL-AB JDBC Driver, version: 
mysql-connector-java-3.1.10 ( $Date: 2005/05/19 15:52:23 $, $Revision: 1.1.2.2 
$ )
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.dialect.Dialect init
  | [hibernate] INFO: Using dialect: org.hibernate.dialect.MySQLDialect
  | [hibernate] Mar 22, 2007 9:37:02 PM 
org.hibernate.transaction.TransactionFactoryFactory buildTransactionFactory
  | [hibernate] INFO: Using default transaction strategy (direct JDBC 
transactions)
  | [hibernate] Mar 22, 2007 9:37:02 PM 
org.hibernate.transaction.TransactionManagerLookupFactory 
getTransactionManagerLookup
  | [hibernate] INFO: No TransactionManagerLookup configured (in JTA 
environment, use of read-write or transactional second-level cache is not 
recommended)
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: Automatic flush during beforeCompletion(): disabled
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: Automatic session close at end of transaction: disabled
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: JDBC batch size: 15
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: JDBC batch updates for versioned data: disabled
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: Scrollable result sets: enabled
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: JDBC3 getGeneratedKeys(): enabled
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: Connection release mode: auto
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: Maximum outer join fetch depth: 2
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: Default batch fetch size: 1
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: Generate SQL with comments: disabled
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.cfg.SettingsFactory 
buildSettings
  | [hibernate] INFO: Order SQL updates by primary key: disabled
  | [hibernate] Mar 22, 2007 9:37:02 PM org.hibernate.cfg.SettingsFactory 
createQueryTranslatorFactory
  | [hibernate] INFO: Query translator: 

[jboss-user] [JBoss Seam] - Icefaces and security EL functions together

2007-02-13 Thread javalover75
I guess my real question is can you configure more than one view-handler in the 
faces-config file?  And if so could someone provide an example.  If not is 
there another way to use icefaces and the security EL together.  

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4016125#4016125

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4016125
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Linking Dynamic Forms To Seam Component

2007-02-13 Thread javalover75
I am starting a new project where I would like to be able to create dynamic 
form elements and link them to seam components.  

For example, a form will render initially with a single inputText element for a 
site domain and provide a link at the bottom allowing the user through AJAX to 
add an additional inputText tag for one to many additional domains they may 
have.  How can I link the newly created inputText element to a seam component 
attribute - preferably a List.  

Also, I would like to take this example a step further and add rows dynamically 
to a table that would map to a List containing objects again not knowing how 
many the user would create beforehand.  An example object would be a BonusTier. 
 

Any examples or links would be appreciated.

Thanks 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4016127#4016127

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4016127
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: ASync calls stays in JBoss queue after restart

2007-01-18 Thread javalover75
I am experiencing the same issue - did you ever resolve this?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=4003550#4003550

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4003550
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user