[jboss-user] [JBoss Seam] - Re: PhaseListener in Seam 2.0

2008-01-22 Thread nickarls
Which line does the NPE come from? Is it the faces context or external context that is null? Not that I'm that familiar with the JSF lifecycle so that I could say what should be available at what phase... View the original post :

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

2008-01-22 Thread nathandennis
playing 10 years of catch up in java and 5 years of catch up in seam. is see org.jboss.seam.ui.graphicImage.GraphicImageRendererBase calls a | HTML.renderHTMLAttributes(writer, component, HTML.IMG_PASSTHROUGH_ATTRIBUTES); | | org.jboss.seam.ui.util.HTML.java are we missing and

[jboss-user] [JBoss Seam] - Re: Creating Seam iText PDF: Linebreak in p:table cell

2008-01-22 Thread brachie
@Norman: Thanks for the reply, you saved my day! :-) But I realized that something like: p:cell |p:paragraph |p:text ... / - p:text ... / |/p:paragraph | p:text ... / | p:text ... / | /p:cell Will only display the text in the two last p:text ... / tags, not

[jboss-user] [Installation, Configuration DEPLOYMENT] - JBOSS as windows service

2008-01-22 Thread yuvalp
Dear fellow developers I have installed JBOSS 4.0.3 on a 64 bit machine running Wnidows Server 2003. I also configured JBOSS to run as windows service. Unfortunately when I try to run the service I get the following message: LoadLibrary is not a valid Win32 application. Could not load the Java

[jboss-user] [JBoss Seam] - Web application where user can add new static pages

2008-01-22 Thread marius.oancea
Many applications i do have the common requirement that customer has to be able to add new pages (new entries in menu) and also to edit parts of application pages. Until now i used opencms and made a web filter that mixes the content of my application with a template stored in opencms. I'm

[jboss-user] [JBoss Seam] - Re: Problem with Seam tests and

2008-01-22 Thread chawax
Thanks Pete. As you suggested, I filed a JIRA issue for this : http://jira.jboss.org/jira/browse/JBSEAM-2519 Note the problem occurs also when using dependsOnMethods, so it looks like the problem deals with dependent testing, not only test groups. View the original post :

[jboss-user] [JBoss jBPM] - Re: How you know when the process is waiting for a Task ?

2008-01-22 Thread francis1970
Should I persist this information in a table when the assignment task name=Task1 | assignment class='com.sample.action.SimpleAssignmentHandler' / | /task is fired ??? thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122065#4122065 Reply

[jboss-user] [JBoss Seam] - Re: authenticator.authenticate called several times

2008-01-22 Thread appendix
Hi! I had same issue some time ago. Have a look at the following thread in this forum: http://www.jboss.com/index.html?module=bbop=viewtopict=122033 Cheers, K. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122073#4122073 Reply to the post :

[jboss-user] [JBossCache] - JDBCacheLoader hot redeploy

2008-01-22 Thread lovelyliatroim
Just for your information. Using JBoss AS 5.0 Beta 3 and JBoss Cache 2.0. Im using the JDBCCacheLoader, when i do a hot-redeploy my database gets purged. This does not happen when i shutdown and restart. And my attribute purgeOnStartUp is set to false. Came across it when mucking around.

[jboss-user] [JBoss Seam] - Re: Target Unreachable, identifier 'expre' resolved to null

2008-01-22 Thread rodosa
Hello! I've a problem similar that yours!! How had you solucinate it?? Thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122082#4122082 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122082

[jboss-user] [JBoss jBPM] - Re: Strange Asynchronous Behaviour of JBPM(3.2.2)

2008-01-22 Thread soumya_in
Yes...Asynchronous means a non-blocking.I have a requirement like this. e.g. CreditValidation.My main process validate a credit card no which will be validated in a subprocess.At that point customer registration will be done in the main process.Now at all a customer entered a wrong credit card

