[jboss-user] [JBoss Portal] - where can I download jboss portal2.6 alpha2

2007-02-01 Thread kevnlin
where can I download jboss portal2.6 alpha2 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009893#4009893 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009893 ___ jboss-use

[jboss-user] [EJB 3.0] - Re: Query

2007-02-01 Thread andydale
Hi Dalibor, The help is no problem, as i ran into quite a lot of these errors when i first started using Hibernate + EJB3 + JBoss. I also went with the Set to solve the "Multiple Bag" problem, as it seems the easiest so long as it fits the data model. I think @CollectionId is a hibernate spec

[jboss-user] [JBoss Seam] - Re: handling exceptions

2007-02-01 Thread [EMAIL PROTECTED]
OK, I now have a great solution to these kinds of problems in CVS. Now, when trying to match a handler to an exception, we search all wrapped exception, and try to match from most-nested to least-nested. This will solve your problems. View the original post : http://www.jboss.com/index.html?mo

[jboss-user] [EJB 3.0] - Re: Query

2007-02-01 Thread dkalna
Hi Andy, thanks a lot for your help. I really appreciate it. Now, the Set solution seems to be most clean, but in stage of our project I simply can't change this anymore... Well, the third option @CollectionId, is this pure EJB3.0 Annotation or is it part of Hibernate? Thanks Dalibor View the

[jboss-user] [JBoss jBPM] - Re: db connection leak some advice please

2007-02-01 Thread bentins
I tried as you suggested and commented the flush and release mode and uncommented the transaction factory. Nothing is changed. I want to emphasize that everything gets committed or rolledback as it should. My only problem is that the connection is never closed, thus it is never returned to the

[jboss-user] [JBoss Seam] - Re: Fully Qualifed Names in EL

2007-02-01 Thread [EMAIL PROTECTED]
Actually I'm wrong. The qualified names only work for components, not for arbitrary outjected values. H. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009863#4009863 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4

[jboss-user] [JBoss Seam] - Re: Fully Qualifed Names in EL

2007-02-01 Thread [EMAIL PROTECTED]
In theory it should work in Seam 1.1. Try using your debugger... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009862#4009862 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009862 _

[jboss-user] [JBoss Seam] - Re: patches with all lines replaced

2007-02-01 Thread [EMAIL PROTECTED]
Try installing cygwin and using the commandline CVS client. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009861#4009861 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009861 ___

[jboss-user] [JBoss Seam] - Re: Does Seam work with JSP2.1? and what to use Facelets or

2007-02-01 Thread [EMAIL PROTECTED]
JBoss 5 is definitely not ready for production. However, JBoss 4.2 (coming soon) will support JSP 2.1. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009860#4009860 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=400986

[jboss-user] [JBoss Seam] - Re: Identity.login adds a hardcoded message

2007-02-01 Thread [EMAIL PROTECTED]
Done in CVS View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009859#4009859 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009859 ___ jboss-user mailing list jboss-user@lists.jb

[jboss-user] [JBoss Seam] - Re: Identity.login adds a hardcoded message

2007-02-01 Thread [EMAIL PROTECTED]
Yes, is should be configurable like all the other build-in facesmessages in Seam. I'll fix that now. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009858#4009858 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009858 _

[jboss-user] [J2EE Compliance] - Sending cyrillic data to ActionHandler

2007-02-01 Thread varun.seth
Dear all i have deployed an EAR on JBOSS app server(JBOSS-4.0.2/ Server/all). but when i tested the application for data fatching from the data base based on cyrillic character, i am not getting any result bcz when i gave the sop on action handler i got only '?' instead of that cyrillic character

[jboss-user] [JBoss Seam] - Perform select all for

