[jboss-user] [Beginners Corner] - view error messages from jboss?

2007-03-19 Thread ravnock
I´m developing an app with androMDA and i deploy it with jboss. When I try to view the index page of the app the following error is shown: Application error The application encountered an unexpected exception, please contact your system administrator and notify him/her of this problem.

[jboss-user] [JBoss Seam] - Re: SeamRemoting Spring DelegatingVariableResolver

2007-03-19 Thread youngm
I created an issue to work on better spring EL integration if you want to track it: JBSEAM-1074 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029358#4029358 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029358

[jboss-user] [JBoss Seam] - Re: How do I select an initial page after login chosen by us

2007-03-19 Thread zzztimbo
[EMAIL PROTECTED] wrote : The best option is: | | rule if=#{identity.loggedIn} | | No need for any special changes to Identity. What should the behavior be for this: | page view-id=/home.xhtml |navigation | rule if=#{identity.loggedIn} | redirect

[jboss-user] [Installation, Configuration Deployment] - For those who need to self-host with jboss

2007-03-19 Thread easymoving
I found this article an article on self-hosting with Jboss . It shows you how to self host your web site using dynamic IP Cheers View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029362#4029362 Reply to the post :

[jboss-user] [JBoss Messaging] - Expired messages remain on queue

2007-03-19 Thread colomb
I'm having trouble with message expiration. When checking JMSExpiration on the messages, its clearly past, and isExpired is returning true, but the message remains on the queue. Is there some extra configuration needed to have the message deleted off the queue once its expired? Thank you,

[jboss-user] [JBoss jBPM] - XPDL and BPEL on JBPM

2007-03-19 Thread ricardomarques
Hi all I'm new on this area and I'm trying to evaluate some solutions in this area. Here's my case: I want a process designer (BPMN) that saves the information in xpdl, then by some way, convert the xpdl file on a bpel file to deploy in jbpm. Is this convertion possible (xpdl-bpel) ? Can u

[jboss-user] [JBoss Seam] - Re: How do I select an initial page after login chosen by us

2007-03-19 Thread zzztimbo
[EMAIL PROTECTED] wrote : If the users have one role only, you could write it like this: | | page view-id=/login.xhtml | |navigation from-action=#{identity.login} | | rule if=#{s:hasRole('user') | | redirect view-id=/user.xhtml/ | | /rule | |

[jboss-user] [Installation, Configuration Deployment] - Re: Making the application as default

2007-03-19 Thread niranjanshetty
yes if i remove the file the app is deployed properly I did a small change . added the value /ITMS to the context-root nodeand restarted .there were no errors this timehowever when i accessed http://localhost:8080/ it brought up the index page . but i have

[jboss-user] [JBoss Messaging] - Slow Topic Subscriber

2007-03-19 Thread rtm333
Hi, What is the expected behaviour of JBoss Messaging (JBM 1.0.1.SP4 on AS 4.0.5.GA) when one of several topic subscribers is very slow in processing messages? We are using non-persistent messages and non-durable subscribers with DUPS_OK_ACKNOWLEDGE. Messages are generated in this scenario at

[jboss-user] [EJB 3.0] - Re: Merge question

2007-03-19 Thread ColinEberhardt
Hi, This has been discussed quite a few times before. See: http://www.jboss.org/index.html?module=bbop=viewtopict=78245 In summary, you must remove the B entity from the collection within A, and invoke em.remove(b) also. The other alternative is to use a Hibernate specific annotation.

[jboss-user] [JBoss Seam] - Re: Naming a database

2007-03-19 Thread mikeeprice
duuuh, thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029377#4029377 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029377 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: SeamRemoting Spring DelegatingVariableResolver

2007-03-19 Thread dan.j.allen
If the Spring listener is configured above the Seam listener in web.xml, then Seam complains loudly that a component is being accessed outside the context of a web application when adding the SpringComponent. java.lang.IllegalStateException: Attempted to invoke a Seam component outside the

[jboss-user] [JBoss Seam] - Dynamic navigation with partial page rendering

