[jboss-user] [JBossCache] - Hibernate and OptimisticTreeCache

2008-01-10 Thread youngm
I've had a JBossCache+hibernate question over on the hibernate forums for a while with no responses. I was wondering if someone here might be able to help me out? The question is: Looking at the code in Hibernate OptimisticTreeCache it appears that Hibernate tells JBossCache to use an entity'

[jboss-user] [JBoss Portal] - How to Login with kerberos authentication

2008-01-10 Thread karDo5o
How to configure jboss portal to bypass login form using operating system user login and password with kerberos 5 authentication and Openldap? Could anyone presents an example? Thanks in advance. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118865#4118865

[jboss-user] [JBoss Seam] - Re: How to control end of conversations/state of stateful be

2008-01-10 Thread [EMAIL PROTECTED]
Chris, Interesting post. Thanks for the feedback. We do have one large scale app written in Seam in the examples dir - the wiki example which is the basis of the new Seam community site (which is up and running). The problem with large example apps is that they are hard to understand which make

[jboss-user] [JBoss Seam] - HTTP Request via POST

2008-01-10 Thread pettersonfp
Hi all, I understand this question may be a little stupid, but... Is there any util, or annotation, or something like that in seam to help making a HTTP request to a external server and parsing the results? Thanks, Petterson View the original post : http://www.jboss.com/index.html?module=bb&

[jboss-user] [JBoss jBPM] - JSP compile issue inside a jstl loop

2008-01-10 Thread zlegein
I am seeing a ton of these in our logs, does any one know what this is? This file does compile but it fails sometimes? I am not sure what exactly this error message is trying to tell me. The section of code that it is complaining about is a jstl loop in a jsp that has two dynamic columns in a

[jboss-user] [Security & JAAS/JBoss] - logout() in customized login modele

2008-01-10 Thread jdsignature
the logout() defined in the jboss customized login module, when this method got called. for instance: the session.invalidate() called in the application, does the logout() got called automatically by the jboss container? if the answer to the above is yes, how about the following setting in

[jboss-user] [JBoss Seam] - Re: HTTP Request via POST

2008-01-10 Thread [EMAIL PROTECTED]
There's nothing built in to Seam that provides this. I recommend you take a look at Apache HttpClient as it probably does what you need. http://hc.apache.org/httpclient-3.x/ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118880#4118880 Reply to the post :

[jboss-user] [JBoss Seam] - Re: How to get client IP when user logs in

2008-01-10 Thread [EMAIL PROTECTED]
FYI you can get to the ServletRequest object via ServletContexts.instance().getRequest(). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118881#4118881 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118881

[jboss-user] [EJB 3.0] - Re: JNDI look up datasource problem

2008-01-10 Thread waynebaylor
try Oracle9iDriver instead of OracleDriver View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118883#4118883 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118883 ___ jboss-user m

[jboss-user] [JBoss Seam] - JbpmContext Transaction begin not detected

2008-01-10 Thread jcarlos_andia
Hi everybody. I have a workflow to approve users, for that I have a method with the annotation @CreateProcess that creates a ProcessInstance, which works well (creates a processInstance with no problem). In a second method I need to update the first taskInstance of the processInstance created,

[jboss-user] [JBossCache] - Affinity Data Partiotioning

2008-01-10 Thread ne_vasya
Hi, I am trying to segment data over a set of JBoss caches having approximately even data distribution. Is anyone aware of a good dynamic hashing function that would provide good data affinity. For example, let's say I segment data over N nodes. When node N+1 joins, I would like a portion of

[jboss-user] [JBoss Tools (users)] - Re: Ant Task not dependent upon Eclipse plugins

2008-01-10 Thread [EMAIL PROTECTED]
Great job, wcrossman =D In my own defense, the current ant task doesn't need the eclipse build system ;) It just needs some jars from the archives.core plugin, and 1 eclipse jar ;) And it turns out only 1 class is needed from that eclipse jar, IPath =D Just for further information, the build

[jboss-user] [JBoss Seam] - Re: Scriptaculous Sortable List Integration with Seam Remoti

2008-01-10 Thread [EMAIL PROTECTED]
It might be best to ask this in the Ajax4JSF forum. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118887#4118887 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118887 ___ jbo

[jboss-user] [JBoss Seam] - Re: How to control end of conversations/state of stateful be

