[jboss-user] [JBoss Seam] - Re: Best Practice for Handling Redirect After Login

2006-11-28 Thread ellenzhao
I'm not sure whether I really understand your We provide to sites outside of our domain a URL to our SEAM application. But I know there are surely possibilities to take the user directly back to a particular page after login. I implemented it with pageflow in jpdl and it works like charm. The

[jboss-user] [JBoss Seam] - Re: Dumb question: Links from a datatable

2006-11-28 Thread SmokingAPipe
Ok, I got it working. I need to specify view=/full/path/book-details.jsf. That works but it seems wrong to have to specify it with the full path. Is there some better alternative? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989527#3989527 Reply to

[jboss-user] [JBoss Seam] - Seam app on slashdot

2006-11-28 Thread [EMAIL PROTECTED]
Slashdot gave a mention (http://it.slashdot.org/it/06/11/28/2037237.shtml[/url]) to 10minutemail ([url]http://www.10minutemail.com), an interesting looking Seam app. Congratulations to Devon for the exposure his app is getting. I wonder how Seam is holding up to the slashdot effect.

[jboss-user] [JBoss Seam] - Re: Seam app on slashdot

2006-11-28 Thread ellenzhao
i got a 404could you please fix the link? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989528#3989528 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989528 ___ jboss-user

[jboss-user] [JBoss AOP] - Re: Tracing/Logging - Actual RMI calls vs calls between EJBs

2006-11-28 Thread ykrishnaprasad
Kabir, In my interceptor class i can get a reference to the target object. How can i get a reference to the caller object in the interceptor class? Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989529#3989529 Reply to the post :

[jboss-user] [JBoss AOP] - Re: Tracing/Logging - Actual RMI calls vs calls between EJBs

2006-11-28 Thread [EMAIL PROTECTED]
You can't if you use execution or field pointcuts, if you want access to the caller you need a call pointcut, but those have certain limitations. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989532#3989532 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - Federation in JBOSSsso

2006-11-28 Thread sullyseatte
Hello all! I just have a couple quick questions regarding the JBOSSsso product/framework. #1.) Does it support SAML 1.0/1.1 and 2.0? #2.) Does it also support the browser-based POST method (for Federation). Thanks much! :-) --J View the original post :

[jboss-user] [Security JAAS/JBoss] - Re: Federation in JBOSSsso

2006-11-28 Thread [EMAIL PROTECTED]
anonymous wrote : | #1.) Does it support SAML 1.0/1.1 and 2.0? | Currently it is SAML 1.1 supported. But we are working towards making it SAML 2.0 compliant ASAP anonymous wrote : | #2.) Does it also support the browser-based POST method (for Federation). | Yes, this should be

[jboss-user] [JBoss Seam] - Re: Seam app on slashdot

2006-11-28 Thread modoc
This url should work: http://www.10minutemail.com It's holding up better than I expected. It's a little slow at the moment, but hasn't fallen over. I was taken by surprise by the slashdot article, but so far it's working out well. I'm not sure where the slowness is coming from, my bandwidth

[jboss-user] [JBoss Seam] - Re: Seam app on slashdot

2006-11-28 Thread cwash
ellenzhao wrote : i got a 404could you please fix the link? http://it.slashdot.org/it/06/11/28/2037237.shtml is the link to the story and http://www.10minutemail.com/ is the link to the app. View the original post :

[jboss-user] [EJB 3.0] - Re: external configuration for service beans

2006-11-28 Thread jahlborn
i'm now running 4.0.5, and i was still required to use the ejb-name, management, ejb-class, and remote elements, even though the bean is fully annotated. however, that doesn't really help, as there is nothing really of use in that descriptor for the service bean anyway (unless i'm missing

[jboss-user] [Security JAAS/JBoss] - Re: Federation in JBOSSsso

2006-11-28 Thread [EMAIL PROTECTED]
Here is the JIRA bug report for tracking this: http://jira.jboss.com/jira/browse/JBSSO-20 Thanks Sohil View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989540#3989540 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989540

[jboss-user] [EJB 3.0] - Re: reentrant annotation?

2006-11-28 Thread ALRubinger
If I remember correctly... Entity Beans could be marked as reentrant. Session Beans did not require a reentrant marking because if Stateless, the container would return another separate instance, and Stateful was prohibited (as it is now)... EJB 2.1 Spec, Final Draft, 7.12.10: anonymous

[jboss-user] [JBoss AOP] - annotation-introduction + aspect oriented annotations

2006-11-28 Thread fabiocsilva
I would like to use the feature annotation-introduction to introduce annotation in constructors and to capture them in bind. For example: | | annotation-introduction expr=constructor(gui.complaints.*-new()) | @util.SystemRecord | /annotation-introduction | | bind

[jboss-user] [JBoss Seam] - Re: Seam app on slashdot

2006-11-28 Thread ellenzhao
Thanks for the links! I had a look at the site and am really impressed by the performance! Since there is neither too much CPU load nor out of memory problem under such stress, your application must handle objects really well. Congratulations! View the original post :

[jboss-user] [JBoss Seam] - Re: Multi Managed Persistence Context Problem

2006-11-28 Thread cavani
Thanks again! it works! And, yes! I am using JBoss 4.0.5/EJB3 R9 (Hibernate on base). I am not conviced that this is HEM bug. By specs, an entity bean may be any POJO (including XML-only mapped one) that can be associated with a certain Persistence Unit. This way, contains should not evaluate

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-28 Thread [EMAIL PROTECTED]
Within the annotation-introduction you have a few different verbs: constructor - introduces annotation onto a constructor method - introduces onto a method field - introduces onto a field class - introduces onto a class What you have there is the same as | package gui.complaints; | |

[jboss-user] [JBoss Seam] - Re: Seam 1.1 CR1, IceFaces Tomahawk...

2006-11-28 Thread SmokingAPipe
I have Seam working nicely with Tomahawk. I'm using Seam 1.1 and Tomahawk 1.1.5 snapshot, and also Tomahawk Sandbox 1.1.5 snapshot. It's cool! There are some bugs but it is working. I was going to also add Icefaces to the mix but I thought that would be asking for a mess. At some point

[jboss-user] [JBoss Portal] - Re: portal 2.4 with app seam+ajax issues

2006-11-28 Thread wlchung
For more information, my portal is jb2.2. And the web.xml I used is the one in portal-core.war\WEB-INF. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989553#3989553 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989553

[jboss-user] [Security JAAS/JBoss] - Re: Custum LoginModule calling EJB in non-default security d

2006-11-28 Thread kaloisi
Not sure if I understand exactly your problem but I have a LoginModule access a secured EJB. I used RunAsLoginModule as an example. The problem is that JBoss has a stack containing principals and credentials. When a login module is called this stack is empty so if your LoginModule tries to

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-28 Thread fabiocsilva
The code not yet is executing. | | SystemRecord.java : | | package util; | | import java.lang.annotation.ElementType; | import java.lang.annotation.Target; | | @Target({ElementType.CONSTRUCTOR}) | public @interface SystemRecord { | | } | | SomeClass.java : :)

[jboss-user] [JBoss AOP] - Re: annotation-introduction + aspect oriented annotations

2006-11-28 Thread fabiocsilva
I corrected the last error erasing the folder of build and recriando it. The main problem, however, still persists. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989557#3989557 Reply to the post :

[jboss-user] [JBoss AOP] - Re: error when calling MethodInvocation

2006-11-28 Thread fabiocsilva
The problem was in the declaration of the advice, that was without throws. But JBoss AOP did not point the error. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989558#3989558 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Can I import XML into Graphical Process Designer?

2006-11-28 Thread dslevine
update to anyone else having this problem, I was able to manually make the gpd.xml file appear properly after playing around with everything. You can do it! Thanks... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989559#3989559 Reply to the post :

[jboss-user] [JBoss Portal] - How to avoid simultaneous login for same user...

2006-11-28 Thread purna_cherukuri
Hi, I am using JBoss-portal-2.4.0. As per my requirements, we are supposed to ristict the simultaneous login for same user.. Means once user is in logged in state, We should not allow him/her to login from another client. For this we thought of creating one property in database which tell us

[jboss-user] [JBoss jBPM] - process image display layout error? (from webapp tag)

2006-11-28 Thread dslevine
The XML process that I created by hand and then laid out using the GPD editor is showing up strangely. screengrab: [img]http://allnicepeople.com/dan/images/jbpmWorkflowImageLayoutError.jpg[/img] I'm guessing this has to do with the gpd.xml that I also created by hand, but I'm not sure

[jboss-user] [JNDI/Naming/Network] - Re: JBoss in Live Environment

2006-11-28 Thread visolvejboss
Hello, I think, you need to open all ports in the external ip that might be accessed by the clients. After that you need to forward each of ports from the external ip to the port of internal ip. You can use the firewall to implement this. If this doesn't answer your question, can you please

[jboss-user] [JBoss Eclipse IDE (users)] - JSP in JBoss IDE??

2006-11-28 Thread lightbulb432
My JBoss IDE doesn't give me the option of creating JSPs. When I select New Web Components, there's no JSP option listed - only Servlet, JSP Tag Handler, and Filter. None of the other list options specify JSP. I tried creating a J2EE 1.4 project, and even that doesn't change anything. I

[jboss-user] [JBoss Eclipse IDE (users)] - Client JARs

2006-11-28 Thread lightbulb432
The documentation specifies the following: If you are running JBoss 4.0 or above, You will receive a ClassLoaderException if you attempt to package your EJB interfaces in both the WAR and EJB-JAR because of the new Tomcat scoped classloading. To avoid this issue, you should skip this section,

[jboss-user] [JBoss jBPM] - Re: process image display layout error? (from webapp tag)

2006-11-28 Thread dslevine
that [img] tag didnt work. :-/ I'll link and post inline here below. The 'currently you are here' highlight on the workflow image is misaligned. Hmm. Image as URL: http://allnicepeople.com/dan/images/jbpmWorkflowImageLayoutError.jpg and inline: View the original post :

[jboss-user] [EJB 3.0] - Records in database vanish upon restart

2006-11-28 Thread lightbulb432
When I restart my application server my MySQL 5 database records vanish, and I must add them again. I've set hibernate.hbm2ddl.auto to create, create-drop, and update and none of them work. What should that value be set to? I've even got the hibernate.connection.shutdown property set to true.

[jboss-user] [Security JAAS/JBoss] - Re: Negotiate with Kerberos

2006-11-28 Thread hpkolasani
In fact that's what I ended up doing and it worked fine in JBoss 4.02. But in 4.04 and 4.05, I was getting 'No role found' error from 'JBossSecurityMgrRealm'. And, I fixed that one by using a role-name*/role-name in the applicaitons 'web.xml'. It works for me as I am not authenitcating against

[jboss-user] [JBossCache] - Re: how to use with EJB3Standalone container inside eclipse

2006-11-28 Thread kagey
Let me refine my problem. I'm trying to get a treecachembean deployed in the ejb3 embeddable container. I created this test deployment descriptor in the xml file embedded-jboss-beans.xml: | bean name=jboss.cache:service=TestTreeCache class=org.jboss.cache.TreeCache | /bean | and i get

[jboss-user] [JBoss Seam] - Re: Seam app on slashdot

2006-11-28 Thread modoc
Thank you very much! I'm very happy with the performance of the app, given the circumstances. I'll definitely keep working with Seam and learning as I go. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989569#3989569 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Accessing HttpServletRequest from RenderRequest

2006-11-28 Thread thanvi
Hi Even i am trying to do the same, have you succeded. Please let me know View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989570#3989570 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989570

[jboss-user] [Microcontainer] - Create Session Factory

2006-11-28 Thread thejavafreak
Dear all, Would it be possible for me to create hibernate session factory from microcontainer? If it is can anybody give me a hint to achieve that? Cheers View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989572#3989572 Reply to the post :

[jboss-user] [JBoss Messaging] - Messaging 1.2 on JBoss 5

2006-11-28 Thread thejavafreak
Dear all, I tried patching the latest JBoss 5 Beta1 with Messaging 1.2 since JBoss 5 came with Messaging 1.0.1, but it didn't work. I copied the library needed and the xml configuration of Messaging 1.2 to JBoss 5. Have I missed out on something here? I need to do this for testing the

[jboss-user] [JBoss Seam] - @PostConstruct on SessionBeanInterceptor is never called?

2006-11-28 Thread stu2
I'm running 1.1CR2 in embedded mode (TestNG). All of the plumbing seems to be working fine, except Seam components that are EJBs are never getting initialized (Component.initialize() is not called - seems like it's intended to be done by SessionBeanInterceptor.postConstruct). Looking closely

