[jboss-user] [JBoss Seam] - Re: Multiple entities on page, and @Name conflict

2007-11-20 Thread whafrog
Thanks. Just to be clear: do I remove the @Name annotation from Entity in your example? Because I have tried using getters in my action class, but then I get javax.el Exceptions. Using your example, class MyBackingBean would have to be @Name d (say, myBackingBean, and on the page I'd

[jboss-user] [JBoss Seam] - Need help to understand what I'm doing

2007-11-20 Thread fredatwork
Hello, I need some help to understand better the usage of the session context. I've got a bean in the session context with a property 'scroller' that will be bound to a Richfaces datascroller component : @Stateful(name=EqtWebEquitySelector) | @Name(equitySelector) |

[jboss-user] [JBoss Portal] - JSF ExternalContext.redirect(url)

2007-11-20 Thread rododendro
Hi, I'm developing a JSF portlet application on JBP 2.6.1, AS 4.2.1. I need to redirect navigation from a JSF portlet to another one, before this a portlet session attribute must be set, so I can't user a direct link to the portlet URL. Based on JSF 1.2 documentation i tried: FacesContext fc

[jboss-user] [JBoss Messaging] - Re: Message stranded in cluster

2007-11-20 Thread chip_schoch
Ok, I finally got everything up and running on JBAS 4.2.2.GA and JBM 1.4.0.SP1. I use a ClusteredConnectionFactory to push messages to a clustered queue, and it is round-robining them to the partial queues as expected. Each of the services consuming these messages pushes another message on

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: 4.2.2 wont deploy my persistency unit

2007-11-20 Thread justkeys
Yes something changed in the packaging interpretation. In 4.2.1, we had to package the jars containing the ejbs (beans.jar) twice: - q.ear/lib/utils.jar - q.ear/META-INF/application.xml (module/ejb=app.jar) - q.ear/beans.jar - duplicate - q.ear/app.jar/ejb3/beans.jar -

[jboss-user] [JBoss Seam] - Re: Multiple entities on page, and @Name conflict

2007-11-20 Thread Andy Gibson
Well, rather than use named entity instances, you could just use references to them in a stateful backing bean : I.e. | | class MyBackingBean | | ... | private Entity entity1; | private Entity entity2; | | public Entity getEntity1() { | return entity1; | }

[jboss-user] [JBoss Seam] - Why does EntityQuery auto save updates?

2007-11-20 Thread terryb
Seems there is a link between EntityHome.instance() and EntityQuery or both refer to same instance of Entity? My changes get updated to database when I 'execute a query' to get current data in database. I have a jsf form based on EntityHome which updates few fields. Before committing changes

[jboss-user] [JBoss Seam] - Re: How to invoking methods with parameters with Seam test?

2007-11-20 Thread [EMAIL PROTECTED]
@Test | public void testCreate() throws Exception { |new ComponentTest() { | @Override | protected void testComponents() throws Exception { | Employee employee = new Employee(); | employee.setFirstName(abcdefghijklmnop); |

[jboss-user] [Beginners Corner] - Re: Using file resources in web projects

2007-11-20 Thread PeterJ
Two possibilities. 1) Write a servlet that returns the icon. Your html page would then reference the servlet, providing enough information in the url so that the servlet can identify the icon. 2) Use an external directory (http://wiki.jboss.org/wiki/Wiki.jsp?page=ExternalDirectories) and

[jboss-user] [JBoss Seam] - Re: formattedText with dynamic content - escaping

2007-11-20 Thread [EMAIL PROTECTED]
No, we have no built in class for doing this, but it could be an interesting addition for SeamText, so it would be interesting to see what you come up with. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106448#4106448 Reply to the post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Problem starting JBOSS 4.0.5GA

2007-11-20 Thread PeterJ
I do not know of any configuration setting to bypass the checks, you would have to modify the code. And RMI was just an example, you could very well run into other problems. You also never said why you are against modifying /etc/hosts, it is such a simple solution. View the original post :

[jboss-user] [JBoss Seam] - Re: Restting a form inside a modalPanel

2007-11-20 Thread damianharvey
You're on the right path, however in the latest version of richfaces you can't just reRender the modal you have to reRender something in it. Your best bet is to have something like an s:div or a4j:outputPanel in the modal and reRender that. Cheers, Damian. View the original post :

[jboss-user] [JBoss Seam] - Re: s:graphicImage decreases the image quality

2007-11-20 Thread [EMAIL PROTECTED]
Look at the jira issue, and vote for it if you want it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106455#4106455 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106455 ___

[jboss-user] [JBoss jBPM] - Begginer question Task forms inside standard Web Application

2007-11-20 Thread francis1970
Hello, I have just deployed and tested the built-in simple process and tried with the jbpm-console. I would like to know if it's possible to insert the web console interface of the process (built with Eclipse Designer) into another standard JSP-based web application. In other words, I'd like to

[jboss-user] [JBoss Seam] - Re: I have a problem with selectOneMenu

2007-11-20 Thread [EMAIL PROTECTED]
Use code tags, post the whole stack trace. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106451#4106451 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106451 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: pagination and dataTable

2007-11-20 Thread [EMAIL PROTECTED]
Read the docs. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106450#4106450 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106450 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: @Factory is not working

2007-11-20 Thread damianharvey
Yep. Or change your page to : | f:selectItems value=#{tipoAcusadoList}/ Cheers, Damian. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106442#4106442 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106442

[jboss-user] [JBoss Seam] - Re: Seam + JBoss AOP

2007-11-20 Thread asookazian
damatrix wrote : EJB interceptors cannot be used on Seam POJOS. Is it a good idea to use JBoss AOP to create interceptors for a Seam POJOs? this is not true. I am using EJB3 interceptors on Seam SFSB's (conversation-scoped and session-scoped) and SLSB. I am seeing the output in the log for

[jboss-user] [JBoss Getting Started Documentation] - Re: Duke's Bank Application Problem

2007-11-20 Thread PeterJ
Looks like the table already exists. If you are using HSQLDB (the default), then bring down the app server and remove the directory server/default/data. Then bring the app server up and try it again. By the way, HSQLDB puts its database at server/default/deploy/hypersonic.localDB.script, so by

[jboss-user] [JBoss Seam] - Re: need help using DataModelSelectionIndex

2007-11-20 Thread asookazian
[EMAIL PROTECTED] wrote : Try | | @DataModel(value=myAuditList) | | private List myAuditList; | | | | @DataModelSelection(value=myAuditList) | | private Object[] myAuditListSelection; | | | |

[jboss-user] [JBoss Seam] - Re: Restting a form inside a modalPanel

2007-11-20 Thread waynebagguley
No joy with that. Will have to keep trying differen things. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106473#4106473 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106473 ___

[jboss-user] [EJB 3.0] - Driver problems with Persistence.XML

2007-11-20 Thread breako
Hi, I have a very simple War, which contains a JSP and a pesistence.xml file. The Persistence.XML defines my persistence unit: |persistence-unit name=h-source |properties | property name=hibernate.connection.driver_class value=oracle.jdbc.driver.OracleDriver/ |

[jboss-user] [JBoss Seam] - Re: need help using DataModelSelectionIndex

2007-11-20 Thread asookazian
Kragoth wrote : As far as I know or at least as far as I can tell, you cannot have a DataModelSelectionIndex and a DataModelSelection on the same DataModel. | | You need to choose, do you want the index or the object. | | There really is no point in having the DataModelSelection if you

[jboss-user] [JBoss Seam] - web services

2007-11-20 Thread wdlcs
Hi...I'm using jboss-seam 2.0.0.GA and a web services client (.jar)...so what I need is to run this web services client within a Seam environment. I read from Seam documentation that I have to put this xml file into the META-INF directory of the jar file that contains the web service classes :

[jboss-user] [JBoss Seam] - Re: Restting a form inside a modalPanel

2007-11-20 Thread waynebagguley
Cheers, I thought I had tried that but I'll give it another go. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106454#4106454 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106454

[jboss-user] [JBoss Seam] - Re: web services

2007-11-20 Thread [EMAIL PROTECTED]
Did you read the docs? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106456#4106456 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106456 ___ jboss-user mailing list

[jboss-user] [JBossWS] - Re: Getting DEBUG messages and server goes to hung state

2007-11-20 Thread PeterJ
I am going to go out on a limb here and say that someone modified the server's source code because I cannot see any such logging statements in the source I have. What version of JBoss AS are you using? If you take a thread dump, what are the threads doing? View the original post :

[jboss-user] [JBoss Seam] - Re: Navigator doesn't render an image using s:graphicImage

2007-11-20 Thread [EMAIL PROTECTED]
Please preview your post before posting. Whats not right? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106453#4106453 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106453 ___

[jboss-user] [JBoss jBPM] - Re: Multiple JBPM engines on one single JBoss instance

2007-11-20 Thread vtysh
It's easy, simply edit hibernate.cfg.xml file for another datasources which you have. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106444#4106444 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106444

[jboss-user] [JBoss Seam] - Re: need help using DataModelSelectionIndex

2007-11-20 Thread [EMAIL PROTECTED]
asookazian wrote : I posted the stack trace for this configuration in my original post. does not work. Ah yes. You are right - this stopped working about a year ago. We should probably fix that. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106483#4106483

[jboss-user] [JBoss Seam] - Problem with EntityHome.update and Drools

2007-11-20 Thread stefanommb
Seam 2.0.0 I have: @Restrict | @Name(userHome) | public class UserHome extends EntityHomeUser { | ... | } security.drl: rule rule1 | when | c: PermissionCheck(name == userHome, | action in (persist, update, remove)) | Role(name == userupdate) | then |

[jboss-user] [EJB 3.0] - ManyToMany relationship do not work properly

2007-11-20 Thread fla83tn
Hi to all, I'm working on jboss 4.2.1GA and I'm stuck with a simple ManyToMany relationship.. I have this relation between Users and Sources (of rss feeds - URLs in practice). I followed all tutorial about how to do it and I tried a lot of solutions but I can't figure out why it doesn't work!

[jboss-user] [JBossCache] - Re: Clusted Cache with Berkeley CacheLoader with a singleton

2007-11-20 Thread jivesociety
C:\cache\stats is not a shared drive. But, I was contemplating going that route as we are planning on deploying this to unix systems with a shared NFS filesystem. It seems that the first process in the cluster creates the je.lck file to signify it is the writer process. And every other node

[jboss-user] [JBoss jBPM] - Re: java.lang.NoSuchFieldError: FORCE

2007-11-20 Thread simonbaker
For anyone interested - yes, it was is a Hibernate version problem. hibernate3.jar 7/31/2007 has the missing field and works fine. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106485#4106485 Reply to the post :

[jboss-user] [Beginners Corner] - Re: The field Priority.debug is deprecated

2007-11-20 Thread PeterJ
deprecated means that the feature you are using (the debug field in the Priority class, in your case) is no longer the preferred way of accessing this information and at some future time might no longer be allowed, but at this time the feature still works. As an example, there are many things

[jboss-user] [JBoss Seam] - Re: Seam + JBoss AOP

2007-11-20 Thread asookazian
damatrix wrote : EJB interceptors cannot be used on Seam POJOS. Is it a good idea to use JBoss AOP to create interceptors for a Seam POJOs? Oh you mean classes that don't have @Stateless or @Stateful annotations (non-EJB3 pojo's) but do have @Name annotation? I don't think I've tried that

[jboss-user] [JBoss Seam] - Re: How to integrate Ext with Seam using JSON

2007-11-20 Thread xinhua
hi,damianharvey my trick is , first create grid object with a createGrid(data) function, then use js:function to get collection from server and transfer it into data,after that i use js:function oncomplete to call createGrid(data) to build the grid. yes, i know js:Function is a very cheep

[jboss-user] [JBoss Seam] - setting Identity.authenticateEveryRequest = true doesn't act

2007-11-20 Thread mwkohout
Is this a bug? this is the case in v 2.0.0 GA as well as in the head of cvs. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106463#4106463 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106463

[jboss-user] [JBoss Seam] - Re: Seam integration with non JSF based presentation framewo

2007-11-20 Thread mnesarco
cjalmeida wrote : IMHO, throwing away the mature the HTML editors out there is/was a very bad decison of JSF ppl. | | That's why I really like other presentation frameworks like Tapestry and Wicket. | | So, will Seam be able to support those kind of tools? The Seam-Wicket integration

[jboss-user] [JBoss Tools (users)] - Re: JBOSS Tools and eclipse 3.3

2007-11-20 Thread amitev
Hi! The manual you're reading is out of date. Here you can find links to the new guides http://www.redhat.com/developers/rhds/index.html P.S. You can create new servlet using: New - Other - Web - Servlet View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: JDK Version Problem with RHDS + JBoss 4.2.2 + jdk 5 upda

2007-11-20 Thread PeterJ
The Bad version number in .class file is the error message you get when you try running a class compiled with the 1.6 compiler with a 1.5 JVM. Either recompile with 1.5, or run with 1.6. Complaint: the error message used to give the class version numbers so that you at least had a clue what

[jboss-user] [JBoss Seam] - Re: JBoss EL performance vs Sun EL

2007-11-20 Thread mnesarco
halivingston wrote : So, you're saying a Data Grid listing with 100 rows is going to take like many seconds to render? | | I haven't joined the JBoss Seam bandwagon yet. I was going to, but are these performance issues going to persist? Change in JSF 2.0? etc? Or is it better to try

[jboss-user] [JBoss Seam] - Re: Problem with EntityHome.update and Drools

2007-11-20 Thread stefanommb
My server.log: 2007-11-20 17:14:06,512 DEBUG [org.jboss.seam.core.Events] Processing event:org.jboss.seam.notAuthorized 2007-11-20 17:14:06,512 FATAL [javax.enterprise.resource.webcontainer.jsf.application] org.jboss.seam.security.AuthorizationException: Authorization check fa iled for

[jboss-user] [JBoss Seam] - Intercepting Seam components/Support for AspectJ

2007-11-20 Thread b.reeve
I am working on a Seam project with Facelets and Spring on Tomcat. Enviroment is Seam 2.0.0.CR2, Tomcat 6.0.10, Facelets 1.2, Spring 2.0. Could anyone please tell me if there is a way to do intercepting on Seam components using AspectJ just as we do with Spring beans? Is there a way to create

[jboss-user] [JBoss jBPM] - Re: RuntimeException in handler method, transition to DOES_N

2007-11-20 Thread deepuin9
Thanks for the solution dude. I will try it out tomorrow morning as its time for me to sleep. :) About your question, If you meant validation of bpel process then, sorry mate I dont know any tool. :(. i have eclipse designer plug-in in my eclipse environment which checks the bpel process

[jboss-user] [JBoss Messaging] - Re: Jboss crashes with java.io.EOFException error

2007-11-20 Thread yyagol
new error i found on the logs : ERROR [org.jboss.remoting.transport.socket.ServerThread] Worker hread initialization failure | java.io.EOFException | at org.jboss.remoting.transport.socket.ServerThread.processInvocation(ServerThread.java:530) at

[jboss-user] [JBoss Messaging] - Jboss crashes with java.io.EOFException error

2007-11-20 Thread yyagol
Hi I have seen this type of error on the forums but none seems to help. We have a Jboss-4.2.2.GA running Jboss-messaging-1.3.0.GA the system is RedHat EL4.5 . the error i get is : ERROR [ServerThread] Worker thread initialization failure java.io.EOFException | at

[jboss-user] [Messaging, JMS JBossMQ] - Re: Managed connection factory just for pooling?

2007-11-20 Thread [EMAIL PROTECTED]
Yes. 1) Create a jms provider that uses ConnectionFactory instead of XAConnectionFactory. 2) Create a no-tx-connection-factory that references the new jms provider. Details in the JCA forum/WIKI View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106499#4106499

