[jboss-user] [Clustering/JBoss] - DB/Cluster Practice Question

2007-04-09 Thread rjstanford
We're planning to use JBoss to do clustering for a HA webapp in the near future. The question that I'm toying with is one of tying the JBoss cluster to a database cluster. Our original plan was just to use Oracle RAC, but there's certainly an investment there and it goes up fast if you need

[jboss-user] [JBoss Seam] - Re: Drop Down Lists using Facelets?

2007-04-09 Thread waynebagguley
If you are using Seam v1.2.1.GA or above you can use this instead: | h:selectOneMenu value=#{itemManager.itemChosen} style=width:300px | s:selectItems value=#{itemManager.itemList} var=item |label=#{item.code} #{item.name} / | s:convertEntity / |

[jboss-user] [JBoss Seam] - Re: About Identity login

2007-04-09 Thread waynebagguley
Also note that if you are using roles then there is a bug that doesn't clear them down when Identity.login is performed. This is fixed in CVS but not (as I am aware) in any release version. I think someone should make this more widely known as there is a workaround for it and it could

[jboss-user] [JBoss jBPM] - Will context be opened if an exception have occured in try b

2007-04-09 Thread mallikarjunreddy
Hi, I am maintaining a Transation in that transaction I have opened the Context and Closed the context in that transaction if every thing is working fine with out any exception in that transaction then context will be opened and closed successfully. If any exception have occured after opening

[jboss-user] [JBoss Seam] - Testsuites with SeamTest: Initializing the Microcontainer on

2007-04-09 Thread mugwump
I have a lot of tests that all roughly follow the same pattern: - SeamTest initializes the embedded container - set up a faces-request - get an instance of a properly prepared seam component - run some testsassertions e.g: | @Test | public void testCombinedQuery() throws Exception{ |

[jboss-user] [EJB 3.0] - random selection with ejbql

2007-04-09 Thread merabi
hi fellaz. I'm developing a web app using EJB3.0 and MySQL but I came up w/ the EJBQL problem. I need to write the EJBQL query to select RANDOM 150 records from a DB. Is there anyway I can do it? I know MySQL provides a rand() option and I know there is a method called createNativeQuery.

[jboss-user] [JBoss jBPM] - Re: how to merge global variables value in a JOIN

2007-04-09 Thread alasiraj
kukeltje wrote : Correct, and whether it is dataloss is debatable (the behaviour is by design). The data A modified is still present in that finished task. | Hi Ronald, I am also doing some research on process context variable so I would like to know how to read the value modified by 'A'

[jboss-user] [JBoss Seam] - Render PDF to binary

2007-04-09 Thread ollix
hi there, is there an easy way to user the/a renderer to produce a binary PDF rather than the implicit usage of the document store and the renderer returnin a redirect html page? That would be using the view pipeline as a means to produce binary data and further process that programmatically

[jboss-user] [JBoss/Spring Integration] - Re: Struts spring hibenate in jboss without jboss-deployer

2007-04-09 Thread alesj
Will do. Perhaps apply debug level to trace, and see what the problem might be. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035645#4035645 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035645

[jboss-user] [JBoss Seam] - @In or @PersistenceContext for EntityManager?

2007-04-09 Thread waynebagguley
I'm confused (having read the docs) over whether I should be using @In or @PersistenceContext for a Seam managed persistence context. What's the difference? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035646#4035646 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: how to merge global variables value in a JOIN

2007-04-09 Thread kukeltje
use the api to get a list of all tasks of that user. Finished tasks are also in there. Not sure if you can retrieve jsut tasks for this processinstance. I think you can. Then you have access to the variables. Play a little with the api and learn it View the original post :

[jboss-user] [JBoss Seam] - Re: Changes not persisted using EntityHome

2007-04-09 Thread waynebagguley
That seems a massive overkill. Why aren't you using the persistence context? Then you can just do exactly as the tutorial says: | public void delete() |{ | messageList.remove(message); | em.remove(message); | message=null; |} | em.remove(message) will

[jboss-user] [JBoss Portal] - an error about the theme when i deploy a portlet into the

2007-04-09 Thread linnpan
i create a portlet application named MyFirstPortlet ,using the tool 'sun java studio creator2'. In this application, i create portlet-instances.xml,myfirstportlet-object.xml,myfirstportlet.java, and modify web.xml,portlet.xml,build.xml. Next, I run command 'ant deploy' successfully,and run

[jboss-user] [EJB/JBoss] - I need read data from ejb-jar.xml !!!

2007-04-09 Thread changemylife
Hi all ! I write a bean called ReadXMLBean to read some data from ejb-jar.xml and give to client to show on screen. So, where folder that I must ejb-jar.xml file ? Thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035652#4035652 Reply to the post :

[jboss-user] [JBoss jBPM] - #THe question of circular process#

2007-04-09 Thread niday
Are there any methods to start a process instance automatically in jBPM? or can run a circular process ? I have some operations that is periodic or repeating, such as paying wages in the 5th day each month. I think there are two solutions: (1) starting a process instance automatically in

[jboss-user] [EJB/JBoss] - Re: I need read data from ejb-jar.xml !!!

2007-04-09 Thread changemylife
If I place my ejb-jar.xml file inside .\bin is I can get some data that I need! The question that I want ask is rigth ? (place it inside bin folder on Server?) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035654#4035654 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: #THe question of circular process#

2007-04-09 Thread kukeltje
1) use quartz 2) you can start a new process in e.g. an actionhandler on the process-end event View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035655#4035655 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035655

