[JBoss-user] [Clustering/JBoss] - Re: Sessions are failing in production server

2006-03-03 Thread snedapunk
2006-03-03 13:56:50,837 DEBUG [org.jboss.web.tomcat.tc5.session.ClusteredSession] The session has expired with id: IL1sieE+qt58grZK1oEMAQ** is it local? true 2006-03-03 13:56:50,837 DEBUG [org.jboss.web.tomcat.tc5.session.SessionIDGenerator] getSessionId called: vuIDxYaHELqMlxsoZ0-cpA** 2006-03

[JBoss-user] [JBoss Seam] - Re: some questions about SEAM , are not present in FAQ

2006-03-03 Thread [EMAIL PROTECTED]
Thank you very much , all of you provide answers that i was looking for . I read in this forum that next release will be out after about 6 month , is it true ? (2006 , q3) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927936#3927936 Reply to the post : htt

[JBoss-user] [Installation, Configuration & Deployment] - Re: jboss in fedora core 4

2006-03-03 Thread rockethj
the .bash_profile file # .bash_profile | | # Get the aliases and functions | if [ -f ~/.bashrc ]; then | . ~/.bashrc | fi | | # User specific environment and startup programs | JAVA_HOME=/opt/soft/java/jdk1.5.0_06 | JBOSS_HOME=/opt/soft/jboss-4.0.2 | | PATH=$JAVA_H

[JBoss-user] [Installation, Configuration & Deployment] - jboss in fedora core 4

2006-03-03 Thread rockethj
There is a exception when i run the jboss 4.0.2 I have configed JAVA_HOME and JBOSS_HOME in .bash_profile This is exception: | 15:23:00,656 ERROR [MainDeployer] Could not initialise deployment: file:/opt/soft/jboss-4.0.2/server/default/deploy/jboss-aop.deployer/ | org.jboss.deployment.Deplo

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

2006-03-03 Thread [EMAIL PROTECTED]
I encountered a similar NPE error with the upload portlet and was able to get it working by explicitly setting the PortletMode for the Action URL used by the form: | PortletURL uploadActionURL = renderResponse.createActionURL(); | uploadActionURL.setPortletMode(PortletMode.VIEW); | | .

[JBoss-user] [JBoss Portal] - Re: How-To add javascript libraries to a portlet view.

2006-03-03 Thread aron.gombas
"mholzner" wrote : the easiest way (I believe) is to use the declarative injection of header content. I'd not suggest this, as it wouldn't be portable. I think the problem with your original approach is that URL's are probably wrong. This one is working for me perfectly in Kosmos: " language="j

[JBoss-user] [Clustering/JBoss] - Re: Http Session replication problems when NOT using sticky-

2006-03-03 Thread [EMAIL PROTECTED]
Actually our unit test case that uses httpclient does not assume sticky session at all, and it still works! So you should not need sticky session for this to work. I was just saying that so it is easier for you to troubleshoot your problem. You need to test your enviornment first. View the ori

[JBoss-user] [JBossCache] - Re: How to refresh the cache record

2006-03-03 Thread [EMAIL PROTECTED]
I don't think so. You can implement the DB trigger callback and then query and insert to the cache. But that's vendor specific, I think. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927927#3927927 Reply to the post : http://www.jboss.com/index.html?module=

[JBoss-user] [JBossCache] - Re: EvictionException with JBossCache-1.2.4

2006-03-03 Thread [EMAIL PROTECTED]
This indicates the internal error from the eviction thread. If this happens often, then it can be a bug. Can you open up a Jira issue and attach the xml and alos log tracing (specifically org.jboss.cache.eviction)? Thanks, -Ben View the original post : http://www.jboss.com/index.html?module=b

[JBoss-user] [Security & JAAS/JBoss] - Re: Web Application JAAS and JBOSS Configuration

2006-03-03 Thread j2ee_junkie
You do not need to worry about Struts intercepting an HTML form posting to 'j_security_check'.Tomcat container will intercept this request. You do need to read the Stuts documentation on how security is handled by ActionServlet. I do not remember the details. good luck, cgriffith View th

[JBoss-user] [JBossCache] - Re: JBossCache-1.2.4 with Hibernate-3.1.2, IdentityLock ERRO

2006-03-03 Thread [EMAIL PROTECTED]
Looks like the eviction thread tried to evict/remove the nodes but it times out because someone is holding the read lock for more than 15 secs. So I'd say this is an anomaly. Is this re-producible? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927924#392792