[jboss-user] [JBoss Messaging] - Re: How Do I Run JBoss Messaging TestSuite in Q1 2008

2008-01-22 Thread jmesnil
cmagidcmagid wrote : My goal is to get some version of JBM unit / integration tests working. | | ... | | testTopic Error Incompletely deployed: *** DEPLOYMENTS IN ERROR: | Name - Error MinaService - java.lang.IllegalArgumentException: | No enum const class |

[jboss-user] [JBoss Messaging] - Re: Secure Queue implementation in JBoss 4.0.2.GA

2008-01-22 Thread mskonda
You can secure your destinations (topics/queues) either individually or on a global basis. Individual security: Add the 'SecurityConfig' attribute with appropriate role access as shown below to the individual destination configuration: | mbean

[jboss-user] [JBoss Messaging] - Re: Occasional NPE when use JGroups multiplexor

2008-01-22 Thread JeremyStone
Thanks, Tim. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122086#4122086 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122086 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Re: JBoss-Portal + Richfaces 3.1.3.GA + FileUpload ? IsPossi

2008-01-22 Thread hoehmi
I wrote a short howto in my blog ... have a look http://ahoehma.wordpress.com/2008/01/17/fileupload-mit-richfaces/ regards andreas View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122087#4122087 Reply to the post :

[jboss-user] [JBoss Seam] - Re: PhaseListener in Seam 2.0

2008-01-22 Thread wachtda
The NPE comes from the FacesContext self. It's always the first beforePhase which throws the NPE! As a workaround I surround the call of the trim-method with a if-check! | //Check if the Context has no ViewRoot | if (context.getViewRoot() != null) { |

[jboss-user] [JBoss jBPM] - Re: eclipse designer setup issues

2008-01-22 Thread UmaSantharam
I tried the following now. I downloaded jbpm-starters-kit-3.1.3 and JBossIDE for Eclipse 2.0.0.Beta2 whcih includes JBPM plugins. With this setup I am able to create BPM project and deploy. I created sample websale project and I could successfully test it. But when I try to import any

[jboss-user] [JBoss Seam] - Re: PhaseListener in Seam 2.0

2008-01-22 Thread nickarls
Go back to square one and implement the normal PhaseListener and override the getPhaseId() to only react to phases in which the view root exists ;-) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122092#4122092 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Cannot join transaction, not a JoinableCMTTransaction

2008-01-22 Thread atiwoto
I am also facing a similar problem with WARN [AbstractEntityManagerImpl] Cannot join transaction, not a JoinableCMTTransaction I would be grateful if you assist Below is my configuration Thanks ?xml version=1.0 encoding=UTF-8? components xmlns=http://jboss.com/products/seam/components;

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Force JBoss Classloader to use local lib within EAR

2008-01-22 Thread holly77
Thanks for your hints! I read these enries already, but could not find a soultion for my problem within. I do not want to isolate the EAR, as Services within would not be useable without additional configuration by other components in JBoss, any more. It's a central component and would cause a

[jboss-user] [JBoss Seam] - Re: problem with multiple seam component jars in a WAR

2008-01-22 Thread Techieexchange
Hi, If you want to load your Entities (with or without Seam component) from a seperate JAR then you should register those entities in your persistence.xml file like this: | persistence-unit name=4cWebDatabase transaction-type=RESOURCE_LOCAL |

[jboss-user] [Beginners Corner] - Re: JBoss starts but no access

2008-01-22 Thread jaikiran
What's the output of the following commands (when JBoss has started): telnet localhost 8080 telnet localhost 1099 Also, can you post the latest logs after the changes that you have done to your setup. View the original post :

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

2008-01-22 Thread altes-kind
Is it by now possible to use several messages files with #{message.xxx}? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122098#4122098 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122098

[jboss-user] [JBoss Portal] - Portlet out of memory problem when calling axis2 stub