[jboss-user] [EJB 3.0] - Re: Entity relationship and remove operations

2007-04-09 Thread kstrunk
fhh wrote : Another problem might be that your entityManager is not in sync with the database. You were right. I simply had to refresh the parent and then hibernate could delete all references. So it's working now. Conclusion: Hibernate does the cascading delete itself and does not use

[jboss-user] [JBoss/Spring Integration] - Re: Struts spring hibenate in jboss without jboss-deployer

2007-04-09 Thread [EMAIL PROTECTED]
Maruti.ear     dao.har my class file map all hibernate mapping files META-INF hibernate-service.xml maruti.war WEB-INF lib

[jboss-user] [Installation, Configuration Deployment] - JBoss hot deploy?

2007-04-09 Thread jiangshachina
Hi guys, I'm using JBoss 4.0.5.GA + Eclipse 3.2.2 + WTP 1.5.3 It's said that JBoss has the ability -- Hot Deploy, like Tomcat. I set the below statements in file JBoss_Home/server/default/deploy/jbossweb-tomcat55.sar/context.xml Context cookies=true crossContext=true antiResourceLocking=true

[jboss-user] [JBoss/Spring Integration] - Re: Struts spring hibenate in jboss without jboss-deployer

2007-04-09 Thread [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote : | Maruti.ear |     dao.har | my class file | map | all hibernate mapping files | META-INF | hibernate-service.xml | maruti.war | WEB-INF |

[jboss-user] [JBoss Seam] - Re: auto tag completion in eclipse?

2007-04-09 Thread andyd
If you haven't already done this, try adding the following to your eclipse.ini configuration file -vmargs -Xms128m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=256m It made a big difference to my experience with exadel studio. Regards, Andy. View the original post :

[jboss-user] [JBoss Seam] - Re: auto tag completion in eclipse?

2007-04-09 Thread andyd
Lindsay, Have you tried using the seam-gen tool that comes with seam. That will generate mu ch of what you need to get you moving, especially idf you are new to seam. That coupled with the exadel plug in works reasonably well, and best with the latest seam release. Seam-gen is imho the

[jboss-user] [JBoss/Spring Integration] - Re: Struts spring hibenate in jboss without jboss-deployer

2007-04-09 Thread alesj
Where is eLog.eTrack.dao.impl.BaseDAOHibernate? In .har? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035667#4035667 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035667 ___

[jboss-user] [JBoss jBPM] - Re: strange problem with many-to-one mapping in jbpm 3.2

2007-04-09 Thread camunda
Okay, one day later and one small step further, I compared the logs of the JTA-run: | [org.jbpm.configuration.JbpmContextInfo] creating jbpm context with service factories '[tx, message, scheduler, logging, persistence, authentication]' | [org.jbpm.JbpmContext] creating [EMAIL PROTECTED]

[jboss-user] [JBoss/Spring Integration] - Re: Struts spring hibenate in jboss without jboss-deployer

2007-04-09 Thread [EMAIL PROTECTED]
Maruti.ear dao.har eLog eTrack dao impl BaseDAOHibernate.class map all hibernate mapping files META-INF hibernate-service.xml

[jboss-user] [JBoss Seam] - TD2B YAMAHA FACTORY ROADRACER STOLEN

2007-04-09 Thread HRH
MY 1971 YAMAHA TD2B FACTORY ROADRACE BIKE WAS STOLEN. THE ENGINE AND FRAME NUMBERS ARE IDENTICAL. DS6RR900532. IT WAS STOLEN BY DONALD LEE KIMBRELL WHOM CURRENTLY RESIDES IN SOUTH CAROLINA AND WORKS AS A WELDER AT A NUCLEAR PLANT WITH HIS WIFE BECKY. KIMBRELL IS APPROXIMATELY 70 YEARS OLD.

[jboss-user] [JBoss jBPM] - Re: strange problem with many-to-one mapping in jbpm 3.2

2007-04-09 Thread camunda
Okay, I solved it. It was my own silly fault! Sorry for the unnecessary traffic in that forum ;-) The solution is: Switch the PersistenceService in the jbpm.cfg.xml to JtaDbPersistenceService. After changing that, it also workes fine with JTA! Sorry again and happy jbpm'ing again :-) View the

