[jboss-user] [JBoss Tools (users)] - Re: Runnigs test

2008-02-25 Thread hispeedsurfer
Ok, have seen this issue in jira: JBIDE-1478 But I have another problem using tests: On startup I use @Observer("org.jboss.seam.postInitialization") to check some tasks like scheduling jobs(quartz), putting a message to queue using a mdb etc. I don't use this class in my test but I receive an e

[jboss-user] [JBoss Tools (users)] - Runnigs test

2008-02-23 Thread hispeedsurfer
Hi, I have problem to runnig tests inside a Seam Web Project using the JBoss Tools IDE. Environment: JBoss Tools 2.0.GA, Seam 2.0.1.GA When I create a new Seam Web (ear)Project with a simple Seam Action and try to run TestNG test as discriped in 'Seam Dev Tools Reference Guide' the first exc

[jboss-user] [JBoss Seam] - Re: Longrunning process

2008-02-11 Thread hispeedsurfer
Hi, I have a mdb @MessageDriven(name="QueryMessageBean", activationConfig = { | @ActivationConfigProperty(propertyName="destinationType", propertyValue="javax.jms.Queue"), | @ActivationConfigProperty(propertyName="destination", propertyValue="queue/oatsMessageQueue"), | @Activ

[jboss-user] [JBoss Seam] - Re: Longrunning process

2008-01-17 Thread hispeedsurfer
Hi, thank you. It works now. First I putted this on methods with the same exception than on to class definition and that was the solution. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4120891#4120891 Reply to the post : http://www.jboss.com/index.html?

[jboss-user] [JBoss Seam] - Re: SWP and quartz propertie file

2008-01-16 Thread hispeedsurfer
Hi Pete, Gavin or someone else, as I can see the seam.quartz.properties file is also used in quartz example. But what's the reason for the exception in my case? I already used the same file in a fromer seam project without prolems. View the original post : http://www.jboss.com/index.html?modul

[jboss-user] [JBoss Seam] - Re: SWP and quartz propertie file

2008-01-15 Thread hispeedsurfer
Hi Pete, but can you tell me wy I got this excpetion anonymous wrote : No ClassLoaders found for: org.jboss.seam.async.AsynchronousInvocation Is there something what I can change to get persistent quartz working? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p

[jboss-user] [JBoss Seam] - Re: SWP and quartz propertie file

2008-01-15 Thread hispeedsurfer
Ok, than I have read this in post from jboss-developer-member that when I would like to persist quartz scheduling after server restart, I have to put seam.quartz.properties file to project - this was a few month ago and worked in a Seam console project. Now in a Seam-Web-Project I get the dis

[jboss-user] [JBoss Seam] - Re: SWP and quartz propertie file

2008-01-15 Thread hispeedsurfer
Hi nickarls, thank you for response. In a Seam-Web-Project all libraries from server are automatically put to build-path. So I use quartz.jar from server. The strange is that I already used the same configuration in a console created seam-project. View the original post : http://www.jboss.

[jboss-user] [JBoss Seam] - Re: SWP and quartz propertie file

2008-01-15 Thread hispeedsurfer
Ok, I tried to put seam.quartz.properties file to ejbModule folder of the project. After some ClassNotFoundExceptions I putted the missing apache-commons jars to jboss default lib folder. Then I received the following error: org.quartz.JobPersistenceException: Couldn't store trigger: No ClassLoa

[jboss-user] [JBoss Seam] - SWP and quartz propertie file

2008-01-14 Thread hispeedsurfer
Hi in a normal console created Seam project the seam.quartz.properties file is located in the resources folder. But there is no quartz file in a Seam-Web-Project. Have I to put these file manually or have the quartz configuration changed? Thanks View the original post : http://www.jboss.co

[jboss-user] [JBoss Seam] - Re: Server.log and large tables

2007-12-18 Thread hispeedsurfer
thank you to all @peter.hilton I don't have a category with name "org.jboss.seam" (use jboss-4.2.2.GA) @Bernix I have changed the config in the way you pointed and it's ok now View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4113866#4113866 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Server.log and large tables

2007-12-17 Thread hispeedsurfer
ok, as I can see there is a JIRA http://jira.jboss.org/jira/browse/JBSEAM-2232 but is there something what I can do temporary prevent from this problem because I always run in a space problem: log4j error: Failed to flush writer, View the original post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss Seam] - Server.log and large tables

2007-12-17 Thread hispeedsurfer
Hi, in my application I can call a link to output a large table in a seperate browser window. When I call this link the server.log grows up from 3.65 MB to 45 MB. The table is build with richfaces datatabel and subtables and ~260 rows What the reason for this server.log growing on large table.

[jboss-user] [JBoss Seam] - CascadeType.Remove and asynchronous method

2007-12-09 Thread hispeedsurfer
Hi, I have a entity that is in relation with some other entities with cascade type 'remove'. When I call an action from website to remove (entityManager.remove(userQuery);) an specific entity all other entities are also removed as expected. But if the same is called inside an asynchronous meth

[jboss-user] [JBoss Seam] - Re: Dataimport in Seam tests

2007-12-03 Thread hispeedsurfer
But of course I mean data-export. Normally it should do it's work only fill import-test.sql, is it true? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4110082#4110082 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=41100

[jboss-user] [JBoss Seam] - Dataimport in Seam tests

2007-12-03 Thread hispeedsurfer
Hi, project is created with seam-gen v.2.0.0.GA Production DB is MySQL For testing purpose I filled import-test.sql with values INSERT INTO Customer (id, version, userName, hashedPassword, email, memberName) VALUES | (1, 1, 'feivel', 'd41d8cd98f00b204e9800998ecf8427e', '[EMAIL PROTECTED]', '

[jboss-user] [JBoss Tools (users)] - Re: TestNG fails

2007-12-02 Thread hispeedsurfer
Hi Max, thank you for response. I greated this project within RHDS as Seam-Web-Project. So there is no build.xml file that I can use seam-gen command line interface. Is there an other possibility use command line interface? View the original post : http://www.jboss.com/index.html?module=b

[jboss-user] [JBoss Tools (users)] - TestNG fails

2007-12-02 Thread hispeedsurfer
Hi, I use RHDS CR1 to develop an Seam-2 EAR-project. I saw the problems using TestNG and JBoss Tools here: http://jira.jboss.org/jira/browse/JBSEAM-2129 http://jira.jboss.com/jira/browse/JBIDE-1129, but need these tests urgently. Is there something what I can do get tests working? Thanks V

[jboss-user] [JBoss Seam] - Re: force cancel quartz timer

2007-11-17 Thread hispeedsurfer
As I demanded for the umpteenth time. Cancel a timer work not in that way as I expect. For i.e. I have a customer paying a rate that should be stoped for a while but the payment process is already started. In the quartz sample a exception is thrown that the handler can not be stopped(cancel)

[jboss-user] [JBoss Seam] - Re: Charts

2007-11-12 Thread hispeedsurfer
Here is an example based on engelme idea that is working for me import java.io.IOException; | import java.io.Serializable; | | import org.jboss.seam.annotations.Name; | import org.jfree.chart.ChartFactory; | import org.jfree.chart.ChartUtilities; | import org.jfree.chart.JFreeChart;

[jboss-user] [JBoss Seam] - Right approach using EntityManager and MDB

2007-11-09 Thread hispeedsurfer
Hi I have not much experience with MDBs. I need to use EntityManager in combination with a MDB. As I have seen here in forum an other user have used this in the same way as follow: MDB package de.oats.business.mdb; | | import javax.annotation.Resource; | import javax.ejb.ActivationConfig

[jboss-user] [JBoss Seam] - Custom EntityHome message

2007-11-02 Thread hispeedsurfer
Hi, I work with Seam EntityHome component. If I update, create or delete an entity there is a FacesMessage with english content. I need to customize this message for the german language. In the Home class I can see that message fields are private. Should it be not protected to customize messag

[jboss-user] [JBoss Seam] - Re: TransientObjectException in seamspace-like approach

2007-10-26 Thread hispeedsurfer
Hi Pete, yes I think so. @Stateful | @Name("register") | public class RegisterAction implements Register and If I move adding userrole to last step of my wizard the problem disappears. in register(): UserRole ur = (UserRole)entitymanager.createQuery("from UserRole ur where ur.name = '"

[jboss-user] [JBoss Seam] - TransientObjectException in seamspace-like approach

2007-10-25 Thread hispeedsurfer
Hi, I try to use a User/UserRole relation and took the seam-space as example I have a UserRole entity with some predefined rolenames in database UserRole class: @Entity | @Name("userroles") | public class UserRole implements Serializable { | | /** | * | */ |

[jboss-user] [JBoss Seam] - Re: approach using seam tests

2007-10-14 Thread hispeedsurfer
Sorry, first time 2.0.CR1 and than latest from cvs. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4095037#4095037 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4095037 ___ jb

[jboss-user] [JBoss Seam] - Re: force cancel quartz timer

2007-09-24 Thread hispeedsurfer
hi juntao, I know that I can cancel the timer with QuartzTriggerHandler, but if the process is already called the first time and there some other calls in the future(i.e. daily calls) I can't cancel the timer this way. View the original post : http://www.jboss.com/index.html?module=bb&op=viewt

[jboss-user] [JBoss Seam] - Re: force cancel quartz timer

2007-09-24 Thread hispeedsurfer
is there nobody else with a similar situation cancel a async call although the timer is already processed? hope for reply!!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4087752#4087752 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[jboss-user] [JBoss Seam] - force cancel quartz timer

2007-09-20 Thread hispeedsurfer
hi, what's the way to force cancel a timer. I always receive the message in payment example "Payment already processed". But sometimes in my case a timer have to be stopped although he's processed. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4087047#408704

[jboss-user] [JBoss Seam] - Re: Maintain async calls after restart

2007-09-20 Thread hispeedsurfer
ok sorry, only the non-existing tables were the root of the problem. There some scripts creating these tables for the corresponding db in quartz-1.6.0.zip\docs\dbTables Now it works View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4087025#4087025 Reply to t

[jboss-user] [JBoss Seam] - restrictions to local intranet

2007-09-18 Thread hispeedsurfer
hi, is it possible with Seam securing components to restrict user-access to some admin regions in web-app only from (local) intranet? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4085627#4085627 Reply to the post : http://www.jboss.com/index.html?module=bb

[jboss-user] [JBoss Seam] - Re: Ask for some understanding

2007-09-11 Thread hispeedsurfer
ok christian, thank you for help. Now it's clear. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4082949#4082949 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4082949 ___ jbos

[jboss-user] [JBoss Seam] - Ask for some understanding

2007-09-10 Thread hispeedsurfer
I know Seam for a while, but have some questions regarding things like @Scope. @Stateful and Interfaces. If I create a Bean with @Stateful and @Scope(ScopeType.SESSION) annotation for example I have to implement an interface to access fields and methods from my JSF page. If I create a Bean with

[jboss-user] [JBoss Seam] - EL enhancements and EntityQuery

2007-09-06 Thread hispeedsurfer
Hi, I use a rich:datatabel component to display data from an class extending the EntityQuery class | @Name("recipientsList") | public class RecipientsList extends EntityQuery { | from datatable i use method expression | | | | |

[jboss-user] [JBoss Seam] - Re: SSL Security in seam

2007-09-05 Thread hispeedsurfer
Can you tell me how solved the problem? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4081337#4081337 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4081337 ___ jboss-

[jboss-user] [JBoss Seam] - Re: Maintain async calls after restart

2007-09-04 Thread hispeedsurfer
Hi Michael, can you tell me what I have to change in properties file to get quartz working with mysql for example. I see the seam.quartz.properties in CVS but it's not obvious for me what I have to do. org.quartz.scheduler.instanceName Sched1 | org.quartz.scheduler.instanceId 1 | org.quart

[jboss-user] [JBoss Seam] - Re: Maintain async calls after restart

2007-08-28 Thread hispeedsurfer
Hi, it's important for me. Is it possible to maintain quartz scheduled job after server restart anf if the answer is 'yes' please tell tell me what I have to do!!! Thanks Andreas View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078732#4078732 Reply to the

[jboss-user] [JBoss Seam] - select multiple entities for datatable

2007-08-25 Thread hispeedsurfer
Have used several attempts to display data from multiple entities without success List reslist = entityManager.createQuery("select qr.gpnum, csy.name from QueryResult qr, Csy20oats csy where qr.gpnum=csy.y20gpnum").getResultList(); | return reslist; | |

[jboss-user] [JBoss Seam] - Re: Maintain async calls after restart

2007-08-14 Thread hispeedsurfer
Please, can someone tell me if it's normal with quartz, that the job after server restart is gone. Or, better - what can I do to maintain quartz scheduled calls after restart. Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4074053#4074053 Reply to

[jboss-user] [JBoss Seam] - Re: Maintain async calls after restart

2007-08-13 Thread hispeedsurfer
I have read that the use of quartz is the better solution. But there should be a possibilty to persist async calls across server restart. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073561#4073561 Reply to the post : http://www.jboss.com/index.html?module

[jboss-user] [JBoss Seam] - Re: Maintain async calls after restart

2007-08-13 Thread hispeedsurfer
I don't know if quartz use EJB3 timer, because in JMX-Console under EJBTimerService -> java.util.List listTimerHandles() no timer is listed after start asynchronous method. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4073551#4073551 Reply to the post : h

[jboss-user] [JBoss Seam] - Maintain async calls after restart

2007-08-13 Thread hispeedsurfer
Hi, what can I do to maintain asynchronous calls after shutdown of JBoss AS? I use the similar asynchronous call as in quartz example. Everything works fine, but after server restart all timers (or whatever is created in background) are gone. What is be designed to keep such timers in memory?

[jboss-user] [JBoss Seam] - Re: Trinidad Ajax4JSF

2007-07-02 Thread hispeedsurfer
thanks, works now View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059577#4059577 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4059577 ___ jboss-user mailing list jboss-user@li

[jboss-user] [JBoss Seam] - Re: Seam, problem with EntityManager

2007-07-02 Thread hispeedsurfer
if you have the following in components.xml you can use @In(create=true) | private EntityManager entityManager; But one question. Why you have managed-bean stuff in faces-config.xml? This should be handelt from your annotations in your bean, I think! View the original post : http://www.j

[jboss-user] [JBoss Seam] - Re: how to upload file ?

2007-07-02 Thread hispeedsurfer
Have a look at seam/examples/seamspace. register2.xhtml and the correspondending bean show how to use fileupload with seam. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4059514#4059514 Reply to the post : http://www.jboss.com/index.html?module=bb&op=postin

[jboss-user] [JBoss Seam] - Trinidad Ajax4JSF

2007-07-01 Thread hispeedsurfer
Have a clean jboss-4.2.0.GA and the lastest Seam version (2.0) from CVS. When I try to start the deployed seamdiscs example the following exception is thrown: | java.lang.IllegalStateException: Two components with the same name and precedence: org.jboss.seam.web.ajax4jsfFilter | at org

[jboss-user] [JNDI/Naming/Network] - Re: 10061: Connection refused

2007-06-27 Thread hispeedsurfer
Thank you Peter. Have solved my problem with note to "Configuration Issues". Set address to 0.0.0.0 under server/default/deploy/jboss-web.deployer/server.xml | http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4058263#4058263 Reply to the post : http://www.jboss.com/index.html?module=b

[jboss-user] [JNDI/Naming/Network] - 10061: Connection refused

2007-06-26 Thread hispeedsurfer
I'am not sure if this is the right place for my problem. environment: - jboss-4.2.0.GA - seam-1.3.Alpha -W2K -java 6 jdk No problem with jboss-4.0.5.GA and seam-1.2.1 or a call from localhost:8080 But if I try to call my webapp or the the server with http://ip-address:8080 the following code i

[jboss-user] [EJB 3.0] - Re: problem with EJBQL queries in JBoss 4.2.0 GA

2007-06-21 Thread hispeedsurfer
Hello, Is there a known problem with "illegal attempt to dereference collection" exception? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4056300#4056300 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4056300 _

[jboss-user] [EJB 3.0] - Re: problem with EJBQL queries in JBoss 4.2.0 GA

2007-06-19 Thread hispeedsurfer
The same exception with my quer. Runs on jboss-4.0.5.GA but not on jboss-4.2.0.GA error java.lang.IllegalArgumentException: org.hibernate.QueryException: illegal attempt to dereference collection [{synthetic-alias}messmittel0_.messmitteltyp_idmessmitteltyp.funktionen] with element property r

[jboss-user] [JBoss Seam] - Re: entity update without submit

2007-06-18 Thread hispeedsurfer
Thank you pete, have performed bybassUpdates on cancel-commitLink and wondered about entity update anymore. Now on a:support it work expected. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055098#4055098 Reply to the post : http://www.jboss.com/index.htm

[jboss-user] [JBoss Seam] - entity update without submit

2007-06-15 Thread hispeedsurfer
Have the problem that the entity is updated without a submit. Once I have changed the value of the drop-down-menu it's directly updated to database. This should not the correct behaviour!?! But I don't know why? | | Generation: | | | | |

[jboss-user] [JBoss Seam] - s:fileupload and a4j

2007-06-06 Thread hispeedsurfer
one question. WHAT is the reason WHY s:fileuplaod and a4j submit not working together? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051729#4051729 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051729 ___

[jboss-user] [JBoss Seam] - Re: Simplest usage

2007-06-02 Thread hispeedsurfer
in my case I see a upload field with button. But the values for file, filename and contenttype in the backing bean are always null and getter/setter are never called only I comment the s:fileupload. In ohter forms in my app there is no problem with fileupload only in this one. | http://www.

[jboss-user] [JBoss Seam] - Re: Simplest usage

2007-06-01 Thread hispeedsurfer
@morellon which alteration you mean? My binding is always null. Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050613#4050613 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4050613 __

[jboss-user] [JBoss Seam] - Re: Simplest usage

2007-05-31 Thread hispeedsurfer
Hi Shane, have updated the fileupload example in JIRA. Have tested and should explode-able on JBoss-4.2.0.GA. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4050099#4050099 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=

[jboss-user] [JBoss Seam] - Re: Simplest usage

2007-05-29 Thread hispeedsurfer
Hello Shane, have you an explanation for this problem? After press "save" in my example all fields should be accessed. But the fields still have null values. Hope you can help. Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049485#4049485 Reply to

[jboss-user] [JBoss Seam] - Re: Simplest usage

2007-05-28 Thread hispeedsurfer
Hi Shane, have create a report to JIRA. http://jira.jboss.org/jira/browse/JBSEAM-1360 I never have done this before. Hope is ok. Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049139#4049139 Reply to the post : http://www.jboss.com/index.html?mod

[jboss-user] [JBoss Seam] - Re: Simplest usage

2007-05-23 Thread hispeedsurfer
It's exactly the same behaviour in my app. But I use Facelets(*.xhtml). The strange thing I found out: If I comment s:fileUpload tag, the fields are entered Without the comment the getter/setter of the fields file, fileName and fileContentType are not called in debug mode. Use Seam 1.2.1 an

[jboss-user] [JBoss Seam] - Re: Dte Pciker not interested in my formatter

2007-05-23 Thread hispeedsurfer
Hi have exactly the same problem and already put resource servlet to web.xml If I pick 1st June it result in 06/01/2007 instead of 01/06/2007 | | | | | | | | | | | Use JBoss Seam 1.2.1 jboss-seam-ui.jar is

[jboss-user] [JBoss Seam] - cancel timer after restart

2007-05-10 Thread hispeedsurfer
Hi, have implemented a timer as shown in seampay example. Also have used the cancel method to stop the timer. Until server is restarted the method work as expected. But after server restart ich receive the message like "Payment already processed" in seampay example. How can I cancel the timer

[jboss-user] [Security & JAAS/JBoss] - Re: NegotiateKerberos

2007-04-23 Thread hispeedsurfer
You have to put negotiate.jar | negotiate-src.jar | | | to lib folder of your server View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039750#4039750 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4039750 _

[jboss-user] [JBoss Seam] - Re: Seam and Richfaces : Drag and Drop Problem

2007-04-20 Thread hispeedsurfer
Hi davidetaibi anonymous wrote : Look in deploy\jbossweb-tomcat55.sar\META-INF\jboss-service.xml | | set UseJBossWebLoader=true Now it works View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4039160#4039160 Reply to the post : http://www.jboss.com/index.

[jboss-user] [JBoss Seam] - Re: Seam and Richfaces : Drag and Drop Problem

2007-04-18 Thread hispeedsurfer
Hi, have the same problem. | javax.faces.el.MethodNotFoundException: /specialreleaseeditor.xhtml @107,140 dropListener="#{requestlist.processDrop}": Method not found: RequestListBean:5c4o1y-w4tnnw-f0o94j20-1-f0opgfby-1s.processDrop(org.ajax4jsf.dnd.event.DropEvent) | @stu2 What your DanD

[jboss-user] [JBoss Seam] - Re: DataModelSelection not updated

2007-04-13 Thread hispeedsurfer
You can find on Seam docs what el enhancement is. Look at http://docs.jboss.com/seam/1.2.1.GA/reference/en/html/elenhancements.html page parameters are also descriped there http://docs.jboss.com/seam/1.2.1.GA/reference/en/html/events.html#d0e3803 View the original post : http://www.jboss.com/i

[jboss-user] [JBoss Seam] - Re: DataModelSelection not updated

2007-04-13 Thread hispeedsurfer
Hi Pete, thank you for your suggestion. I use now el enhancement and it works. Bye Andi View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4037089#4037089 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4037089

[jboss-user] [JBoss Seam] - Re: DataModelSelection not updated

2007-04-12 Thread hispeedsurfer
Hi Pete, I don't know what you mean. Neither page parameters nor el enhancement should be used for my problem. First time I load a table with all entries. When I select a row, the correspondending entity is displayed on the bottom of the page. Then I use search to reduce the table with this on

[jboss-user] [JBoss Seam] - Re: DataModelSelection not updated

2007-04-11 Thread hispeedsurfer
Helllo, no idea why the selected datamodel not updated? Only the sequence from whole table are existent in reduced table. Thanks Andi View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4036249#4036249 Reply to the post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss Seam] - DataModelSelection not updated

2007-04-10 Thread hispeedsurfer
Hi, have a table and use row selection with DataModelSelection. If the whole table is loaded all is perfect. But when I use searchpattern like in booking example(ajax) to reduce tablesize DataModelSelection not updated. For example all times the first row from whole table is selected while this

[jboss-user] [JBoss Seam] - Template not working properly

2007-04-03 Thread hispeedsurfer
Hey, no idea whats wrong. why userlist.find is called when I pass adminlist to template? Normally only adminlist.find should be called. I see that the right page (admins.xhtml) is displayed but userlist in template is called. thanks View the original post : http://www.jboss.com/index.html?

[jboss-user] [JBoss Seam] - Need help

2007-04-03 Thread hispeedsurfer
Hi, I hope someone can help me. I have a search field to reduce a table result similar like in booking example. This search field is placed on a template based site. But only the first site how share this template uses the search field in right way. template.xhtml | http://www.w3.org/1999/xh

[jboss-user] [JBoss Seam] - Re: Session wide variable

2007-03-26 Thread hispeedsurfer
in pages.xml i have now a call to init method to initialize the start-value. @In Context sessionContext works gread. Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031895#4031895 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[jboss-user] [JBoss Seam] - Re: Session wide variable

2007-03-26 Thread hispeedsurfer
Ok, thank you KoniKoni for the first time. An what can I do to initialize a value like main.xhtml at startup? Is it possible? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031872#4031872 Reply to the post : http://www.jboss.com/index.html?module=bb

[jboss-user] [JBoss Seam] - Session wide variable

2007-03-26 Thread hispeedsurfer
Hi, what can I do to maintain a session wide variable? I have a class Site with a variable currentSite. At startup this currentSite should store the startpage i.e. main.xhtml In other classes I should set this variable to the next displayed page. to change the sites this is the section where is

[jboss-user] [JBoss Seam] - Re: Dynamic navigation with partial page rendering

2007-03-20 Thread hispeedsurfer
If nobody would response, one easier question. Is it possible with facelets/templates and a4j rerender to redraw only the ui:insert tag of the main-template main.xhtml (template) | http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> | http://www.w3.org/1999/xhtml"; | xmlns:ui="

[jboss-user] [JBoss Seam] - Dynamic navigation with partial page rendering

2007-03-19 Thread hispeedsurfer
Hi, I know a4j and richfaces. I want to build a dynamic menu with rich:panelBar and | | | | | | navigation.xhtml | | | | | | | | from PageContentBean.j

[jboss-user] [EJB 3.0] - Re: @ManyToOne results in tinyblob

2007-03-06 Thread hispeedsurfer
Hi Andy, thank you for response. I think mixing annotations levels was the cause of my problem. Now it works. Thanks Bye Andi View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4025320#4025320 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[jboss-user] [EJB 3.0] - Re: @ManyToOne results in tinyblob

2007-03-04 Thread hispeedsurfer
Hi, why nobody post a reply? This project was build with Seam 1.1.1GA on XAMPP(1.5.4a) MySQL(5.0.24a) database. What can I do to create a foreign key build on the referenced primary key instead of the tinyblob? OR Why at all there is created a tinyblob? Thanks Andreas View the origina

[jboss-user] [EJB 3.0] - @ManyToOne results in tinyblob

2007-02-26 Thread hispeedsurfer
Hi, I'am working on JBoss-4.0.5.GA with EJB3 on MySQL. Why a @ManyToOne join result in a tinyblob instead of a foreign-key? My entities are a Baseentity and some derived classes with such @ManyToOne connections. Here the BaseEntity @MappedSuperclass | public abstract class BaseEntity implemen

[jboss-user] [JBoss Seam] - Re: Check interval

2007-02-24 Thread hispeedsurfer
Hi, for all with the same problem. There is a good example named seam-pay. Bye! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4021559#4021559 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4021559 __

[jboss-user] [JBoss Seam] - Re: Check interval

2007-02-21 Thread hispeedsurfer
I have seen various variation with @Asyncronous or Ejb3TimerService but I don't know what's the right for me to run from startup and check expiration date every day to send an email. The send email is not the problem only schedule the service. I hope for help. Thanks Andreas View the orig

[jboss-user] [JBoss Seam] - Check interval

2007-02-21 Thread hispeedsurfer
Hi folks, what's the best solution for check expiration date in my webapp to send an email as reminder service? For example the service should check email-response deadlines every day (also on server startup). Thanks Andreas View the original post : http://www.jboss.com/index.html?module=bb

[jboss-user] [EJB 3.0] - Re: not mapped

2007-02-02 Thread hispeedsurfer
Ok, found out that I have to use the fully qualified name in query like "from de.foo.ecp.model.Person p where p.class='US' order by name, forename" But why. What is to do using only the entity name? Thanks Andreas View the original post : http://www.jboss.com/index.html?module=bb&op=viewtop

[jboss-user] [EJB 3.0] - Re: not mapped

2007-02-02 Thread hispeedsurfer
Hi Andy, thank you for response. Unfortunatly your suggestion not bring the desired result. On hibernate forum I found that absence Serializable can cause the problem, but the BaseEntity class that extends Person class implements serialisation. I hope it's not a similar problem like http://

[jboss-user] [EJB 3.0] - not mapped

2007-02-01 Thread hispeedsurfer
Hi, I using a InheritanceType.SINGLE_TABLE and try to query this, but without success. Here my abstract superclass @Entity | @Name("person") | @Inheritance(strategy = InheritanceType.SINGLE_TABLE) | @DiscriminatorColumn(name = "PERSON_TYPE", discriminatorType = DiscriminatorType.STRING)

[jboss-user] [JBoss Seam] - param delivery on facelet template

2007-01-16 Thread hispeedsurfer
Hi, is it possible to deliver a param value from website to website? I have a template with sidebar container etc and a few derived pages from this template. In some cases I dont want display the sidebar. For this case I thought to can pass a parameter to template and use this value for 'rende

[jboss-user] [Beginners Corner] - Re: Simple action not called

2007-01-16 Thread hispeedsurfer
Hi, can please anybode have a look on my code. I have no idea what's wrong and what I have to do call the method onListLoad() suggessful. Thanks Andreas View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4002166#4002166 Reply to the post : http://www.jboss.co

[jboss-user] [JBoss Seam] - Re: Refresh entities

2007-01-15 Thread hispeedsurfer
Hi, My fault: A new browser instance comes a new workspace/conversation. Here my solution. Therefor the conversationID has to pass with a new browser window(open link in new window). Foo View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4001713#4001713 Rep

[jboss-user] [Beginners Corner] - Simple action not called

2007-01-15 Thread hispeedsurfer
Hi, perhaps a cap in my mind. I try to call an action, but the method is never called here the jsf code fragement | | | Sensor: | |

[jboss-user] [JBoss Seam] - Re: Refresh entities

2007-01-13 Thread hispeedsurfer
Hi, what can I do to refresh the rerenderd result from Entitymanager? Any idea? Thanks andi View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4001381#4001381 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4001381 __

[jboss-user] [JBoss Seam] - Re: Seam doesn't play with ICEFaces

2007-01-12 Thread hispeedsurfer
Hello Felix, thank you for response. Can you please post the fix for this problem. Thanks andi View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4000955#4000955 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4000955 _

[jboss-user] [JBoss Seam] - Refresh entities

2007-01-12 Thread hispeedsurfer
How can I refresh entities in the following case. I have a page that contains: | | | Sensor: | | |

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Same query doesn't work on jboss-4.0.5.GA

2007-01-11 Thread hispeedsurfer
Ok it works Thanks to andydale. First I extracted hibernate-3.2.0.ga.zip. From the hibernate directory with ant I executed with 5 errors. Then I have copied the directory to eclipse workspace and make a new project from existing ant. build.xml -> Run as ant build: Error. Now from workspace

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Same query doesn't work on jboss-4.0.5.GA

2007-01-11 Thread hispeedsurfer
Hi Andy, thank you for response. Can you tell me in few words what I have to do build a hibernate.jar with modified FromClause.java? hibernate-3.2.1.ga.zip I have allready downloaded. Ant and JDK is installed. Thanks Andreas View the original post : http://www.jboss.com/index.html?module

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Same query doesn't work on jboss-4.0.5.GA

2007-01-10 Thread hispeedsurfer
Is there an other configuration on jboss-4.0.5.GA as on jboss-4.0.4.GA for peristance access or what the problem here the stack trace 08:31:52,743 ERROR [STDERR] java.lang.NullPointerException | 08:31:52,743 ERROR [STDERR] at org.hibernate.hql.ast.tree.FromClause.findIntendedAliased

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Same query doesn't work on jboss-4.0.5.GA

2007-01-10 Thread hispeedsurfer
additional info. | same app.ear deployed on both servers. | database: mysql (xampp) | entities mapped to database an filled with values | other lists from database tables are displayed in my app | mysql libraries placed in lib jbossas/server/default/lib | | | only on the new s

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Same query doesn't work on jboss-4.0.5.GA

2007-01-10 Thread hispeedsurfer
Hi, Can someone tell me why a query in my webapp on jboss-4.0.4.GA runs successfully, but on jboss-4.0.5.GA the resultlist is empty. query= "from org.foo.Measurement where measure.sensor = true and id != 0 order by measure.typ" @In(create=true) | ... | private EntityManager em; | ...

[jboss-user] [JBoss Seam] - Re: Seam doesn't play with ICEFaces

2007-01-09 Thread hispeedsurfer
Hi Jerome, thank you for reply. I have tried to modify the PersistentFacesServlet.java as descriped. But in the icefaces.src.core package ELSetPropertiesRule.java is an error that getExpressionFactory() is undefined for type Application. When I try to export this package as jar file to my ice-a

[jboss-user] [JBoss Seam] - Re: Seam doesn't play with ICEFaces

2007-01-09 Thread hispeedsurfer
Hello, I think it's a bug like descriped here http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3991677#3991677 Can it be? Thanks Andreas View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3999385#3999385 Reply to the post : http://www.jboss.com/index.

[jboss-user] [JBoss Seam] - Seam doesn't play with ICEFaces

2007-01-09 Thread hispeedsurfer
My question is 'why this app work with pur Seam and MyFaces, but not with ICEFaces' 1. Abstract editor class public abstract class AbstractEditorBean extends AbstractEditorListeGemeinsames implements Serializable { | . | . | protected boolean neu; | | @Begin

[jboss-user] [JBoss Seam] - Re: HelloWorld-Ajax with Facelets

2006-12-22 Thread hispeedsurfer
Hello folks, can please someone reply whether it's possible to solve the problem with parameters and facelets. Or is it not possible to use blueprints library with facelets? thx andi View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3995849#3995849 Reply to t

  1   2   >