[JBoss-user] [JBoss Portal] - Re: management portlet and *-object.xml

2006-03-03 Thread [EMAIL PROTECTED]
yes we did not have the time to implement the GUI to make that. it is scheduled for 2.4. for securty, you can configure it in the managmeent portlet, there is a security tab. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927923#3927923 Reply to the post :

[JBoss-user] [Security & JAAS/JBoss] - Re: Web Application JAAS and JBOSS Configuration

2006-03-03 Thread dm1000
Now I've read the documentation carefully;) But now I've antother problem. I use Struts and the framework intercepts all action, even the j_security_check action. So there no possibility to log in via this mechanism? I also authenticated the user manually via lc.login (). But then i cannot use

[JBoss-user] [JBoss Seam] - Re: Show registration user information !

2006-03-03 Thread [EMAIL PROTECTED]
@PersistenceContext(type=EXTENDED) in a stateful session bean is another way to solve the LIE problems. @Out(scope=EVENT) puts things the in the Seam EVENT context (the web HttpRequest context), not the SESSION context. View the original post : http://www.jboss.com/index.html?module=bb&op=view

[JBoss-user] [JBoss Seam] - Re: JBoss Seam for (pre)production

2006-03-03 Thread [EMAIL PROTECTED]
yes, that is what it means. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927920#3927920 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927920 --- This SF.Net email

[JBoss-user] [JBoss Seam] - Re: some questions about SEAM , are not present in FAQ

2006-03-03 Thread [EMAIL PROTECTED]
Good answers from CptnKirk, thanks. Right now, you cannot build a JSR-168 portlet using Seam (well, not without pain). We are working on solving this issue right now, and this will be in the next release. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927919

[JBoss-user] [JBoss Seam] - Re: Show registration user information !

2006-03-03 Thread coryvirok
aha. So the @PersistenceContext explains why I was getting annoying LazyInitialization exceptions since the container was managing my EntityManager instead of Seam. Switching to the @In method worked to fix that problem. I got confused because a lot of the examples use @PersistenceContext instea

[JBoss-user] [JBoss Seam] - Re: @SelectItems and @SelectItemsSelection annotations?

2006-03-03 Thread [EMAIL PROTECTED]
Submit a patch to JIRA. I don't promise to commit it, but I will give it due consideration. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927917#3927917 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927917

[JBoss-user] [JBoss Seam] - Re: Problem with pageflow

2006-03-03 Thread [EMAIL PROTECTED]
"ido_tamir" wrote : | But I do not get a redirect. My best bet its a configuration issue, | but I also know that once I get into a pageflow it works as expected and redirects happen. | The pageflow only takes effect when a new conversation starts. The problem is that a conversation is a

[JBoss-user] [JBoss Seam] - Re: Problem with pageflow

2006-03-03 Thread [EMAIL PROTECTED]
np, should probably add a FAQ on this. You know how to force a new conversation to be started, right? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927915#3927915 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927915

[JBoss-user] [JBoss Seam] - Re: h:commandLink and h:panelGroup

2006-03-03 Thread [EMAIL PROTECTED]
Not much I can offer, I have never used the tomahawk tree component, and never seen that exception. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927913#3927913 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927913

[JBoss-user] [JBoss Seam] - Re: @Factory ([EMAIL PROTECTED]) method called repeatedly on every req

2006-03-03 Thread [EMAIL PROTECTED]
So this was a pure-JSF problem then ;) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927912#3927912 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927912 --- This S

[JBoss-user] [JCA/JBoss] - Re: help getting new HSQLDB XA DataSource working

2006-03-03 Thread blaine
The source code is in the pooling source code directory for the hsqldb-dev3 CVS module. You can get it via anonymous CVS like: cvs -d:pserver:[EMAIL PROTECTED]:/cvsroot/hsqldb login cvs -d :pserver:[EMAIL PROTECTED]:/cvsroot/hsqldb co -P -d hsqldbpooling hsqldb-dev3/src/org/hsqldb/jd

[JBoss-user] [JBoss Seam] - Re: Show registration user information !

2006-03-03 Thread CptnKirk
@Stateless components can outject fields into a wider scope via @Out(scope=...) without issue. What probably doesn't make sense is a class annotation of | @Stateless | @Scope(CONVERSATION) | public class foobar {...} | In Gavin's example he needed to outject his user list into a scope

[JBoss-user] [EJB/JBoss] - LocalTxConnectionManager

