[jboss-user] [JBossWS] - Re: Endpoint registration

2009-08-20 Thread monkeyden
Are there any special files or configuration needed to get it to deploy in an ear? I have looked at the testsuite example as well as the seam bay example and have found no differences at all. These are the very same SEI and impl files, which deployed just fine in its own independent jar file.

[jboss-user] [JBossWS] - Re: Endpoint registration

2009-08-18 Thread monkeyden
I was able to get the endpoint registered when deployed in it's own jar file, but I'm not able to deploy it when it's lives within my ejb jar inside the ear file. I would imagine the solution is simple but I have yet to track it down. Suggestions are greatly appreciated. Thanks P.S. Is this

[jboss-user] [JBossWS] - Endpoint registration

2009-08-12 Thread monkeyden
I have an endpoint, in my ejb jar file, deployed to JBoss 4.2.2GA. I can see the bean is being deployed but I see nothing about the endpoint registration, like I do all the portal services. I also see the portal services endpoints at the services URL http://localhost:8080/jbossws/services

[jboss-user] [JBossWS] - Re: Endpoint registration

2009-08-12 Thread monkeyden
The above deployment was in an ear file. I tried it according to the JBossWS documentation and had no mention of the service in the server log. I packaged the the impl and the interface in a jar file and deployed it to the deploy directory as directed in: anonymous wrote : Simply wrap up the

[jboss-user] [JBoss Portal] - Portal + Seam + custom error pages

2009-07-06 Thread monkeyden
I have a Seam app running in the portal which has custom HTTP error pages for 404, 500 and 403. They are properly configured in my application's web.xml. It seems, however, that they're being ignored. Should the configuration for these pages exists somewhere else, perhaps in

[jboss-user] [JBoss Tools (users)] - Re: VPE Source tab gone in 2.1.0?

2008-07-02 Thread monkeyden
dgolovin wrote : ...it will work the same way as separate source page. That's not exactly true. The minimization doesn't stick. When you open a new XHTML file, it's displayed in Visual+Source, so you have to do it every time you open a file. I'd love to have the Source tab back. View the

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

2008-02-12 Thread monkeyden
Definitely consider creating custom events as well. The decoupling it gives you can help to simplify extremely complex business rules. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4128813#4128813 Reply to the post :

[jboss-user] [JBoss Seam] - Re: well-formed character problem

2008-02-12 Thread monkeyden
Use Unicode http://www.oasis-open.org/docbook/specs/wd-docbook-xmlcharent-0.3.html View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4128825#4128825 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4128825

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

2008-02-12 Thread monkeyden
Why not just raise the org.jboss.seam.notLoggedIn event? I make good use of Seam's authenthication model and I have never had to throw the exception myself. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4128784#4128784 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Flex and Seam Integration

2008-02-11 Thread monkeyden
To expand on this, for the past week I have been developing an eventual production application using Granite Data Services and Seam. Though the starter project doesn't look much like a seam-gen project (but it's workable), there are just a few steps you need to take to get everything working.

[jboss-user] [JBoss Seam] - Re: Problems loading EntityManager in

2008-02-11 Thread monkeyden
Won't @BypassInterceptors avoid the setup of the Seam context? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4128440#4128440 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4128440

[jboss-user] [JBoss Seam] - Re: EntityManager not injected in onMessage method

2008-02-09 Thread monkeyden
Have you configured it in components.xml? Does the persistence-unit-jndi-name in components.xml match jboss.entity.manager.factory.jndi.name in persistence.xml? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4128101#4128101 Reply to the post :

[jboss-user] [JBoss Seam] - Re: runtime errors from the startup project by seam-gen

2008-02-08 Thread monkeyden
Although it is a bit noisy, that's just the loading of the taglibs for the first time. Not sure exactly why it happens, but it's innocuous. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4127809#4127809 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Natural conversation for wildcard view-id

2008-02-08 Thread monkeyden
jacob.orshalick wrote : Hmm... seems like a completely different issue to me. I am not referring to navigation-rules but to page configuration. It's identical in as much as it's an extension of the wildcard capability in pages.xml. View the original post :

[jboss-user] [JBoss Seam] - Re: Natural conversation for wildcard view-id

2008-02-08 Thread monkeyden
After further thought, I tend to agree with you. The consumers of these two types of data, which is what has to change, are completely different. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4127991#4127991 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Natural conversation for wildcard view-id

