[jboss-user] [JBoss Seam] - Re: Problem with Hibernate sessions post-Seam2 migration

2007-11-30 Thread tangdazhu
I got the same exception with datasource can't find problem. i don't think this is caused by wrong jdbc driver, because it can't be found in seam 1.2. this exception only happened in seam2. Have anyone fixed this problem? View the original post :

[jboss-user] [JBoss Seam] - Re: Usage of @Restrict annotation with method parameters

2007-11-30 Thread rizzojo
Thank you guys ! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109182#4109182 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109182 ___ jboss-user mailing list

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: [3.2.3] [NoClassDefFoundError] Weird exception although

2007-11-30 Thread nicdo77
Help? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109180#4109180 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109180 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBossWS] - Re: Easiest Way to Consume Web Services from JBoss 4.0.5 EJB

2007-11-30 Thread [EMAIL PROTECTED]
Yes, you can use wsconsume with JBoss 4.0.5, however you have to upgrade the JBossWS it ships with the latest release. This should cover all you need to know to use wsconsume: http://jbws.dyndns.org/mediawiki/index.php?title=JBossWS_JAX-WS_Tools In particular, read the Client paragraph. View

[jboss-user] [JBoss jBPM] - Re: deploying jbpm 3.2.2 process archive in jboss 4.2.x

2007-11-30 Thread mputz
you should just make sure that the hibernate.cfg.xml is in your classpath, eg. put it in a separate folder (like '/config') inside your project and pick this up in the classpath definition: path id=libraries | !-- path to the config files -- | pathelement location=config/ |

[jboss-user] [JBoss Seam] - Re: Problems with links in pageflow pages based on templates

2007-11-30 Thread chawax
It still doesn't work ... The link is the same, the navigation configuration is the same, the only difference is that I use different components. So it must come from my navigation component. I added @BypassInterceptors annotation to my component (this is what is done with identity component,

[jboss-user] [JBoss Messaging] - Re: long time to reload messages in fail over state

2007-11-30 Thread timfox
Put your logging on trace, rerun it and look for errors in your logs. For some reason it looks like failover isn't completing on node 1. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109171#4109171 Reply to the post :

[jboss-user] [Microcontainer] - Re: migrating from ServiceMBeanSupport

2007-11-30 Thread jhalliday
Why the mbean XML? Umm, because I want operations on it exposed via. JMX? Just because we use MC internally in the app server, that does not mean JMX goes away. There are still likely to be 3rd party tools wanting to use JMX to manage the server, so I need some way to wire the service up as

[jboss-user] [JBoss Tools (users)] - Re: Migration from JBossIDE 1.6.0 to JBossTools 2.0.0.cr1

2007-11-30 Thread Achillix
Max thanx a lot for your response and for the JIRA entry as well! here is my .packaging | ?xml version=1.0 encoding=UTF-8? | configurations | archive destination= exploded=false name=SMA_SERVER_SIDE.jar used=true | folder excludes=

[jboss-user] [JBoss Seam] - Startup for factory methods in components.xml

2007-11-30 Thread sradford
Hi, The schema and dtd for components.xml 2.0 states that the startup attribute is allowed for the factory element. However, it does not appear to work and looking at the code org.jboss.seam.init.Init does not read this attribute, nor does FactoryDescriptor have a startup property. Is this an

[jboss-user] [JBoss Tools (users)] - Bad experience with JBossAS tools

2007-11-30 Thread Juergen.Zimmermann
As described at http://jira.jboss.org/jira/browse/JBIDE-1377 by screenshots and log entries the deployment process with JBossAS Tools is a nightmare. I'm absolutely happy with Hibernate Tools, RichFaces VPE, and the Project Archives of JBossAS Tools. However, the fact that my Eclipse

[jboss-user] [JBoss Seam] - Re: Trapping Seam Remoting AJAX errors.

2007-11-30 Thread samdoyle
Actually I think that JIRE is different I was looking for something like with Prototype Ajax.Request where you can specify on404 and onFailure handlers when submitting your request. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109428#4109428 Reply to the

[jboss-user] [JBoss and NetBeans] - Re: Netbeans 6, Java Persistence API, Web Service using Anno