2006-03-03 Thread tyu
I encounter this error when deploying under JBoss 4.0.3: Class not found: org.jboss.resource.connectionmanager.LocalTxConnectionManager Which jar hosts this class ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927909#3927909 Reply to the post : http://www.

[JBoss-user] [Clustering/JBoss] - Re: Sessions are failing in production server

2006-03-03 Thread snedapunk
Thank you, it is very nice to hear from someone from Jboss. It's been a long week and I am going crazy over here with all these huge logs. ? I found code for new users calls session.invalidate(), and then req.getSession(true); 2006-03-03 12:22:08,703 DEBUG [org.jboss.web.tomcat.tc5.session.JB

[JBoss-user] [Beginners Corner] - CMP bean works with graphic files

2006-03-03 Thread hr1551
want to use CMP bean to store graphic files. so far is not sure if this is a smart way or possible way of doing it. Basically ultimately try to store the graphic files in database. Can it be done and how? Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

[JBoss-user] [JCA/JBoss] - Re: help getting new HSQLDB XA DataSource working

2006-03-03 Thread [EMAIL PROTECTED]
I don't know of any open source xa jdbc connection pooling so this certainly is not something we have tested against. I would say either we come up with a testcase using your driver or a mockup to validate the connection pooling expectations. In terms of your particular questions I'll have to lo

[JBoss-user] [Installation, Configuration & Deployment] - Re: Understanding CLASSPATH

2006-03-03 Thread [EMAIL PROTECTED]
Read this until its clear: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossClassLoadingUseCases View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927904#3927904 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927904 ---

[JBoss-user] [Beginners Corner] - Re: JNDI DataSource - IllegalArgumentException - Help Please

2006-03-03 Thread [EMAIL PROTECTED]
docBase must be an absolute path which generally requires the drive prefix on win32. Use C:/the-full-path/MySQLContext/ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927903#3927903 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[JBoss-user] [Management, JMX/JBoss] - Re: java.lang.LinkageError for org/w3c/dom/Node

2006-03-03 Thread [EMAIL PROTECTED]
"shorero" wrote : Thanks for the hint, but I've already gone through the stuff on the wiki, and it doesn't seem to apply. org.w3c.dom.Node is not part of the application... | I don't believe you. Print out the code source of the Document class and the Document instance class: | System.ou

[JBoss-user] [EJB 3.0] - Re: Can you use stored procedures in EJB 3.0?

2006-03-03 Thread treespace
FTB, here's an example of an EJB stored procedure. You can use these from, say, a session bean: Query query = em.createNativeQuery("exec foo()" ); List bars = query.getResultList(); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927901#3927901 Reply to

[JBoss-user] [EJB 3.0] - Re: Can you use stored procedures in EJB 3.0?

2006-03-03 Thread treespace
>> Most devs that are dead set against stored procs do not have an open mind. Too strong. I think also that he was just saying he was not a "fan" versus anti-stored-procedure. >> Stored procs offer an interface into the db that is consistent. That is to say they provide a "uniform implement

[JBoss-user] [Clustering/JBoss] - ..JBossCacheManager] Session with id... added. Current activ

2006-03-03 Thread snedapunk
I just restarted the servers last night. Is this normal that my active sessions are getting smaller and smaller in the negative direction? Or do you think that this could be a sign of something bad? The highest it got was 8. We are having a session problems View the original post : http://

[JBoss-user] [News & Announcements] - JBossAS 3.2.8.SP1 released

2006-03-03 Thread [EMAIL PROTECTED]
JBossAS version 3.2.8.SP1 has been released and is available for download http://sourceforge.net/project/showfiles.php?group_id=22866&package_id=16942&release_id=398369. The jboss-3.2.8.SP1 release for the J2EE? 1.3 codebase is the first Service Pack release for jboss-3.2.8 that includes some im

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Firebird autoincrement column

2006-03-03 Thread scutoman2000
We have a problem with the autoincrement field of firebird. We have test on mysql some entity bean with autoincrement field and it work(Our application use cmp 2.0 and jboss 4.0.sp1). Now we have switched to firebird but it doesn't support the autoincrement like mysql. We have not idea how to re

[JBoss-user] [EJB 3.0] - Re: EmbeddedId and GeneratedValue

2006-03-03 Thread nholbrook
Done. Thanks. http://opensource2.atlassian.com/projects/hibernate/browse/ANN-268 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927896#3927896 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927896 --

[JBoss-user] [JBoss Seam] - Re: some questions about SEAM , are not present in FAQ