2008-02-08 Thread monkeyden
I was just reviewing a thread regarding support for wildcards in from-action. Add a comment to the JIRA issue. I'd like to see it. I have one action which takes two parameters and can have many combinations. I'd hate to have to configure each of them. Thread

[jboss-user] [JBoss Seam] - Re: Annotation Interception Question

2008-02-07 Thread monkeyden
You mean @AroundInvoke? The example uses it on a method: http://docs.jboss.com/seam/2.0.1.GA/reference/en/html_single/#d0e4342 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4127621#4127621 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Annotation Interception Question

2008-02-07 Thread monkeyden
Ah, I see what you mean. I was looking at the EJB3 example. @Target(TYPE) @Retention(RUNTIME) @Interceptors(LoggedInInterceptor.class) public @interface LoggedIn {} View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4127622#4127622 Reply to the post :

[jboss-user] [JBoss Seam] - Re: How do I fetch the HTML source of a page programatically

2008-02-07 Thread monkeyden
Never tried it and not sure if it will work correctly but: FacesContext.getCurrentInstance().getViewHandler().restoreView(ctx, viewId) If it does work (fingers crossed), you'd have to ensure that the state is available for the particular viewId. View the original post :

[jboss-user] [JBoss Seam] - Re: How do I fetch the HTML source of a page programatically

2008-02-07 Thread monkeyden
Is this what you're looking for? http://www.thescripts.com/forum/thread721450.html View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4127600#4127600 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4127600

[jboss-user] [JBoss Seam] - Re: How do I fetch the HTML source of a page programatically

2008-02-07 Thread monkeyden
...and call renderView on the ViewHandler View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4127614#4127614 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4127614 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: How do I fetch the HTML source of a page programatically

2008-02-07 Thread monkeyden
anonymous wrote : Ahh, I see FacesContext.getCurrentInstance().getApplication().getViewHandler(). Is that what you mean? yep JakeC wrote : OK, I'm trying getApplication().getViewHandler(), but how do I get the rendered HTML afterward? Is that through FacesContext.getResponseStream()? As I

[jboss-user] [JBoss Seam] - Re: Getting the web application name dynamically

2008-02-06 Thread monkeyden
Add a factory to your components.xml file: factory name=contextPath auto-create=true value=#{facesContext.externalContext.request.contextPath}/ Reference it as such: | #{contextPath} View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4127138#4127138 Reply to

[jboss-user] [JBoss Seam] - Extending Identity in 2.0.1GA

2008-02-06 Thread monkeyden
Is there a way to extend Identity or is it necessary to do a complete replacement, by using @Install with a higher precedence (eg FRAMEWORK, APPLICATION, etc.)? In a previous project I did the latter but it seemed like such a waste. View the original post :

[jboss-user] [JBoss Seam] - s:selectItems label and value

2008-01-31 Thread monkeyden
I don't see a way to specify a different label and value when using s:selectItems. I see the value attribute ties in to the list of results. Functionally everything works fine. I would just prefer to use region.regionCode as the value and region.regionName as the label. Am I missing

[jboss-user] [JBoss Seam] - Re: s:selectItems label and value

2008-01-31 Thread monkeyden
I'm likely misunderstanding it's usage. It now seems as though the value of the component becomes an instance of the Entity, for example: h:selectOneMenu id=regionSelect value=#{contentAdmin.selectedRegion} styleClass=formElement | s:selectItems var=region value=#{regions.resultList}

[jboss-user] [JBoss Seam] - Re: hardcoded parameter value

2008-01-28 Thread monkeyden
If I understand the requirement correctly, use a page parameter. Replace the EL expression with your runtime or static value. http://docs.jboss.com/seam/2.0.0.GA/reference/en/html_single/#d0e3872 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4124090#4124090

[jboss-user] [JBoss Seam] - Re: [newbie]is there a

2008-01-11 Thread monkeyden
Try one of the events listed in: http://docs.jboss.com/seam/2.0.0.GA/reference/en/html_single/#d0e4140 Maybe org.jboss.seam.postCreate.[seam component name]? If not, you may have to use an interceptor: http://docs.jboss.com/seam/2.0.0.GA/reference/en/html_single/#d0e4310 View the original post

