[jboss-user] [JNDI/Naming/Network] - Re: TransactionManager not bound

2007-06-27 Thread bmcgovern
I'm using 4.0.5GA and got the same issue. I'm also trying it on 4.2.0.GA and same issue. Is it bound under a different name or is it using MBean only. Any idea how to reference an Mbean with spring? I've been stuck on this for days. View the original post :

[jboss-user] [JBoss Seam] - Re: best way of using application scope constants?

2007-06-27 Thread [EMAIL PROTECTED]
SFSBs throw exceptions if accessed concurrently by multiple threads. (Unless you add an @Synchronized annotation, which will affect scalability.) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058274#4058274 Reply to the post :

[jboss-user] [JBoss jBPM] - JBoss bpel arhitecture

2007-06-27 Thread lex_szoke
what do i need to get bpel running on a jboss application server? who is actually executing the workfloe? please provide me some details about the arhitecture that is needed to run a bpel process on jboss thanks View the original post :

[jboss-user] [JBoss Seam] - Re: process not being created

2007-06-27 Thread kgoedert
Yes... here is the interface @Local public interface RequestSystem { public String newRequest(); public String managerApproval(); public void destroy(); public List getPossibilities(); public void setPossibilities(List poss); public Integer getP();

[jboss-user] [JBoss jBPM] - How to monitor the process flow?

2007-06-27 Thread wangdongfox
I use the jBPM to implement a batch process, but I want to monitor the running status of batch process when it is working, and when some exception happened and the batch process shuts down suddenly, I want to restart the batch process, and the same time the finished task can't run again, how to

[jboss-user] [JBoss Seam] - Re: Handling database exceptions

2007-06-27 Thread shakenbrain
Understood. Gavin, thanks for your response. Getting back to validating then, it appears that using a @Validator class causes the session to go invalid when it throws a ValidatorException, but only on the whole form submit (it works if you do a partial form submit using ajax4jsf on just that

[jboss-user] [Javassist user questions] - How do I automate close of Windows comand line Interface?

2007-06-27 Thread leaustin
When script below runs, the Windows CLI remains open until manually closed. I want to run as a background process but, need to force the CLI to close once the command has executed to prevent the process from hanging. Any/All suggetions appreciated. Thanks, lea main(); function main() {

[jboss-user] [JBoss Seam] - Re: Problem with el parameter in dataTaqble

2007-06-27 Thread amitev
That was exactly the problem. Thank you for the help! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058283#4058283 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058283 ___

[jboss-user] [JBoss jBPM] - does not create the instance

2007-06-27 Thread ricardomarques
Hi i'm trying start a new process definition instance, but by something that i don't understand i can't. I get no output on deploy and on creating the new instance, i have'd checked the database, the instance isn't created. The process definition: | ?xml version=1.0 encoding=UTF-8? | |

[jboss-user] [JBoss Seam] - Problem in seam-gen reverse engineered database

2007-06-27 Thread dbinder
Hello, I'm new to jboss-seam and I wanted to demonstrate the power of seam and seam-gen to my co-workers and bosses. I tried reverse engineer a recent application we developped to show the time that should have been spared. but ... I ended up with exceptions (always of the same kind) the

[jboss-user] [JBoss Seam] - Re: Seam Maven2

2007-06-27 Thread [EMAIL PROTECTED]
After :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058289#4058289 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058289 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBoss Seam] - Re: Injection in Seam POJO

2007-06-27 Thread [EMAIL PROTECTED]
Post the NPE View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058290#4058290 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058290 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Problem with injecting EntityManager when invoking actio

2007-06-27 Thread tuxzilla
Ok, it turned out the problem has nothing to do with AJAX submission. The form has a hidden field which I bound it to sendToFriend.entityIdField property. If I remove this property, everything works fine. But I do need this property to pass the id of the entity to sendToFriend bean. Here is

[jboss-user] [JBoss jBPM] - Re: How to use FindTaskInstances in multiple transitions?

2007-06-27 Thread cristian_e
MindTheGap wrote : Ok, thats right! | But in this case, findTaskInstances work? | | Thanks! findTaskInstances(actorID) shows you just the taskInstances who's actorID equals the parameter and that are currently open (not ended). The actual HQL query been done is: select ti | from

[jboss-user] [JBoss jBPM] - Re: [jBPM-BPEL]Endpoint does not contain operation metadata?

2007-06-27 Thread rainstar79
Maybe I should post the code, which I produced with the Eclipse BPEL designer: This is SampleProcess.bpel ?xml version=1.0 encoding=UTF-8? | bpws:process xmlns:bpws=http://schemas.xmlsoap.org/ws/2004/03/business-process/; | xmlns:ns=http://SampleProject/SampleProcessArtifacts; |

[jboss-user] [Installation, Configuration Deployment] - TimerTask Thread stopped

2007-06-27 Thread subramaniam.venkat
Hello All, In my application i am using JDK's TimerTask class to pool a directory. But the TimerTask is stopping exactly at 11:59:59 (Noon). There is no exception is thrown.I took the truss output and found there is error occurring. My application is running on JDK version 1.4.2 Solaris version

[jboss-user] [JBoss Seam] - @Asynchronous / Conversations / Transactions Best Practices

2007-06-27 Thread chane
I have an asynchronous method started from a SLSB. I know I can access the entitymanager in the async SLSB, is it possible to have Conversations or some type of fine grained transaction control. My async method takes a list of records and iterates over each record. I need to have the

[jboss-user] [JBoss Seam] - Re: Handling database exceptions

2007-06-27 Thread [EMAIL PROTECTED]
It will only happen if (a) the EM gets enlisted in a tx and (b) the tx gets rolled back. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058303#4058303 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058303

[jboss-user] [JNDI/Naming/Network] - Unexpected exception caught: javax.naming.NameNotFoundExcept

2007-06-27 Thread sekhrivijay
Hello, I am trying to develop a simple jsp web page that use ADF faces and an session EJB with toplink. The simple jsp page only displays the contents of the database table on the web. I followed a procedure mentioned in Jdeveloper tutorial to make 3 projects a) datamodel with seesion EJB and

[jboss-user] [JBoss Seam] - Seam 2.0 BETA

2007-06-27 Thread [EMAIL PROTECTED]
[ulr]http://blog.hibernate.org/cgi-bin/blosxom.cgi/2007/06/27#seam2beta[/url] Three months to the day after the release of Seam 1.2.1, Seam2 has entered its beta phase. The Seam 2.0 codebase is more robust, better organized, better documented and is designed to take Seam beyond the world of

[jboss-user] [Remoting] - Re: EJB3/Socket invoker - connection timeouts

2007-06-27 Thread gurgstar
Hey Ron, How would you recommend javajedi work around this issue until he can upgrade to 4.2.0? Could he replace, say, the socket invoker with the rmi invoker? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058306#4058306 Reply to the post :

[jboss-user] [EJB/JBoss] - What append when a Session bean timed out?

2007-06-27 Thread buggsbunny101
Hello all, I want to know what append when a Stateful session bean meet it's timeout. What do the container? Does it call the close method? Simply destroy the bean? What else? I found many informations about setting timeout but nothing about this. Thank's View the original post :

[jboss-user] [JBoss Seam] - Re: Hot redeployment

2007-06-27 Thread karolkarol
What about hot redeployment of language resource files. It looks like it is not hot deployed currently. Am I wrong? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058310#4058310 Reply to the post :

[jboss-user] [EJB 3.0] - Re: [Microsoft][SQLServer 2000 Driver for JDBC]Database chan

2007-06-27 Thread ruchi123456
Please suggest why is the database being ignored. Regards, Ruchika View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058311#4058311 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058311

[jboss-user] [JBoss jBPM] - Re: How can I split storage scheme JBPM and general?

2007-06-27 Thread copperschnack
Hi slogger, we are getting close to what you want, but we are not there yet. We currently utilize two different Hibernate configuration files for EJB3 Entities (via persistence.xml) and JBPM (via jbpm.cfg.xml). When we tried to split up XA transaction enabled sessions with one Hibernate

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Tomcat Java 5.0 problem, on a 6.0 JDK...

2007-06-27 Thread DeanoUK
Hi... Using jboss-4.2.0.GA on Windows and Sun JDK jdk1.6.0_01. No other instances of Java are on the machine, nor have they ever been installed. I'm getting this back when trying to use generics in a JSP: javax.servlet.ServletException: org.apache.jasper.JasperException: Unable to compile class

[jboss-user] [JBoss Seam] - Re: Handling database exceptions

2007-06-27 Thread shakenbrain
ValidatorException being thrown shouldn't cause the transaction to roll back, right? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058315#4058315 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058315

[jboss-user] [JBoss Seam] - action bean managed entity: nullable Short value cannot be n

2007-06-27 Thread enzhao
Always got a IllegalArgumentException when I tried to input a null value for a field (type Short) which was annotated with @Column(...nullable=true), exactly the same managed entity, nullable fields with the type of String nulled well. I did write required=false in the xhtml file, for the Short

[jboss-user] [JNDI/Naming/Network] - Re: Exception javax.naming.NameNotFoundException

2007-06-27 Thread sekhrivijay
Hello, I am trying to develop a simple jsp web page that use ADF faces and an session EJB with toplink. The simple jsp page only displays the contents of the database table on the web. I followed a procedure mentioned in Jdeveloper tutorial to make 3 projects a) datamodel with seesion EJB and

[jboss-user] [JBoss Seam] - Re: Handling database exceptions

2007-06-27 Thread [EMAIL PROTECTED]
It did until this latest release (2.0beta) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058319#4058319 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058319 ___ jboss-user

[jboss-user] [Microcontainer] - Sourices for 1.0.2

2007-06-27 Thread [EMAIL PROTECTED]
anonymous wrote : | | Fernando Nasser wrote: | I need to find the sources for the microcontainer sources (including | microkernel, container and dependency modules) that was used to build | | | | I can see a | |

[jboss-user] [JBoss Seam] - Re: Nullpointer on passivateEntity (current CVS)

2007-06-27 Thread lcoetzee
I have hacked down my application as much as I could. Hopefully you will be able to make sense of it ;-) http://jira.jboss.com/jira/browse/JBSEAM-1564 Thanks L View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058321#4058321 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Use jsf and seam navigation rule together