2006-03-03 Thread [EMAIL PROTECTED]
Right now ,I am developing portlets using JSC , it create JSF portlets and all of its data binding is automatic. until now i have developed 4 portlets which contain about 120 jsf pages. After this long way i come to this idea that this kind of development does not scale well, my portlets that

[JBoss-user] [Management, JMX/JBoss] - Re: java.lang.LinkageError for org/w3c/dom/Node

2006-03-03 Thread shorero
Thanks for the hint, but I've already gone through the stuff on the wiki, and it doesn't seem to apply. org.w3c.dom.Node is not part of the application, after all -- it's a system class that is normally loaded from rt.jar. In the case of JBoss 4.0.3SP1 (and probably 4.0.4 as well), it looks to m

[JBoss-user] [JBoss Portal] - Re: help in starting portal server (No null layout allowed h

2006-03-03 Thread mdlatham
i've been trying for 2 days to get this thing working to show my bosses that it is a good alternative to the current portal, but no luck. I've tried every combination of java->jboss->mysql->portal files to no luck. My error is the same as the original posters. I'm running SUSE 9.3, JDK 5.0, Mysq

[JBoss-user] [JBoss jBPM] - Re: Help running HelloTest...

2006-03-03 Thread criess
If you want to get the jBPM GUI Eclipse plugin to work properly you can: - Check out the jbpm.ide module from CVS - Rebuild the org.jbpm.ui package (you are going to new Eclipse WST support to do this) - Take the class files from org.jbpm.ui and create a ui.jar file - Drop the new ui.jar file i

[JBoss-user] [JBoss Portal] - Re: Portlet example released

2006-03-03 Thread csarmientom
Hello: I can change the DB from MySql to Oracle, only had to modify the applicationContext.xml in hibernateProperties : org.hibernate.dialect.Oracle9Dialect and then in News.hbm.xml the word Now it runs ok in Oracle but don't save the new in the table, only the sequence, i'm reading the cod

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Hibernate Reverse Engineering Editor - no tables are sho

2006-03-03 Thread va
I found it on myeclipse site. or at least it looks the same. The workaround discussed there is enabling "Allow DDL in tran" for tempdb - is not really a workaround, since 1. I don't have the rights, 2. This is not good to do even if i could. http://www.myeclipseide.com/PNphpBB2+file-viewtopi

[JBoss-user] [EJB 3.0] - Re: EmbeddedId and GeneratedValue

2006-03-03 Thread [EMAIL PROTECTED]
id generation is not supported/required by the specification for composite keys. I do suggest you log a feature request and bug on www.hibernate.org feature request: to allow generated values for composite id properties bug report: to get a clearer error message. View the original post : http:

[JBoss-user] [JBossWS] - Catching serverside custom Exceptions on clientside

2006-03-03 Thread hinstance
hi there, I am trying to build a webservice which throws custom exceptions to the client in case something goes wrong, e.g. a wrong password is given etc. I would like to catch these Exceptions directly on the client, without getting them out of the AxisFault which is wrapped around them, in the

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: annoying thing about fibo tutorial

2006-03-03 Thread garyclawson
I'm also having the same problem. I don't see a version 1.3.2. I see the current version of XDoclet is 1.2.3 and XJavaDoc is 1.5-snapshot050611. Seems like the XJavaDoc was built with Java 1.5. How do I get a Java 1.4 version of XDoclet and XJavaDoc? View the original post : http://www.jbo

[JBoss-user] [Messaging, JMS & JBossMQ] - Dependency problem for service running on another node

2006-03-03 Thread adamwynne
I am attempting to set up a Postgres 8 DataSource in a cluster. I am running jboss-4.0.3SP1 with EJB3.0. I have been following the wiki articles ConfigJBossMQDB and JBossMQHAOverview in terms of setting up my PostgresDS and removing the hypersonic one. I am testing this with a simple MDB (dep

[JBoss-user] [JBoss Portal] - Re: How-To add javascript libraries to a portlet view.

2006-03-03 Thread mholzner
the easiest way (I believe) is to use the declarative injection of header content. In this case you can declare the js file to be included as link in the head tag, by adding this to your jboss-portlet.xml descriptor : | | MyAJAXPortlet | | | |

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - How to use same Hibernate code in container-managed transact

2006-03-03 Thread vovik1
Is it possible at all? How to demarcate transactions explicitly in this case? Thanks. Vladi. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927883#3927883 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927883 ---

[JBoss-user] [JBoss jBPM] - Re: spawning workflow from action handler Q

2006-03-03 Thread [EMAIL PROTECTED]
I was in Reston for a public jBPM training last year. Beatiful place :-) A bit cold for my taste, tough. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927882#3927882 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=39278

[JBoss-user] [JBoss Seam] - Re: Show registration user information !

2006-03-03 Thread coryvirok
Not exactly on point with the original question... I thought that is a bean was @Stateless then it couldn't use @Out fields. Would you be able to point me in the direction of a document explaining all the different scopes in terms of stateless and stateful beans and maybe a little on stateless

[JBoss-user] [EJB 3.0] - Re: When to use EAGER / LAZY

2006-03-03 Thread gus888
That's great! I got it. Thank you so much. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927880#3927880 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927880 --- Th

[JBoss-user] [EJB 3.0] - Re: When to use EAGER / LAZY

2006-03-03 Thread nholbrook
Either that or make your fetch type eager. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927878#3927878 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927878 --- Th

[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - JBoss Database Question

2006-03-03 Thread [EMAIL PROTECTED]
Hello All I have written a small application (client sever) to get me started with jboss. I have deployed the ear file, and there are no errors. The console says my beans are bound, it lists my connection (whatever is in the *-ds.xml file) and continues with no problem. When I run the client,

[JBoss-user] [Clustering/JBoss] - JBoss w/ Apache Web Server & mod_jk

2006-03-03 Thread thomsent
We're trying to set up Apache Web Server with mod_jk for load balancing our JBoss apps. I installed Apache Win32 Binary (MSI Installer): apache_2.0.55-win32-x86-no_ssl.msi located at http://httpd.apache.org/download.cgi. Why are all of the files in the modules directory *.so files? Shouldn't t

[JBoss-user] [JBoss Seam] - Re: some questions about SEAM , are not present in FAQ

2006-03-03 Thread CptnKirk
I can't speak much about the upcoming portlet support. Seam does provide some enhanced support for JSF DataModels. This should help developers that do a lot of work with JSF DataTables. All the MyFaces components should still work fine with Seam. Seam only provides enhanced support for expo

[JBoss-user] [JBoss Seam] - Re: how does SEAM compare with Spring for building web appli

2006-03-03 Thread CptnKirk
Seam vs Spring is a topic for many TSS articles and JRoller blogs to come. Here's my quick take. Neither technology is directly responsible for getting data either into or out of the database. You'll need a persistence provider for that. Once you have one, you'll likely look to Spring or Sea

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Hibernate Reverse Engineering Editor - no tables are sho

2006-03-03 Thread [EMAIL PROTECTED]
yes, sybase has this weird error message about "CREATE TABLE" not being allowed even though we don't create any tables - we just ask for metadata. there is a workaround, just cant remember which one but take a look in the hibernate tools forum. View the original post : http://www.jboss.com/i

[JBoss-user] [JBoss Seam] - Re: some questions about SEAM , are not present in FAQ

2006-03-03 Thread [EMAIL PROTECTED]
Thank you for fast reply. I really faced problem with jsf portlest. I still can not upload files insie my jsf portlets. so i should take care about using any frameowrks for next projects. By your answers , i still do not know whether beta 2 supports developing portlets or not. with a fast look

[JBoss-user] [JBoss jBPM] - Re: spawning workflow from action handler Q

2006-03-03 Thread [EMAIL PROTECTED]
Why do you need to spawn a workflow from an action handler? Process states are designed just for that purpose. If you really have to do it, the implementation of org.jbpm.graph.node.ProcessState.execute() will help you. View the original post : http://www.jboss.com/index.html?module=bb&op=viewt

[JBoss-user] [JBoss Seam] - Re: some questions about SEAM , are not present in FAQ

2006-03-03 Thread CptnKirk
I'm not a Seam developer, but I think I can answer some of your questions. 1. Facelets provides a JSF view layer UI substitue for JSP. Seam provides a lightweight convenience framework for working with and integrating JSF, EJB3, jBPM, Portals. You can certainly use Facelets with Seam (in fact

[JBoss-user] [JBoss jBPM] - Re: Problem with ActionHandler

2006-03-03 Thread [EMAIL PROTECTED]
Err... shouldn't your test be: assertNull("Greeting should not exist!",instance.getContextInstance().getVariable("greeting")); You are asserting the opposite of what you intend to assert. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927869#3927869 Reply to

[JBoss-user] [JBoss jBPM] - Re: Problems with setProcessDefinition over reflection and G

2006-03-03 Thread [EMAIL PROTECTED]
Bernd, how about updating the database directly? By using reflective access you are most probably bypassing the bytecode enhancement. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927868#3927868 Reply to the post : http://www.jboss.com/index.html?module=bb&

[JBoss-user] [EJB 3.0] - design pattern help

2006-03-03 Thread alimnemonic
Hi to all, Usually in a web service that uses a ejb3 bean, for instance, we would use a jndi lookup to retrieve an instance and start working. If I update the ejb bean and release a second version, I need to redeploy all web services that uses the bean if the bean is different? So I need decou

[JBoss-user] [JBoss jBPM] - Re: New front end for jbpm

2006-03-03 Thread forJbpm
Oh! Thanks! In my company as well 90% employees are perl programmers! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927866#3927866 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927866 --

[JBoss-user] [EJB 3.0] - Re: When to use EAGER / LAZY

2006-03-03 Thread gus888
Hi, thank you very much for your response. "Writing a getFiles method in your stateless bean" means to create another EJBQL to retrieve files using the passed folder object. Is it correct? Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927865#3927865

[JBoss-user] [JBoss Seam] - Re: JBoss Seam for (pre)production

2006-03-03 Thread [EMAIL PROTECTED]
I want to know , what that integration mean ? Does it means that , with beta 2 we can not develop jsr-168 portlets ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927864#3927864 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=re

[JBoss-user] [JBoss Seam] - how does SEAM compare with Spring for building web applicati

2006-03-03 Thread [EMAIL PROTECTED]
Hi How does SEAM compare with Spring when it come to develop a web application with heavy database access? Thanks View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927863#3927863 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=rep

[JBoss-user] [JBoss Seam] - some questions about SEAM , are not present in FAQ

2006-03-03 Thread [EMAIL PROTECTED]
Hi Thank you for reading my post. I have some simple questions about SEAM. 1-How does it compare to facelest in feature comparesion ? 2-can i use it inside Tomcat , JAVA persistance API works in tomcat , does SEAM works in tomcat? 3-can I use it to build jsr-168 portlets ? 4-How does it facili

[JBoss-user] [JBoss jBPM] - Re: Two simple questions

2006-03-03 Thread [EMAIL PROTECTED]
"and another question: why cant i delpoy the simple.par out of eclipse? websales worked. " Please explain what error or condition occured that you could not deploy the PAR in order for us to help you figure out the problem. We can't guess... View the original post : http://www.jboss.com/index

[JBoss-user] [Installation, Configuration & Deployment] - Re: Understanding CLASSPATH

2006-03-03 Thread lightbulb432
That raised more questions than it answered...I've got a lot to learn... (By the way, I'm asking these questions because I'd like to learn, not because I can't get something specific to work.) In addition to my classpath questions above, your link pointed out that an archive's MANIFEST.MF file

[JBoss-user] [EJB 3.0] - Re: When to use EAGER / LAZY

2006-03-03 Thread nholbrook
The session is opened and closed inside the stateless bean method. Once the folder object is passed back across the wire, it is no longer connected to the session / datasource and cannot retrieve the files. You might consider writing a getFiles method in your stateless bean and call that inste

[JBoss-user] [EJB 3.0] - Re: Duplicate objects in OneToMany relationship

2006-03-03 Thread dsouza42
Forgot to say I'm using EJB 3 RC5 and Jboss 4.0.3 SP1. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927858#3927858 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927858 --

[JBoss-user] [EJB 3.0] - Duplicate objects in OneToMany relationship

2006-03-03 Thread dsouza42
I'm having trouble with the following OneToMany relationship: | @OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER) | @JoinTable(name = "PRDCT_GRP_TO_FILTER", |joinColumns = { @JoinColumn(name = "PRDCT_GRP_ID") }, |inverseJoinColumns = @JoinColumn(name = "PRDCT_CLASS_FI

[JBoss-user] [EJB 3.0] - EmbeddedId and GeneratedValue

2006-03-03 Thread nholbrook
I have a composite key with 2 fields. 1 field is an auto-incrementing field, the other is a foreign key. I've been trying to put @GeneratedValue annotation on the auto-incrementing field, but can't seem to get it to work properly. Is this supported? I assumed thats why it was broken out of t

[JBoss-user] [JCA/JBoss] - help getting new HSQLDB XA DataSource working

2006-03-03 Thread blaine
I'm a developer in the HSQLDB Development Group. An associate and I have made an XADataSource according to the javax.sql API spec and chapters 11 and 12 of the JDBC 3.0 Spec, but it is not working with JBoss. I have put a lot of work into this, and I would greatly appreciate any advice or assist

[JBoss-user] [Management, JMX/JBoss] - Re: java.lang.LinkageError for org/w3c/dom/Node

2006-03-03 Thread [EMAIL PROTECTED]
Start here: http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassLoadingOverview View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927853#3927853 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927853 -

[JBoss-user] [JBoss Seam] - Re: @SelectItems and @SelectItemsSelection annotations?

2006-03-03 Thread CptnKirk
I've finished my initial work on @Selectitems. It works like @DataModel. It will automatically convert an arbitrary List into a List that the JSF components expect (and publish into the appropriate scope). I'll build in support for @SelectItems(labelMethod="", descriptionMethod=""...) later o

[JBoss-user] [EJB/JBoss] - Re: Transaction roll back in JBOSS

2006-03-03 Thread kaymenji
I solved this problem. After I catch SQLException, I have to throw new EJBException to make JBOSS to handle my roll back. Sorry for the noise View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927851#3927851 Reply to the post : http://www.jboss.com/index.html?

[JBoss-user] [Installation, Configuration & Deployment] - Re: Understanding CLASSPATH

2006-03-03 Thread [EMAIL PROTECTED]
Don't use any form of CLASSPATH setting. http://wiki.jboss.org/wiki/Wiki.jsp?page=ClassLoadingOverview View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927850#3927850 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927850

[JBoss-user] [JNDI/Naming/Network] - Re: Interoperability version 4.0.2 -> 3.2.7

2006-03-03 Thread joshua_hj
Well, I solved the problem by forcing my client app (in JBoss 4) to use the "org.jnp.interfaces.NamingContextFactory" class provided by one of the JBoss3.2.x jar files (jbossall-client.jar will do the trick). My app is packed inside a WAR archive, so i just paste the jbossall-client.jar insid

[JBoss-user] [Clustering/JBoss] - Re: MBean Clustering , JBoss 4.0.3

2006-03-03 Thread [EMAIL PROTECTED]
This has to be a side-effect of farming. Instead of farming the deployments, just deployment them to the servers and rerun the test. Farming has to be propagating the undeployment event to all nodes. This is not what the ProxyFactoryHA state listener was designed for. View the original post :

[JBoss-user] [Installation, Configuration & Deployment] - Understanding CLASSPATH

2006-03-03 Thread lightbulb432
Can somebody please outline the CLASSPATH issues relating to JBoss? For example, what is the difference between the JBOSS_CLASSPATH set by JBoss's run.sh script, and the CLASSPATH environment variable? Is there any overlap, which one does JBoss use, etc... Also, run.sh appends JBOSS_CLASSPATH t

[JBoss-user] [Remoting] - Re: Cancelling remote invokation

2006-03-03 Thread [EMAIL PROTECTED]
An asynchronous invocation with a future object and a properly designed ejb component would be required. The main issue will be in the ability to effectively cancel the request. See the jboss specific ejb3 features for asynchronous invocations. View the original post : http://www.jboss.com/i

[JBoss-user] [Management, JMX/JBoss] - Re: java.lang.LinkageError for org/w3c/dom/Node

2006-03-03 Thread shorero
Same problem occurs under 4.0.4RC1, at the same place in the code. FYI, the error happens on a document.getDocumentElement() method call. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927845#3927845 Reply to the post : http://www.jboss.com/index.html?modul

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Three consecutive request automatically fire by web containe

2006-03-03 Thread cjain75
Environment 1] jboss-4.0.3, jboss-4.0.3SP1, jboss-4.0.4RC1 [tried with all 3 versions of JBOSS] 2] Red hat Linux-32 bit 3] jrockit-jdk1.5.0_04 Framework. 1] Struts 1.2.8 2] Velocity-1.4-rc1 Hardware Intel XEON Dual processor On windows machine which developers use,when i run the applica

