[jboss-user] [JBoss Seam] - Re: How can I pass parameters to action methods

2007-09-28 Thread cupdike
FWIW, I should have mentioned that passEdit.selectPass(pass) was getting called but that the pass parameter was null. In any event, I switched over to using a page parameter for the pass id. It seems like this is probably better anyway (bookmarkable). View the original post : http://www.jbos

[jboss-user] [JBoss Seam] - Re: How can I pass parameters to action methods

2007-09-26 Thread cupdike
Ok, so I'm not insane (at least not due to this ;-) ) But I'm doing it just like it's done (famous last words) in the booking demo. That is: | @Stateful | @Name("passSearch") | public class PassSearchAction implements PassSearchFacade { |... | @DataModel | private List

[jboss-user] [JBoss Seam] - Re: How can I pass parameters to action methods

2007-09-26 Thread cupdike
Apologies to Yuan/Heute, there's really nothing misleading about their statement. They spelled it out pretty clearly when I reread section 7.1. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4088871#4088871 Reply to the post : http://www.jboss.com/index.html

[jboss-user] [JBoss Seam] - Re: How can I pass parameters to action methods

2007-09-26 Thread cupdike
"[EMAIL PROTECTED]" wrote : So you need to find another way to pass an "object" from request to request. One way is to pass its identifier and to load it from the database in the second request. Another is to stick it into the session an retrieve it from there by identifier. But the booking app

[jboss-user] [JBoss Seam] - Re: I'm back

2007-08-01 Thread cupdike
Please take a look at: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=114909 Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4069742#4069742 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4069742 __

[jboss-user] [JBoss Seam] - Malformed xhtml doc w/ Facelets in Seam 2.0.0.Beta1?

2007-07-31 Thread cupdike
This is from a seam-gen'd app running on JBoss AS 4.2. The log is showing: 12:01:36,031 ERROR [STDERR] Jul 31, 2007 12:01:36 PM com.sun.facelets.FaceletViewHandler handleRenderException | SEVERE: Error Rendering View[/PpAdhocItemList.xhtml] | java.lang.RuntimeException: org.dom4j.DocumentExce

[jboss-user] [JBoss Seam] - Re: Target Unreachable error w/ Seam 2.0.0.Beta1?

2007-07-31 Thread cupdike
Part of the exception message was cut off (see below for full message), but everything needed is in that message (the fact that 'ppPemsItemMv' returned null). The problem was that the generated getter was as follows: @Name("ppPemsItemMvList") | public class PpPemsItemMvList extends EntityQuer

[jboss-user] [JBoss Seam] - Target Unreachable error w/ Seam 2.0.0.Beta1?

2007-07-30 Thread cupdike
Using Seam 2.0.0.Beta1 on JBoss AS 4.2, I generated my app using seam-gen. The list page for one of my entities, PpPemsItemMv, loads just fine and shows the table contents. However, when I try to filter using a search parameter, it blows up with the error below regarding "Target Unreachable".

[jboss-user] [JBoss Seam] - seam-gen: is there a way to regenerate the UI without regene