[jboss-user] [EJB 3.0] - Problem instantiating an EntityManagerFactory

2007-11-20 Thread breako
Hi, I have configured a JTA datasource in my persistence.xml |persistence-unit name=h-source |jta-data-sourcejava:DefaultDS/jta-data-source |properties | property name=hibernate.connection.driver_class value=org.hsqldb.jdbcDriver/ |

[jboss-user] [JBoss Seam] - Observer issues - multiple calls + async

2007-11-20 Thread damianharvey
I've just implemented the Manager Component pattern as outlined in the docs using @Unwrap and @Observer and it's working a treat. Two small issues with it though: 1. When using incremental hot deploy (ie. WEB-INF/dev) the Event is fired as many times as it's been since you last did a full

[jboss-user] [JBoss Seam] - Re: ejb3/seam-gwt-remoting/gwt

2007-11-20 Thread hartfordd
I would be happy to create a test case. Since this will have dependent libraries, how can I determine which jboss libs in the Maven repo are associated with the application platform (like 4.2?). i.e. ejb3, jboss client, etc. http://repository.jboss.com/maven2/ View the original post :

[jboss-user] [JBoss Seam] - Re: need help using DataModelSelectionIndex

2007-11-20 Thread asookazian
the alternative solution suggested by Kragoth works. thx much! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106495#4106495 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106495