2008-01-10 Thread chris.simons
Pete, Thanks for not taking my post harshly as it wasn't meant to be as such. I, for one, am extremely appreciative of what all of you are doing to evolve Seam and to engage the end-user as much as possible, through these forums and elsewhere. We *had* been setting propagation="none" on most n

[jboss-user] [JBoss Seam] - Re: Scriptaculous Sortable List Integration with Seam Remoti

2008-01-10 Thread nathandennis
looking back... that might have been a stupid question. i promise the read the documentation more closely next time. kudos for a well constructed javascript interface. i guess the concept of a response just seem too complicated yesterday... let alone actually do something with it. what really he

[jboss-user] [Security & JAAS/JBoss] - Re: logout() in customized login modele

2008-01-10 Thread ragavgomatam
When your HttpSession time's out or when you call session.invalidate(), the container expires the caching of security credentials. I believe you are referring to DefaultCacheTimeout in jboss-service.xml. This specifies the default timed cache policy timeout in seconds.If you want to disable cac

[jboss-user] [Security & JAAS/JBoss] - Re: Capturing client IP address

2008-01-10 Thread ragavgomatam
One answer would be writing a Tomcat Valve that intercepts every HttpRequest before it make it to the container. This valve would intercept the request before your login module. I have given an example implementation. Package this in tomcat.sar , & check out how to configure this in jboss & you

[jboss-user] [Security & JAAS/JBoss] - Re: Can I create a login .war module that my other .war modu

2008-01-10 Thread ragavgomatam
Answer is no. Make it a Custom Jaas Module & sprinkle | | SecurePages | | Security constraint testing using custom Jaas Module | | /jsp/secure.jsp |

[jboss-user] [Messaging, JMS & JBossMQ] - InProcessMessageCount