[JBoss-user] [JNDI/Naming/Network] - Re: Standalone application using jndi jboss datasource

2006-03-03 Thread [EMAIL PROTECTED]
That might be trading slow for slower. Look at ejb3. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927842#3927842 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927842

[JBoss-user] [EJB/JBoss] - Re: NoClassDefFoundError with Proxy classes on AIX

2006-03-03 Thread [EMAIL PROTECTED]
A java.lang.reflect.Proxy instance is being serialzed using the java.io.* object io streams and this is not being handled correctly. Since such proxy classes are dynamic constructs that don't exist on a classpath the jdk has to handle it. View the original post : http://www.jboss.com/index.htm

[JBoss-user] [Security & JAAS/JBoss] - Re: JAAS and ServiceMBean

2006-03-03 Thread jangeysen
Hi Wolf, did you solved your problem, I've experiencing exactly the same situation br View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927840#3927840 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927840 -

[JBoss-user] [JBoss Portal] - JBoss Multichannel

2006-03-03 Thread craig1980
Hi all. I'ld like to know if JBoss Portal is able to handle multi-channel rendering. That is... i have some news and i'l like to render them in a web-browser or in a pda-browser etc In jetspeed 1.X and 2.X there is a module that, by recognizing the browser request, it's able to choose the rig