[jboss-user] [JBoss/Spring Integration] - Re: Struts spring hibenate in jboss without jboss-deployer

2007-04-09 Thread alesj
Read about JBoss classloading: - http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossClassLoadingUseCases .war has different CL handling than other .jars in .ear. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035675#4035675 Reply to the post :

[jboss-user] [JBoss Seam] - Re: @In or @PersistenceContext for EntityManager?

2007-04-09 Thread fhh
@PersitenceContext - Application Server creates EntityManager. Advantage: No Seam dependency - portable. @In - Seam creates the EntityManager Advantage: Transaction management, is required for other Seam components like the entity converter. Regards Felix View the original post :

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

2007-04-09 Thread zdaler
anyone having the same problem ? any idea ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035682#4035682 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035682 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: @In or @PersistenceContext for EntityManager?

2007-04-09 Thread Kruno
If you are using @In then you need to configure JPA http://docs.jboss.com/seam/1.2.1.GA/reference/en/html/persistence.html#d0e5419 It means that seam will manage your EntityManager and you will just inject it. Benefit of that is that you actualy use one EntityManager in side conversation, it is

[jboss-user] [JBoss Seam] - Re: Multiple Domain Quesiton

2007-04-09 Thread fhh
anonymous wrote : | I generally agree with what you're saying, this is a touch pendantic, but... Technically if you support multiple apps on multiple hostnames, that's exactly what you're doing. You're using the security in the appserver as opposed to rolling your own, but its otherwise

[jboss-user] [JBoss Seam] - Re: @In or @PersistenceContext for EntityManager?

2007-04-09 Thread [EMAIL PROTECTED]
Kruno wrote : On the other hand if you use @PersistenceContext than it is EJB stuff and and EntityManager is unique for on ActionBean only. That is not entirely correct. A Seam-managed persistence context is handled by Seam in the sense that its beginning and end is automatically the same as

[jboss-user] [Installation, Configuration Deployment] - Re: startup error PSQLException

2007-04-09 Thread kstrunk
Hi! I'm facing the same problem with JBoss 4.0.5 and Postgres 8.2. Does anybody know what's going wrong? Strunker View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035690#4035690 Reply to the post :

[jboss-user] [JBoss/Spring Integration] - Re: Struts spring hibenate in jboss without jboss-deployer

2007-04-09 Thread [EMAIL PROTECTED]
Hi, i added the following jboss-web.xml to the WEB-INF folder | jboss-web | |class-loading | loader-repository | com.example:loader=marutiDAO.har | /loader-repository |/class-loading | | /jboss-web | | i added the following