[jboss-user] [JBoss Seam] - Re: Seam with Hibernate Version Conflict

2008-01-11 Thread monkeyden
Have your jar files been added to application.xml? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4119111#4119111 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4119111 ___

[jboss-user] [JBoss Seam] - Re: [newbie]is there a

2008-01-11 Thread monkeyden
It's called a page action. There is some doc on it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4119088#4119088 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4119088 ___

[jboss-user] [JBoss Seam] - Flex and Seam Integration

2007-12-27 Thread monkeyden
Granite Data Services, an open source alternative to Flex Data Services, now has support for Seam. I've just installed their Seam project skeleton so I haven't tested much of it yet but, suffice to say, several of us have been waiting for something like this. They also have connectors for

[jboss-user] [JBoss Seam] - Re: Seam in Real World: Made with Seam

2007-12-19 Thread monkeyden
[EMAIL PROTECTED] wrote : Guys don't get too upset. User's can change the extension used in URL mappings to *anything they like*. And I know that plenty of folks here use other URL mappings than *.seam. No doubt, I don't see why you wouldn't change it. We deployed a very high profile real

[jboss-user] [JBoss Seam] - Re: @Observer annotation should have a scope attribute

2007-11-16 Thread monkeyden
This example doesn't know anything about an employee. It just knows the event which it is observing. Seems to me that this shouldn't be a feature of Seam, or the Observer, at all. It's part of your granular business logic. View the original post :

[jboss-user] [JBoss Seam] - Re: @Observer annotation should have a scope attribute

2007-11-16 Thread monkeyden
http://docs.jboss.com/seam/1.2.0.GA/reference/en/html/events.html#d0e3940 5.1.3. Contextual events org.jboss.seam.preSetVariable. - called when the context variable is set View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4105662#4105662 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Stateless Session Bean and @Out

2007-11-15 Thread monkeyden
I might have guessed that CONVERSATION scope was the default but why are you opposed to specifying it? I think it will be outjected to CONVERSATION if the bean itself had this as it's scope. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4105095#4105095 Reply

[jboss-user] [JBoss Seam] - Re: using ICEFaces and RichFaces components in same facelet

2007-11-15 Thread monkeyden
http://www.icefaces.org/JForum/posts/list/6312.page View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4105126#4105126 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4105126 ___

[jboss-user] [JBoss Seam] - XHTML Performance

2007-11-14 Thread monkeyden
I have been profiling our Seam 1.2 (XHTML) application using JProfiler and have discovered an obscene number of HashMap$Entry objects on the heap (typically about 7-8 million). Not withstanding the possibility that this is the most common data structure in a web container/application, I

[jboss-user] [JBoss Seam] - Re: Getting FacesMessages instance

2007-11-12 Thread monkeyden
Pete, Does bijection happen for every value-binding call, or does Seam group calls for the current conversation/request/view? I mentioned this in the past but don't believe I got any confirmation. Thanks View the original post :

[jboss-user] [JBoss Seam] - Random

2007-11-07 Thread monkeyden
Seam 1.2.1GA JBoss AS 4.0.5 We're running some JMeter tests on our Seam application. We have been seeing random Transaction not active errors after the tests have been running for a while. I say random because they don't relate to a specific screen or piece of code. They can appear in any

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

2007-11-07 Thread monkeyden
Sorry, title should have been: Random Transaction not active errors. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4102660#4102660 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4102660

[jboss-user] [JBoss Seam] - Response.addCookie() not working in event model

2007-10-03 Thread monkeyden
Could someone tell me why this code wouldn't write the cookie once a Seam event is raised? Appears to be something odd with the way the response is being handled. Is there something that resets the response when we enter the Seam event model? @Observer(org.jboss.seam.postAuthenticate) |

[jboss-user] [JBoss Seam] - Serially raised events

2007-10-01 Thread monkeyden
Using 1.2.1GA Wondering if anyone has implemented any particularly witty way of raising events serially. The best way to describe what I'm looking to implement is to raise an event with a callback method. Here is a typical use case: 1. Unauthenticated user attempts to access something which

[jboss-user] [JBoss Seam] - Re: Warning: do not use Seam managed pesistent context for B

2007-10-01 Thread monkeyden
anonymous wrote : I bet it would work just fine if you would call entityManager.joinTransaction() Not that there was any doubt but Christian is exactly right. See my topic from just a couple weeks ago: http://www.jboss.com/index.html?module=bbop=viewtopict=118996 RTF - Read the forum :)

