[JBoss-user] [JNDI/Naming/Network] - JNDI problem

2005-12-28 Thread maruthiravuri
This occurs very intermittently and it not consistent (in the production environment ).This is deployed in JBOSS -4.0.2.Happened once on 11-22 and again a couple of days back When we try to do a JNDI look up and try to communicate with the message queue we get an exception and the bean gets

[JBoss-user] [JBoss Portal] - Can portlets be put in header?

2005-12-28 Thread vmarco
Is it possible to position a portlet window at the portal level so that it is positioned in the header instead of on a specific page? This is often done with a login portlet, so that users can login/logout regardless of which page they are on, and can have feedback as to their login status.

[JBoss-user] [JCA/JBoss] - Re: Not able to lookup the datasource in jboss

2005-12-28 Thread galderz
Are you trying to do the lookup from outside JBoss? Home references for session beans can be retrieved remotely via JNDI, however, datasources (*-ds.xml) and in general items bound at java: cannot be retrieved remotely (check JCA specification). Hope this helps :-) View the original post :

[JBoss-user] [JBoss Seam] - Re: Very very Newbie question about datamodel

2005-12-28 Thread [EMAIL PROTECTED]
@DataModelSelection is working perfectly for me in the demo apps in CVS. It may not have been working in the 1.0 beta 1 release. See, for example, BookingListAction in the booking demo. The reason why @Factory is sometimes needed, and sometimes not is that. (1) Sometimes we are processing a

[JBoss-user] [JBoss Seam] - Re: Running noejb tests w/o JBoss?

2005-12-28 Thread [EMAIL PROTECTED]
An unfortunate thing about user forums is that once the traffic reaches a certain point, it is impossible to really keep up, and the only people who are really able to get attention are the obnoxious ones. Plus, the early adopters tend to be the more patient and considerate, and more able and

[JBoss-user] [JBoss Seam] - NoEJB example: log.info not visible

2005-12-28 Thread RobJellinghaus
When I run the noejb example in Tomcat 5.5, the log.info statements in Seam itself and in the noejb example code do not appear in the Tomcat log (at least, not the log that I see in the standard Catalina window). Any tips on getting Seam logging to show up in a Tomcat/noejb deployment? This

[JBoss-user] [JNDI/Naming/Network] - Re: How to call bean in another ear file in Jboss?

2005-12-28 Thread galderz
why don't you put the jar file(s) containing your beans in just one ear? Is there any requirement that stops you from putting your beans in the same ear? you should be able to reference the second one from the first using ejb-ref element and doing the necessary jndi lookup. View the original

[JBoss-user] [JBoss Seam] - Feedback requested