[JBoss-user] [J2EE Design Patterns] - Re: Spawning threads in server process

2006-03-03 Thread rsaraf
For a Jboss based application I am working on, I want to do a very time consuming task on the EJB side. The task cannot be made faster as it is serial in nature. All I can do to improve the response time is to break the task into smaller pieces. Using JMS queues will be an overkill for the appli

[JBoss-user] [JBoss Seam] - Re: Problem with pageflow

2006-03-03 Thread jdestef
Hi Gavin, Yes, that was it, I already had a conversation going. Tx for the help. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927837#3927837 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927837 --

[JBoss-user] [EJB/JBoss] - Re: NoClassDefFoundError with Proxy classes on AIX

2006-03-03 Thread jasonb2
Do you know of what kind of JDK issue might cause this? I'd like to report it as a bug for IBM's AIX JDK, but I don't really know what it's not doing correctly. Seems like a classloading thing - maybe it's not using the context classloader when it needs to or something like that? View the ori

[JBoss-user] [JBoss Portal] - How-To add javascript libraries to a portlet view.

2006-03-03 Thread kjc5664
I'm trying to use the dojo AJAX toolkit within a portlet view.jsp to no avail. Can anyone point out what the correct method is. Here is my view.jsp. None of the dojo widgets are rendered. Just plain HTML. dojo.js is in the same directory as view.jsp Thanks in advance. <%@ page contentType="text/h

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Hibernate Reverse Engineering Editor - no tables are sho