2007-06-27 Thread jimmy6
Can i use both together? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058322#4058322 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058322 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - selectDate not popping up on click

2007-06-27 Thread c_eric_ray
link href=../css/date.css rel=stylesheet type=text/css / | | h:inputText id=startDateInput value=#{licensePoolEntity.startDateAsDate} | s:convertDateTime pattern=MM/dd// | /h:inputText | s:selectDate for=startDateInput startYear=2007 endYear=2099 format=MM/dd/yyy | img

[jboss-user] [JBoss Seam] - Re: params in pageflows?

2007-06-27 Thread Delphi's Ghost
enhanzo : I think the problem there is that the information has to cross the conversation boundary. The bean receiving the param needs to exist in the next page's conversation, and the entity containing the param exists only in the previous conversation which we probably just ended and is

[jboss-user] [JBoss Portal] - Re: JBoss Portal Server start up problem

2007-06-27 Thread [EMAIL PROTECTED]
Additionally, if you don't intend to use WSRP, you can remove portal-wsrp.sar from jboss-portal.sar without impacting the rest of Portal. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058327#4058327 Reply to the post :

[jboss-user] [JBoss Seam] - Re: action bean managed entity: nullable Short value cannot

2007-06-27 Thread enzhao
My fault, in the entity class, the field was declared as private short instead of private Short Sorry! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058328#4058328 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Problem with injecting EntityManager when invoking actio