2007-11-30 Thread jsolderitsch
phejl wrote : I some did more investigation with jboss 4.2.2 and jboss 5 beta2, here is what I observed (don't take it as an unchangeable fact). | With jboss 4 it seems to me that PersistentContext in servlet or webservice is ignored completely (jboss 4 is not ee 5 certified - provides ejb3

[jboss-user] [JBoss AOP] - Re: AspectJ handler pointcut designator ??

2007-11-30 Thread [EMAIL PROTECTED]
Hi, As of this date we don't have a handler pointcut designator. We have added after-thrown advices to JBoss AOP, though, that are called after an exception is thrown. Unfortunately, I'm afraid this is quite different from what you need. I have added a Jira issue to implement this

[jboss-user] [JCA/JBoss] - Re: MSSQL XA datasource throws RollbackException on cluster

2007-11-30 Thread vickyk
anonymous wrote : 2007-11-30 10:35:22,513 WARN [org.jboss.mq.sm.jdbc.JDBCStateManager] Error initialising state manag | er db The log contain the DEBUG/WARN messages and not the the ERROR one so these might be ignored :) View the original post :

[jboss-user] [JBoss Seam] - Re: Security Design Question

2007-11-30 Thread damianharvey
Set up a navigation rule that directs the user to your reactivation page from login (eg. based on some status): | navigation from-action=#{identity.login} | rule if=#{identity.loggedIn user.status == 'ACTIVE'} | redirect view-id=/normalHomePage.xhtml/

[jboss-user] [JBoss and NetBeans] - Re: Netbeans 6, Java Persistence API, Web Service using Anno