[jboss-user] [Messaging, JMS JBossMQ] - Re: MDBs don't work after jms recovery

2007-11-20 Thread [EMAIL PROTECTED]
Stopping destinations and getting clients to reconnect is an unsupported feature in JBossMQ. There is no mechanism to push the error to the client. One way to solve the problem (though it isn't very good) would be to close all connections that have active receivers (subscribers not receivers

[jboss-user] [JBoss Seam] - Re: Multiple entities on page, and @Name conflict

2007-11-20 Thread whafrog
It works! (mad cackle) Thanks to Andy Gibson, and also to IGx89 from second link I posted above. I ended up revisiting IGx89s suggestion, and two things resolved the problem: First, while I had a @Name annotation on the entity, I neglected to put one on the backing bean that contained the

[jboss-user] [JBoss Seam] - Workspace

2007-11-20 Thread swamigee
I have a POJO with a method annotated with @Begin. The conversation gets started but switcher.seletectItems is empty. Nothing gets displayed. The example application(issues) in seam 1.2.1 uses ejb. But I am using managed bean, a seam component with annotations @Name(sampleBean)

[jboss-user] [JBoss jBPM] - Re: JBoss jBPM - BPeL - eclipse

2007-11-20 Thread agusgr
Maybe you could start reading this post. http://www.jboss.com/index.html?module=bbop=viewtopicp=4106514#4106514 I will wait your questions in the forum Good luck View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106515#4106515 Reply to the post :

[jboss-user] [JBoss Tools (users)] - Problem controlling and deploying to JBoss AS

2007-11-20 Thread rhasselbaum
Hi! I'm trying to deploy an Eclipse project to JBoss AS 4.2 via the JBoss Tools 2.0 nightly build (2007-11-19). I have created a WAR file via the Project Archives view and the WAR file appears in the workspace. Now I'm trying to deploy it, so I configured and started the server, and then I

[jboss-user] [JBoss jBPM] - Re: RuntimeException in handler method, transition to DOES_N

2007-11-20 Thread agusgr
I meant consumtion of the process. What kind of client do you use?? An axis client, a generic soap client, a visual basic client... Looking in the logs I see the excepcion in the soap request handler, so maybe a problem with the soap request message of your client. Is only a theory, :). See you