[jboss-user] [JBoss Seam] - Re: Seam app on slashdot

2006-11-28 Thread [EMAIL PROTECTED]
IS NICE! :) Devon, could you share with us your server setup and the average CPU / memory load during this digg / slashdot period? I think part of the reason Seam holds up so well is that it destroys objects immediately at the end of each conversation. If the app had to maintain a long life

[jboss-user] [JBoss Seam] - JSF requiredMessage does not work with seam bundle

2006-11-28 Thread yj4jboss
Hello, I have to input a required field in a JSF form. As such i am using the following code in my XHTML file. | h:form | h:inputText | value=#{userEditorBean.user.displayName} | required=true

[jboss-user] [JBoss Seam] - Re: @PostConstruct on SessionBeanInterceptor is never called

2006-11-28 Thread stu2
Reading through the docs some more, section 1.2.1.7 explains why this works. ejb-jar.xml tells the EJB3 container to add the SeamInterceptor (extends SessionBeanInterceptor) to all beans. ejb-jar.xml wasn't in my META-INF directory. Putting it there makes everything work. Well at least I

[jboss-user] [Messaging, JMS JBossMQ] - Re: Messages get stuck in queue

2006-11-28 Thread Byorn
We are facing the same problem. If anyone has an idea about this, can you please suggest something? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989579#3989579 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989579