2007-11-30 Thread phejl
I some did more investigation with jboss 4.2.2 and jboss 5 beta2, here is what I observed (don't take it as an unchangeable fact). With jboss 4 it seems to me that PersistentContext in servlet or webservice is ignored completely (jboss 4 is not ee 5 certified - provides ejb3 and ee5 web apps,

[jboss-user] [JBoss Portal] - Re: Problem installing JBoss Portal

2007-11-30 Thread jamesmrush
mfb said his install was hangind on: [ProducerInfo] Refreshed registration information for consumer with id 'self' I am seeing the same thing. Main (only) difference appears to be that when he tried to access localhost:8080 he actually got something. I am running the jboss-portal-2.6.2.GA

[jboss-user] [JBoss Portal] - Re: When do you need to create additional instances of a por

2007-11-30 Thread afichtner
Thank you. Here is my portlet-instances.xml: ?xml version=1.0 standalone=yes? | !DOCTYPE deployments PUBLIC |-//JBoss Portal//DTD Portlet Instances 2.6//EN |http://www.jboss.org/portal/dtd/portlet-instances_2_6.dtd; | deployments |deployment |

[jboss-user] [JBoss Portal] - Re: When do you need to create additional instances of a por

2007-11-30 Thread afichtner
Huh, interesting. Although, unfortunately it's not finding the PortletBridge even with the correct package in portlet.xml: portlet | portlet-nameeHealthPortletBridge/portlet-name | portlet-classorg.portletbridge.portlet.PortletBridgePortlet/portlet-class | /portlet Gave me

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: 4.2.2 wont deploy my persistency unit

2007-11-30 Thread alllle
Forgot to mention that I was using SEAM. And I compared all the configuration files with one of the SEAM examples, didn't see any differences other than name references. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109481#4109481 Reply to the post :

[jboss-user] [JBoss AOP] - Re: duplicate method: _getAdvisor

2007-11-30 Thread [EMAIL PROTECTED]
Ryan, Let me know if you think that excluding the problematic classes would be a solution, or do you need to intercept them? Allowing to use patterns on the exclude property might be possible and fast (it may be a temporary solution, but at least you would be able of running your code without

[jboss-user] [JBoss Seam] - problem with exception handling

2007-11-30 Thread X490812
I put the following in pages.xml to test exception handling: | . | .exception | end-conversation/ | redirect view-id=/genericErrorPage.xhtml | | /redirect |/exception | | /pages | Here is genericErrorPage.xhtml | body | h:messages |

[jboss-user] [EJB 3.0] - Re: Table per class with different ID generators

2007-11-30 Thread alexg79
You can't have associations to the root class if it's just a MappedSuperClass -- it has to be an entity. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109493#4109493 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109493

[jboss-user] [JBoss Seam] - Re: External Client and Seam Security

2007-11-30 Thread agnadello
http://jira.jboss.org/jira/browse/JBSEAM-2332 Cheers! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109492#4109492 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109492 ___

[jboss-user] [JBoss AOP] - Re: duplicate method: _getAdvisor

2007-11-30 Thread [EMAIL PROTECTED]
Please, Ignore my previous post, exclude property allows you to define only the beginning of the class names you want to exclude... not a pattern. So, this wouldn't solve your problem. I'm trying to figure out a solution, or at least a temporary fast fix. View the original post :

[jboss-user] [JBoss Seam] - Re: No session context for @WebMethod-call

2007-11-30 Thread jsolderitsch
gena777 wrote : Sorry, configured, but didn't deploy. | | Thank you for the hint! | | Gena I just ran into the same problem but it appears that this file is deployed to my JBoss install. And I am seeing the error you reported still. Running with Seam 2.0.0GA and Jboss 4.2.2. What do

[jboss-user] [JBoss Seam] - Re: can't find datasource problem when mirgrate from seam1.2

2007-11-30 Thread tangdazhu
Well,I have put my -ds.xml file under WEB-INF and WEB-INF\classes and even META_INF of my application directory, but it all doesn't work! I don't understand why it is so hard for configuration. But if i put the -ds.xml under the {tomcat}/lib/deploy directory , it at least can find the

[jboss-user] [JBoss AOP] - Re: duplicate method: _getAdvisor

2007-11-30 Thread [EMAIL PROTECTED]
Ryan, Help is always welcome :) We are going to need to reproduce the error, so we can test our fix. Is it enough trying to intercept a simple example of hibernate? Or is there any aditional step we must follow to reproduce it? Second, in the mean time, wouldn't it be enough to use the

[jboss-user] [JBoss Seam] - Can Seam Remoting use JSON over XML?

2007-11-30 Thread samdoyle
There is quite a bit of overhead data returned in its present state. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109495#4109495 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109495

[jboss-user] [JBoss Seam] - Re: Trapping Seam Remoting AJAX errors.

2007-11-30 Thread samdoyle
Yes/No ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109484#4109484 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109484 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBoss Seam] - pages.xml restrict rule does not work in 2.0 GA

2007-11-30 Thread samdoyle
I had this rule by mistake in my pages.xml: | page view-id=/notificationAdmin.xhtml login-required=true | restrict#{s:hasRole('ultra-user')}/restrict | /page | There is no ultra-user role yet I can still access the notificationAdmin. An exception is thrown but I still can

[jboss-user] [EJB/JBoss] - Re: Using J2SE App. as the Server for an EJB3-based App.

2007-11-30 Thread waynebaylor
does your client have access to all the classes your sending on its classpath? as another alternative you could try using JCA to communicate with the j2se app. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109487#4109487 Reply to the post :

[jboss-user] [JBoss Tools (users)] - how to attach Javadocs to JBoss Runtime

2007-11-30 Thread vanyatka
Hi, I need to attach javadoc urls to the jar in the JBoss Runtime, however when I click on a jar (inside Package Explorer tab) in the Javadoc section I see this message anonymous wrote : The current class path entry belongs to container 'All JBoss Libraries [JBoss 4.2 Runtime]' which does not

[jboss-user] [JBoss Tools (users)] - Re: Bad experience with JBossAS tools

2007-11-30 Thread [EMAIL PROTECTED]
did you try the latest nightly build ? we have not been able to reproduce your issue... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109486#4109486 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109486

[jboss-user] [Security JAAS/JBoss] - error

2007-11-30 Thread jdsignature
in the following stackTrace: what does this mean? [org.jboss.web.tomcat.security.RunAsListener] jsp, runAs: null Thanks, 07-11-30 16:36:18,128 TRACE [org.jboss.web.tomcat.security.SecurityAssociationValve] Begin invoke, callernull 2007-11-30 16:36:18,128 TRACE

[jboss-user] [JBoss Portal] - Re: When do you need to create additional instances of a por

2007-11-30 Thread PeterJ
Yes, you need to create 2 new instances. In your portlet-instances.xml file is the correct place to do this, then you refer to the instances in your *-object.xml file. That has always worked fine for me. Could you post the declarations of the instances and the windows from your

[jboss-user] [JBoss Portal] - When do you need to create additional instances of a portlet

2007-11-30 Thread afichtner
I'm using JBoss 2.6.2 and I want to include the same portlet in a couple of different places in my portal. However, in each place, it would clip a different web page. In other words, each time I use the PortletBridge portlet, I'd want to set different preferences for it. Let's say I in one

[jboss-user] [JCA/JBoss] - Re: MSSQL XA datasource throws RollbackException on cluster

2007-11-30 Thread ratrask
If I delete the table it will recreate it without an error, but the next time that it starts up it will throw the same exception again. The point of a persistant queue is tjhat the state is stored in it. :) So I guess the question now is more a matter of what is the state of the system has it