2007-02-01 Thread h.cahyadi
Hi All, I am newbie to jsf and seam, I have take look at seam-dvd example and try It, if we perform search for the movie ( http://127.0.0.1:8080/seam-dvd/browse.seam ) we will get the movie list with a checkbox to select it, and my question is how to get select all functionality for all the che

[jboss-user] [JBossCache] - Re: Jboss Caching issue

2007-02-01 Thread bhavranjan
Is it the issue of JBoss As version ? As i m using Jboss 4.0.5 GA View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009854#4009854 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009854

[jboss-user] [JBoss Eclipse IDE (users)] - Re: JBoss IDE Log Viewer

2007-02-01 Thread [EMAIL PROTECTED]
The log view is a standard eclipse view that our plugins, to my knowledge, do not interact with. In the future, perhaps, I can try to make sure it shows the JBoss log, but I haven't ever looked into that API and there are more pressing details right now. View the original post : http://www.jb

[jboss-user] [JBoss Seam] - Fully Qualifed Names in EL

2007-02-01 Thread swd847
I was wondering if it was possible to do something like this: | @DataModel("com.test.messages.messageList") | List messageList; | And then reference the resulting component in the EL something like: | | | But it does not seem to work for me (it works fine if

[jboss-user] [Installation, Configuration & Deployment] - Re: Scanning expanded war directory for new .class files

2007-02-01 Thread jaikiran
Raist_Majere is correct, you will have to change the last updated timestamp of web.xml for redeploying your application. Have a look at the following wiki entry for more details: http://wiki.jboss.org/wiki/Wiki.jsp?page=RedeployAnApplicationWhenChangeAFileInAnExplodedDeploymentDirectory View

[jboss-user] [Installation, Configuration & Deployment] - Re: Where to place common JARs?

2007-02-01 Thread jaikiran
anonymous wrote : let's say I need to deploy two web applications under the same server, and both web apps are created with Struts, so they share a common set of Struts JARs. So, where should I place those JARs? Under %SERVER%/lib? Or under each web app's WEB-INF/lib? You should place them in

[jboss-user] [JCA/JBoss] - Re: please help mysql datasource timeout problem

2007-02-01 Thread raja143chowdary
Hi Joe, am also facing the issue in one of my application, do you find the answer ?, if so, please let me know: [EMAIL PROTECTED] View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009846#4009846 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[jboss-user] [Beginners Corner] - how to use

2007-02-01 Thread prakah
Hello All, I have a requirement such that the finder method in an CMP entity bean should return 10 Entities from the specified starting position from the specified topic. How write ejb-ql query to retrive the required information? I have used the following statement as my ejb-ql query select o

[jboss-user] [JBoss Seam] - Re: Identity.login adds a hardcoded message

2007-02-01 Thread hstang
got cut off earlier...just want to finish by saying it's probably an easy fix to removing the hard code and provide option for customizing a message. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009844#4009844 Reply to the post : http://www.jboss.com/i

[jboss-user] [JBoss Seam] - Re: Identity.login adds a hardcoded message

2007-02-01 Thread hstang
You could provide your own implementation of login() instead of using's Identity. That way you can customize the messages however you want. e.g. | Identity.instance().authenticate() | I'm with you in thinking exposing login() in the design of the API with hard coded inputs as you mention

[jboss-user] [JBoss Seam] - patches with all lines replaced

2007-02-01 Thread codelion
As I see from JBSEAM-758 I'm not the only one struggling with making a patch that only shows the lines that actually have changed. Can't readily tell from looking at that patch what has changed. Took me a while a couple of weeks ago to get a patch "right" myself. I'd be submitting more patches

[jboss-user] [JBoss Seam] - Re: Spring integration collaboration

2007-02-01 Thread youngm
Found this: http://jira.jboss.com/jira/browse/JBSEAM-696 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009840#4009840 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009840 __

[jboss-user] [JBossCache] - Re: Jboss Caching issue

2007-02-01 Thread bhavranjan
Thanks for ur reply I m using version 1.4.0 SP1 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009839#4009839 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009839 ___ jboss

[jboss-user] [EJB 3.0] - Resource Injection

2007-02-01 Thread mihochan
Hi, I am having trouble with resource injection.I have defined a Mail Session thus, | | | LeadloaderMail | devcon2 | x | | | | | | | | | | |

[jboss-user] [JBoss Portal] - Re: Stream Closed

2007-02-01 Thread rashmi_setty
Hi, System Environment: Jboss 2.4.G.A Windows XP, IE6.0 expolrer Even we are facing the same problem.The portelt is a simple MYFACES 1.1.2 Portlet which displays the data on screen.If i continously press F5 button, we are getting the Stream closed exception. Is there any solution for this as

[jboss-user] [JBoss Seam] - Spring integration collaboration

2007-02-01 Thread youngm
I was reading through another forum and saw a post by Gavin mentioning Spring integration has started: http://www.theserverside.com/news/thread.tss?thread_id=44086#226614 I work for an organization who uses JSF+Spring+JPA/Hibernate deployed to Websphere as our standard development "stack". I'm

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Naming Error shutting down JBoss server in JBoss Eclipse

2007-02-01 Thread gzoller
Thanks for the response. Actually I think this might have been an install error on my part. I moved my JBoss AS install aside and used the Windows installer to install a fresh copy. I got past that error and then got a problem with Authentication failing. Same thing happened from the command

[jboss-user] [JBoss Portal] - Jboss Portal Insallation

2007-02-01 Thread deepalip
I am new user of Jboss. I am trying to install the JbossPortal on Jboss AS 4.0.3 My AS seems to work fine as when i logon to http://localhost:8080/ i see the default page set for the Jboss AS I have downloded the binary version of the JbossPortal. Copied the jboss-portal.sar and portal-mysql-ds.

[jboss-user] [JBoss jBPM] - Eclipse Designer tips... how to find+fix XML problems?

2007-02-01 Thread dslevine
I love the graphical design editor in Eclipse, but I often find that by editing the actions/script in the XML not carefully enough, or sometimes even just saving, closing, and opening it again, I get an error and cannot open the file in the designer. I then go through a slow and arduous process

[jboss-user] [JBossCache] - How to add without overwriting

2007-02-01 Thread vincent.marquez
I'm interested in learning the correct way to add data to a node only if the node is empty. My concern is that between checking if an FQN exists, and adding a new object under that specific FQN, data could have been added to the cache. I understand there is explicit locking on Node objects, b

[jboss-user] [Beginners Corner] - Web application startup/initialization method

2007-02-01 Thread [EMAIL PROTECTED]
Is there a way to initialize a web application server module in JBoss? In the Oracle OC4J container, you can configure and extend an OC4JStartup class. Is there something similar to that in JBoss? Thanks, DHong View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

[jboss-user] [JBoss Seam] - Identity.login adds a hardcoded message

2007-02-01 Thread fernando_jmt
Hi. I just try the Seam security, I did an authenticator something like this: | public boolean authenticate(String username, String password, Set roles) { | try { | | User currentUser = (User) entityManager.createQuery("select u from User u where u.username=:userna

[jboss-user] [Remoting] - Re: JBoss Remoting & JDK 6.0 situation deadlock

2007-02-01 Thread jmjatlanta
Awesome fix. Thanks for the research and help. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009802#4009802 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009802 ___ jboss-us

[jboss-user] [JBoss jBPM] - Nothing to download

2007-02-01 Thread mjhn
AFAICS http://sourceforge.net/project/showfiles.php?group_id=70542&package_id=1 has no files to download. Regards Martin View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009801#4009801 Reply to the post : http://www.jboss.com/index.html?module=bb&op=postin

[jboss-user] [JBoss jBPM] - Re: Deploying and running Jbpm / Drools Process

2007-02-01 Thread warmonga
Hi everybody, I would really be grateful if anyone could provide me with a hint how to find the deployed webapp for integrating the drools - jars with it. Many thanks again. Kind regards, Maurice View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009800#4009800

[jboss-user] [JBoss Seam] - Re: Seam 1.1.5.GA released/file upload problem

2007-02-01 Thread [EMAIL PROTECTED]
"JoviJojo" wrote : thanks for the reply... | 1) i tried to upload two images: one jpeg size of 43kb, the other one is bitmap size of 16kb. | 2) i did not make a copy of the exceptions, but i can see from the server log that the image was actually created... although we in our application can

[jboss-user] [JBoss Seam] - Re: restricting access using pages.xml

2007-02-01 Thread [EMAIL PROTECTED]
This is fixed in CVS now. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009797#4009797 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009797 ___ jboss-user mailing list jboss

[jboss-user] [Beginners Corner] - AppServer won't start from Eclipse

2007-02-01 Thread arnieAustin
I downloaded the AS (did not use JEMS) and configured my -ds.xml file and supplied the drivers. If I start the AS from the command line, it starts w/o issue and the application runs (well, at least up to the bug I'm trying to diagnose). But if I start it from w/i Eclipse, it begins to start, the

[jboss-user] [JBoss jBPM] - JBPM Fork Issues

2007-02-01 Thread jorell
I was using the Fork node and had some questions about it: 1- It appears that its necessary to name the outgoing transitions from a fork node. Is this true? when I didnt name them the token went to just the first transitions, proceeded to join and onwards. 2- In my tests I havent been able to g

[jboss-user] [JBoss Seam] - Re: Does Seam work with JSP2.1? and what to use Facelets or

2007-02-01 Thread terryb
Thank you, much appreciated! and my lucky day (birthday) I got reply from Gavin! It is encouraging to see The Creator so active on the Fourm; or is it one of many hi-tech secretaries :). I guess I should give GlassFish a try, since JBoss 5 GA may not be ready in the near future? and we are look

[jboss-user] [Management, JMX/JBoss] - Using JBoss Scheduler

2007-02-01 Thread mvempaty
Has anybody used the JBoss scheduler to automate some background task processing ? While I am familiar with setting up the scheduler-service.xml, I want to know if it is possible to programmatically get a scheduler to run rather than relying on the timer that it uses. To illustrate: If ClassA i

[jboss-user] [JBoss Seam] - Re: seam-gen enhancement

2007-02-01 Thread guanwh
"[EMAIL PROTECTED]" wrote : sure, and it is all possible just not enabled in seamgen yet. | | you can do it by have it use a [jpaconfiguration] instead of [jdbcconfiguration] care to submit a patch ? :) Sure. I am not farmiliar with it but i will give it a try View the original post :

[jboss-user] [JBoss Messaging] - callerPrincipal changed after connecting JMS from EJB

2007-02-01 Thread alllle
When my SLSB is invoked, it has the caller principal set to the client supplied username. Inside my SLSB, I send out a JMS message to a topic using a different user/pass specified in the JMS configuration. It is done via ConnectionFactory.createConnection(user, pass). However, after the message

[jboss-user] [JBoss Seam] - Re: restricting access using pages.xml

2007-02-01 Thread svadu
I fixed that bug locally and the patch is ready to be sent to Gavin. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009769#4009769 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009769 __

[jboss-user] [JBoss Seam] - Re: Seam 1.1.5.GA released

2007-02-01 Thread svadu
I have a small patch that fixes a NPE that I encountered. What is the best way to get it to you? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009766#4009766 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009766 _

[jboss-user] [JBoss Seam] - Re: restricting access using pages.xml

2007-02-01 Thread dustismo
Ok, so now I am running on the cvs version, which seems to help (sort of).. Now when I try to access a page in the clients directory it throws an exception | 19:30:22,185 INFO [Lifecycle] starting up: org.jboss.seam.security.identity | 19:30:22,193 ERROR [[/Infofilter3-Main]] Session event

[jboss-user] [JBoss AOP] - Re: Problem with prepackaged security aspect on a POJO using

2007-02-01 Thread [EMAIL PROTECTED]
At a glance this looks correct... Try checking out jboss from cvs and building that, and then the testsuite. Have a look at aoptest.sar... Actually revisiting this I see that we do | | | | | i.e. we "prepare" AND apply metadata to the class we want to secure. I can't r

[jboss-user] [Installation, Configuration & Deployment] - jmx-console not reognizing default admin user...

2007-02-01 Thread shansae
I configured SSL on thos box and have SecurityManaged to SecurityDomain in jboss-service.xml View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009760#4009760 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009760 _

[jboss-user] [Installation, Configuration & Deployment] - I am getting this error for out of box JBoss 4.0.5 installat

2007-02-01 Thread shansae
Starting jboss.ejb:service=EJBTimerService,persistencePolicy=database 2007-02-01 16:31:55,456 ERROR [org.jboss.ejb.txtimer.GeneralPurposeDatabasePersistencePlugin] Cannot create timer table java.lang.SecurityExceptiva.lang.SecurityException: Invalid authentication attempt, principal=nullon: Inva

[jboss-user] [JBoss AOP] - Re: trouble on upgrading

2007-02-01 Thread [EMAIL PROTECTED]
Can you please provide a small testcase reproducing the problem and either attach it to a JIRA issue or mail it to me? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009757#4009757 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode

[jboss-user] [JBoss jBPM] - Re: db connection leak some advice please

2007-02-01 Thread [EMAIL PROTECTED]
why is the following setting commented? You should not have to change the default connection release mode because your chosen TransactionFactory class already specifies the most appropriate mode. Flushing before completion and auto-closing the session are not recommended because jBPM flushes

[jboss-user] [JBoss Seam] - Re: Deploy Seam 1.1 to websphere without EJB

2007-02-01 Thread jbnewb
In 1.1.5 - yes, working for this sample application. Was just wondering if there would be any ramifications due to the reordering of the listeners View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009749#4009749 Reply to the post : http://www.jboss.com/index.h

[jboss-user] [JBoss jBPM] - Re: db connection leak some advice please

2007-02-01 Thread bentins
OK. Done alot of investigation but still have a problem. Here is what I got: first, I saw that my jbmp.configuration has no effect. i.e to have no transaction support by hibernate i had | | | | this did not actually load the attribute what i should have had is this:

[jboss-user] [JBoss Seam] - Re: Deploy Seam 1.1 to websphere without EJB

2007-02-01 Thread jbnewb
In 1.1.5 - yes, working for this sample application. Was just wondering if there would be any ramifications due to the reordering of the listeners. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009748#4009748 Reply to the post : http://www.jboss.com/index.

[jboss-user] [JBoss jBPM] - Re: jBPM 3.2 timers in a cluster

2007-02-01 Thread [EMAIL PROTECTED]
In jBPM 3.1, multiple scheduler threads query and execute timers without synchronization, leading to duplicate executions. In 3.2, this issue is effectively being addressed through a lock mechanism at the database level. You should be able to run multiple job executor threads. This mechanism is

[jboss-user] [JBoss AOP] - trouble on upgrading

2007-02-01 Thread eprst
Hi Our program has stopped working after upgrading from JBossAOP 1.3.5 to 1.5.3GA. We're using compile-time instrumentation and JBoss 4.0.4 with aop-5.0 deployer from JBossAOP distribution. Instrumentation and deployment goes smoothly, but the following happens on attempt to use instrumented cl

[jboss-user] [JBoss Seam] - Re: Seam 1.1.5 security components issues?

2007-02-01 Thread [EMAIL PROTECTED]
And you should use Identity.instance(). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009743#4009743 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009743 ___ jboss-user mail

[jboss-user] [Installation, Configuration & Deployment] - Re: java.net.BindException: Address already in use: JVM_Bind

2007-02-01 Thread benoitx
I guess it is never too late to add my £0.02 worth... Kill GoogleTalk seems to have fixed my issue when I have a similar problem. Benoit View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009742#4009742 Reply to the post : http://www.jboss.com/index.html?module

[jboss-user] [JBoss Portal] - Re: wsrp with https

2007-02-01 Thread [EMAIL PROTECTED]
I am not the specialist here but I can try to help you. Chris which is our WSRP lead is currently away for a few days. You could try to secure the endpoints in web.xml located in : jboss-portal.sar/portal-wsrp.sar/portal-wsrp.war/WEB-INF/web.xml try with the ServiceDescriptionService endpoint l

[jboss-user] [JBoss Messaging] - Re: Memory Leak with EJB3 ?

2007-02-01 Thread timfox
Fixed in TRUNK http://jira.jboss.com/jira/browse/JBMESSAGING-638 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009738#4009738 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009738 _

[jboss-user] [Beginners Corner] - Re: Sakai 2.3 on JBoss - how to deploy?

2007-02-01 Thread faiio
It sounds very promising. I will try it. Thank you all very much! Rafael View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009733#4009733 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009733

[jboss-user] [JBoss Messaging] - Re: JBoss Messaging thread BLOCKED at method org.jboss.jms.c

2007-02-01 Thread timfox
This is now fixed in TRUNK. Will soon be in SP4. http://jira.jboss.com/jira/browse/JBMESSAGING-797 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009735#4009735 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009735 __

[jboss-user] [JBoss jBPM] - Re: Recursive call to jBPM BPEL Process

2007-02-01 Thread [EMAIL PROTECTED]
Christian, Your approach to providing log files is great :-) Certainly no errors appear. From what is in the logs I cannot tell what the problem is. I assume the output value does not match the result you expect. Can you please zip your project and make it downloadable as well? I'd like to try

[jboss-user] [JBoss Seam] - Re: handling exceptions

2007-02-01 Thread [EMAIL PROTECTED]
Actually I lie, it still gets wrapped in an EJBException. Actually both cases should be wrapped by an EJBException, not a RuntimeException. That is a bug in EJB3. What I could do is make the exception handling automagically unwrap EJBExceptions, which are anyway useless. View the original pos

[jboss-user] [JBoss Seam] - Re: handling exceptions

2007-02-01 Thread [EMAIL PROTECTED]
Well, if you look at the stack trace, the reason is very clear: Caused by: java.lang.RuntimeException: org.jboss.tm.JBossRollbackException: Unable to commit, tx=TransactionImpl:XidImpl[FormatId=257, GlobalId=gavin-kings-computer.local/117, BranchQual=, localId=117] status=STATUS_NO_TRANSACTION;

[jboss-user] [JBossWS] - Re: Exception with JBoss-4.0.5-SP1 and JBossWS-1.0.3-SP1 but

2007-02-01 Thread lafr
we'll have to wait for a JBossWS version including the fix for http://jira.jboss.com/jira/browse/JBWS-1284. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009723#4009723 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4

[jboss-user] [JBoss Seam] - JBoss Seam without JSP pages ?

2007-02-01 Thread olvin
Hello, Can I use the advantage of the conversational context in an enterprise application without any web (jsp/html) pages ? So => using the annotations in my EJB's and calling them by others EJB's or by Javabeans ? I ask this question because my application consist of that : - Some calculatio

[jboss-user] [JBoss Seam] - Re: seam-gen puts both antlr-2.7.6.jar and antlr-3.0ea8.jar

2007-02-01 Thread [EMAIL PROTECTED]
the two versions of Antlr have different namespaces, so they do not conflict. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009719#4009719 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009719 _

[jboss-user] [Beginners Corner] - Re: Mapping CMP field and PK (DB sequence) column

2007-02-01 Thread lafr
Erase class level ejb.pk as you marked your pk-field. Erase jboss.unknown-pk. Modify entity-commmand to this * @jboss.entity-commandname="postgresql-fetch-seq" * @jboss.entity-command-attribute name="sequence" value="info_allegato_xmoid_seq" Erase field level "auto-increment". V

[jboss-user] [JBoss Seam] - Re: Simple application component

2007-02-01 Thread [EMAIL PROTECTED]
So, I started with the hibernate2 example, modified components.xml to look like this: | | | And then added an @Create method to HotelSearchingAction. Everything works perfect. AFAICT, this is equivalent to your setup, no? View the original post : http://www.jboss.com/in

[jboss-user] [JBoss Seam] - How to modify the messages example to connect to Oracle DB

2007-02-01 Thread MonkeyKnifeFight
Hey guys another newbie question here. I'm trying to modify the messages example to connect to an Oracle database, then execute a simple query and display the results in a table. I'm having problems getting my configuration set up correctly. I added a -ds.xml file and edited the persistence.x

[jboss-user] [Beginners Corner] - Re: Sakai 2.3 on JBoss - how to deploy?

2007-02-01 Thread edwinmtriana
Hello I also trying to deploy Sakai on Jboss, and Five minutes ago I got a correct deploy. I don't know if this is the better configuracion, but is a good way to begin. The Sakai estructure: - I download the sakai-bin_2-3-0.tar.gz file. - Decompress the file . In the Sakai directory i found

[jboss-user] [Installation, Configuration & Deployment] - Where to place common JARs?

2007-02-01 Thread kingcu
Hi everyone, I am trouble shooting my JBoss AS 4.0.1sp1 deployment, but before asking help, I'd like to gain some knowledge on deployment and try it myself first. So, here is what I'd like to find out: let's say I need to deploy two web applications under the same server, and both web apps are

[jboss-user] [JBoss Seam] - restricting access using pages.xml

2007-02-01 Thread dustismo
Hi, I am trying to restrict access to all files in /clients to logged in users. I added the following pages.xml to no avail: | http://jboss.com/products/seam/pages-1.1.dtd";> | | | | #{identity.loggedIn} | | | nor does it work if I use a navigatio

[jboss-user] [JBoss Portal] - Re: jackrabbit upgrade - FYI

2007-02-01 Thread [EMAIL PROTECTED]
We plan tu upgrade, we just need to do it and test it :) I'm glad to see that the changes are minor, the changelog was quite scary related to the Hibernate persistence and nobody took the time yet to do the upgrade. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopi

[jboss-user] [JBoss Portal] - Re: jackrabbit upgrade - FYI

2007-02-01 Thread [EMAIL PROTECTED]
jlacy- I have load tested with JackRabbit 1.1.1 and its fully compatible (no code changes necessary) 1.0 had a lot of memory leak, but they are all gone in 1.1.1 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009686#4009686 Reply to the post : http://ww

[jboss-user] [JBoss Seam] - Re: sequence execution not followed in seam reemoting

2007-02-01 Thread [EMAIL PROTECTED]
Remoting calls are asynchronous. You need to put any code that you want synchronized into the callback method. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009685#4009685 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [JBoss Seam] - Re: Simple application component

2007-02-01 Thread [EMAIL PROTECTED]
BTW, this line in your components.xml is redundant: View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009683#4009683 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009683 ___ j

[jboss-user] [JBoss Seam] - Re: restricting access using pages.xml

2007-02-01 Thread petemuir
"dustismo" wrote : Hi, | | I am trying to restrict access to all files in /clients to logged in users. I added the following pages.xml to no avail: | | | | http://jboss.com/products/seam/pages-1.1.dtd";> | | | | | | | | #{identity.loggedIn} | |

[jboss-user] [JBoss Seam] - Re: Deploy Seam 1.1 to websphere without EJB