[jboss-user] [JBoss jBPM] - Re: Tutorial: Modeling BPEL with Eclipse BPEL Designer and j

2007-11-20 Thread agusgr
Congratulations Rainer, an excelent work. I'm working in the automatic deployment of the BPEL process, do you? We could share information if you want. Regards Agus View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106514#4106514 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: jBPM BPEL Eclipse Process Designer interworking

2007-11-20 Thread agusgr
It could help if you post some of your troubles. I think that the new version of the plugin is quite similar, so the problems should be similars too. Regards, Agus View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106516#4106516 Reply to the post :

[jboss-user] [JBoss Portal] - Problem with Refresh of IFrame using IFramePortlet.

2007-11-20 Thread Gopi.Surabhi
Hi, I'm using the IFramePortlet in my portal. The Issue I'm facing is when I maximize/ minimize / normal the IFrame window, the IFrame is loaded again with the same initial page configured. I'm loosing all the navigaitons done till that point. Has anyone came across this problem, pls suggest

[jboss-user] [JBoss Messaging] - Re: Message stranded in cluster

2007-11-20 Thread chip_schoch
Apparently I started one of my nodes the first time before I set the clustered flag in the queue definition because when I looked at the jbm_postoffice records one node had clustered set to false. By deleting the records then restarting the queue is set to clustered and it appears that