2008-01-22 Thread krashsun
Hi, I have a existing jsf web application that use web service tool axis2 stub to call another service which is tested and working. Tested it in jboss 4.2.2. After I make the neccessary configuration to change it to portlet (added the portlet.xml and jsf-portlet.jar) and run on jboss portal,

[jboss-user] [JBoss jBPM] - Re: Problem with managed beans

2008-01-22 Thread rodosa
Yes, It isn't a problem of directory ... This problem occurs the first time when the form is displayed any ideas? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122105#4122105 Reply to the post :

[jboss-user] [JBoss Messaging] - After multiple disconnections client application is unable t

2008-01-22 Thread Sailendranath
Hi, Following is the environment that I am using: 1) JBOSS4.2.2 running on a Linux Box 2) JBOSS Messaging 1.4.0.SP2 3) I have configured JBOSS server to a MYSQL database server (JBOSS and MYSQL database are on the same BOX) 4) I am using queues for sending and receiving messages. I have

[jboss-user] [JBoss Seam] - Re: The old ClassLoading problem with ICEfaces

2008-01-22 Thread Newlukai
Thanks for your reply. I don't use any async component. I built the icefaces example (BTW: the jboss repository doesn't have any icefaces dependency stored, I had to create a local repository). It uses the same structure as my app does. But the ICEfaces example doesn't use menuBar ;) And it is

[jboss-user] [JBoss Seam] - Re: authenticator.authenticate called several times

2008-01-22 Thread terryb
Thanks you, I have upgraded seam 2.0.1CR1 and implementing security event approach to handle login pre/post processes. However, it appears that in my case identity.logout is not raising loggedOut event? I don't think I am supposed to do anything other than the code below to raise/capture

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: JBOSS as windows service

2008-01-22 Thread jaikiran
How have to created the service? Which version (and vendor) of Java are you using? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122101#4122101 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122101

[jboss-user] [JBossWS] - invalid byte 1 of 1 byte UTF 8 Sequence

2008-01-22 Thread AJanz
Hi, i implemented a web service. when i try to generate a test client from wsdl using the url e.g. http://127.0.0.1:8080/Service/Service?wsdl i got the exception org.xm.sax.SaxParseException - Invalid byte 1 of 1-byte utf 8 sequence. do i generate the test client using the same(!) wsdl file

[jboss-user] [JBossWS] - Re: Problem importing multiple schema from the same namespac

2008-01-22 Thread Didi1976
I checked the WSDL-2.0 spec at http://www.w3.org/TR/wsdl20/. anonymous wrote : | 3.1.2 Inlining XML Schema | ... | A WSDL 2.0 document MAY inline two or more schemas from the same targetNamespace. For example, two or more inlined schemas can have the same targetNamespace provided that

[jboss-user] [JBoss jBPM] - Re: Jbpm with tomcat and postgresql

2008-01-22 Thread jobu
Fist of all thnks for ur response This is my hibernate.cfg.xml !-- jdbc connection properties -- org.hibernate.dialect.PostgreSQLDialect org.postgresql.Driver jdbc:postgresql://192.168.0.12:5432/JbpmDB dbuser dbuser org.hibernate.cache.HashtableCacheProvider

[jboss-user] [Installation, Configuration DEPLOYMENT] - Regarding jboss-service.xml

2008-01-22 Thread bijaya4u
can we un-comment a portion of code of jboss-service.xml by using an Ant script View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122110#4122110 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122110

[jboss-user] [JBoss Messaging] - Re: Issues moving from postgresql to oracle

2008-01-22 Thread [EMAIL PROTECTED]
Hello, have you deleted the old configuration files? Do you have correct datasource name on all places? Don't you use something like clustered-oracle-persistence-service.xml? Where did you take oracle-persistence-service.xml from? View the original post :

[jboss-user] [EJB 3.0] - Re: Persistence unit dependency failure on deploy

2008-01-22 Thread jaikiran
You will have to provide more information about your application and its packaging. Which version of JBoss and Java are you using? And what is business.jar and weblib.jar? Do you see any exceptions, if yes then post the entire exception stacktrace View the original post :