[jboss-user] [JBoss Portal] - Re: Problem installing JBoss Portal

2007-11-30 Thread PeterJ
jamesmrush, you should have started a new topic, not appended to an existing one, especially since your problem is not related to the original problem posted. Are you able to access the home page or the jmx console? Try http://localhost:8080 and http://localhost:8080/jmx-console. Are you

[jboss-user] [JBoss Seam] - Custom Validator? How?

2007-11-30 Thread dparanhos
I could not make my custom validator work. It has an attribute and the attribute is always being null when the validate method is being called. Am I missing something? My faces-config.xml | validator | validator-idLevelValidator/validator-id |

[jboss-user] [JBoss and NetBeans] - Re: Netbeans + Seam Plugin = Success !!

2007-11-30 Thread ericcart
Netbeans 6.0 is at RC2. I´m using Netbeans 5.5 with: Seam Gen plugin https://nbfaceletssupport.dev.java.net/servlets/ProjectDocumentList?folderID=7280expandFolder=7280folderID=6012 Bye, Eric View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109456#4109456

[jboss-user] [JBoss AOP] - Re: Possible to advise EJB3 EntityBeans?

2007-11-30 Thread ryanrlamothe
We are currently having the exact same issue with JBoss AS 4.2.1 and JBoss AS 4.2.2. Having to define each and every EntityBean in our entire development and production environment in an AOP XML file is out of the question. This is a showstopper for us. Does anyone have a solution or a fix?

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: 4.2.2 wont deploy my persistency unit

2007-11-30 Thread alllle
I wonder if anyone has encountered the same problem described here? I am having the same problem. My EAR contains a module app.jar, which contains the persistence.xml file: | persistence | persistence-unit name=myDB | providerorg.hibernate.ejb.HibernatePersistence/provider

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

2007-11-30 Thread oleg_p
Hello, Is there a way to propagate identity from Swing client to EJB Tier? On the side of EJB Tier I'm using simple J2EE container-managed security. Thanks in advance, Oleg View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109447#4109447 Reply to the post

[jboss-user] [JBoss Seam] - Re: seam-gen : list.xhtml - Create Button issue

2007-11-30 Thread gonzalad
Created a separated issue from 1493 : http://jira.jboss.org/jira/browse/JBSEAM-2330 Thank you atao and pete ! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109444#4109444 Reply to the post :

[jboss-user] [JBoss Portal] - Re: Page security not working in 2.6.2GA?

2007-11-30 Thread nollie
Yes. The parent of the Weather page is the portal itself. The portal has given Role Unchecked view and viewrecursive permissions so that unauthenticated users can navigate the portal - all pages inherit those security settings so I don't have to set them again and again. What I want to do

[jboss-user] [JCA/JBoss] - Re: MSSQL XA datasource throws RollbackException on cluster

2007-11-30 Thread ratrask
I realized after I submitted the post, that I did not have the portion of the server.log that overlaps the time when the exception is logged. 2007-11-30 10:35:20,138 DEBUG [org.jboss.resource.adapter.jdbc.remote.WrapperDataSourceService] Started

[jboss-user] [JBoss Seam] - Re: Intergration with Maven2? And Seam Generating Test Cas

2007-11-30 Thread vcordaro12
1), yes entities are gnerated from a datasource, however I want to be able to execute generate-entities from my pom. So that in my nightly build process I can generate my entities. 2) so in our nightly build process my entities are created from our automated build process, continuum. 3).

[jboss-user] [JBoss jBPM] - How hard to create visual representation of the relationship