[jboss-user] [JBoss Seam] - Re: How to Extend Persistence Context Programatically

2007-10-01 Thread monkeyden
Have you tried the unitName attribute? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4090330#4090330 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4090330 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: How to Extend Persistence Context Programatically

2007-10-01 Thread monkeyden
What value did you provide for unitName? Was it a value from your persistence.xml file? persistence-unit name=someDB | ... | /persistence-unit @PersistenceContext(unitName=someDB) I think this is the way it's done anyway. Personally, I use SMPC. View the original post :

[jboss-user] [JBoss Seam] - Re: How to Extend Persistence Context Programatically

2007-10-01 Thread monkeyden
Seam bijection depends on variable name. Try this: @In(create=true) | private EntityManager myManagername; View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4090404#4090404 Reply to the post :

[jboss-user] [JBoss Seam] - Re: How to Extend Persistence Context Programatically

2007-10-01 Thread monkeyden
Not sure why it needs to be determined at runtime but have you tried: EntityManager em = (EntityManager)Component.getInstance(someRuntimeString, true); ??? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4090409#4090409 Reply to the post :

[jboss-user] [JBoss Seam] - Re: How to Extend Persistence Context Programatically

2007-10-01 Thread monkeyden
You can't inject something if you don't know the name. If you have to determine the name at runtime, you'll have to do it inline. core:managed-persistence-context name=myManagername auto-create=true persistence-unit-jndi-name=java:/myjndiname | /core:managed-persistence-context public void

[jboss-user] [JBoss Seam] - Re: How to Extend Persistence Context Programatically

2007-10-01 Thread monkeyden
Actually, if auto-create=true, you don't need the true parameter, but getEMName() would return the String myManagername or any other EM name you have configured in components.xml. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4090418#4090418 Reply to the post

[jboss-user] [JBoss Seam] - Re: Layering the code in Seam

2007-09-25 Thread monkeyden
I just inject stateless business object into my Actions. Those business objects just use SLSBs, who have the persistence knowledge. How is that fundamentally different than a typical Struts CRUD application? View the original post :

[jboss-user] [JBoss Seam] - Re: @In on SESSION scope component

2007-09-20 Thread monkeyden
We're use i18n. In addition to the business processes of the actions, we were doing a lot of single message injection, using EL, which required parsing and evaluation of the expression and retrieval from the map. Sure, a cursory assessment says bijection itself is not a problem, but when you

[jboss-user] [JBoss Seam] - Re: SMPC and explicit transactions

2007-09-19 Thread monkeyden
For posterity sake In my EJB I just injected the SessionContext and the EM: @Resource | SessionContext ejbContext; | @In | private EntityManager em; And had the EM join the transaction: UserTransaction txn = ejbContext.getUserTransaction( ); | txn.begin(); | em.joinTransaction();

[jboss-user] [JBoss Seam] - Re: @In on SESSION scope component

2007-09-19 Thread monkeyden
Yes, we had some HUGE performance problems until we realized this. We have a relatively large form that was getting killed because of it. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4086345#4086345 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Gavin King: Bad tools of Seam is kill its uses!!!

2007-09-18 Thread monkeyden
I agree with supernova. The tools that exist today pretty much satisfy my needs. The only thing I really need from a seam tool is to generate the finicky project structure. The rest is just referring to examples. And don't forget, this framework is maturing at a ridiculous rate. Also, the

[jboss-user] [JBoss Seam] - SMPC and explicit transactions

2007-09-18 Thread monkeyden
I have seen many threads on the topic but none seem to solve this issue the right way. I am currently using SMPC for the bulk of my application. I also have a background process which retrieves a Map from application scope and persists/merges the objects inside of it. This is in a completely

[jboss-user] [JBoss Seam] - Re: SMPC and explicit transactions

2007-09-18 Thread monkeyden
Thanks for the response Pete. It's 1.2.1. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4085648#4085648 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4085648 ___ jboss-user

[jboss-user] [JBoss Seam] - Non-SMPC

2007-09-03 Thread monkeyden
I have an application which uses SMPC, but I need to implement a process that runs in its own thread. I've looked into Timers but for a couple different reasons I'd prefer to use a different thread. Where can I find an example of both SMPC and Non-SMPC running in the same application?