[jboss-user] [JBossWS] - Re: Can a webservice have a constructor?

2008-01-22 Thread toroleo
Thanks for your reply. What you told me is exactly the same as I think. But the company that cooperates with us said the things that I explain you and I wanted to know who are right. Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122118#4122118 Reply

[jboss-user] [JBoss Seam] - Re: authenticator.authenticate called several times

2008-01-22 Thread nickarls
How about org.jboss.seam.loggedOut? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122119#4122119 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122119 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - .war file or .war directory?

2008-01-22 Thread cicciociccio
Hello I'm a jboss newbie.. I find somewhat troublesome the beginning or set up of a project: suppose I need to code an helloworld + link to AnotherPage, I'm getting confused by dealing both with .ear folders, .ear file (compressed? already built?) I'm reading the examples and the seam tutorial,

[jboss-user] [JBoss Seam] - Re: jboss seam 2.0.0 cr3 shell problem

2008-01-22 Thread [EMAIL PROTECTED]
Add the key to the ValidatorMessages bundle... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122114#4122114 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122114 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: .war file or .war directory?

2008-01-22 Thread nickarls
Download Eclipse Europa J2EE version and JBoss Tools 2, generate a WAR-based new Seam project and start sniffing around. Hello World ain't what it used to be ;-) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122127#4122127 Reply to the post :

[jboss-user] [JBossWS] - Re: JBoss WebService client configuration thru a proxy serve

2008-01-22 Thread darkLED
hi all, what about this topic? i'm interesting in it too... View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122130#4122130 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122130 ___

[jboss-user] [JBoss Seam] - Re: PhaseListener in Seam 2.0

2008-01-22 Thread wachtda
It seems, that seam 2.0 doesnt allow to implement a normal phaseListener. If I implent the phaseListener the normal way, nothing happens! But now I have the problem, that if I make it with the observer it work's but not if i have ajax elements on my page. (Aren't they in the ViewRoot?) View

[jboss-user] [JBoss Seam] - Re: FacesContext is null at Session startup???