2008-01-10 Thread anant
I have an application that sends several JMS messages to a queue with one MDB that listens for messages on that queue. Under heavy loads (hundreds of messages being sent) I notice that the queue fills up. This is expected since the work associated with the MDB could take some time (the rate at

[jboss-user] [Security & JAAS/JBoss] - Re: looking for working example: custom login module extends

2008-01-10 Thread ragavgomatam
I have a custom login module that is working fine with jboss 4.2.1 and jboss 5 Beta 3. Caveat is I extend the AbstractServerLoginModule NOT UsernamePasswordLoginModule. But this should not a big issue as UsernamePasswordLoginModule extends AbstractServerLoginModule. So enjoy... Code package c

[jboss-user] [EJB 3.0] - Transactions broken? Trivial Hibernate example with EJB3 and

2008-01-10 Thread smithmb
Hello folks, I'm trying to create a trivial example of a transaction working correctly with MySQ L5.0.x and local-tx-datasource and Connector/J 3.x. I'm using Hibernate and EJB3, and JBoss 4.0.x. I cannot get transactions to rollback w/ SessionContext.setRollbackOnly() OR by throwing an uncaugh

[jboss-user] [JBoss Portal] - Permissions

2008-01-10 Thread redcoat
Hi, I'm new to Portals in general, and am trying to understand how permissioning usually works. I don't believe it's part of JSR-168? If not, does every Portal server implement it differently? For example, I've looked at Liferay a little, and see that it has the concepts of Organizations, Lo

[jboss-user] [Security & JAAS/JBoss] - Re: Propagating identity from Swing application

2008-01-10 Thread ragavgomatam
what exactly do you mean by identity ? Username / password ? Yes possible View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118906#4118906 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118906 _

[jboss-user] [JBoss Seam] - Re: How to control end of conversations/state of stateful be

2008-01-10 Thread gus888
"[EMAIL PROTECTED]" wrote : My tip is to avoid starting conversations from navigation links (those links that take you to other areas of the app), always make navigation disable conversation propagation, and just use conversations *within* each area of the app.Excellent tip! Thank you very much,

[jboss-user] [JBoss Portal] - portal setup on oracle

2008-01-10 Thread nbaertuo
11:41:54,640 INFO [STDOUT] Hibernate: update jbp_cms_repositoryentry set FSENTRY_NAME=?, FSENTRY_PATH=?, FSENTRY_DATA=?, FSENTRY_LASTMOD=?, FSENTRY_LENGTH=? where PK=? 11:41:54,640 WARN [JDBCExceptionReporter] SQL Error: 17090, SQLState: null 11:41:54,640 ERROR [JDBCExceptionReporter] 不允许

[jboss-user] [Security & JAAS/JBoss] - Re: j_security_check and the generated LoginContext

2008-01-10 Thread ragavgomatam
You cannot change the SimplePrincipal. You set the name in the Principal via a constructor during login. Also It has only a getName() method. So answer is it is a big security loophole if you are allowed to change the SimplePrincipal name. So not possible View the original post : http://www.jb

[jboss-user] [JBoss Seam] - Re: Unable to use @Asynchronous annotation on Glassfish serv

2008-01-10 Thread usedtoclimb
No, I couldn't get it to work so I ended up creating an EJB Timer to complete my task. I would like to get it working with @Asynchronous if you have some more ideas for me. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118911#4118911 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Custom interceptors do not work with super classes

2008-01-10 Thread Kragoth
Is there anyone from the SEAM team that could tell me what I should do about this? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118912#4118912 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118912 ___

[jboss-user] [EJB/JBoss] - What is wrong with my local ejb JNDI lookup code (or the ejb

2008-01-10 Thread sairndain
I'm trying to perform a JNDI lookup on a local stateless session bean. When I use the jboss jmx console to check the JNDI name space I get the following: anonymous wrote : +- HandleDelegate (class: org.jboss.proxy.ejb.handle.HandleDelegateImpl) | +- ORB (class: org.jacorb.orb.ORB) | +-

[jboss-user] [JBoss jBPM] - JBPM-3.2.2 Migrated to Oracle 10g, Hibernate_Sequence is acce

2008-01-10 Thread soumya_in
Hi All, I have migrated JBPM in Oracle 10g but I have encountered a problem regarding Hibernate_sequence that has been provided with the given Oracle script. Actually when my JBPM was associated with Hypersonic after each deployment the Process_ID is getting increased evenly and with an in

[jboss-user] [JBoss Seam] - selectOneRadio group separated by paragraphs, images etc

2008-01-10 Thread nuclaves
Is there a way to create a logical group of radio buttons that are not grouped into a table? In other words, I need the radio buttons to have the same id but I want to be able to place paragraphs, tables, images, etc betwixt them[radio buttons] rather than have them grouped horizontal or vertic

[jboss-user] [Messaging, JMS & JBossMQ] - Setting max sessions for MDB

2008-01-10 Thread enovas
I've tried to use annotations to set the max sessions with not successl. Every time I test sending several messages at one time the max sessions shown in Jboss console and in the server log is the one coming from the standardjboss.xml file. Any idea? TIA, ean13 View the original post : http

[jboss-user] [JBoss Seam] - seam gen in eclipse?

2008-01-10 Thread Mussie
Hello Forum, I'm trying to build a CRUD web application using seam-gen. I watched these two movies: http://www.jboss.com/products/seam/SeamHBTools.html http://michaelyuan.com/download/seam/rhds-20070306.html In michael yuans example there is a button "Seam Gen" on the menu bar in his eclipse. How

[jboss-user] [JBoss Seam] - Trouble connecting to built-in HSQL using SQuirreL

2008-01-10 Thread [EMAIL PROTECTED]
I'm following the instructions at http://wiki.jboss.org/wiki/Wiki.jsp?page=NukesUsingHSQLDB to connect to the interal HSQL built-into JBoss. I want to see the results of my interaction with the web interface. I'm running the initial helloworld application from "JBoss Seam" by Yuan and Heute.

[jboss-user] [EJB 3.0] - Re: Accessing EJB3s through a firewall

2008-01-10 Thread magnus.ahlander
Thanks for your advice. Actually I have a working configuration, but with the inconvenience of having to configure remote bindings in the jboss.xml file of my EAR for all beans I want to remotely access: | TestBean | | socket://:3873 | | | This is inconven

[jboss-user] [JBoss Tools (users)] - Re: Integrating JOBOSS IDE WITH JBOSS 4.2.2 Server

2008-01-10 Thread [EMAIL PROTECTED]
what do you mean does not recgonize? Did you add the server via New Server ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118926#4118926 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118926 __

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools problems Ubuntu

2008-01-10 Thread [EMAIL PROTECTED]
sorry - never seen that error about IA32 bit sounds weird ,( I dont understand what you mean with your last question that it cant create files. Are the folders write protected or ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118928#4118928 Reply to th

<    1   2   3