[jboss-user] [JBoss Seam] - Re: PermGen out of memory !!??

2007-08-31 Thread monkeyden
I tired the jrockit approach and it turned out to be dog slow. From what I saw, it appears as though they use the file system to compensate for the permgen space bug. I saw a lot more very large files in the server/default directory (I forget what the extension was). I could be wrong though.

[jboss-user] [JBoss Seam] - Re: Timers from previous deployments are still persistent

2007-08-31 Thread monkeyden
Same issue. I couldn't figure out why my async method was being called so many times. Any idea of how truncate that table on startup? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4080119#4080119 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Timers from previous deployments are still persistent

2007-08-31 Thread monkeyden
Thanks Michael. I don't really want it to be persistent, because my application-scoped Seam component is going to unknowingly create another the next time I restart/redeploy. Is there some way to uniquely identity the timer, so on start up if finds the record? View the original post :

[jboss-user] [JBoss Seam] - Re: Timers from previous deployments are still persistent

2007-08-31 Thread monkeyden
to elaborate, I want exactly one of these running for the application. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4080128#4080128 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4080128

[jboss-user] [JBoss Seam] - Re: Seam 2.0.0 BETA 2

2007-08-31 Thread monkeyden
I had problems building it. Not sure if they fixed it here. You may have to build from CVS. http://sourceforge.net/project/showfiles.php?group_id=22866package_id=163777 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4080157#4080157 Reply to the post :

[jboss-user] [JBoss Seam] - Re: How to make JBoss (+seam) to use my development xhtml fi

2007-08-29 Thread monkeyden
I just use a .bat file to copy the {project root}/view directory to my deployment directory. Add it as a builder for the project, set it to execute for auto-builds and off you go. Couldn't deal with Ant firing up for every XHTML change. View the original post :

[jboss-user] [JBoss Seam] - Re: Decoupling between application and business layers using

2007-08-29 Thread monkeyden
When I first started with Seam, I was a bit confused as to how I might design an application with it. Now that I have worked with it for a year or so, I can't understand why people have trouble with this. The fact is, Seam changes nothing about this type of design. I don't even use EJBs as

[jboss-user] [JBoss Seam] - Trying to build seam-2.0.0.BETA1

2007-08-29 Thread monkeyden
Anyone else seen this? Do I need maven to build Seam now? \jboss-seam-2.0.0.BETA1\build.xml:1045: The following error occurred while executing this line: \jboss-seam-2.0.0.BETA1\build.xml:1054: \jboss-seam-2.0.0.BETA1\maven\core\boot not found View the original post :

[jboss-user] [JBoss Seam] - Re: Problems with Seam 2

2007-08-29 Thread monkeyden
Has this been fixed in CVS? I'm a little confused as to what the resolution was. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4079403#4079403 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4079403

[jboss-user] [JBoss Seam] - Re: Layering the code in Seam

2007-08-24 Thread monkeyden
Seam does not prevent you in any way from taking that same approach. In fact, it makes some of that much simpler. For instance, using Seam Events or annotated methods you can invoke a business processes from your action without having to explicitly implement the Observer pattern and your

[jboss-user] [JBoss Seam] - Re: using DAO design pattern with Seam apps

2007-08-23 Thread monkeyden
I'm not sure MySpace can be used as the model for anything but a poorly designed and implemented application. I see CFM and ASP pages on that site and it bombs frequently. Looks like some college kids cranked that out between classes. What does this have to do with Seam, or even enterprise

[jboss-user] [JBoss Seam] - Seam + JBossAS + Portal

2007-08-23 Thread monkeyden
I'm starting a new Seam project and it will require JBoss portal. What is the latest compatible Seam + JBossAS + Portal stack? I think I read in one of the portal v2.6 docs that AS 4.0.4 isn't supported so I wondered what would be the best and most up-to-date combo. Is there a Wiki that

[jboss-user] [Advanced Documentation] - MBean which shows deadlocks

2007-08-22 Thread monkeyden
Using 4.0.5 GA Is there an MBean which shows deadlocked threads? I'm using the Connector Scoreboard in the web-console but I can only guess which are deadlocks by virtue of the time the thread has been in service. View the original post :

[jboss-user] [JBoss Seam] - Re: jboss-seam.jar: determining the version of it