[jboss-user] [JBoss Seam] - Re: JBoss tools - Seam generate entities from existing entit

2007-11-20 Thread [EMAIL PROTECTED]
Go to Run Hibernate code Generation and select the yourproject-generate-entities configuration. go to exporters and remove the hbm2java/.java exporter. btw. I created and fixed http://jira.jboss.com/jira/browse/JBIDE-1336 just for you ;) View the original post :

[jboss-user] [JBossWS] - JBOSS WS and REST without WSDL (Bug?)

2007-11-20 Thread Batigoal
Hi! Does JBossWS really support REST without a given WSDL? To my mind REST often makes only sense when i don't have a WSDL because i don't want to use the SOAP-protocol, But when i annotate a Bean with @WebServiceProvider @ServiceMode(value=Service.Mode.PAYLOAD) then JBOSS throws an Exception

[jboss-user] [JBoss Seam] - Re: Intercepting Seam components/Support for AspectJ

2007-11-20 Thread jacob.orshalick
Maybe it was snipped from the code but I do not see the RetentionPolicy. Try the following: @Target(ElementType.TYPE) | @Retention(RetentionPolicy.RUNTIME) | @Interceptors(LoggingInterceptor.class) | public @interface Logging {} View the original post :

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

2007-11-20 Thread jacob.orshalick
Are you redisplaying the same page after beginning a conversation? If so, see the following: http://jira.jboss.com/jira/browse/JBSEAM-1997 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106530#4106530 Reply to the post :