2007-06-27 Thread Delphi's Ghost
As a possible suggection, did you put getters and setters on the entityIdField and in any interface that the bean implements? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058329#4058329 Reply to the post :

[jboss-user] [JBossCache] - Re: Apparently losing data

2007-06-27 Thread genman
If there is no eviction policy, then regardless of the cache loader configuration, all the cache data is kept in memory. Now, the data might fail to be stored using a put(). I would suggest creating a separate log4j appender that captures all the debug logs for org.jboss.cache, that rolls over

[jboss-user] [Management, JMX/JBoss] - user defined mbeans - Notification Broadcaster

2007-06-27 Thread konkimalla
I am planning to use JBoss JMX Services and create a user defined mbean and make it as a notification broadcaster. I have successfully registered the mbean and can invoke its opreations fromt the Servlet. However, I am getting the following error when trying to register a listener to this

[jboss-user] [JBoss Seam] - Re: params in pageflows?

2007-06-27 Thread koenhandekyn
i have a related question : i want users to be able to configure there 'home' page ( the main page they use ). i tried to use an EL statement in a redirect statement inside pages.xml but it doesn't get resolved ??? any suggestions on how to have a the home page stored inside the session and

[jboss-user] [JBoss Seam] - Re: Problem with injecting EntityManager when invoking actio