2007-08-21 Thread monkeyden
Look at the Manifest.mf file in the jar. Manifest-Version: 1.0 | Ant-Version: Apache Ant 1.6.2 | Created-By: 1.5.0_07-87 (Apple Computer, Inc.) | Seam-Version: 1.2.1.GA | Implementation-Version: 1.2.1.GA View the original post :

[jboss-user] [JBoss Seam] - Re: A bit off-topic: Red Hat Developer Studio 1.0 Beta 1 is

2007-08-16 Thread monkeyden
isn't everything hard to find with phpBB? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4074977#4074977 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4074977 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Adding permissions to Identity

2007-08-15 Thread monkeyden
Pete, Would you say that this is the XML alternative to the @Install(precedence=[x]) approach or are they somehow mutually exclusive? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4074491#4074491 Reply to the post :

[jboss-user] [JBoss Seam] - Re: @Create in base abstract class

2007-08-14 Thread monkeyden
Pretty sure Seam doesn't search the hierarchy for the @Create annotated method, particularly if @Name exists in the concrete class. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4074228#4074228 Reply to the post :

[jboss-user] [JBoss Seam] - Re: A bit off-topic: Red Hat Developer Studio 1.0 Beta 1 is

2007-08-14 Thread monkeyden
If by off topic you mean right in the sweet spot then yeah, I agree. Great news! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4074229#4074229 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4074229

[jboss-user] [JBoss Seam] - Re: The method destroy is called twice

2007-08-13 Thread monkeyden
If you want Seam to call it twice, just use this @BeatADeadHorse annotation. Note: No actual horses, dead or alive, are harmed by this annotation View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073787#4073787 Reply to the post :

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

2007-08-13 Thread monkeyden
Or D, use surrogate keys and don't let the user edit the PK. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4073802#4073802 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4073802

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-10 Thread monkeyden
Incidentally, why are you using an aggregate function in your test SQL statement? Doesn't MySQL have a dummy table like Oracle dual, where you can write a simple query like: SELECT 1 FROM dual View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072839#4072839

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-10 Thread monkeyden
anonymous wrote : I upgraded the hibernate versions in Seam 1.2.1 to the latest hibernate which definitely reduced the frequency however they are still there. Any suggestions welcome. Oops, sorry. It's 2:00AM here. Sleepy. View the original post :

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-10 Thread monkeyden
Check the manifest file in the hibernate3.jar file. If it's 3.2.0 GA, upgrade it to 3.2.5GA. I just had this problem the other day. reference: http://opensource.atlassian.com/projects/hibernate/browse/HHH-2206 download: http://www.hibernate.org/6.html View the original post :

[jboss-user] [JBoss Seam] - Re: Connection handle has been closed and is unusable

2007-08-10 Thread monkeyden
The real question is, how do you ever see the issue when using check-valid-connection-sql? The connection is obviously bad but that fact wasn't picked up by the check. Post the whole local-tx-datasource node, minus the p/w, of course. View the original post :

[jboss-user] [JBoss Seam] - Re: feature idea - conversation names

2007-08-10 Thread monkeyden
Sounds good to me, but one man's self-documenting code is another man's verbosity. Some people dislike this about the Java language in general. I find it helpful but the Perl kiddies can't stand it. View the original post :

[jboss-user] [JBoss Seam] - Re: chaining jsf request

2007-08-09 Thread monkeyden
You could use the same files, but with locale specific ResourceBundles. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072616#4072616 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4072616

[jboss-user] [JBoss Seam] - Re: seam request processing

2007-08-09 Thread monkeyden
What I'd like to see is a clear decomposition of all of it's magic View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4072654#4072654 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4072654

[jboss-user] [JBoss Seam] - Empty pages using Facelets

2007-08-09 Thread monkeyden
Has anyone run into an issue where the backing is, by all accounts, doing it's work correctly but Facelets/JSF renders the page without any data? I can't reproduce this manually but can do it consistently using JMeter. I have tried to following, to ensure that everything is working correctly:

[jboss-user] [JBoss Seam] - Re: Empty pages using Facelets

2007-08-09 Thread monkeyden
As it turns out, the pages relied on page actions. Somehow these weren't being called before value binding methods when tested under a heavy load. Is there a guarantee that they will be called right after @Create? Also, is there any functional difference between: page