[jboss-user] [EJB 3.0] - Re: random selection with ejbql

2007-04-09 Thread fhh
| entityManager.createNativeQuery(SELECT * FROM my_entity_table, MyEntity.class).getResultList(); | Work for me! Regards Felix View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035695#4035695 Reply to the post :

[jboss-user] [EJB 3.0] - Re: How to use assigned primary key within entitybean?

2007-04-09 Thread fhh
Use the same sequence for both tables. And make sure that the beginning of the sequnce is bigger than max(a.pk) so they don't overlapp. Regards Felix View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035696#4035696 Reply to the post :

[jboss-user] [EJB 3.0] - Re: Is Ejb3 embedable mature for production use?

2007-04-09 Thread fhh
Why don't you use an application server - like JBoss for example. Regards Felix View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035697#4035697 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035697

[jboss-user] [JBoss jBPM] - Re: Couldn't delete timer for Process Instance

2007-04-09 Thread saschwen
Hey, Have you figured this out? I'm now getting this error. I've modified a process of mine and added a fork and now I get this. The odd thing is that it completely ignores the second branch of the fork and doesn't execute it at all. Thank you, Steve. View the original post :

[jboss-user] [JBoss Getting Started Documentation] - Re: Truly at starting point

2007-04-09 Thread AggressiveFish
Hi Peter, If I double click or run the run.bat file the Started in whatever time line comes up and stays there. Last time I tried it (15-20 minutes ago) run.bat hasn't put anything out to the terminal since or finished. I expected to run the run.bat, the bunch of messages to appear, and then

[jboss-user] [JBoss jBPM] - Re: org.hibernate.TransientObjectException on Fork...

2007-04-09 Thread saschwen
Hey, I've looked into this a little more and noticed that the Fork executes the first branch and passes right through the Join node to the end without executing the second branch. Is there something I need to configure to have the fork and join work together? Here is a sample snippet of my

[jboss-user] [JBoss Eclipse IDE (users)] - Re: Preferences-Deployer: An error has occured

2007-04-09 Thread [EMAIL PROTECTED]
Duh! Thanks Max. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035701#4035701 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035701 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: s:selectDate ajaxRender

2007-04-09 Thread beligum
Same problem here... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035703#4035703 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035703 ___ jboss-user mailing list

[jboss-user] [EJB 3.0] - @EJB annotation injection broken in 4.0.5.GA

2007-04-09 Thread doktora
Has anyone had this problem? I just ported an app to 4.0.5.GA and none of the @EJB annotations inject their beans. I've searched in jira/forum/google and have found only one other place where someone reported this problem on the sun developers forums. regards --doktora View the original

[jboss-user] [JBoss Seam] - Re: s:selectDate ajaxRender

2007-04-09 Thread beligum
Posted on jira: http://jira.jboss.com/jira/browse/JBSEAM-1156 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035705#4035705 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035705

[jboss-user] [JBoss jBPM] - Re: #THe question of the circular process#

2007-04-09 Thread niday
Thank you, kukeltje. The second method is better for me relatively, and I need furthering investigation. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035706#4035706 Reply to the post :

[jboss-user] [EJB 3.0] - Re: random selection with ejbql

2007-04-09 Thread merabi
thanks for the reply, but I still need to know if EJBQL allows random selection from the record. for example, MySQL allows query: select * from Table1 order by rand() limit 5; I've searched half a day if EJBQL can do sucha thing but found no info. Is there anyway I can select random records

[jboss-user] [EJB/JBoss] - Can you change the Transaction Timeout dynamically?

2007-04-09 Thread kvbisme
I have an application implemented as a Stateless Session Bean that is fired off at regular intervals from a Quartz trigger. 90% of the time the default transaction timeout is more than adequate, however one of the destinations I pull data from is absurdly slow, and it is not uncommon to

[jboss-user] [JBoss jBPM] - Re: org.hibernate.TransientObjectException on Fork...

2007-04-09 Thread kukeltje
what happens when you give the first branche a name to? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035710#4035710 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035710 ___

[jboss-user] [JBoss jBPM] - Re: strange problem with many-to-one mapping in jbpm 3.2