2007-02-01 Thread jbnewb
Hi, Downloaded the 1.1.5 - Was able to run the JPA example without any issues. Thanks. For my app (WAR file) - I keep getting the exception below. The only way I get rid of it is to put the StartupServletContextListener line above the SeamListener line My web.xml / build.xml mirrors what u hav

[jboss-user] [JBoss Seam] - Re: How to modify the messages example to connect to Oracle

2007-02-01 Thread fhh
Hello! | javax.faces.el.EvaluationException: Cannot get value for expression '#{messageList.rowCount==0} | This is not the real exception but the one that came out of the application stack. I assume the real problem is that you are trying to execute a sql query through the entity mana

[jboss-user] [JBoss Seam] - Re: restricting access using pages.xml

2007-02-01 Thread [EMAIL PROTECTED]
Is it? Was it? Bad. And good. Guys, I've scheduled a 1.1.6 release for next Wed, to get a few of these bugfixes out there. There will also be a couple of nice enhancements to the security stuff ;-) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009699#4009

[jboss-user] [JBoss Seam] - Re: restricting access using pages.xml

2007-02-01 Thread [EMAIL PROTECTED]
Either of those approaches should work. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009698#4009698 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009698 ___ jboss-user mail

[jboss-user] [JBoss Seam] - Re: Deploy Seam 1.1 to websphere without EJB