2006-03-03 Thread va
"va" wrote : Also, | just read something on this page: | http://manuals.sybase.com/onlinebooks/group-as/asg1250e/svrtsg/@Generic__BookTextView/34899 | Apparently using DDL in tempdb is no a good idea... ..within transactions View the original post : http://www.jboss.com/index.html?module=b

[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Hibernate Reverse Engineering Editor - no tables are sho

2006-03-03 Thread va
Also, just read something on this page: http://manuals.sybase.com/onlinebooks/group-as/asg1250e/svrtsg/@Generic__BookTextView/34899 Apparently using DDL in tempdb is no a good idea... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927833#3927833 Reply to the p

[JBoss-user] [EJB 3.0] - Re: Problem with Lazy attributes - 4.0.3SP1-EJB3.0RC4

2006-03-03 Thread jwynett
I thought maybe it was a classpath issue and played around with it for quite a while without being able to change the behaviour. Below is my classpath in the client build.xml. Perhaps someone might see an obvious problem | | | | | |

[JBoss-user] [JBoss Portal] - i fix the problem

2006-03-03 Thread fowinjo
il y a les balises password autour du mot de passe qui n s'affichent pas ds l message, mais el doivent effectivement figurer ds l fichier View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927830#3927830 Reply to the post : http://www.jboss.com/index.html?modul

[JBoss-user] [JBoss Portal] - i fix the problem

2006-03-03 Thread fowinjo
sorry, i'm a french speaker. j'ai rencontré le même problème ce matin et j'ai finalement pu le résoudre. assurez vous que le fichier portal-*-ds.xml contient la bonne chaine de connexion à votre base de données. j'utilise jboss-4.0.2 et jboss-portal-2.0.2RC1. Ma base est une base oracle(jbosspor

[JBoss-user] [EJB 3.0] - Re: Problem with Lazy attributes - 4.0.3SP1-EJB3.0RC4

2006-03-03 Thread [EMAIL PROTECTED]
I don't think the error that jwynett is getting is related to jboss-serialization. The stack trace shows only java serialization. This is something else. It's a real class cast exception caused by proxies. Maybe you have a classpath issue. View the original post : http://www.jboss.com/index.h

  1   2   3   >