[jboss-user] [JBoss Seam] - Re: EntityManager: For newbies or to close gaps in your know

2006-11-28 Thread y_zl
Hi! bfo81, great! I have one question as following: Suppose I have two tables | user(id, name) | userlog(id,userid,content) | I'd like to create a new user and write the log at the same time. Suppose I use extended persistent manager. I have the following code: | @In @Out

[jboss-user] [JCA/JBoss] - Re: OutOfMemoryError: OracleConnection.pingDatabase

2006-11-28 Thread djr667
I'm trying. One thing that does not help is that server.log gets wiped out (i.e emptied or overwritten) when this error happens and JBoss restarts. All I have to work on is the console output. Dave View the original post :

[jboss-user] [Security JAAS/JBoss] - Re: LDAP Newbie - LdapLoginModule

2006-11-28 Thread shilpee_toshi
HI, Thanks for replying. Yes i added in it in jboss-web.xml. Forgot to mention. I am facing a new problem now. I am not able to access my login.jsp page. It gives COnfiguration error: can't authenticate against null principal. In the code i posted, after successful login , the way i am adding

[jboss-user] [Beginners Corner] - Re: JBoss 5.0.0 beta 1 and web-console

2006-11-28 Thread stvasan
MichaelMuo wrote : Thanks visolvejboss, | | That was the first issue, but fixing some of the JRE CLASSPATH issues did not resolve a problem. Finally, I added in applet.jsp some required jars and get rid of this problem. Hi MichaelMuo, I'm using 4.0.5 GA version. I'm getting the same

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

2006-11-28 Thread lara
Thx for replying but could you be more specific and give me a simplified example? The parameter as I already mentioned in not constant. Regards, View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989583#3989583 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Facelets does not submit

2006-11-28 Thread [EMAIL PROTECTED]
No i'm sorry, I never found what was wrong with my old project. Maybe it's worth trying to install a clean app. server, and try to deploy to there. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989584#3989584 Reply to the post :

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

2006-11-28 Thread [EMAIL PROTECTED]
http://docs.jboss.com/seam/1.1BETA2/reference/en/html/events.html#d0e3178 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3989585#3989585 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3989585

<    1   2   3