2007-06-27 Thread tuxzilla
Yes I do have getters and setters for the property. It is a POJO. I finally found out the solution. It is simply adding (required=false) in the entityManager annotation. This is anti-intuitive because you'd expect entityManager to always be available. But it seems that when the UIInput

[jboss-user] [Messaging, JMS JBossMQ] - Re: durable subscriber setup

2007-06-27 Thread ssuyamboo
Hey, What did I hijack? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058334#4058334 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058334 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Use jsf and seam navigation rule together

2007-06-27 Thread [EMAIL PROTECTED]
yes View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058335#4058335 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058335 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [JBoss Seam] - Re: Injection in Seam POJO

2007-06-27 Thread ector7280
Here it is: anonymous wrote : | 13:16:19,375 ERROR [ExceptionFilter] uncaught exception | javax.servlet.ServletException: Error calling action method of component with id borrower:save | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:152) | at

[jboss-user] [Management, JMX/JBoss] - Re: user defined mbeans - Notification Broadcaster

2007-06-27 Thread [EMAIL PROTECTED]
You also need declare that the mbean implements the NotificationBroadcaster interface. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058337#4058337 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058337

[jboss-user] [JBoss jBPM] - Problem migrating to 3.2.1

2007-06-27 Thread kosulin
After i migrated my server to jbpm 3.2.1, I see the following exception during the server start: 3:13:18,426 ERROR [[/jbpm-console]] Exception sending context initialized event to listener instance of class com.sun.faces.config.ConfigureListener ava.lang.NoClassDefFoundError:

[jboss-user] [JBoss Seam] - Re: params in pageflows?

2007-06-27 Thread Delphi's Ghost
I think view-ids are used as identifiers as much as a url, hence there is no EL interpolation done on them. If you notice, anywhere a view is referenced for redirection, the parameters for the view are separate as opposed to part of the view-id. I did think about my problem and whether EL

[jboss-user] [JBoss Seam] - Re: params in pageflows?

2007-06-27 Thread Delphi's Ghost
Oviously that should have been : | String returnHome() { | return homePage; | } | View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058342#4058342 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058342

[jboss-user] [JBossWS] - disabling wsdl publication

2007-06-27 Thread chlong
I am currently running a fresh install of JBoss 4.2.0. I am using JBossWS with EJB3 for web services. I have reviewed the WebContext annotation, but it does not appear to provide a way to suppress the publication of the wsdl on server startup (only allows me to secure it). I understand the

[jboss-user] [JBoss Portal] - Question about sessions in the portal

2007-06-27 Thread glarenzie
Session is created in login and joined post login but recreated after header and tabs.jsp true/false The reason I believe this to be true is I get the same session ID all the way through the process however the session create date changes for the session object when accessed from a portlet,

[jboss-user] SQL Transaction active very long

2007-06-27 Thread FEj
Hi guys, I've problem with long sql transaction active and I want kill this one. In many case I've query long plus 20 minutes, and this cause a db slowness. Can I kill transaction active for plus 15 minutes? Thanks FEj PS: sorry for my english ;-)