2005-12-28 Thread [EMAIL PROTECTED]
In the beta 1 release of Seam, I fussed and worried about what was the best way to specify a jBPM transition. Eventually I settled on the @Transition annotation, like so: @Transition | private String transition; | | | @EndTask | public String myActionListener() { |transition =

[JBoss-user] [JBoss Seam] - Re: NoEJB example: log.info not visible

2005-12-28 Thread [EMAIL PROTECTED]
I think I managed to make it work by just throwing a log4j.properties into resources/WEB-INF/classes. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914653#3914653 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914653

[JBoss-user] [JNDI/Naming/Network] - Re: JNDI problem

2005-12-28 Thread galderz
Are you refering to the same problem you posted here? http://www.jboss.com/index.html?module=bbop=viewtopict=74343 Please, avoid posting the same question several times. If you want to give further information about the problem, use the original post.

[JBoss-user] [JBoss Seam] - Re: Feedback requested

2005-12-28 Thread RobJellinghaus
Hm. The second version confuses me in two ways. First, you have this: @In Transition transition; | | @EndTask | public String myActionListener() { |transition.setName(approved); |return success; | } First, it looks like the transition object is only @In, not @In @Out. But

[JBoss-user] [Security JAAS/JBoss] - Re: Securing web-console = login failure

2005-12-28 Thread jncoign
I still cannot seem to get this working. My file names are unique and I have even tried renaming them and fully qualify the path. I have read in a couple of places that there is a problem with 3.2.5 loading the Properties files if there is a space in the installation folder. Have you found this

[JBoss-user] [Security JAAS/JBoss] - Re: Exception in UsersRolesLoginModule when jboss installed

2005-12-28 Thread jncoign
Phillip, Did you ever find a solution to this problem. I am having the same problem and would prefer not to upgrade as out JBoss install is part of Quality Center and I would like to stay on the supported platform of 3.2.5. Thanks, Jon View the original post :

[JBoss-user] [JBoss Seam] - Re: Feedback requested

2005-12-28 Thread [EMAIL PROTECTED]
anonymous wrote : First, it looks like the transition object is only @In, not @In @Out. But it's pretty clear that myActionListener is trying to communicate some state outwards to the conversation. So why not @Out also? Or is @Out only for cases where new contextual objects might be outjected

[JBoss-user] [JBoss Seam] - Re: Feedback requested

2005-12-28 Thread rdewell
Regarding conversations, JBPM, workflow annotations, etc.. While appreciate that Seam is (hopefully just initially) standardizing on JBPM for most workflow functionality, what I would LOVE to see is Seam also support a more lightweight workflow engine that is geared towards a non-persistent

[JBoss-user] [JBoss jBPM] - Re: how to design multiple sub-processes

2005-12-28 Thread enazareno
Hi Britt, anonymous wrote : | Hmm...perhaps you can simply not use sub processes at all I seem to like your first suggestion that each candidate should be a subprocess. Anyway, I was thinking long about it last night and I thought the key for it to work was to make child tokens to bind

[JBoss-user] [EJB 3.0] - Re: EJBException vs. RemoteException

2005-12-28 Thread redijedi
This does help. I will use the annotation specified. Thank you. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914661#3914661 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914661

[JBoss-user] [Installation, Configuration Deployment] - Re: When will JBoss 4.0.4 be released

2005-12-28 Thread gfzhang
JBAS-2483, jboss.system:type=Server (exit|halt) 10 doesn't restart jboss We are using JBoss 3.2.5. We plan to base our application on JBoss 4 next release. thank you. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914662#3914662 Reply to the post :

[JBoss-user] [EJB 3.0] - Re: Cancel a Rollback

2005-12-28 Thread redijedi
That's unfortunate for me. How can you use find with a native SQL query? I think that using @ApplicationException(rollback=false) will not be so great for me because the Exception I am raising should rollback transactions under certain circumstances. I know I could create two different

[JBoss-user] [JBoss Seam] - Re: Feedback requested

2005-12-28 Thread [EMAIL PROTECTED]
Actually we are already working on this stuff. (It was part of the original vision of Seam that we mapped out almost a year ago. Christian Bauer was especially keen on this stuff, for several years.) jBPM already runs in pure in-memory mode, all we really need to do is write the JSF navigation

[JBoss-user] [JBoss jBPM] - Re: Is it possible to update a process def without versionin

2005-12-28 Thread enazareno
I am also thinking about this problem. I hope somebody will have a good solution for this. I will try to keep watch on this issue. Regards, Elmo View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914665#3914665 Reply to the post :

[JBoss-user] [EJB 3.0] - Re: Cancel a Rollback

2005-12-28 Thread [EMAIL PROTECTED]
that won't work either as you won't have the same persistence context and the returned entity won't be managed anymore. I fhink you need to rearchitect your API as suggested above. BTW, your scenario is exactly the reason why the spec has find() which returns null and getReference() which

[JBoss-user] [JBoss Portal] - Re: Portal URLs

2005-12-28 Thread vmarco
Ok, so it seems I need a NavigationPortlet to provide the tabs. How do I add this. I tried inside a window, but that doesn't look right. Can I add it at the portal level of the descriptor? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914667#3914667 Reply

[JBoss-user] [JBossCache] - Re: JDBC persistance with pojo cache and performance issue

2005-12-28 Thread [EMAIL PROTECTED]
Do you have the Jira issue at hand? I can't seem to locate it under JBCache jira. :-) -ben View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914668#3914668 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914668

[JBoss-user] [JBossCache] - Re: XML Schema for JBoss Cache xml configuration file

2005-12-28 Thread [EMAIL PROTECTED]
No, we don't have one now. But it'd be nice to have. Any volunteer? :-) -Ben View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914669#3914669 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914669

[JBoss-user] [JBossCache] - Re: Eviction for keys

2005-12-28 Thread [EMAIL PROTECTED]
I think using just one node in treecache kind of defeats the purpose. you should consider putting it under different nodes. Concurrency will be much better that way. If you really cant, consider hash your keys to dividie them into different buckets, for example. Cuurrently we don't support key

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Urgent help

2005-12-28 Thread defkewl
You just need to install JBoss/Tomcat on your PC and deploy it. Still I don't understand what you're trying to achieve. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914671#3914671 Reply to the post :

[JBoss-user] [JNDI/Naming/Network] - Re: How to call bean in another ear file in Jboss?

2005-12-28 Thread selpiso
I can do what as your said. i can put the package just in 1 ear file. But it requirement. This is example of one my ear file. Now i have show you my deployment desciptor; jboss.xml ?xml version=1.0? enterprise-beans ejb-namehonda/ejb-name

[JBoss-user] [JBoss Portal] - Re: CMS Service Failed

2005-12-28 Thread pflirae
Thanks Roy, this solved the problem. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914675#3914675 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914675 --- This SF.net

[JBoss-user] [JBoss Portal] - Re: install jboss portal

2005-12-28 Thread danial79
pedrosacosta wrote : Thanks anders.hedstrom. I've installed jboss portal sucessfully. can you atleast.. provides what anders.hedstrom gave you so that we can see the solutions.. tq View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914676#3914676 Reply to the

[JBoss-user] [JCA/JBoss] - Re: Not able to lookup the datasource in jboss

2005-12-28 Thread jkk
Can you help me by sending some sample example about how to lookup datasource? Thanks in advance Shrimon View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914677#3914677 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914677