[jboss-user] [JBoss Seam] - Re: Empty pages using Facelets

2007-08-09 Thread monkeyden
Sorry, bad example. One uses an action attribute, the other a child tag. page view-id=/searchResults.xhtml action=#{appManager.initAction} | !-- some navigation rules -- | /page | page view-id=/searchResults.xhtml | action execute=#{appManager.initAction} / | !-- some

[jboss-user] [JBoss Seam] - Problem with leaked connections

2007-08-07 Thread monkeyden
I am currently having a similar problem to the one mentioned in this thread: http://www.jboss.com/index.html?module=bbop=viewtopict=96000 I'm considering upgrading Hibernate Core as well. Is this the right course of action? Which version is suitable for the JBoss 4.0.5GA and Seam 1.2.1GA

[jboss-user] [JBoss Seam] - Re: Problem with leaked connections

2007-08-07 Thread monkeyden
...also, should I upgrade everything (Core, Annotations, EM, etc) or will Core suffice? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4071693#4071693 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4071693

[jboss-user] [JBoss Seam] - Re: Problem with leaked connections

2007-08-07 Thread monkeyden
Simply upgrading Hibernate Core to v3.2.5GA seemed to work out fine. The compatibility matrix was helpful. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4071728#4071728 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Seam Remoting - ajax request after session expires

2007-08-04 Thread monkeyden
BUMP I'd like the know the elegant solution for this too. Seems to me that the request itself would keep the session alive, rather than simply querying for remaining time left, if any. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4070908#4070908 Reply to

[jboss-user] [JBoss Seam] - Password hint - redirect to login

2007-08-03 Thread monkeyden
On our home page, I have a form for login. User provides username and submits the form to #{loginAction.retrievePassword} That method finds the user by username, pulls the password hint and sets it into event scope. public String retrievePasswordHint() { | User user = null; | User

[jboss-user] [JBoss Seam] - Re: Password hint - redirect to login

2007-08-03 Thread monkeyden
Sorry, forgot to include the page element: page view-id=* | navigation | rule if-outcome=login | redirect view-id=/login.xhtml / | /rule | /navigation | /page View the original post :

[jboss-user] [JBoss Seam] - Facelets version?

2007-07-30 Thread monkeyden
What's the version # of facelets which ships with Seam 1.2.1GA? I'm seeing what I think is a defect with ui:repeat and probably want to upgrade. Any suggestions on the version number to upgrade to? fyi - Sometimes only the first item is displayed while looping. View the original post :

[jboss-user] [JBoss Seam] - Re: Asynchronous call before App Startup

2007-07-25 Thread monkeyden
Is this available in 1.2.1? I searched the source tree but didn't find it. Don't mean to bogart the thread but... I will try it myself of course but will this work for an EVENT scoped object? I want a component which will start when the application starts and outject some stuff. The

[jboss-user] [JBoss Seam] - Re: Bijection clarification

2007-07-24 Thread monkeyden
The most basic description is that @In and @Out just replaces the glue code you have to write to get things out of some context (Session, Request, Application and, in Seam, Conversation scopes). Rather than having: String param = request.getSession().get(param); you have:

[jboss-user] [JBoss Seam] - Re: Bijection clarification

2007-07-24 Thread monkeyden
BTW, to answer your question, passing from sfsb to sfsb works the same way. There is some context in between which has the value you're injecting, making it available to any Seam component who is interested in it. View the original post :

[jboss-user] [JBoss Seam] - Re: Bijection clarification

2007-07-24 Thread monkeyden
This is still a gray area for me. I have not seen a clear and complete description of the implied scopes. Does it default to: The scope of the bijected component, if any? The bean which is injecting it? Conversation unless specified otherwise? Find in any scope? Thus far, I have always

[jboss-user] [JBoss Seam] - Re: All RIGHT, ALL RIGHT PEOPLE, ATTENTION, Who ever fixed

2007-07-24 Thread monkeyden
that was very sweet. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4067152#4067152 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4067152 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Identity.initCredentialsFromCookie()

2007-07-23 Thread monkeyden
We prefer not to couple the cookie value with Identity's username field. We're actually using an encrypted hash instead. The problem is, initCredentialsFromCookie() is private and doesn't allow for overriding. I think I have a workaround, which is to ignore the seam cookie name and use my

  1   2   3   4   >