2007-07-26 Thread cupdike
Using Seam 1.2.1 GA, I used seam-gen to reverse engineer from some db tables. However, I need to tweak the mappings . Is there anyway to regenerate the UI without doing the full generate-entities? Probably even better would be to generate everything BUT the entities (including Home and List o

[jboss-user] [Remoting] - Re: non-ssl user authentication?

2007-06-25 Thread cupdike
I opened an issue for this: http://jira.jboss.com/jira/browse/JBREM-759 I'm kind of amazed that I'm the first one to request non-ssl client username/password authentication like this. -Clark View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4057392#4057392 Rep

[jboss-user] [Remoting] - Re: non-ssl user authentication?

2007-06-02 Thread cupdike
Thanks for the reply Ron. Just to be clear (before I submit any JIRA issues)... I've used JNDI lookups to access EJB session beans in the past where the context is used to authenticate the client to the server, and the user principal is then accessible in the EJB context. I'd like to do the sa

[jboss-user] [Remoting] - non-ssl user authentication?

2007-05-31 Thread cupdike
Is there a way to do user authentication using rmi (w/o using SSL)? I saw a forum post that showed using JNDI Context environment entries for username and password, but I don't see how this works with the remoting protocol like it does with JNDI lookups. I've googled various ways but not found

[jboss-user] [JBoss Seam] - Re: lookup of remote EntityQuery (from seam-gen) for Eclipse

2007-05-26 Thread cupdike
Hi Micheal- Unless I misunderstand your intention, I don't want to use a servlet because I will no longer be working with domain objects in RCP, thus losing a lot of the potential richness and having to break objects down into data for the wire. I'd like to try out AS 4.2.0 GA but I didn't thin

[jboss-user] [JBoss Seam] - Re: lookup of remote EntityQuery (from seam-gen) for Eclipse

2007-05-25 Thread cupdike
This may be a bug fixed in AS 4.2.0 CR1: http://jira.jboss.com/jira/browse/EJBTHREE-402 If I'm wrong on this, please let me know. Thanks, Clark View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4048781#4048781 Reply to the post : http://www.jboss.com/index.html

[jboss-user] [JBoss Seam] - Re: seam for Eclipse RCP

2007-05-25 Thread cupdike
For now, I'd be happy just to remotely use EJB's (from seam-gen) from RCP, but I can't even do that. Can someone please tell me what I'm doing wrong (see link)? http://www.jboss.com/index.html?module=bb&op=viewtopic&t=109305 View the original post : http://www.jboss.com/index.html?module=bb&o

[jboss-user] [JBoss Seam] - Re: lookup of remote EntityQuery (from seam-gen) for Eclipse

2007-05-24 Thread cupdike
For the record, this is using jboss-seam-1.2.1.GA and jboss-4.0.5.GA. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4048467#4048467 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4048467 _

[jboss-user] [JBoss Seam] - lookup of remote EntityQuery (from seam-gen) for Eclipse RCP

2007-05-23 Thread cupdike
I'm trying to remote access an EntityQuery subclass that I've converted to a SFSB. It was generated by seam-gen as a non-EJB subclass. I'm trying to use the EJB in a remote client app (Eclipse RCP). Currently, the lookup works but the bean won't cast properly due to some kind of serialVersion

[jboss-user] [JNDI/Naming/Network] - Re: Proxy ClassCastException after successful EJB lookup

2007-02-12 Thread cupdike
Peter- Nice catch... that was indeed the problem. I forgot about that whole "class identity = class + classloader" thing, and was lazy about how I had configured ant. There are also some useful wiki pages on this and other potential classloader issues: http://wiki.jboss.org/wiki/Wiki.jsp?page

[jboss-user] [JNDI/Naming/Network] - Re: Proxy ClassCastException after successful EJB lookup

2007-02-11 Thread cupdike
I noticed that tomatkist reported a similar problem (I'm also using 4.05 GA) several days ago: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=100439 Unfortunately, his solution is what I was already trying (lookup the bean and cast to the biz interface). What is bizarre/frustrating i

[jboss-user] [JNDI/Naming/Network] - Proxy ClassCastException after successful EJB lookup

2007-02-08 Thread cupdike
Using the EJB3 trailerblazer as a guide (http://trailblazer.demo.jboss.com/EJB3Trail/serviceobjects/slsb/index.html) I've been trying to reference a SLSB via a local interface in the web tier. The jndi environment looks like this for my APLEntityFacade EJB3 SLSB: | | +- APLEntityFacadeBea

[jboss-user] [JBoss Seam] - Re: Seam in Eclipse: Library problems

2006-10-25 Thread cupdike
There's a difference between expecting a project to "just work" and expecting it to "just build". I don't always expect the head to have completely working functionality--but I do expect it to at least build properly. Certainly there can be short term gaffs, but they should be promptly repaire

[jboss-user] [JBoss Seam] - Re: Seam in Eclipse: Library problems

2006-10-25 Thread cupdike
Call me old-fashioned, but when I go to build a project, I expect it to build without errors, and don't like the thought of ripping stuff out of it to get it to work. After all, JBoss is all about professionalopen source. Climbing down off my soapbox now... I, of course, reserve the right to h

[jboss-user] [JBoss Seam] - Seam in Eclipse: Library problems

2006-10-12 Thread cupdike
I was following along with the Seam in Eclipse flash demo, and after pulling the project down from cvs, there were 5 library jars that were reporting problems (2 drools jars, 2 myfaces jars and a jbpm jar). It looked like they had been updated with later versions but the eclipse project classpa