2007-04-09 Thread kukeltje
I don't mind this kind of traffic. People solving their own problems and reporting the sollution. Others can learn from this... :-) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035711#4035711 Reply to the post :

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Getting Error When Deploying

2007-04-09 Thread HanumanPrasad
Error loading [EMAIL PROTECTED] com.eis.Controller Please send the answer as soon as possible View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035712#4035712 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035712

[jboss-user] [JBoss Seam] examples of EntityQuery instead of entity-query

2007-04-09 Thread Eelco Visser
The Seam manual (1.2.1.GA) shows how to use Java code instead of XML for using the EntityHome framework class. For example, instead of component name=personHome class=org.jboss.seam.framework.EntityHome property name=entityClasseg.Person/property /component one can write:

[jboss-user] [JBoss Seam] - EL enhancements inside Facelet templates - got an exception

2007-04-09 Thread ASavitsky
What I was trying to achieve was a generic sortable header for dataTable. Here's the template: header.xhtml !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN | http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; | ui:composition xmlns:h=http://java.sun.com/jsf/html; |

[jboss-user] [JBoss Seam] - Seam enhanced EL expression fails in an Ajax4JSF tag

2007-04-09 Thread alexg79
The tag | a4j:commandLink value=Previous action=#{categorybean.setPage(0)} / fails to render, saying: javax.el.ELException: Error Parsing: #{categorybean.setPage(0)} | at org.apache.el.lang.ExpressionBuilder.createNodeInternal(ExpressionBuilder.java:125) | at

[jboss-user] [EJB/JBoss] - Re: Can you change the Transaction Timeout dynamically?

2007-04-09 Thread jaikiran
Have a look at http://wiki.jboss.org/wiki/Wiki.jsp?page=TransactionTimeout View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035717#4035717 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035717

[jboss-user] [Installation, Configuration Deployment] - MalformedURLException: no protocol: META-INF/webserver-xmbea

2007-04-09 Thread vfpeter
We are trying to run JBoss on OpenVMS. We did not have any issues installing JBoss. When we tried to start the server, the following issues were displayed: | 14:21:25,054 ERROR [MainDeployer] Could not create deployment:

[jboss-user] [JBoss Seam] - Re: Render PDF to binary

2007-04-09 Thread [EMAIL PROTECTED]
Does the itext example work correctly for you? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035721#4035721 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035721 ___ jboss-user

[jboss-user] [JBoss Getting Started Documentation] - Re: JBoss 5 documentation

2007-04-09 Thread mveitas
Just bring this subject up again, does anyone know anything about the status of JBoss 5.x docs? -Matt View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035722#4035722 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035722

[jboss-user] [Messaging, JMS JBossMQ] - MDB sending a message

2007-04-09 Thread hasc
hi i have a maybe newbie question. i was trying to make a synchronous jms call. the class MessageProducer sends a request and to a MDB wich in return sends a message back to a temporary queue. everything seems to work untill the message should be recievedform the temporary queue.

[jboss-user] [EJB/JBoss] - Re: Can you change the Transaction Timeout dynamically?

2007-04-09 Thread kvbisme
Missed that Wiki page ... I had previously tried the BMT suggestion with no luck, still not 100% what I was looking for but far better than my current solution. Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035724#4035724 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: org.hibernate.TransientObjectException on Fork...

2007-04-09 Thread saschwen
Hey, I re-evaluated the logs and noticed that the second branch is executing like it should, It just wasn't doing anything because the objects in the context didn't match. I was then wondering why I was getting the error. I was using a JbpmContext that was connected to a postgresql database,

[jboss-user] [JBoss Portal] - Re: an error about the

2007-04-09 Thread PeterJ
The missing class appears top be part of the Sun portal implementation. It would appears that when you use Sun's Studio Creator2 tool that it builds Sun-portal specific portlets. I am not familiar with that tool so I do not know if there is a way to build standard portlets with it. You could

[jboss-user] [JBoss Getting Started Documentation] - Re: Truly at starting point