2007-11-30 Thread [EMAIL PROTECTED]
Management is all about pretty pictures and that's one of the reasons they like the BPM. (They may not understand the details of the pictures but it gives us a place to start when discussing application behavior) The JBoss designer does a good job of letting us creating pretty pictures for

[jboss-user] [JBoss Seam] - Re: Seam security / identity.logout

2007-11-30 Thread b.reeve
I think I put it the wrong way. What I meant to say is i have mapped | security:identity authenticate-method=#{loginBean.login}/ | and the loginBean.login method is something like | public boolean login(){ | boolean succeeded = loginAction.login(); | return succeeded; | }

[jboss-user] [JBoss Seam] - Re: Pageflow 3rd Party Site

2007-11-30 Thread IGx89
Something like the following might work: yoursite/checkout_page - yoursite/paypal_payment_page - (using JavaScript or META redirect) paypal.com - (using GET or POST with the conversation ID; not sure which would work better) yoursite/paypal_payment_page - yoursite/checkout_complete_page View

[jboss-user] [JBoss Seam] - Re: IllegalStateException: could not acquire lock on @Synchr

2007-11-30 Thread asookazian
when I removed *only* the breakpoint for the Seam remoting method, it works fine. Code for Seam remoting method below... public void setNoteData(Integer rowIndex, String colName, String siteId, String employeeNumber, Boolean icomsAccountApproved, Boolean securityLevelApproved, Boolean

[jboss-user] [JBoss Portal] - Re: Get page name during layout rendering

2007-11-30 Thread nollie
This might not be the elegant solution you were hoping for, but you can use request.getPathInfo(); and parse your page name out of it. That's what I'm doing in my menu.jsp, which is included in the layout.jsp. View the original post :

[jboss-user] [JBoss Seam] - Re: IllegalStateException: could not acquire lock on @Synchr

2007-11-30 Thread asookazian
Ok I was able to reproduce it. I had two debug breakpoints in Eclipse. One in the submit() method of the session-scope SFSB and one in a @WebRemote demarcated method in the same SFSB for Seam remoting use from a function in a .js file. Both methods were being called in this use case. When I

[jboss-user] [JBoss Seam] - IllegalStateException: could not acquire lock on @Synchroniz

2007-11-30 Thread asookazian
Don't know how to reproduce this one but it's happening on noteAction which is a session-scoped SFSB which is injected into a conversation-scoped SFSB. I have seen it a few times now even after I restart Jboss 4.2.2. What does this exception mean (i.e. why can't it acquire a lock?) |

[jboss-user] [JNDI/Naming/Network] - Re: getInitialContext with Stateful session bean throws exce

2007-11-30 Thread JoeArmstrong
Thanks for the information, I installed Java 1.5 and it works fine. Joe View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109404#4109404 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109404

[jboss-user] [JBoss Seam] - Security Design Question

2007-11-30 Thread javalover75
I am developing a subscription based site. When authenticating users I would like to be able to do the following. If the user has valid credentials, but the account is not active (through cancelation, credit card failure, etc.) I would like to redirect the user to a page that allows them to

[jboss-user] [JBossCache] - Re: org.jboss.cache.lock.TimeoutException: write lock for /

2007-11-30 Thread [EMAIL PROTECTED]
Hi Brian, This is actually for Intuit, whom I believe you're familiar with. I am only here for another couple of hours. I've used the support portal quite a few times before, and have unfortunately concluded that it will not help me when time is limited... so the forum post was a shot in the

[jboss-user] [JBoss jBPM] - Branching, merging and version management.

2007-11-30 Thread [EMAIL PROTECTED]
We follow the normal software model where we branch our source code and all related artifacts for each release. We also do this when we have a special project. This means that awlays have two or more active development branches. We keep all of our process definition XML files in our

[jboss-user] [Messaging, JMS JBossMQ] - Re: different order between sending and receiving(FIFO)

2007-11-30 Thread garneke
One last point. In addition to using a 2 second timeout on the receive call, I also pause for .25 seconds before calling receive again if I do timeout. I was hoping to avoid that race condition that I have read is possible ( or was possible ). However, remember that messages are moving at

[jboss-user] [JBoss AOP] - AspectJ handler pointcut designator ??

2007-11-30 Thread jtonic
AspectJ supports handling an exception via a catch block. Handler Pointcut Designator synopsis is: handler(TypePattern) So the following pointcut permits do something every time an exception is caught: pointcut handlingAnException(): handler(*); Is JBoss AOP supporting exception handling in

[jboss-user] [JBoss Messaging] - Re: Configure Queue Max Depth

2007-11-30 Thread ejb3workshop
But this configuration option says that messages beyound the set value will be dropped. Ideally I would like the JMS client to block and wait until there is space in the Queue again. anonymous wrote : 6.6.3.1.10. MaxSize | | A maximum size (in number of messages) can be specified for a

[jboss-user] [EJB 3.0] - Re: Table per class with different ID generators

2007-11-30 Thread waynebaylor
have you tried using @MappedSuperclass then? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109488#4109488 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109488 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Security Design Question

2007-11-30 Thread javalover75
Damian, Thanks for the quick reply. It is appreciated. This helped me get past my mind block and solve my problem. Thanks Again. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109470#4109470 Reply to the post :

[jboss-user] [JBoss Seam] - Re: seam-gen : list.xhtml - Create Button issue

2007-11-30 Thread atao
Sorry i wrote too quickly. Indeed it should have been anonymous wrote : The JBSEAM-1493 Seam-gen: allow return to original page should take this case into account. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109385#4109385 Reply to the post :

[jboss-user] [JBoss AOP] - Re: Catching LazyInitialization exception within an Intercep

2007-11-30 Thread jtonic
anonymous wrote : However in the general case where I have no knowledge of my object's getters/setters methods name, it is getting a bit more complicated. You are very right. I'm working also for a LIE solution, but I use some hibernate stuff. I have also the same problem that U've mentioned.

[jboss-user] [JBoss Portal] - Re: Get page name during layout rendering

2007-11-30 Thread syllant
Yes, this would work for breadcrumbs, even though you have to make assumptions to stop at portal root when reading parent path. But this would not work when building navigation menu beacause you need more information than page name. I use 'navigation' region to display top pages, and I build a

[jboss-user] [JBoss Getting Started Documentation] - Re: Error while starting JBoss

2007-11-30 Thread rahulprashar
Thanks Peter for the advice and yes we are using ORACLE. As per your advice, I'll check in the system and reply back to you. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109373#4109373 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problems Using Oracle datasource to run a Seam Test usin

2007-11-30 Thread svadu
You don't need to replace the hqldb-sa.xml. You can create an oracle data source, give it a unique name and let your application refer to the new data source. JBoss has examples of oracle data sources at ${JBOSS_HOME}/docs/examples/jca you only need to copy it to the deploy folder and

[jboss-user] [JBoss jBPM] - Re: Web based process designer

2007-11-30 Thread kukeltje
The goal of the GPD is that the combination of tech and businesspeople can work on the same model and together design a fully working process. We'd appreciate it if, insteadof going for a webbased designer, you guys could provide info on what you miss in the GPD and why you think non-tech

[jboss-user] [JBoss Seam] - Re: Intergration with Maven2? And Seam Generating Test Cas

2007-11-30 Thread svadu
vcordaro12 wrote : 1), yes entities are gnerated from a datasource, however I want to be able to execute generate-entities from my pom. So that in my nightly build process I can generate my entities. Not sure why you want your db schema lead your design. But you can make your entities

[jboss-user] [JBoss AOP] - Re: duplicate method: _getAdvisor

2007-11-30 Thread [EMAIL PROTECTED]
Sorry for the delay in getting back to you. This is a compatibility bug. I have created a Jira task for fixing it: http://jira.jboss.com/jira/browse/JBAOP-492 There is no timeline for the resolution of this bug, but your feedback is important for us to define the right priority for it.

[jboss-user] [JBoss Seam] - Re: Activation of SFSB and removal of it by Seam question

2007-11-30 Thread asookazian
[EMAIL PROTECTED] wrote : asookazian wrote : Is it safe to assume, then, that @In(create=true) will only instantiate a session-scoped SFSB once per session from a conversation-scoped SFSB as long as it is not destroyed somehow or nulled after the first instantiation? | | Yes. | | Post

[jboss-user] [JBossWS] - Re: JBoss WSSecurity and .Net Client

2007-11-30 Thread method_ben
I have the same problem, do you find a solution ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109433#4109433 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109433 ___

[jboss-user] [JBoss Tools (users)] - Re: How to run the test cases?

2007-11-30 Thread [EMAIL PROTECTED]
yup - bug in the embedded jboss bundled with Seam 2 prevents us from doing this at the moment. See/follow http://jira.jboss.com/jira/browse/JBIDE-1129 Only Seam 2 ear testing is affected by this. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109362#4109362

[jboss-user] [JBoss Tools (users)] - How to run the test cases?

2007-11-30 Thread SunFire
When I create a Seam EAR project there is also a ProjectName-test created. I also have created a sample action and the matching tests stubs have been created as well including the test-ng definition. How I am supposed to run the test now? I tried to just do a Run as... TestNG Suite after

[jboss-user] [JCA/JBoss] - Re: MSSQL XA datasource throws RollbackException on cluster

2007-11-30 Thread vickyk
anonymous wrote : Could not create table | with SQL: CREATE TABLE JMS_MESSAGES (MESSAGEID INTEGER NOT NULL, DESTINATION VARCHAR(150) NOT NULL, | TXID INTEGER, TXOP CHAR(1), MESSAGEBLOB IMAGE) | com.microsoft.sqlserver.jdbc.SQLServerException: There is already an object named

[jboss-user] [JBossCache] - Re: ClusteredCacheLoader + LOCAL CacheMode

2007-11-30 Thread nnnnn
From your description, it sounds like you might want to use LOCAL cache mode and a TCPCacheLoader. Have you looked into that? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109427#4109427 Reply to the post :

[jboss-user] [JBoss Messaging] - Configure Queue Max Depth

2007-11-30 Thread ejb3workshop
In Jboss MQ there was an option to configure the max depth of a queue as well as various others, such as InMemory. http://wiki.jboss.org/wiki/Wiki.jsp?page=ConfigQueue Is there similar options available on JBoss Messaging and where can I find them. I already searched the manual for the depth

[jboss-user] [JBoss Portal] - Re: Custom Layout that forces Quirks Mode

2007-11-30 Thread mping
If anyone cares, I created a custom layout that renders the base portlets ok and is in quirks mode. This enables some DOM/Javascript features that are disabled in XHMTL or strict mode. This was done in Jboss Portal 2.6.2 AS 4.2.1. The only relevant changes are: - removing the doctype

[jboss-user] [JBossWS] - Jboss web service and Websphere Client Access

2007-11-30 Thread [EMAIL PROTECTED]
Hi, I am using a webservice provided by a client of ours running in jboss 4.2.1(Recently migrated from JBoss 4.2). Before the migration I was able to access the webservice from my client generated by IBM WSDL2Java tool in RAD 7.0. But now when I access the webservice, I am getting a

[jboss-user] [JCA/JBoss] - Re: MSSQL XA datasource throws RollbackException on cluster

2007-11-30 Thread ratrask
Last things first: anonymous wrote : Do you mean to say that every time you restart the MSSQL server it listens on different ports? There should be some way to configure the fixed port , I wanted to try this but I have fedora installed on my laptop . | | Ronald , I don't believe that the

[jboss-user] [JBoss jBPM] - Re: Problems

2007-11-30 Thread kaledev
My xhtml pages are generated, and the forms.xml seems in order. Blank pages are all that I get. Unfortunately as I have said since my original post, the tutorial does not cover all the basics and I have never used the product. Therefore assuming that any person, or at least a smart one as you

[jboss-user] [JBoss Seam] - Re: Converter Issue

2007-11-30 Thread IGx89
very soon likely being ~4 weeks, based on the rate of bugfixing since 2.0.0.GA a month ago :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109414#4109414 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109414

[jboss-user] [EJB 3.0] - hibernate and inheritance

2007-11-30 Thread p.chevillon
Hello, I've a problem with requests on sublasses of a class tree (Entity beans). I got a org.hibernate.WrongClassException when trying to access data with a oneToMany relation. My architecture is: A B C | @Entity | @Table(name = A) | @Inheritance(strategy =

[jboss-user] [JBoss Tools (users)] - Re: JBossTools Visual Editor under Debian

2007-11-30 Thread [EMAIL PROTECTED]
Never mind. The problem goes away with the new CR1 release. Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109410#4109410 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109410

[jboss-user] [JBossWS] - Re: how to set headers in JAX-WS

2007-11-30 Thread camateusno
Hi friend, i have the same problem and i think that the jbossws do it a bad parse to some documents WSDL. If you know something thereon, i thank you very much, for several days working on it... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109400#4109400

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: nothing is displayed when formatting with a pattern of

2007-11-30 Thread meurisse
I messed up my tests :-( More testing showed that the problem is not related to tomcat. I reposted to the right forum (I hope). Sorry for the trouble! (But nobody seems to bother about this topic anyway) see http://www.jboss.com/index.html?module=bbop=viewtopicp=4109341 View the original post

[jboss-user] [JNDI/Naming/Network] - Re: HELP! Can't connect to 1099?

2007-11-30 Thread McJava1967
I'll give it a try. It's sunny and I'm officially on vacation today, so it may be tomorrow before I respond again. But again, thanks... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109342#4109342 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Problems

2007-11-30 Thread anuragpaliwal
Hi All, I am also currently exploring the jBPM and have got the same issues regarding xHTML. I can see the generated xHTML file and those files have got entry in forms.xml as well. Inspite of that I always get blank page. Moreover, I never managed to give custom names to variables while

[jboss-user] [JBossWS] - Re: Jboss web service and Websphere Client Access

2007-11-30 Thread [EMAIL PROTECTED]
Richard, It happens when when you get soapbody out of the message in the application code in the server side. In the client side I get env:Envelope xmlns:env=http://schemas.xmlsoap.org/soap/envelope/; env:Header/ env:Body env:Fault env:Server

[jboss-user] [Messaging, JMS JBossMQ] - Re: different order between sending and receiving(FIFO)

2007-11-30 Thread garneke
I am seeing basically the same issue as the original poster - however, I can find no solution. -I am using multiple Solaris 8 platforms with older hardware. -I have experienced the problem on both jboss v4.0.5GA and v4.2.2GA. -I am using a default jboss configuration with the one exception

[jboss-user] [JBoss Seam] - Re: @Startup and Seam interceptor

2007-11-30 Thread xinhua
[EMAIL PROTECTED] wrote : So how does it not work? Does the interceptor run? Does it run and not set the values? nothing happened. @Startup is ignored also. Interceptor does not run. i put a @Create in this @Startup seam component, if my annotation @Kleber is there, @Create function doesnt

[jboss-user] [JBoss Seam] - Re: Modifying Hibernate validator msgs

2007-11-30 Thread [EMAIL PROTECTED]
Yes. Start a new topic with your issue. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109340#4109340 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109340 ___ jboss-user mailing

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Using @Id and @Enumerated in the same column does not work

2007-11-30 Thread alexg79
Hibernate creates a primary key column of type bytea instead of integer if I use @Id and @Enumerated together in the same field. I guess I should file a JIRA issue? Oh yeah, I'm using Postgresql 8.2.5. View the original post :

[jboss-user] [JBoss Seam] - ejb3/seam-gwt-remoting/gwt security integration

2007-11-30 Thread hartfordd
Jboss 4.2.1 Seam 2.0.0.GA Security with JAAS as layed out here in GWT web app components.xml file: http://docs.jboss.com/seam/2.0.0.GA/reference/en/html/security.html#d0e7008 *Seam GWT-remoting *GWT Web Application (i.e. browser/javascript only web client). JIRA to be opened to attach sample

[jboss-user] [JBoss Seam] - Re: Modifying Hibernate validator msgs

2007-11-30 Thread [EMAIL PROTECTED]
has this been fixed? I am noticing the same issue using Seam 2.0 GA with Jboss 4.2 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4109334#4109334 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4109334

[jboss-user] [JBoss Messaging] - Load Balancing Policy

2007-11-30 Thread ejb3workshop
I am trying to get an application deployed on a cluster of 3 machines of different configuration. Once of the machines is a QuadCore and the others a P4's. When I submit a large number of messages to the cluster both P4 are running at 100% CPU utilisation which the QuadCode is merely sitting at

[jboss-user] [JNDI/Naming/Network] - Re: Configuring persistence unit and accessing EntityManager

2007-11-30 Thread jaikiran
anonymous wrote : @WebService() | @PersistenceContext(name = persistence/LogicalName, unitName = MissionStatusProjectPU2) | public class MissionStatusService { | | EntityManager em; | | public MissionStatusService() { | | try { | Context ctx = (Context) new

  1   2   3   >