2007-03-19 Thread hispeedsurfer
Hi, I know a4j and richfaces. I want to build a dynamic menu with rich:panelBar and rich:panelBarItem. Every time a commandLink inside the panelBarItem is clicked only the desired content should be rerendert. My site is greated in classic style with header, menu on west-side and the center

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - issues with joins between composite keys

2007-03-19 Thread johnybravo2004
I am creating this join from one table to another with the followin query: select sale.storeName from sale sale, storelocation sc where sale.store_id = sc.store_id and sale.storeLocId = sc.storeLocId many-to-one name=sale class=com.dao.hibernate.sale not-null=true /many-to-one

[jboss-user] [Beginners Corner] - Re: view error messages from jboss?

2007-03-19 Thread PeterJ
Error messages should show up in the console window. Or you can look at the log file at jboss_home/server/xxx/log/server.log (where xxx is the server configuration you are running, usually 'default') View the original post :

[jboss-user] [JBoss Messaging] - Re: Running jboss-messaging client in the JBoss AppServer

2007-03-19 Thread mskonda
you have (AFAIK) two choices: 1. create an EJB that can publish messages using standard JMS API (and ofcourse using MDB to subscribe/consume) 2. Create a service (MBean) that can instantiate your test client (if you expose a method on the MBean, it can be invoked via JMX console. Thanks Madhu

[jboss-user] [JBoss Seam] - Re: selectManyMenu and EntityHome

2007-03-19 Thread ector7280
I switched to a List and that got me past the Array error, however, it does look like it might be a problem with ICEFaces because now with the List I get this error: 12:49:21,031 ERROR [D2DFaceletViewHandler] Problem in renderResponse: null | java.lang.NullPointerException | at

[jboss-user] [JBoss Seam] - Re: selectManyMenu and EntityHome

2007-03-19 Thread petemuir
Which version of Seam? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029391#4029391 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029391 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: SeamRemoting Spring DelegatingVariableResolver

2007-03-19 Thread youngm
Good news, thanks for the following up. Mike View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029395#4029395 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029395 ___ jboss-user

[jboss-user] [JBoss Portal] - Deployment Error When deploying PortletBridge (portletbridge

2007-03-19 Thread Peter_Wang83
I tried to deploy portletbridge-portlet.WAR to jboss-4.x\server\default\deploy\ folder, but I always get the following error: * 10:49:01,251 ERROR [AbstractKernelController] Error installing to Start: name=po rtal:container=WebApp,id=portletbridge state=Create

[jboss-user] [JBossWS] - Re: Webservice Client consumer

2007-03-19 Thread openyourmind
Hi Nean, If you check in the wsrunclient.sh you will see that you should set the vm options as follows: -Djava.endorsed.dirs=/[jboss_install_path]/jboss/jboss-4.0.5.GA/lib/endorsed Hope it helps Open Your Mind View the original post :

[jboss-user] [JBoss Seam] - Re: @Restrict - No redirection to Error Page

2007-03-19 Thread [EMAIL PROTECTED]
I think I know the problem. If you are calling this method as a value expression during the render phase of the JSF lifecycle, its not going to work. What you need to do is understand the JSF and servlet specs: There is no way I can send a redirect after I have already started to render the

[jboss-user] [JBoss Seam] - Re: @Restrict - No redirection to Error Page

2007-03-19 Thread [EMAIL PROTECTED]
What you can do, however is send a http error. So it makes sense to have *two* exception handlers, one just for the redirect phase. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029406#4029406 Reply to the post :

[jboss-user] [JBoss jBPM] - jboss database connection pool

2007-03-19 Thread amit127
Hi I am porting my application from weblogic to jboss4.0.2 I our code ejb reads the connection pool properties code is below weblogic.jdbc.common.JdbcServices jdbc = (weblogic.jdbc.common.JdbcServices)ctx.lookup(weblogic.jdbc.JdbcServices); Properties p =

[jboss-user] [JBoss Seam] - ExceptionFilter without UserTransaction

2007-03-19 Thread dan.j.allen
If the ExceptionFilter is configured (using web:exception-filter in components.xml) and a UserTransaction is not available in JNDI, then the filter bails when it calls ExceptionFilter#rollbackTransactionIfNecessary() in the finally block. Those folks who are using Seam without the transaction

[jboss-user] [JBoss Seam] - Re: ExceptionFilter without UserTransaction

2007-03-19 Thread dan.j.allen
Sorry, it's not in the finally block, but it is in that filter. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029410#4029410 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029410

[jboss-user] [JBoss Seam] - Inject Session Bean Into a POJO

2007-03-19 Thread tom_goring
Hi, I'm trying to set up a simple Seam Bean to be injected with a Session bean. POJO bean: @Name(userMenuManager) | @Scope(ScopeType.EVENT) | public class UserMenuManager { | .. | @In(value=UserManagerBean, create=true) | private UserManager userManager; | EJB3 Session

[jboss-user] [JBoss Seam] - Re: selectManyMenu and EntityHome

2007-03-19 Thread ector7280
Seam 1.2 Patch 1 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029412#4029412 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029412 ___ jboss-user mailing list

[jboss-user] [JBoss Messaging] - Re: Running jboss-messaging client in the JBoss AppServer

2007-03-19 Thread sdhaliwal
Actually, the question is not how to accomplish this. But how to configure the server so that it does not throw the exception when we try to run the client. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029414#4029414 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Mail rendering fails with MyFaces exception

2007-03-19 Thread [EMAIL PROTECTED]
Again, the mail sending is working fine for me in the wiki example. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029415#4029415 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029415

[jboss-user] [JBoss Seam] - Re: ExceptionFilter without UserTransaction

2007-03-19 Thread [EMAIL PROTECTED]
Exactly how does it bail? What happens? And why are you using Seam in a non-JTA environment anyway? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029417#4029417 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029417

[jboss-user] [JCA/JBoss] - Re: MySQL Connection Problems under heavy load

2007-03-19 Thread [EMAIL PROTECTED]
JBoss JCA won't enlist a transacted connection in a transaction that has already timed out. Why your transaction is timing out is an issue for you to determine, but not really an issue for the JCA forum. | 2007-03-15 23:05:00,199 WARN [org.jboss.tm.TransactionImpl] Transaction

[jboss-user] [JCA/JBoss] - Re: TransactionLocal: How to use it?

2007-03-19 Thread [EMAIL PROTECTED]
ypsilon wrote : Can you point me to a scenario where the classloader would lead to a ClassCastException? Does this only occur upon redeployments? | Correct, in general | public class DoesntGetRedeployed | { |public static Collection staticCollection = ...; | } | | public

[jboss-user] [JCA/JBoss] - Re: criticle for me

2007-03-19 Thread [EMAIL PROTECTED]
DEBUG != ERROR View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029420#4029420 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029420 ___ jboss-user mailing list

[jboss-user] [JBoss Messaging] - Re: Running jboss-messaging client in the JBoss AppServer

2007-03-19 Thread mskonda
have you had a chance to look at this: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossMessagingUser_Enabling_access_to_remote_JBoss_Messaging_instance Hope this helps. Shout if not. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029421#4029421 Reply to the

[jboss-user] [JBoss Seam] - Re: Mail rendering fails with MyFaces exception

2007-03-19 Thread petemuir
Works fine for me too (well, I get an error connecting to that host but...) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029423#4029423 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029423

[jboss-user] [JCA/JBoss] - Re: Setting isolation level for certain Connection

2007-03-19 Thread [EMAIL PROTECTED]
Use the source Luke :-) ManagedConnection.cleanup() is invoked as part of the JCA spec contract when a connection is returned to the pool. | org.jboss.resource.adapter.jdbc.BaseWrapperManagedConnection | |public void cleanup() throws ResourceException |{ | snipped/ | |

[jboss-user] [JBoss jBPM] - Re: go download jPDL 3.2.GA, it's good for you

2007-03-19 Thread jcv
Hi, how do i use the form generator? i can't find any options View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029426#4029426 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029426

[jboss-user] [Messaging, JMS JBossMQ] - Re: Multiple persistence strategies in jbossMQ

2007-03-19 Thread [EMAIL PROTECTED]
What you've done is to deploy two different JBossMQs so unless you are looking up the correct connection factory for the correct topic it is not suprising that you will get a topic not found error. If you read the wiki carefully, you'll see that the NullPersistenceManager can be setup with a

[jboss-user] [JBoss Messaging] - Re: Running jboss-messaging client in the JBoss AppServer

2007-03-19 Thread [EMAIL PROTECTED]
anonymous wrote : loader constraints violated when linking org/jboss/remoting/InvokerLocator | mskonda wrote : have you had a chance to look at this: | | | | http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossMessagingUser_Enabling_access_to_remote_JBoss_Messaging_instance | | |

[jboss-user] [JBoss jBPM] - Re: Dev discussions?

2007-03-19 Thread kukeltje
nope, here View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029432#4029432 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029432 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: using a JBPM timer

2007-03-19 Thread kukeltje
in cvs.. there is no -src.tgz distribution or something like that View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029433#4029433 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029433

[jboss-user] [JBoss Seam] - What is the advantages of using pages.xml or JBPM page?

2007-03-19 Thread anarinsky
As I understand either pages.xml located in WEB-INF or the org.jboss.seam.core.Jbpm component page defined in components.xml can define page navigation. What is the advantages of using pages.xml or JBPM page? View the original post :

[jboss-user] [JBoss Seam] - Re: Mail rendering fails with MyFaces exception

2007-03-19 Thread petemuir
Are you using a standard JBoss 4.0.5.GA install with myfaces under jsf-libs/ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029436#4029436 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029436

[jboss-user] [JBoss Seam] - @Startup depends

2007-03-19 Thread monkeyden
I have the following APPLICATION scoped component which I want to startup when the app starts. As you can see, in the create method, I want to add the injected messages Map to permCache but despite the depends attribute, messages is not available. Is the value of depends a Seam component

[jboss-user] [Remoting] - Not able to subscribe to a temporary topic

2007-03-19 Thread sp4rt4n029
I try to create a temporary topic in a topic publisher and subscribe it using Seam Remoting, I get the following error: | java.lang.IllegalArgumentException: Cannot subscribe to a topic that is not allowed. Topic [JMS_TT2] is not an allowed topic. | at

[jboss-user] [JBoss Portal] - Re: Jboss portlet instance security module not working

2007-03-19 Thread afogleson
Even worse in 2.6 on the portal permissions when I try to change the role unchecked from view recursive to view and click update it just changes it back to view recursive in the view. (this for root/template - but it does the same on all the pages, not allowing me to change the perms) Al P.s.

[jboss-user] [JBoss Messaging] - Not able to subscribe to a temporary topic

2007-03-19 Thread sp4rt4n029
I try to create a temporary topic in a topic publisher and subscribe it using Seam Remoting, I get the following error: | java.lang.IllegalArgumentException: Cannot subscribe to a topic that is not allowed. Topic [JMS_TT1] is not an allowed topic. | at

[jboss-user] [JBoss Seam] - Re: ExceptionFilter without UserTransaction

2007-03-19 Thread youngm
Dan is probably using Spring managed Transactions. Which are not supported by Seam. Though he does bring up an interesting question is it or should it be possible to use Seam and JPA with a JPA Resource local TransactionManager? (em.getTransaction) Mike View the original post :

[jboss-user] [JBoss Seam] - Re: @Startup depends

2007-03-19 Thread monkeyden
By the way, this is just a JavaBean, which may be the root cause of my problems. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029457#4029457 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029457

[jboss-user] [Installation, Configuration Deployment] - What jars to be included with a remote client

2007-03-19 Thread tonylmai
Does anyone have a list of what JAR files I need (beside my app) to distribute with a remote client application? I am going nuts over one missing class after another. Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029460#4029460 Reply to the post :

[jboss-user] [JBoss Seam] - Re: JBoss Seam + Facelets + Richfaces Tree error

2007-03-19 Thread kot.filemon
I have different error but the component is the same aswell as configuration. from: http://jboss.com/index.html?module=bbop=viewtopict=104440 kot.filemon wrote : Anyone knows what am I doing wrong? | | I have one simple stateful bean which passes root node to tree component. When i try to

[jboss-user] [Beginners Corner] - What jars to be included with a remote client

2007-03-19 Thread tonylmai
Does anyone have a list of what JAR files I need (beside my app) to distribute with a remote client application? I am going nuts over one missing class after another. Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029462#4029462 Reply to the post :

[jboss-user] [Beginners Corner] - Re: What jars to be included with a remote client

2007-03-19 Thread tonylmai
BTW, I am using 4.0.5GA. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029464#4029464 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029464 ___ jboss-user mailing list

[jboss-user] [Installation, Configuration Deployment] - Re: What jars to be included with a remote client

2007-03-19 Thread tonylmai
BTW, I am using 4.0.5GA. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029463#4029463 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029463 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: selectManyListbox and SelectItem error

2007-03-19 Thread mgervais
Does somebody has already encountered this problem? Thanks Mickael View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029466#4029466 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029466

[jboss-user] [JBoss Seam] - Re: selectManyListbox and SelectItem error

2007-03-19 Thread mgervais
Thanks I'll have a look on it. Does s:selectitems provided by seam is packed in the JBoss Seam distribution? Is it the same for the EntityConverter? Mickael View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029470#4029470 Reply to the post :

[jboss-user] [JBoss Seam] - Re: java.lang.RuntimeException: Could not create Component:

2007-03-19 Thread avbentem
grdzeli_kaci wrote : i con't find any nesten exception. Well, it's surely there in the log you posted: grdzeli_kaci wrote : Caused by: java.lang.IllegalArgumentException: You must specify org.jboss.seam.core.init.jndiPattern or use @JndiName: authenticator | at

[jboss-user] [JBoss Seam] - Re: selectManyListbox and SelectItem error

2007-03-19 Thread petemuir
The behaviour you describe is correct. Take a look at the various ways of doing this in the seam ui example, the seam dvd store example, the seam booking example, or google for articles on jsf selectitems View the original post :

[jboss-user] [JBoss Portal] - Re: Jboss portlet instance security module not working

2007-03-19 Thread afogleson
By the way that only happens for me in internet explorer, in firefox I could change the pages security. There is a javascript error on the page in ie but I havent had a chance to run it through a debugger. Al View the original post :

[jboss-user] [JBossCache] - Re: Exception thrown when calling remove during after-comple

2007-03-19 Thread rworsnop
I've brought this up on the Hibernate forum: http://forum.hibernate.org/viewtopic.php?t=972301 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029479#4029479 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029479

[jboss-user] [JBoss Seam] - Re: selectManyListbox and SelectItem error

2007-03-19 Thread petemuir
s:selectItems is in 1.2.0, s:convertEntity is in 1.2.1 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029480#4029480 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029480 ___

[jboss-user] [JBoss Seam] - Re: JBoss Seam + Facelets + Richfaces Tree error

2007-03-19 Thread dustismo
Richfaces suffers from the same classloading problems as icefaces. Have you tried setting the usejbossslassloader=true (search the forums for instructions)? -Dustin View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029482#4029482 Reply to the post :

[jboss-user] [Remoting] - Re: SSL Connection: load a new keystore at runtime

2007-03-19 Thread [EMAIL PROTECTED]
There is a 2.2.0.Beta1 release in the JBoss repository (http://repository.jboss.com/jboss/remoting/2.2.0.Beta1/lib/). I am working on the 2.2.0.GA public release now (meaning will be on the downloads page for remoting and not just in the JBoss repository). View the original post :

[jboss-user] [JBoss Portal] - Re: Jboss portlet instance security module not working

2007-03-19 Thread [EMAIL PROTECTED]
How comes best javascript debuggers are on Firefox but bugs happen on IE ? ;) Thanks for the report i will look at it tomorrow unless someone (who would be very nice ;) )provide a fix before. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029485#4029485

[jboss-user] Re:- Subscribe to temporary topics

2007-03-19 Thread Chris
Is it possible to set up Seam Remoting to subscribe to a temporary topic? If so how would you get around having to set the allowed topics jndi name in one on the conf files? Is there a way to get a hold of the SubscriptionRegistry?Right now I try to subscribe to temporary topic and I am getting

[jboss-user] [JBoss Portal] - Changing the title of the CMS Portlet in 2.6 BETA1

2007-03-19 Thread vijayasagarin
I am using the CMS portlet instance in my portal. The title of the CMS portlet is shown as JBoss Portal. I want to change this title, where can i do that? I tried to change the title in jboss-portal.sar/portal-cms.sar/portal-cms.war/WEB-INF/portlet.xml but it didnt changed. Please help me in

[jboss-user] [JBoss Messaging] - Re: Running jboss-messaging client in the JBoss AppServer

2007-03-19 Thread sdhaliwal
I think I did not explain clearly what we are trying to do. We are not trying to run the jboss-messaging client code from an MDB which the provided link addresses. We have the JMS as you will have it from a stanalone client (running in its own JVM). However, we want to invoke it from a jboss

[jboss-user] [JBoss jBPM] - Sybase row limit

2007-03-19 Thread michaelholtzman
Greetings. The default installation of Sybase 12.x has a row size limit of roughly 1700 bytes ... which is exceded by a number of JBPM tables. Has anyone developed a workaround for this problem? I am getting some random cannot deserialize ... errors, which I think are related to the row size

[jboss-user] [JBoss Seam] - Navigation mechanism after seam-gen

2007-03-19 Thread anarinsky
Seam-gen allows one to create new entities or actions and link them to *.xhtml pages. However, I do not see any new entries in pages.xml. How seam navigates from a page to a bean in this case? Is it based on the correspondence in names of the action and the page? View the original post :

[jboss-user] [EJB 3.0] - sum() returning null?

2007-03-19 Thread SmokingAPipe
I'm doing an EJB query, where I'm getting the sum of a value of some objects. If that query doesn't match any objects (rows), the value being returned is null. Does this make sense, or is there some other problem in my query? View the original post :

[jboss-user] [JBoss jBPM] - Re: How to find out current node/state in process instance?

2007-03-19 Thread wfenthusiast
Most of the time u don't need to know which transition to activate (unless in special cases of forks, decisions etc..) ProcessInstance.signal() will find the default leaving transition from the current node where the root token is parked and signal it to the next node. If u really want to

[jboss-user] [EJB 3.0] - Re: sum() returning null?

2007-03-19 Thread SmokingAPipe
I did some experiments with some more queries, and indeed, it looks like if you take the sum() of an empty set of objects you get null, not zero. I just checked it and I get the same behavior in SQL itself. View the original post :

[jboss-user] [JBoss Seam] - Re: @Restrict - No redirection to Error Page

2007-03-19 Thread FabBoco
Gavin, thank you again form your help but I still am in the mess ! anonymous wrote : | If you are calling this method as a value expression during the render phase of the JSF lifecycle, its not going to work. What you need to do is understand the JSF and servlet specs: | | There is no

[jboss-user] [JBoss Seam] - Re: Issue with Seam and Tomcat 6 during tomcat startup

2007-03-19 Thread lle
Thanks Rich, According to your log snippet, you're using Tomcat 5.5 and not 6. I don't have any issues with Tomcat 5.5, only Tomcat 6. Again, thanks for your response. ly View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029506#4029506 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: XPDL and BPEL on JBPM

2007-03-19 Thread kukeltje
not with our tools, but if you find one that converts it correctly, you should be able to run it on jbpm. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029507#4029507 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029507

[jboss-user] [JBoss jBPM] - Re: How to build 3.2-ga from source?

2007-03-19 Thread kukeltje
there has never been a pom.xml file afaik so no, you do not miss anything. What errors do you get? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029509#4029509 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029509

[jboss-user] [JBoss jBPM] - Re: How to find out current node/state in process instance?

2007-03-19 Thread kukeltje
Often my real-life boss is not happy when I say the source is the best documentation, but often, in combination with good testcases it is. jBPM has numerous testcases and you'll see that by looking at them, that they will answer many of your future questions View the original post :

[jboss-user] [JBoss Seam] - Re: Dependent Fields in 2 Classes Best Practice?

2007-03-19 Thread svadu
May be you have another instance in the presentation view? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029510#4029510 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029510 ___

[jboss-user] [JBossCache] - Re: problem when attribute UseReplQueue is true...

2007-03-19 Thread vincent.marquez
I'm assuming this is a problem with Session replication, or are you using jbossCache on its own? I believe Manik is just asking if the objects your putting into the cache (or your session object) implement the serializable interface, and if the key your using is also serializable.

[jboss-user] [JBoss Portal] - Re: Caching in JBoss Portal

2007-03-19 Thread Antoine_h
you can see this post. http://jboss.org/index.html?module=bbop=viewtopict=100372 it works with 2.4 with 2.6, I don't know. changes may have been made, with use of JBossCache. In 2.4, the cache for rendering the portlets (cache of the fragments) is using the session, but not jboss cache. For

[jboss-user] [JBoss Seam] - Re: Dependent Fields in 2 Classes Best Practice?

2007-03-19 Thread gzoller
It's possible but I don't think so. My debug page shows one projectHome component in the Application context and no conversations when the Project summary page is loaded. I also determined that the getters that use the @Formula to compute the total in Project are being called (multiple times)

[jboss-user] [JBossWS] - Server-side NullpointerException when using ws-security

2007-03-19 Thread openyourmind
Hello, I have some problems using ws-security. My WS runs correctly without wssecurity, but when I activate it I get an strange server-side NullPointerException. My config is : - jboss 4.0.5.GA EJB3 config - jbossws-1.2.0.GA - jdk 1.5_08 This is what we get in the server log from the server

[jboss-user] [JBoss Portal] - Re: access to outer request/session from within portlet

2007-03-19 Thread Antoine_h
About the session : store the locale in the session, for easy access in other places than the portlet. - from the login.jsp, to have a i18n login page - in other jsp or jsf pages or to have the current choosen localed store somewhere global, if the user does not allow the cookie. I have not

[jboss-user] [JBoss Seam] - Re: ExceptionFilter without UserTransaction

2007-03-19 Thread dan.j.allen
I realize that it may seem silly to use Seam in a non-JTA environment because of all the wonderful features it offers when the app runs under that umbrella. However, I am experimenting with Seam in a completely stateless environment, where all transaction and session related stuff are hidden

[jboss-user] [EJB 3.0] - Re: Bundle jars within EAR?

2007-03-19 Thread asack
oskar.carlstedt wrote : Deploying the same file again, but without the jars log4j and commons-logging. Wolla!!, It seems to work. | | Isn't this a classloader bug/error? What I mean is. The files I put in my ear are those I want to use, especially in isolated mode. It shall not matter if a

[jboss-user] [JBoss Portal] - Re: NoClassDefFoundError exception related to filter

2007-03-19 Thread Antoine_h
for the login mechanism, you should look in the portal-server.war It is at \deploy\jboss-portal.sar\portal-server.war unpack the zip to work at it... more easy for testing. in the web.xml, you'll see the filters that are responsible for the authentication process. it should be a better place

[jboss-user] [EJB 3.0] - [Bug?] @EJB versus JNDI lookup problems within SLSBs

2007-03-19 Thread asack
I have 4.0.4.GA isolation/call by value on. Let me start simple, I have an EAR with a simple servlet WAR and a JAR containing one SLSB and its local implementation. The SLSB is bound to some place in JNDI space: @Stateless @LocalBinding ( jndiBinding=blah) public class HelpMe implements

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Obtaining dynamic connection

2007-03-19 Thread srki
Hello, I am using hibernate3 with EJB3 and I would like to obtain a new EntityManager from the connection-url, userName and password that are sent by the client? I am not sure what params a client might send so I can not setup my dataSources at compile time. Thanks, View the original

[jboss-user] [JBoss Seam] - how best to workaround lack of ServletContext at Startup

2007-03-19 Thread [EMAIL PROTECTED]
So I just wanted to get suggestions for how I can workaround not having access to the ServletContext during the phase when components tagged with @Startup and @Application get created. Here's my use case: I've got a component,which needs some one-off, time consuming initialization to be run

[jboss-user] [JBoss Seam] - Re: Dependent Fields in 2 Classes Best Practice?

2007-03-19 Thread gzoller
I'll amend my last reply. When I'm in my Expense screen adding a new Expense there is a conversation running with a ProjectHome instance in it (presumably containing a Project instance). This context ends when I return to the Project screen. Perhaps this is the instance being updated not

[jboss-user] [JBoss Seam] - Re: @Startup depends

2007-03-19 Thread monkeyden
I eventually figured out that Messages (org.jboss.seam.core.messages) was the component I needed for the resource bundle, rather than FacesMessages (org.jboss.seam.core.facesMessages). However, Messages is SESSION scoped and, naturally, there is no session at startup time. View the original

[jboss-user] [JBoss Seam] - Re: BUG: #{redirect.returnToCapturedView} does not work with

2007-03-19 Thread fhh
Still no luck... This seems to be a bug! I switched to page params but still the parameter is nul,l after a returning to the captured view. I ran this through the debugger and traced the bug down to org.jboss.seam.core.Pages.getViewRootValues(FacesContext facesContext). Things go wrong when

[jboss-user] [JBoss Seam] - Re: Navigation mechanism after seam-gen

2007-03-19 Thread [EMAIL PROTECTED]
Look at the *.page.xml files in the view directory. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029548#4029548 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4029548 ___

[jboss-user] [JBoss Seam] - Re: how best to workaround lack of ServletContext at Startup

2007-03-19 Thread petemuir
You could still use lazy creation, but schedule an access it early on (say 20s in) using an @Asynchronous method with @Duration (i think) so that it is ready to use. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029551#4029551 Reply to the post :

[jboss-user] [JBoss Seam] - EntityManager Questions

2007-03-19 Thread Stateless Bean
First sorry for this topic here on Seam forum but EJB forum seams to be dead. I'm newbie in EJB3.0, and need help. Can anyone help me to configure well my EntityManager and answer for my questions? My target is to get EntityManager working with persistence.xml configuration. and I read

[jboss-user] [JBoss Seam] - Re: Query with empty restriction

2007-03-19 Thread lightbulb432
I could catch the QuerySyntaxException and return an empty list, but is this the expected behavior from a query with an empty #{member.countries}? Instead, shouldn't it evaluate to SELECT c FROM Country c where c IN (NULL) instead of SELECT c FROM Country c where c IN () or something like

[jboss-user] [JBossWS] - Re: Webservice Client consumer

2007-03-19 Thread nean
openyourmind wrote : Hi Nean, | | If you check in the wsrunclient.sh you will see that you should set the vm options as follows: | | -Djava.endorsed.dirs=/[jboss_install_path]/jboss/jboss-4.0.5.GA/lib/endorsed | | Hope it helps | Open Your Mind i haven't wsrunclient.sh, i have

[jboss-user] [JBossWS] - Re: beginner needs help

2007-03-19 Thread nean
i have the same problem than you, it's a problem of mapping, like the object isn't known or built... So if someone have the solution... thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4029558#4029558 Reply to the post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Obtaining dynamic connection

2007-03-19 Thread srki
Is it possible to create an EntityManager at run time just by specifying database connection? I know that I can create an entitymanager just by specifying persistenceUnitName that is already configured in my oracle-ds.xml file. However, in this case I would like to add a new entry to

<    1   2   3   >