[jboss-user] [JBoss Seam] - Parametrized Method Expression: only with facelets?

2007-06-27 Thread bgrossi
Why Seam's parametrized method expression only work with Facelets? I want to use SeamExpressionFactory and ParamMethodExpression whithout Facelets and I can't.. I think it can work well whithout Facelets, no? There are any plans to remove facelets' dependency on this API? View the original

[jboss-user] [JBoss Seam] - Re: Parametrized Method Expression: only with facelets?

2007-06-27 Thread [EMAIL PROTECTED]
Use Seam2. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058346#4058346 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058346 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: async pain

2007-06-27 Thread estaub
See (lengthy) update on http://jira.jboss.com/jira/browse/JBPM-983 -Ed Staub View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058347#4058347 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058347

[jboss-user] [JBoss Seam] - Re: Seam 2.0 BETA

2007-06-27 Thread [EMAIL PROTECTED]
Note that this release was tested on the following platforms: * JBoss 4.2 * Tomcat 6.0 * GlassFish V2 and V1 * WLS 9.2 * OC4J 11g Technology Preview It can be made to run on JBoss 4.0.5 by upgrading the AS to support JSF 1.2 (instructions in the documentation). We have had problems deploying

[jboss-user] [JBoss Seam] - How to force validation of Seam components bound to the UI t

2007-06-27 Thread grettke_spdr
Hi folks, Due to our architecture we are binding Seam components to the UI that happen not to be JPA entities. Still, we would like to define the component validations using the Hibernate Validator annotations. Out of the box, when we use the validateAll tag, the validations don't get

[jboss-user] [JBoss Seam] - Re: How to force validation of Seam components bound to the

2007-06-27 Thread [EMAIL PROTECTED]
* classes do *not* need to be entities to be validated by s:validateAll * @IfInvalid has been deprecated for a long time and was removed from Seam2 So you should figure out why s:validateAll was not working for you. View the original post :

[jboss-user] [JBossCache] - Is it correct application of JBoss Cache

2007-06-27 Thread [EMAIL PROTECTED]
At present we are caching some of the frequently used domain parameters in home grown caching solution. We are using JBoss AS 4.0.5 AS and all our domain objects (Holding various parameter values required for business logic) are implemented as POJO's. We are looking at JBoss Cache as

[jboss-user] [JBoss Seam] - Seam 2 Beta: XSD missing for transaction: and web: namespace

2007-06-27 Thread ASavitsky
Unless I'm using the wrong URLs, it looks like the XSD definitions are missing for transaction and web namespaces. Here's my components.xml: ?xml version=1.0 encoding=UTF-8? | components xmlns=http://jboss.com/products/seam/components; | xmlns:core=http://jboss.com/products/seam/core;

[jboss-user] [JBoss Seam] - Re: Seam 2 Beta: XSD missing for transaction: and web: names

2007-06-27 Thread [EMAIL PROTECTED]
Sorry - that's been fixed. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058362#4058362 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058362 ___ jboss-user mailing list

[jboss-user] [Installation, Configuration Deployment] - Application Demployment Question

2007-06-27 Thread bluzeppelin
I am not to familiar with JBoss. I have an open-source application (Hyperic-HQ) that runs in a built-in instance of jboss. I wanted to put another application in that same instance (for simplicity). I placed the applications war file in the deploy directory and the deployment fails. I am using

[jboss-user] [JBoss Seam] - Re: Seam 2.0 BETA

2007-06-27 Thread ylazzari
Out of curiosity, is the jboss-el a seperate project or will it stay embedded inside the Seam project? I know I can get the source at http://anonsvn.jboss.org/repos/jboss-el/ but there doesn't seem to be any branches or tags yet. I was just curious to see if I could attach a version number

[jboss-user] [JBoss Seam] - Re: Seam 2.0 BETA

2007-06-27 Thread [EMAIL PROTECTED]
This has not really been decided yet. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058376#4058376 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058376 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: How to force validation of Seam components bound to the