[jboss-user] [JBoss Seam] - Simple example using selectOneListbox without CRUD?

2007-11-20 Thread BrettG
I've been trying for quite a few hours now to get selectOneListBox to work, and I'm not having much luck. I've reviewed the posts and the ui example in the Seam 2 distribution as well. What I'm doing is fairly straight forward, passing a list to selectOneListBox, and trying to use the value

[jboss-user] [EJB/JBoss] - configuring JBoss SFSB passivation timing

2007-11-20 Thread asookazian
is it possible to do this? if so, which config/xml file? I searched C:\jboss-4.2.1.GA\server\default\conf for passivate and passivation and no hits for either keyword. I read in Roman Mastering EJB book that ejb containers used algorithms like LRU and MRU to determine when to passivate a

[jboss-user] [Installation, Configuration DEPLOYMENT] - ERROR [URLDeploymentScanner] JBoss 4.2.2.GA and Netbeans 5.5

2007-11-20 Thread nknize
I have been searching the blogs, forums, and documentation for a few days now looking for others that have had similar problems as myself deploying a simple EJB3.0 application. The application is (more or less) the same structure as the NewsApp EJB3.0 example application that is provided with

[jboss-user] [JBoss Seam] - Re: ejb3/seam-gwt-remoting/gwt

2007-11-20 Thread hartfordd
http://jira.jboss.org/jira/browse/JBSEAM-2277 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106534#4106534 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106534 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: EntityQuery : paging problem, only 1st and 2th page does

2007-11-20 Thread mark.wigmans
Sorry for bothering all of you, as a newcomer to jboss seam I misinterpretered the generated could. I made the mistake that a EntityQuery is not session scoped in this example. seam generate-entities gives the result I wanted View the original post :

[jboss-user] [JBoss jBPM] - GPD process designer - gpd.xml coordinates relative to what?

2007-11-20 Thread simonbaker
In the gpd.xml file, what are the coordinates relative to? For example, the first node in my graph: | node name=Start x=161 y=-32 width=215 height=40 | transition name=Done | label x=5 y=-10/ | /transition | /node | has a y coordinate of -32. Yet the node is

[jboss-user] [JBoss Seam] - performance of EntityQuery

2007-11-20 Thread mark.wigmans
I generated my JBoss seam application with 'seam generate-entities' and noticed the following: - Every time I walk thru a table (via paging) a sql query count(*) from table? is performed. For tables with a large amount of data this count(*) is time consuming. I already notices that there are

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: ERROR [URLDeploymentScanner] JBoss 4.2.2.GA and Netbeans

2007-11-20 Thread PeterJ
It appears that either you removed the server/default/deploy/hsqldb-ds.xml file, or changed the datasource name in that file to JmsXA. This file declares the DefaultDS data source, the absence of which is what the first set of errors are about. Regarding the JNDI problem, the name

[jboss-user] [JBossWS] - ClassNotFoundException JBossWSProviderFactoryImpl with JBoss