2007-02-01 Thread [EMAIL PROTECTED]
Thats very strange. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009702#4009702 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009702 ___ jboss-user mailing list jboss-user

[jboss-user] [JBoss Seam] - Re: Deploy Seam 1.1 to websphere without EJB

2007-02-01 Thread jbnewb
Indeed. Now - one thing changed between 1.1 and 1.1.5. In 1.1 - after I put the StartupServletContextListener above the SeamListener - The app would start fine - But I would keep getting the "Application context not found" in the SeamVariableResolver. In 1.1.5 - I still need to reorder the list

[jboss-user] [JBoss Seam] - seam-gen puts both antlr-2.7.6.jar and antlr-3.0ea8.jar

2007-02-01 Thread codelion
Both antlr .jar are coming from drools\lib, I guess. Is that intentional, or is that an oversight, which one should be it? Afraid those two versions might conflict. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009706#4009706 Reply to the post : http://www

[jboss-user] [JBoss Seam] - Re: Deploy Seam 1.1 to websphere without EJB

2007-02-01 Thread [EMAIL PROTECTED]
But the end result is that it is now working for you, right? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009705#4009705 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009705 __

[jboss-user] [JBoss Seam] - Re: Simple application component

2007-02-01 Thread [EMAIL PROTECTED]
Question: does adding @Startup to ReferenceSessionFactory fix it? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009688#4009688 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009688 _