2007-06-27 Thread grettke_spdr
[EMAIL PROTECTED] wrote : * classes do *not* need to be entities to be validated by s:validateAll | * @IfInvalid has been deprecated for a long time and was removed from Seam2 | | So you should figure out why s:validateAll was not working for you. We are using the s:decorate, and in

[jboss-user] [JBoss Seam] - Re: How to force validation of Seam components bound to the

2007-06-27 Thread [EMAIL PROTECTED]
Well, thats a FAQ. JSF validators cannot validate null values. So @NotNull is ignored. You need to use required=true for that. Then you can use Hibernate Validator annotations for validating the entered value. View the original post :

[jboss-user] [Installation, Configuration Deployment] - Re: Application Demployment Question

2007-06-27 Thread jaikiran
Whats the error you are seeing? Post the exception stacktrace View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058387#4058387 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058387

[jboss-user] [JBoss Tools (users)] - Re: Couldn't install eclipse plug-ins

2007-06-27 Thread Quessir
I'm completely sured that there is the bug in JBossTools. 'Cause plug-in org.eclipse.wst.common.project.facet.core (1.1.0) is from previous releases of WTP. I guess WTP 1.5.2 or 1.5.3. And this errors appears not only in update, but also when i try to disable JBoss AS. It shows the same error.

[jboss-user] [JBoss Seam] - Re: How to force validation of Seam components bound to the

2007-06-27 Thread grettke_spdr
[EMAIL PROTECTED] wrote : Well, thats a FAQ. JSF validators cannot validate null values. So @NotNull is ignored. You need to use required=true for that. Then you can use Hibernate Validator annotations for validating the entered value. Right, I remember reading about that bit, JSF won't

[jboss-user] [Beginners Corner] - Error running JBoss AS for first time under Fedora

2007-06-27 Thread EnriqueI
= JBoss Bootstrap Environment JBOSS_HOME: /usr/jboss JAVA: java JAVA_OPTS: -Dprogram.name=run.sh -Xms128m -Xmx512m -Dsun.rmi.dgc.client.gcInterval=360 -Dsun.rmi.dgc.server.gcInterval=360

[jboss-user] [Clustering/JBoss] - Re: problem caused by distributable/

2007-06-27 Thread ddai
My boss is reluctant to change the codes. Is there something that JBoss can do to solve this? Thanks!!! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058394#4058394 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058394

[jboss-user] [Beginners Corner] - Re: Error running JBoss AS for first time under Fedora

2007-06-27 Thread jaikiran
anonymous wrote : 12:25:58,645 INFO [ServerInfo] Java VM: GNU libgcj 4.1.1 20070105 (Red Hat 4.1.1-51),Free Software Foundation, Inc. Instead of this, use the Sun Java JDK (maybe 1.4 or 5.0) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058396#4058396

[jboss-user] [JBoss jBPM] - Re: How to use FindTaskInstances in multiple transitions?

2007-06-27 Thread jgreiner
Here is the java code | JbpmConfiguration jbpmConfiguration = JbpmConfiguration.getInstance(); | jbpmContext = jbpmConfiguration.createJbpmContext(); | GraphSession graphSession = jbpmContext.getGraphSession(); | | List

[jboss-user] [JBoss Seam] - @Intercept(NEVER) with Seam 2.0

2007-06-27 Thread mgrouch
What should be now instead of @Intercept(NEVER) in Seam 2.0? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058398#4058398 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058398

[jboss-user] [JBoss Seam] - actions defined in pages.xml

2007-06-27 Thread youngm
I'm attempting to get the hang of pages.xml. If I do: | page view-id=/list.xhtml | navigation if-outcome=detail | render view-id=/detail.xhtml/ | /navigation | /page | page view-id=/detail.xhtml