2007-04-09 Thread PeterJ
No, it does not go back to the command prompt. The console window stays open until the server terminates. Occasionally, more logging output will show up. TO start the server as a service, see http://wiki.jboss.org/wiki/Wiki.jsp?page=RunJBossAsAServiceOnWindows. View the original post :

[jboss-user] [JBoss Seam] - Re: About Identity login

2007-04-09 Thread rlhr
Overriding the message work fine. So I guess there is no need for a JIRA issue. Thanks a lot. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035728#4035728 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035728

[jboss-user] [Clustering/JBoss] - Re: Clustering and Load Balancing in Jboss-4.0.2 using Apach

2007-04-09 Thread [EMAIL PROTECTED]
Some code is calling HttpSession.setAttribute and passing a non-serializable attribute as the attribute value. In this case it looks to be a reference to the session itself. Suggest you write an javax.servlet.http.HttpSessionAttributeListener implementation and have it analyze (i.e. try to

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - Re: Getting Error When Deploying

2007-04-09 Thread PeterJ
If you fix the problem that is causing this error message, then everything should work. :-) But seriously, you have not told us anything about the problem, or the circumstances in which it occurs. Please supply: * The operation system you are running (name and version) * The JVM you are

[jboss-user] [JBoss Seam] - Re: Email and internationalization

2007-04-09 Thread rlhr
here is my email template: | ?xml version=1.0 encoding=ISO-8859-1 ? | m:message xmlns=http://www.w3.org/1999/xhtml; | xmlns:m=http://jboss.com/products/seam/mail; | xmlns:h=http://java.sun.com/jsf/html; | xmlns:f=http://java.sun.com/jsf/core; |

[jboss-user] [JBoss Seam] - Re: Email and internationalization

2007-04-09 Thread rlhr
I should add that EMAIL_TEST_SUBJECT and EMAIL_TEST_BODY are defined in a properties file and contains non utf8 characters. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035735#4035735 Reply to the post :

[jboss-user] [JBossWS] - Strange java code generated by wsprovide