[JBoss-user] [Beginners Corner] - Re: Where can I find the JBOss examples mentioned in the adm

2005-12-28 Thread dhanyakairali
got it. thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914678#3914678 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914678 --- This SF.net email is sponsored

[JBoss-user] [Beginners Corner] - Reading a properties file from a class deployed in Jboss

2005-12-28 Thread dhanyakairali
How can I read a properties file from a class deployed in Jboss? The admin guide says scary things abt the Classloader. If all I want to do is read a properties file or some other file thats deployed along with my jar what should I do? View the original post :

[JBoss-user] [JBoss Seam] - How to setup Hibernate 3.1 using Eclipse

2005-12-28 Thread norhaida
I would like to know the step by step how to setup hibernate 3.1 using Eclipse. Actually i'm having a problem on finding a JDBC driver .jar file. Where does i have to put the .jar file after that. wheter in the hibernate lib directory or lib project directory.

[JBoss-user] [JBoss Seam] - Re: How to setup Hibernate 3.1 using Eclipse

2005-12-28 Thread [EMAIL PROTECTED]
Just put it in *some* lib directory and browse to it in the Hibernate console configuration dialog. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914681#3914681 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914681

[JBoss-user] [EJB 3.0] - Re: Cancel a Rollback

2005-12-28 Thread redijedi
Again, unfortunately find is not an option because I use native sql. I have moved an existance check into my stored proc and it works fine now. It is not ideal, but it works. Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914682#3914682 Reply to the

[JBoss-user] [EJB 3.0] - composite PK/FK

2005-12-28 Thread danjourno
I am trying to build a entity structure where I have a country table that uses ISO 3166 country codes as their PK, and a region table which also uses ISO3166 codes as a composite PK. For example.. a record in the country_region table that refers to New South Wales in Australia will have a

[JBoss-user] [JBoss Portal] - Re: Spring mvc portlet examples not working in JBoss portal

2005-12-28 Thread ervikas
Hi I hope u can help me. I am not able to get the jboss portal 2.2 running on the jboss AS 4.0.3sp1. I am using the oracle 9i database. I installed the portal and the portal-oracle-ds.xml file with the correct ds configuration. But hwen i request it from browser through

[JBoss-user] [EJB 3.0] - EJB QL generates wrong SQL with pagination (MySQL 5.0.16 + J

2005-12-28 Thread DanielYWoo
I have a very simple query with pagination like this | Query query = em.createQuery(ql); | query.setFirstResult(currentPage * itemsPerPage);//start rows | query.setMaxResults(itemsPerPage);//return rows | query.setParameter(searchValue, searchValue);//search criteria | return

[JBoss-user] [JBoss jBPM] - Re: jBPM 3.1 alpha2: Could not deserialize a Serializable va

2005-12-28 Thread priya121083
can u please post u r code View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914686#3914686 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914686 --- This SF.net email is

[JBoss-user] [Clustering/JBoss] - does the user transaction is shared in clustered environment

2005-12-28 Thread jbaiju
Hi all, In a clustered enviroment how does the transaction works, the user begins the transaction in one server and it is not necessary that the next request in the transaction shall come to the same server... how does this works ... please explain thanks in advance baiju View the

[JBoss-user] [Installation, Configuration Deployment] - Re: Newbie: Verification of Enterprise Beans failed

2005-12-28 Thread the-gtm
Your jdom.jar library must be declared in your application.xml, not in in the manifest. | module | javajdom.jar/java | /module | View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914688#3914688 Reply to the post :

[JBoss-user] [EJB 3.0] - Re: EJB3, JUnit, Maven 2

2005-12-28 Thread fcrabus
...or has anyone a list of dependencies that is currently needed to run JUnit tests? ...or an idea why I get an NPE here? I've dug a bit in the code to no avail. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914689#3914689 Reply to the post :

[JBoss-user] [JBoss Seam] - Re: How to setup Hibernate 3.1 using Eclipse

2005-12-28 Thread norhaida
Where to find the Hibernate console configuration dialog? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914690#3914690 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914690

[JBoss-user] [JBoss Seam] - Re: How to setup Hibernate 3.1 using Eclipse

2005-12-28 Thread [EMAIL PROTECTED]
In the Hibernate Console perspective, in the Hibernate Configurations view (LHS of the screen). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914691#3914691 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914691

[JBoss-user] [JBoss Seam] - Re: How to setup Hibernate 3.1 using Eclipse

2005-12-28 Thread [EMAIL PROTECTED]
Or, in the Hibernate Console perspective: File New Hibernate Console Configuration View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914692#3914692 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3914692

[JBoss-user] [JBoss Portal] - Re: Single Sign on in JBoss Portal 4.0.2

2005-12-28 Thread danial79
richiewalsh wrote : Hi, | Did you manage to find a solution to this problem. | thanks, | Richie. If you manage to find the solution to SSO, please let everybody knows.. :D View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3914693#3914693 Reply to the post :

<    1   2