[jboss-user] [Installation, Configuration Deployment] - Hessian Connector in catallina container (JBoss 4.0.5 -- No

2007-06-27 Thread loumaus
hi there ... facing a problem i cannot solve myself .. I want to add a hessian service to my war as described at http://www.caucho.com/resin-3.0/protocols/tutorial/hessian-ioc/index.xtp for resign. This is the key excerpt from the site: resign-web.xml == ... servlet

[jboss-user] [Beginners Corner] - Re: Error while startup for JBoss 5.0.0 Beta2

2007-06-27 Thread jaikiran
anonymous wrote : I have out of box jBoss 5.0.0 Beta2 installation. My Java home is set to JDK 1.4 You need to have JDK 5 for this version of JBoss. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058403#4058403 Reply to the post :

[jboss-user] [JBoss Seam] - When and where to use jBPM in Seam app ?

2007-06-27 Thread dkane
If I understand correctly, jBPM was developed for : 1) Defining navigation and pageflows 2) Providing support for business process context, which is wider than session context. This way componens can be persisted across multiple users/sessions. Also, tasks can be logically assigned to users.

[jboss-user] [JBoss Seam] - Re: @Intercept(NEVER) with Seam 2.0

2007-06-27 Thread mgrouch
I guess it is @BypassInterceptors now View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058406#4058406 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058406 ___ jboss-user mailing

[jboss-user] [Beginners Corner] - Re: Error running JBoss AS for first time under Fedora

2007-06-27 Thread EnriqueI
how do I tell jboss to use the 5.0 jdk (which I have installed), and not the GCC runtime? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058407#4058407 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058407

[jboss-user] [JBoss jBPM] - Problem with Exception Handler or I just can't do this?

2007-06-27 Thread jgreiner
Could someone tell me if this is an issue with exception handling or if I am just missing something, and doing it wrong. Most nodes or ActionHandlers that access the database, or check on data, I have an exception handler. Something like | exception-handler

[jboss-user] [JBossCache] - difference between mcast_addr and bind_addr

2007-06-27 Thread seniorfrog
I am using treecache in a clustered environment (16 total nodes, 4x4). Our current configuration only specifies a bind_addr, but I believe specifying both a mcast_addr and mcast_port might help the performance issues we're running into. I'm trying to convince a few people to specify a

[jboss-user] [Beginners Corner] - Re: Error running JBoss AS for first time under Fedora

2007-06-27 Thread EnriqueI
Nevermind, Found it: http://www.linuxquestions.org/linux/answers/Applications_GUI_Multimedia/HOWTO_Install_Suns_Java_VM_in_Fedora_Core_2 Thank you. Cross your fingers, gonna try it again. ;) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058411#4058411

[jboss-user] [JNDI/Naming/Network] - Best practices for inter-server JNDI lookup

2007-06-27 Thread sgrenholm
Hello, I'm looking for best practices in communicating over JNDI (Remote EJB lookup and JMS) between two app servers. Ideas and gotchas are welcome! My current testing topology involves 2 JBoss app servers, non-clustered, on the same machine. I expect in the future either app server will need

[jboss-user] [Beginners Corner] - Re: Error running JBoss AS for first time under Fedora

2007-06-27 Thread EnriqueI
13:12:01,319 INFO [Server] JBoss (MX MicroKernel) [4.2.0.GA (build: SVNTag=JBoss_4_2_0_GA date=200705111440)] Started in 55s:509ms Many thanks Jaikiran. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058413#4058413 Reply to the post :

[jboss-user] [Clustering/JBoss] - Re: problem caused by distributable/

2007-06-27 Thread [EMAIL PROTECTED]
No. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058414#4058414 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058414 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [Installation, Configuration Deployment] - Re: Application Demployment Question

2007-06-27 Thread bluzeppelin
Here is what I found: 2007-06-27 12:44:05,610 ERROR [org.jboss.deployment.scanner.URLDeploymentScanner] Incomplete Deployment listing: --- Incompletely deployed packages --- [EMAIL PROTECTED] { url=file:/C:/hyperic/server-3.0.4/hq-engine/server/default/deploy/HypericAlert.war/ } deployer:

[jboss-user] [JBoss Seam] - Re: Seam 2.0 BETA