2007-11-20 Thread gquintana
I get an exception when I run WSProvide: $ wsprovide.sh -k -w -c classes -o classes -r jbossws -s jbossws com.mycompany.myapp.ws.MyWebService | [: 71: /opt/java/jboss-4.2.2.GA/client/jbossws-client.jar: unexpected operator | JBossWS-SunRI stack deployed | Exception in thread main

[jboss-user] [EJB/JBoss] - EJB3 - Transaction - Timeout

2007-11-20 Thread jonn
Although I am a newbie to JBoss, I need to do some quite advanced things with it as member of a software project. Here is the thing: I have classes extracting information from websites. The extraction is always completed (I can see the System.out messages of my server) and after that I start a

[jboss-user] [JBoss Seam] - Re: BookingListAction SFSB and Serializable interface

2007-11-20 Thread asookazian
I am doing some root cause analysis here to determine the problem. I removed all references to Seam @Logger and Seam Log in both SFSB's involved in this use case. I was still able to reproduce the log4j related exception after passivation occurs and then running another test case: Caused by:

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Tomcat 6 comet support in 4.2.2

2007-11-20 Thread jon.brisbin
I was wondering how I go about doing Comet inside a webapp by implementing the catalina CometProcessor interface? When I access a servlet that implements this interface, I get this JBoss-specific error: java.lang.ClassCastException: org.jboss.web.tomcat.filters.ReplyHeaderFilter cannot be cast

[jboss-user] [JBoss Seam] - Re: MDB initialized too early?

2007-11-20 Thread svadu
Is there a problem with the way I use it or should I create a JIRA issue? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106553#4106553 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4106553

[jboss-user] [JBoss Seam] - getVersion() returns null on Glassfish V2

2007-11-20 Thread mirko27
We encountered problem with integrating seam 2.0.0.GA and ICEFaces Facelets. It appears that ICEFaces relies on getVersion() method which on glassfish v2 platform returns null. More information in according jira case: http://jira.icefaces.org/browse/ICE-2405 How to overcome this problem and why

[jboss-user] [JBossWS] - Re: ClassNotFoundException JBossWSProviderFactoryImpl with J

2007-11-20 Thread PeterJ
The missing class is in client/jbossws-client.jar. Looks like you have to set JBossWS-Native to something (set it ti 1) to get that jar file included in the classpath. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106557#4106557 Reply to the post :

[jboss-user] [JBossWS] - Re: ClassNotFoundException JBossWSProviderFactoryImpl with J

2007-11-20 Thread PeterJ
Actually, looking a little more carefully, it would appear that the shell (bash?) on Ubuntu did not like the if statement in lines 69-71 (unexpected operator). Fedora 8 doesn't have a problem with it; I have Kubuntu 7.10 at home, I'll try there. View the original post :

[jboss-user] [EJB/JBoss] - SFSB passivation and log4j InstantiationException

2007-11-20 Thread asookazian
I have a Seam web app with two SFSB's (one injected into the other). When the ejb container (JBoss 4.2.1.GA) passivates the SFSB's and I run a test case, I get a log4j related SerializationException caused by InstantiationException. Thrown when an application tries to create an instance of a

[jboss-user] [JBoss jBPM] - Re: Begginer question Task forms inside standard Web Applica

2007-11-20 Thread kukeltje
Francesco, The webconsole uses jsf components which you can use in your own JSP's as long as you also use jsf. On the other hand, I would stongly oppose using JSP with JSF. I'd go for facelets View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106559#4106559

[jboss-user] [JBoss Portal] - Re: Obtaining user identity from PortalRuntimeContext?

2007-11-20 Thread dpegram
I may be able to get the information I need another way. Unfortunately, the following code fails because the FacesContext is always null. | FacesContext context = FacesContext.getCurrentInstance(); | PortletRequest request =

[jboss-user] [JBossWS] - Webservice not starting in AS 4.2.2

2007-11-20 Thread isthisusernameavailable
Hello, I have a simple clustered webservice that I created using AS 4.2.1 annotated with some basic annotations: @Stateless | @Clustered(partition=DefaultPartition) | @WebService(serviceName=Request) | public class RequestManager extends IRemote { | ... | } with a few methods

[jboss-user] [JBoss Seam] - Should MethodContextInterceptor use a non-event triggering c

2007-11-20 Thread kahliburke
I've been doing some profiling of our application, and finding in some cases that a considerable amount of time per request ( 500 ms) is being taken up by event triggering and handling. When I look at the main source of the events, they appear to come from the MethodContextInterceptor, which

[jboss-user] [JBoss Seam] - Re: Simple example using selectOneListbox without CRUD?

2007-11-20 Thread BrettG
So, I fixed the problem. From what I've seen outjected lists and jsf tags that take in lists don't mix well. After removing the @Out(required = false) from List clients and the @In(required = false) from Object selectedClient, and adding getters and setters for both, everything is working

[jboss-user] [JBoss Seam] - Re: Intercepting Seam components/Support for AspectJ

2007-11-20 Thread b.reeve
Hi Jacob, Thanks for the reply. I tried it that way and it worked. I had few doubts too. 1. Is there a way to intercept just the methods and not the class. 2. Is there any way to collectively configure a set of classes or pattern in the interceptor as we do with Spring. (So that we dont have

[jboss-user] [JBoss Seam] - Re: web services

2007-11-20 Thread [EMAIL PROTECTED]
Your question isn't quite clear - do you wish to invoke a remote web service from your Seam application? You don't need a standard-jaxws-endpoint-config.xml unless you're actually deploying web services within your Seam app (you don't need it for a web service client). View the original post

[jboss-user] [JBoss Seam] - Re: setting Identity.authenticateEveryRequest = true doesn't

2007-11-20 Thread [EMAIL PROTECTED]
This property will be used for SSO and container security integration. As of yet, it's not used for anything. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4106568#4106568 Reply to the post :

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Null Pointer in JSP compile

2007-11-20 Thread donald.gregory
I'm having the same issue. I migrated a web app over from apache tomcat 5.0.28 to jboss 4. I'm using Struts as the framework. My app displays the login screen fine, which is a jsp. But after logging in, the server log spews the same exception as posted in this thread. My WAR file hasn't

[jboss-user] [Installation, Configuration DEPLOYMENT] - Stop undeployment at shutdown

2007-11-20 Thread grumpdogg
Is there a way to configure JBoss 4.2.1 to not undeploy loaded applications at shutdown? I am currently deploying a rather large application from an EAR that takes a while to deploy. I'd rather have it remain deployed when shutting down so I don't have to wait almost 3 minutes for it start

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: ERROR [URLDeploymentScanner] JBoss 4.2.2.GA and Netbeans

2007-11-20 Thread nknize
Peter, Thanks so much for the recommendation. I checked all 3 directories (all, default, and minimal) for the hsqldb-ds.xml file, and it exists in all 3. Whats more, they're the same. Below is the contents of that file. | ?xml version=1.0 encoding=UTF-8? | | !-- The Hypersonic

[jboss-user] [JBoss Seam] - Re: Multiple entities on page, and @Name conflict

2007-11-20 Thread [EMAIL PROTECTED]
The next big evolution for Seam and its core component/context model will be to implement Web Beans. Gavin has posted a good series on his blog about what Web Beans will look like - so go take a look if you want to see the future of Seam. View the original post :

[jboss-user] [JBoss Seam] - TimerServiceDispatcher won't deploy on Weblogic 10

2007-11-20 Thread apatterson11
Hi, I am having an issue deploying EJB 3.0 Seam applications on Weblogic 10. A few of weeks back we got an issue patched (BEA case CR327275) that related to the ejbc misinterpreting the varargs modifier on methods (since then I've been busy on another project). Now I find that when attempting

[jboss-user] [JBoss Seam] - Re: selectOneMenu - NullPointerException

2007-11-20 Thread chrismalan
I don't know if I have a Seam Managed Persistence Context in my components.xml. I'm mailing this from work. But I at last did get s:selectItems to work. What did the trick was that every @entity that is used as a source for s:selectItems must implement a boolean equals(Object obj) and an int

[jboss-user] [Remoting] - Re: Stupid Bisocket question, how do I do invocations on the

2007-11-20 Thread TheNelson
I have some more information. On my server side, I take my callbackInvoker and I do: ServerInvokerCallbackHandler myCaller = (ServerInvokerCallbackHandler)myCallbackInvoker; try { myCaller.getCallbackClient().addListener(new MyClientCallbackHandler()); }

[jboss-user] [JBoss Seam] - Seam does not work when using with DAO (No transaction...)

2007-11-20 Thread vietbird
For various reasons, I need to use Seam with a DAO layer. I try the JPA example (comes with Seam 2.0.0.GA) with WAS 6.1.0.11. It works fine. When I add the DAO layer (i.e. no EntityManager is used within the Action classes, DB operations are carried out through DAO methods), all operations (add

[jboss-user] [JBoss Seam] - Re: Intercepting Seam components/Support for AspectJ

2007-11-20 Thread jacob.orshalick
b.reeve wrote : 1. Is there a way to intercept just the methods and not the class. Seam does not support method level interceptors, but you can always place the interceptor at the class level and use a method-level annotation to define the method(s) that should be intercepted. I provide an

<    1   2   3   >