2008-01-22 Thread joaobmonteiro
Hi, I have the same problem. At @create method the faces context is null. I´m using Seam 2.0.0GA, Tomcat6. | | @Name(appContext) | @Scope(ScopeType.CONVERSATION) | public class ApplicationContext implements Serializable { | | ... | |@Create | public

[jboss-user] [Beginners Corner] - Re: JBoss starts but no access

2008-01-22 Thread NSchweig
...there is something missing; I think there is not enough space for my server.log... Can I load up the file somewhere? Or tell me what information do you need. Thank you! Nicole Schweighardt View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122133#4122133

[jboss-user] [JBossWS] - STRTransform Exception in WS Signing

2008-01-22 Thread lafaserem
Hi! Finally I got my WS and client running and signing messages.. Server receives SOAP messages with signature and client receives responses (or at least it does what it's supposed to do :) ) But during the execution an exception appears... It seems it doesn't have any consequence, but any

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

2008-01-22 Thread Techieexchange
Hi, I'm sucessfully using SEAM - Spring integration with modular approach to Services, Entities, Business and Web (may be remoting / webservices later). If you get any problem with configuration just post it here, i'll try to help you. View the original post :

[jboss-user] [JBoss jBPM] - Re: Jbpm with tomcat and postgresql

2008-01-22 Thread mputz
jobu, it would really help if you used the [ code ] your code / your xml files [ /code ] tags (without the blanks), to show your configurations. Besides that, I would suggest to start off by following the step-by-step explanation on the wiki (just substitute mysql with postgres) to get a

[jboss-user] [Beginners Corner] - Re: JBoss starts but no access

2008-01-22 Thread jaikiran
What i am looking for is a message like anonymous wrote : 16:08:29,355 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-8080 Whatever logs that you have posted, do indicate that the server startup is working fine. I'm surprised that telnet localhost 1099 does not output

[jboss-user] [JBoss Seam] - Re: Pageflow hides stacktrace

2008-01-22 Thread nhpvti
Kruno wrote : When runtime exception originates from method inside SFSB, which is called by pageflow it is not possible to see origin of exception just that pageflow can't call that method. So to actually debug one needs to bypass pageflow to see the real exception. | Is there any way to

[jboss-user] [EJB 3.0] - Using joda time in entites

2008-01-22 Thread hamtho2
Hi @all, does anyone know, if there is a chance to use the joda time library as the default date-implementation with ejb3? I´m currently facing the following problem. I would like to use the DateTime objects of the joda library within my entities instead of using the plain, old and buggy

[jboss-user] Seam JNDI: javax.naming.NameNotFoundException: mtgInventory not bound

2008-01-22 Thread Bram Patelski
Hi, I'm trying to deploy an ear on JBoss 4.2.2.GA using Seam 2.0.0.GA. Deployment is fine, no errors and I can see my EJB component loaded like this: 12:27:50,101 INFO [Component] Component: cardsAction, scope: STATELESS, type: STATELESS_SESSION_BEAN, class:

[jboss-user] [JBoss Seam] - Bypass validations in some instances

2008-01-22 Thread bludginozzie
I want to bypass validations but still write to the data model but I cannot figure out how to do this. I can use immediate=true however this prevents the valid values from being placed in to the data model. Why would I want to do this you ask... Well I have a wizard and when the users clicks

[jboss-user] [JBoss Seam] - Re: programmatic starting a list of conversations

2008-01-22 Thread [EMAIL PROTECTED]
So, you want to start multiple workspaces at once? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122150#4122150 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122150 ___

[jboss-user] [JBossWS] - Re: STRTransform Exception in WS Signing

2008-01-22 Thread [EMAIL PROTECTED]
I would check that jbossws-client.jar is in your client classpath. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122147#4122147 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122147

[jboss-user] [Beginners Corner] - What does 'GA' means?

2008-01-22 Thread aashutosh01
Pls give some information about - What is 'GA' in the new JBoss release version. (JBoss-4.2.2 GA) Thanks. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122153#4122153 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Bypass validations in some instances

2008-01-22 Thread nickarls
From the department of long shots: Hmmm, you could perhaps skip the s:validate tags and use programmatic validation? Or perhaps have a skipValidate boolean in your entity that you toggle and then use custom validators to trigger only when they are true? View the original post :

[jboss-user] [JBoss Portal] - Re: Portlet out of memory problem when calling axis2 stub

2008-01-22 Thread ebephil
Hi, did you explicitly increase the PermGen size? I usually add the following to $JAVA_OPTS in run.conf: -Xms256m -Xmx768m -XX:MaxPermSize=256m You can e.g. use the jconsole to track your PermGen usage (and check if it was really increased). View the original post :

[jboss-user] [JBoss Seam] - Re: conversationId and IPC Portlets

2008-01-22 Thread dcshonda
Hi everyone! Please, help me. I have a problem with IPC Portlets. I have similar case. But my problem is that I cannot rerender portlet B. I have a listener in portlet B, and it works fine. My problem is that I have a h:commandLink ... in Portlet A, and I want to recibe a data in portlet B,

[jboss-user] [Security JAAS/JBoss] - Error interface org.jboss.security.saml.SSOManagerService is

2008-01-22 Thread malves
Hi, I've configured 2 webapps with SSO Federated on JBoss. Configurations seems to be fine. But, I've got the error below when trying to access the index page on one of webapps. Looking for SSOManagerService on Jboss JMX Console, and there it is. Debugging the code of SSOManager class I

[jboss-user] [JBoss Seam] - [SeamPhaseListener] swallowing exception

2008-01-22 Thread jamesjmp
hi, I have added some restrictions taking into consideration the user's roles to access some pages. They work ok and when the org.jboss.seam.security.AuthorizationException appears the flow is redirected properly. Howewer I find that the very first time after starting the server or deploying

[jboss-user] [JBoss Seam] - Problems using a4j:support, s:selectItems and s:convertEntit

2008-01-22 Thread Neiti01
Hi, I am using two selectOneMenus with s:convertEntity. When a value is selected in the first selectOneMenu the selectItems of the second one are reloaded. Everything works fine until i press a a4j:commandButton to reRender a dataTable based on the selected values. After pressing the button

[jboss-user] [Beginners Corner] - Re: What does 'GA' means?

2008-01-22 Thread jaikiran
See this http://www.jboss.com/index.html?module=bbop=viewtopicp=4117965#4117965 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122162#4122162 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122162

[jboss-user] [JBoss Seam] - Re: task/process id may not be null

2008-01-22 Thread QPool.Char
Hmm... yes, we have many many methods to be called by JSF, and try to sort them by making this hops through other classes. Otherwise we would lose control, but if you think it could work if we dont do so, i will try it now. View the original post :

[jboss-user] [JBoss Seam] - Re: FailedConfiguration while running test

2008-01-22 Thread hubaghdadi
There is no endorsed directory under $JAVA_HOME/jre/lib Is it ok to create it by hand? Is it ok to put jaxb-api.jar under any directory in my system (as I'm passing its directory as a system property)? Appreciate your patience. View the original post :

[jboss-user] [JBoss Seam] - Re: task/process id may not be null

2008-01-22 Thread [EMAIL PROTECTED]
Post the stack trace, I want to see what interceptor order you have. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122169#4122169 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122169

[jboss-user] [JBoss Seam] - Re: Ear with multiple web modules - problem with components.

2008-01-22 Thread [EMAIL PROTECTED]
Can you report a JIRA issue and file a simple test case? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122170#4122170 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122170 ___

[jboss-user] [JBoss Seam] - Seam and MDB without web frontend

2008-01-22 Thread erlaan
Hi, I am working on a SEAM project that consists of two EAR files. One with a web front-end that puts a message in a queue and another one that retrieves messages from this queue using a MDB. The second EAR is deployed on a second server as well. This MDB is a SEAM component using other seam

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Porting JBPM to run on JBoss 4.0.4GA with PostgreSQL

2008-01-22 Thread saschwen
I've given the solution above. You'll have to download the proper version of hibernate. Modify the PostGresqlDialect as described above. Then build hibernate and replace the proper jars in the app server. Thank you, Steve View the original post :

[jboss-user] [JBoss Seam] - Re: Servlets in long running conversations

2008-01-22 Thread [EMAIL PROTECTED]
If you can post a runnable example with reproduction steps using Seam 2 to JIRA then we can take a look. Thanks :) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122173#4122173 Reply to the post :

[jboss-user] [JBossCache] - Re: JDBCacheLoader hot redeploy

2008-01-22 Thread lovelyliatroim
Ill also add in that the JDBC pooling config with C3p0ConnectionFactory doesnt work out of the box with JbossCache 2.0GA. It complains about missing the DataSource class. Just FYI, LL View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122176#4122176 Reply to

[jboss-user] [JBoss Portal] - JSF Portlet + IPC

2008-01-22 Thread dcshonda
Hi everyone! Please, help me. I have a problem with IPC Portlets + JSF + Seam. I am new in JBoss Seam and portlets and I am not very sure, what I am doing bad... I have two JSF Portlets: Portlet A and Portlet B. I have a listener in portlet B, and it works fine. My problem is that I have a

[jboss-user] [JBoss Seam] - Re: Long running conversation

2008-01-22 Thread [EMAIL PROTECTED]
anonymous wrote : Why false, thought it should be true? The promotion to long running occurs after your method returns. Is the bean deployed at startup? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122178#4122178 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: Jbpm with tomcat and postgresql

2008-01-22 Thread jobu
Dude. Insead of using Datasource can we use org.hibernate.transaction.JDBCTransactionFactory.. ?? I have already configured that in my hibernate.cfg.xml and also the jar files available in the project's classpath are.. clover.jar dom4j-1.6.1.jar hibernate3.jar

[jboss-user] [JBoss Seam] - How to properly end nested conversation using pageFlow??

2008-01-22 Thread seyan
I have a problem with ending nested conversation (invoked from conversation with custom/natural conversation Id). Conversations are defined in pages.xml: | conversation name=testConversation parameter-name=operationID | parameter-value=#{operation.id} / | | page

[jboss-user] [JBoss Seam] - Re: Unit testing Seam pageflow

2008-01-22 Thread [EMAIL PROTECTED]
The dvdstore tests a pageflow (the checkout pageflow). You don't need any special methods, just model your interactions with the app as normal. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122180#4122180 Reply to the post :

[jboss-user] [JBoss Seam] - Re: pageflow illegal navigation error

2008-01-22 Thread tjakopec
still a problem View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122188#4122188 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122188 ___ jboss-user mailing list

[jboss-user] [JBoss Portal] - Re: Access and display content stored in CMS

2008-01-22 Thread sjewett
Thomas, [EMAIL PROTECTED] wrote : Few hints: | You can always use the CMS ContentGetCommand to retrieve the HTML. | You can also create a URLCommandMapper that does it. Thank you. I'll try these. (I also found I could achieve my goal in the Admin Tool (I abandoned my portlet class) by

[jboss-user] [JBoss Seam] - Re: PhaseListener in Seam 2.0

2008-01-22 Thread [EMAIL PROTECTED]
Seam doesn't alter phase listeners registration with JSF at all. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122193#4122193 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122193

[jboss-user] [JBoss Seam] - Re: FailedConfiguration while running test

2008-01-22 Thread [EMAIL PROTECTED]
Put the jar into any directory on your system (I can't comment on whether you should put into your $JAVA_HOME). Define the system property. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122199#4122199 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Bypass validations in some instances

2008-01-22 Thread [EMAIL PROTECTED]
So, you want to skip the validations when you write to the model? Or when you persist the model to the database? If the former, then you can't use s:validate tags (I worked around this once by calling the validation manually on clicking the next button) - you need to be careful to attach the

[jboss-user] [JBoss Seam] - Re: Simple Question: How do you submit a form with JSF and

2008-01-22 Thread [EMAIL PROTECTED]
No, its in the docs http://docs.jboss.org/seam/2.0.1.CR1/reference/en/html/conversations.html#d0e5171 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122181#4122181 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122181

[jboss-user] [JBoss Seam] - Re: Is there an alternative to form submissions with Seam?

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

[jboss-user] [JBoss Seam] - Transaction demarcation problem

2008-01-22 Thread dreuzel
i need to update thousands of independent records in sheduled environment. For efficiency reasons I need to do that in a big loop ( set of loops) also because the underlying info is externaly organised like that. I disabled the seam control over transactions I'm trying to disable

[jboss-user] [JBoss Seam] - Re: authenticator.authenticate called several times

2008-01-22 Thread [EMAIL PROTECTED]
It certainly should do. You can try placing a breakpoint on Identity.logout() and see if the event is raised correctly there. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122185#4122185 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Web application where user can add new static pages

2008-01-22 Thread [EMAIL PROTECTED]
How about the Seam wiki? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122186#4122186 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122186 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Gravel in Seam 2

2008-01-22 Thread [EMAIL PROTECTED]
What were you using before? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122182#4122182 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122182 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Cannot join transaction, not a JoinableCMTTransaction

2008-01-22 Thread [EMAIL PROTECTED]
Start a new topic please. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122189#4122189 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122189 ___ jboss-user mailing list

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

2008-01-22 Thread [EMAIL PROTECTED]
http://docs.jboss.org/seam/2.0.1.CR1/reference/en/html/i18n.html#d0e8194 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122190#4122190 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122190

[jboss-user] [JBoss Seam] - Re: ClassCastException: ArrayList in DataModelBinder while o

2008-01-22 Thread [EMAIL PROTECTED]
Not sure sorry. Perhaps try on the icefaces forum as I can't see that you are doing anything wrong. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122194#4122194 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122194

[jboss-user] [JBoss Seam] - Re: .war file or .war directory?

2008-01-22 Thread [EMAIL PROTECTED]
Yes, the simple example is probably as simple as it gets. If you want asp, then use asp ;) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122195#4122195 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122195

[jboss-user] [JBoss Seam] - Re: Pageflow hides stacktrace

2008-01-22 Thread [EMAIL PROTECTED]
I fixed this recently, probably in trunk. Try a recent nightly. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122198#4122198 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122198

[jboss-user] [JBoss Seam] - FAILED CONFIGURATION: @BeforeClass init

2008-01-22 Thread vikramchhetryy
Hi All, When i try to run a test using ant test it throws an exception:- | Buildfile: build.xml | | compiletest: | | copytestclasses: | | buildtest: | [copy] Copying 1 file to /home/vikramc/workspace/Impact/test-build/META-INF | [copy] Copying 1 file to

[jboss-user] [JBoss Portal] - How to access HttpSession Attributes in a portlet.

2008-01-22 Thread dpaterson
I have a simple servlet that captures the login credentials and places them in the Web apps HttpSession then forwards the request to j_security_check. | protected void doPost(HttpServletRequest req, HttpServletResponse resp) | throws ServletException, IOException { |

[jboss-user] [JBoss Seam] - Re: Problems using a4j:support, s:selectItems and s:convertE

2008-01-22 Thread joaobmonteiro
Hi Neiti, I think that your selectOneMenu should be in a a4j:region/ tag. In this way, JSF will process their values. This a4j stuff usually has weird behavior. Sometime I have to change the scope to Conversation in order to have this working rigth. I hope that it could help you View the

[jboss-user] [Clustering/JBoss] - Avoid service to start at startup

2008-01-22 Thread rotula
I am running a clustered instance of jboss 4.2.1 GA and deploying a service app. MyClusterService - which extends ServiceMBeanSupport - is triggered via the scheduler to run periodically. Here is the jboss-service.xml: | server |mbean code=org.jboss.varia.scheduler.ScheduleManager |

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

2008-01-22 Thread damatrix
It's been Octomber 2007 since this error and i can't seem to still find what i'm doing wrong. Hasn't anybody any idea on what this is. I've stalled the reporting side of my project hoping something will come up, but i'm running out of options now. Please I need help on this one. View the

[jboss-user] [JBoss jBPM] - problems creating task instances

2008-01-22 Thread sgrassie
Hi, I'm having a problem creating task instances, specifically for the 1st task node in the fairly simple workflow I've created. I can create the first task ok, and I can end it, and save the instance. However upon creating the context again and reloading the process instance, things go badly

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

2008-01-22 Thread damatrix
Moving to 2.0.GA and JBoss 4.2.2.GA hasn't helped either. I'm just stuck here. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122216#4122216 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4122216

[jboss-user] [JBossWS] - xml header omitted retrieving wsdl over jboss

2008-01-22 Thread AJanz
hi, i published a web service on jboss. when i retrieve the wsdl over jboss the xml header is omitted. e.g. instead of ?xml version=1.0 encoding=ISO-8859-1 standalone=no? wsdl:definitions name=Service xmlns:wsdl=http://schemas.xmlsoap.org/wsdl/;

[jboss-user] [JBossCache] - Re: JDBCacheLoader hot redeploy

2008-01-22 Thread [EMAIL PROTECTED]
Are you referring to the http session or EJB session cache? Or are you directly using the cache from your application? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4122206#4122206 Reply to the post :

  1   2   3   >