[jboss-user] [Messaging, JMS & JBossMQ] - Re: jboss startup with delveryactive set to FALSE

2007-02-01 Thread genman
http://wiki.jboss.org/wiki/Wiki.jsp?page=ConfigJBossMDB See DeliveryActive -- View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009677#4009677 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009677

[jboss-user] [Beginners Corner] - Re: Sakai 2.3 on JBoss - how to deploy?

2007-02-01 Thread genman
Not sure what Sakai is entirely, but usually, you can get away with putting all related .jar files for a component in your .war file. If this doesn't work, then in server/default/lib . Better would be to create a .sar file with your files, if you're saavy. View the original post : http://www.

[jboss-user] [Beginners Corner] - JBOSS 4.0.5 Shutdown : Failed to initalize plugin: org.jboss

2007-02-01 Thread vk.iyengar
We wanted to use our own Log4j component to log our application messages. I used RepositorySelector implementation provided in one of the jboss wiki site. Everything works fine, except when i shutdown, i am getting this error during jboss undeployment of /jbossmq-httpil.war and unbound Connecti

[jboss-user] [JBoss Portal] - jackrabbit upgrade - FYI

2007-02-01 Thread jlacy
Hello, Are there any plans to upgrade the version of Jackrabbit within the 2.6 release? The reason I ask is that we are in the final stages of development of a fairly CMS intensive application using 2.4. During our performance/load testing we ran into a number of serious threading issues (dead

[jboss-user] [JBoss Eclipse IDE (users)] - JBoss IDE Log Viewer

2007-02-01 Thread j_mmontero
I just recently installed the JBOSS Eclipse IDE. I can start, stop the server and debug applications, but when I click on the Show Log View I'm not able to view the log file. Any help will be appreaciated I'm using Eclipse IDE 3.1 Thanks View the original post : http://www.jboss.com/index.html

[jboss-user] [JBoss Messaging] - AccessControlException

2007-02-01 Thread colomb
We are currently evaluating JBoss Messaging and are having some issues with our web start applications. We've given the app complete access to the machine using the option but they still generate an AccessControlException every time they try and access the jboss.messaging.callback.bind.port

[jboss-user] [JBoss Seam] - Re: User Experiences with IceFaces & How important are compo

2007-02-01 Thread seamNoobie
Darn, now I have to write an Ant script to build it (I use MyEclipse and it deploys exploded directly into JBoss deploy area). I will get it attached on Sunday p.m. if thats ok? as I am fiddling with the tree component and it would be useful to have that in there too. View the original post :

[jboss-user] [JBoss Seam] - Re: Access to EntityManager in authenticator?

2007-02-01 Thread mariuszs
You can also use @Stateless bean (simply add this annotation) and @PersistanContext can work. You need also interface for this bean. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009659#4009659 Reply to the post : http://www.jboss.com/index.html?module=bb&o

[jboss-user] [JBossCache] - Re: when eviction is configured in the clustered environment

2007-02-01 Thread murthytvsn
we are using jboss-cache-1.3.0.SP2.jar and jgroups-all-2.2.7.jar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009657#4009657 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009657 __

[jboss-user] [JBoss Seam] - Re: User Experiences with IceFaces & How important are compo

2007-02-01 Thread [EMAIL PROTECTED]
Actually, that could be useful. Attach it to an issue in JIRA. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4009655#4009655 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4009655

  1   2   3   >