2007-06-27 Thread jlaskowski
Hi, Just out of curiosity, has Geronimo been considered? Were there any troubles? Where should I start from to see whether Seam works on Geronimo or not? Jacek Geronimo committer View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058418#4058418 Reply to the post

[jboss-user] [Clustering/JBoss] - Re: problem caused by distributable/

2007-06-27 Thread ddai
Could you possibliy tell from these error which particular objects here should be set to serializable? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058419#4058419 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058419

[jboss-user] [EJB/JBoss] - Pre-loading a number of Stateless EJB instances

2007-06-27 Thread dtauzell
I'd like the server to create several instances of an EJB at startup. Is there any way to do this? -Dave View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058423#4058423 Reply to the post :

[jboss-user] [Clustering/JBoss] - Singelton Scheduler

2007-06-27 Thread kalyanvemuri
How can I create a singleton scheduler in a cluster which depends on classes in the war file? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058425#4058425 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058425

[jboss-user] [Remoting] - Re: EJB3/Socket invoker - connection timeouts

2007-06-27 Thread javajedi
I tried JBoss Remoting 2.2.0 and I was unable to get it to work with JBoss 4.0.4. I'm also not too enthusiastic about that approach because looking at the code, I don't think that this bug has been fixed in the latest version. I am now able to reproduce this problem easily by setting

[jboss-user] [Beginners Corner] - Re: foreach (= advanced for) in JSPS

2007-06-27 Thread lafr
See http://www.jboss.com/index.html?module=bbop=viewtopict=80296 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058432#4058432 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058432

[jboss-user] [Messaging, JMS JBossMQ] - Re: Message visible before transaction commit

2007-06-27 Thread lafr
Use search engines or anything else to retrieve infos. See e.g. http://www.odi.ch/prog/jms-tx.php. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058437#4058437 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4058437

[jboss-user] [JBoss Seam] - Re: actions defined in pages.xml

2007-06-27 Thread youngm
Unfortunately I don't want to do a redirect here because I'm passing some other request parameters in and they get dropped after the redirect??? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4058441#4058441 Reply to the post :

[jboss-user] [JBoss Seam] - [2.0 CVS]managed lists in SFSB can't be nulled out in conver

2007-06-27 Thread enzhao
One thing behaved strangely after I migrated my code to Seam 2.0 CVS. Say there is code like this: | @Stateful | @Scope(CONVERSATION) | @Name(strange) | public class StrangeBacking implements Serializable, Strange{ | @In EntityManager em; | private ListSomething somethings; |

[jboss-user] [JBoss Seam] - Re: Decorating with a fileUpload tag

2007-06-27 Thread davidfed
I should have mentioned that I do not get any complaints from equivalent decorate structures that have inputText and selectOneMenu as the editable value. The for attributes are set correctly. And I saw in another topic that this problem is fixed in seam 2.0 as fileUpload has been made an

[jboss-user] [JBoss Seam] - IDE support for Seam

2007-06-27 Thread pdhaigh
Hi all, Is there any IDE that currently provides IDE support for Seam - specifically code-completion in .xhtml files? (Lazy, I know) I currently use the MyEclipse plugin to Eclipse, but I understand there may be better support in Netbeans? cheers phil View the original post :

[jboss-user] [JBoss Seam] - Re: Run JSF RI on WebSphere 6.1

2007-06-27 Thread titou09
I have good news for who is using seam with WebSphere v6.1 After having opened a PMR with IBM, they fixed the problem that caused the ClassCastException. I can now run jboss-seam 1.2.1 on WebSphere with the IBM JSF 1.1 implementation of WebSphere v6.1.0.9, with the interim fix they send me.

[jboss-user] [JBoss Seam] - Re: ClassCastException: org.jboss.seam.jsf.SeamApplication11

2007-06-27 Thread titou09
I have good news for who is using seam with WebSphere v6.1 After having opened a PMR with IBM, they fixed the problem that caused the ClassCastException. I can now run jboss-seam 1.2.1 on WebSphere with the IBM JSF 1.1 implementation of WebSphere v6.1.0.9, with the interim fix they send me.

<    1   2   3   4   >