2007-04-09 Thread zauberlehrling
Hi, I build a webservice with the following simple pojo endpoint: package beispiel_1; | | import javax.jws.WebService; | import javax.xml.ws.RequestWrapper; | import javax.xml.ws.ResponseWrapper; | | @WebService | public class PojoEndpoint { | |

[jboss-user] [JBoss Getting Started Documentation] - Re: Truly at starting point

2007-04-09 Thread AggressiveFish
Peter, Thanks so much for the info, appreciate it. Everything worked fine. One question though: in the syntax statements for JavaService it gives hotspot|server|classic as options. Right now I have a client and server directory underneath the jre/bin directory and server I believe is being

[jboss-user] [JBoss Seam] - Re: p:barCode seamPDF + iText barcodes

2007-04-09 Thread ivanflorentin
I created a case and uploaded the files, note that I only need code128 type of barcode at this moment, so I didn't test much the other types. There is also an example of use in the package. The functionality for code128 is also not complete noe but i expect to expad it in the following days. It

[jboss-user] [JBoss Seam] - Re: Drop Down Lists using Facelets?

2007-04-09 Thread petemuir
waynebagguley wrote : | The equals method of the entity bean returns true if it matches the primary key fields of the comparing bean | Either that, or ensure that the same persistence context is used for loading the list, and then reloading the selected item - this is easy to do by

[jboss-user] [Beginners Corner] - JSPs in JBoss

2007-04-09 Thread AggressiveFish
I've been using JRun up to this point and the development environment was already set up. I want to start using JBoss to run my JSPs but wasn't sure where I should put them. Is there a specific directory I should put them? Is there a way to point to another directory to access them? Which

[jboss-user] [JBoss Messaging] - FYI: mssql-persistence.xml uses reserved words for column n

2007-04-09 Thread chip_schoch
I noticed in the mssql-persistence.xml file that came with JBM1.2 the word CLUSTERED is used for a column name. This is a reserved word. Changing the script to IS_CLUSTERED fixes the exception thrown when creating the tables: ?xml version=1.0 encoding=utf-8? | | !-- | MS SQL

[jboss-user] [EJB 3.0] - JMX conflict when embedding

2007-04-09 Thread marcelruff
Hallo, i have embedded jboss EJB3 into my app, and when starting java MyApp it works as expected. As i need JMX i need to start it like: java -Dcom.sun.management.jmxremote MyApp Now the startup fails with: 16:05:51,915 DEBUG JaccHelper:143 - HandlerBean has no @SecurityDomain -

[jboss-user] [JBoss Getting Started Documentation] - Re: Truly at starting point

2007-04-09 Thread PeterJ
Actually, HotSpot is the brand name of the JVM (it is a trademark of Sun). To understand the JVM options, open the java_home/jre/lib/i386/jvm.cfg file. It lists the various options that are valid. You will note there that 'hotspot' equates to 'client'. Ultimately, these option decide which

[jboss-user] [JBoss Portal] - Portal, A4J and RichFaces

2007-04-09 Thread smoyer
Have any of you trailblazers used RichFaces within your Portlets. I haven't found anything on the wiki, but would be interested in knowledge gained from the process. If there's enough interest, I'll keep notes on my progress and try to consolidate the community's accummulated knowledge into a

[jboss-user] [JBoss Seam] - Re: Seam enhanced EL expression fails in an Ajax4JSF tag

2007-04-09 Thread petemuir
There is a known issue with using Seam EL enhancements inside facelets tags. I think that jboss-el in Seam 1.3 should fix this View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035751#4035751 Reply to the post :

[jboss-user] [Beginners Corner] - Re: JSPs in JBoss

2007-04-09 Thread PeterJ
Package them in a war file and copy the war file to the server/xxx/deploy directory. Or deploy them as an exploded directory in that same location. See http://wiki.jboss.org/wiki/Wiki.jsp?page=ExplodedDeployment To specify a different directory, look at the URLs attribute in the last meban in

[jboss-user] [JBoss Getting Started Documentation] - Re: Truly at starting point

2007-04-09 Thread AggressiveFish
Really? lol. I thought there was client, server, and a hotspot for each. Nice to know this. Thanks again. AF View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035754#4035754 Reply to the post :

[jboss-user] [JBossCache] - use of org.hibernate.cache.UpdateTimestamp

2007-04-09 Thread aricci
hi all, i am using JBossCache (1.4.1.SP3) and i am trying to understand how it works. looking at the printDetails() function of the JBossCache bean in the JBoss JMX-Console, i have noticed that org.hibernate.cache.UpdateTimestamp..item is updated everytime with the timestamp of the last

[jboss-user] [JBossCache] - Re: use of org.hibernate.cache.UpdateTimestamp

2007-04-09 Thread [EMAIL PROTECTED]
It's not needed by JBoss Cache per se, it's needed by Hibernate. Briefly mentioned in the Hibernate docs at http://www.hibernate.org/hib_docs/v3/reference/en/html/performance.html#performance-querycache. Basically, Hibernate tracks the update timestamp for an entity type so it can know if any

[jboss-user] [JBoss jBPM] - to Froschfinger!!!!

2007-04-09 Thread jbmp user
Hi, Froschfinger!!! In this post http://www.jboss.org/index.html?module=bbop=viewtopict=105521 you write that you integrated your application with jbpm without problems. Please, you would can tell me step by step how you did it??? I already have create a database with MySQL, and I already have

[jboss-user] [EJB 3.0] - Re: Is Ejb3 embedable mature for production use?

2007-04-09 Thread fabio.ita04
cause I can't. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035762#4035762 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035762 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Web Based GPD?

2007-04-09 Thread mdesignz
Are there any available web-based graphic process designers that can be used insted of the Eclipse plug-in? Thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035768#4035768 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Web Based GPD?

2007-04-09 Thread kukeltje
no, sorry View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035769#4035769 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035769 ___ jboss-user mailing list

[jboss-user] [JBossWS] - parser exception when deploying webservice

2007-04-09 Thread alexboyer
I am using 4.0.5.GA and 1.2.0.SP1. I used wsconsume to create a top-down web service. When I deploy I get an error as follows. As this error seems to be from trying to parse a jboss generated .xsd file I am unclear what to do. I assume this schema is generated from the wsdl. I cannot see any

[jboss-user] [Messaging, JMS JBossMQ] - MDB listening a Queue in another JBoss instance

2007-04-09 Thread fidi
Hi! I´d like to make a MDB to listen messages from a Queue that was bound by another JBoss instance. Anybody have a full sample or tutorial using it? Thanks! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035771#4035771 Reply to the post :

[jboss-user] [JBoss Seam] - Exception on servlet processing request

2007-04-09 Thread kingcu
Hello I am getting the following exceptions when one of the servlets gets an incoming request. Any idea? Thanks, Tong | 13:26:09,680 ERROR [ExceptionFilter] uncaught exception | java.lang.IllegalStateException: No application context active | at

[jboss-user] [JBoss/Spring Integration] - Re: Struts spring hibenate in jboss without jboss-deployer

2007-04-09 Thread alesj
Try without .har. Or btw, why do you need .har? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035773#4035773 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4035773 ___ jboss-user

[jboss-user] [JBoss jBPM] - release date for jBPM-BPEL 1.1 GA?

2007-04-09 Thread meghanai_99
Hello, From the roadmap on JIRA it seemed the release date for jBPM-BPEL 1.1 was 30/March/2007. But I don't see it out yet. What the revised date for its release? Thanks, Meghana View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035774#4035774 Reply to the

[jboss-user] [JBoss Messaging] - Problem sending message from container using Managed connect

2007-04-09 Thread cresny
We have a JBoss 4.0.5.GA server instance (server A) communicating with a non-clustered JBoss Messaging instance (server B) via scoped deployment and modified JCA datasource descriptor as outlined in:

[jboss-user] [Messaging, JMS JBossMQ] - Multiple messages are getting lost in each queueReceiver.rec

2007-04-09 Thread MainakB
I am using JBOSS Messaging 1.0.1.GA. with JBOSS 4.0.5 GA and not using transacted session. I am trying to fetch messages from a pre-configured Queue in CLIENT_ACKNOWLEDGE_MODE. The queue had already a large number of message say 4. Each time I use queueReceiver.receive(), multiple messages

[jboss-user] [EJB 3.0] - Re: EAR file module SubDeployment ordering

2007-04-09 Thread pakemann
Sorry I didn't nitice your post earlier. My jboss-app.xml is pretty straightforward: ?xml version=1.0 encoding=UTF-8? jboss-app module-orderstrict/module-order /jboss-app I am still wondering about module un-deploy order. Good Luck! View the original post :

[jboss-user] [JBoss Seam] - Re: Exception on servlet processing request

2007-04-09 Thread [EMAIL PROTECTED]
Do you have web:context-filter url-pattern=/servlets/*/ or something similar in your components.xml? If not, read up on how to wrap non-faces servlets with the Seam context filter in the Seam documentation. View the original post :

[jboss-user] [JBoss Seam] - Re: Seam enhanced EL expression fails in an Ajax4JSF tag

2007-04-09 Thread alexg79
Ok, but meanwhile, I wanted to put up links so the user can jump to another page on the table without having to refresh the whole page. How can I possibly accomplish this? How can I tell the seam component which page I want to jump to? View the original post :

[jboss-user] [JBoss Seam] - Re: Changes not persisted using EntityHome

2007-04-09 Thread gzoller
It seems like overkill--and its a bit hard to describe w/o seeing it or the following struggles I've had trying to accomplish this very simple operation. In a nutshell if I do it exactly like the tutorial I get an java.lang.UnsupportedOperationException. This is because my list comes from my

[jboss-user] [Beginners Corner] - Re: JSPs in JBoss

2007-04-09 Thread AggressiveFish
Thanks again Peter. I guess the layout is similar to JRun with the war and WEB-INFO directories. Couple of really stupid questions now: when entering localhost:8080/ what path does that go to? The reason why I'm asking this is because the directory(ies) I thought i would lead to doesn't appear

[jboss-user] [Beginners Corner] - Re: JSPs in JBoss

2007-04-09 Thread AggressiveFish
Never mind Peter. I had been trying to put in jmx-console.war, didn't realize it but tried taking off the .war and it worked. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4035787#4035787 Reply to the post :

  1   2   >