[jboss-user] [Messaging, JMS & JBossMQ] - Re: JBossMQ JMS connection factory configuration

2007-06-05 Thread sirji
Hi all, I am also not able to create custom JMS connection factory after following the JBoss JMS documentation. Can someone provide us the steps that needs to be followed to create custom JMS connection factory along with configuration snippets? It will be very helpful. I request JBoss team t

[jboss-user] [Messaging, JMS & JBossMQ] - JMS Queue not binding to JNDI

2007-06-05 Thread sirji
Hi all, I am unable to notice JNDI binding message during JBoss server startup for JMS queue configured in "jbossmq-destinations-service.xml" file. jboss.mq:service=DestinationManager I remember, it used to come up in the initial days. I don't remember I have made any changes into t

[jboss-user] [JBoss Seam] - Re: How to use @Startup annotation?

2007-06-05 Thread [EMAIL PROTECTED]
Thanks for all the help. Will try creating new components instead of reusing session scoped components. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051595#4051595 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=405

[jboss-user] [Beginners Corner] - No bridge set

2007-06-05 Thread kishore25
i am getting following error and i am unable to get the servletcontext in portlet...can any one solve my problem please... | | import java.io.IOException; | import java.util.HashMap; | | import javax.portlet.GenericPortlet; | import javax.portlet.PortletException; | import javax

[jboss-user] [JBoss Seam] - Re: Exadel, JBoss and Seam

2007-06-05 Thread grdzeli_kaci
sorry, limousyf is right, i wanted to say "very good job guys " :)) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051593#4051593 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051593 __

[jboss-user] [JBoss Seam] - Re: Session scoped bean launching a conversational bean ques

2007-06-05 Thread [EMAIL PROTECTED]
| 17:18:21,372 INFO [Component] Component: uploadController, scope: CONVERSATION, type: STATEFUL_SESSION_BEAN, class: nz.co.selwynequestriancentre.actions.upload.UploadControllerImpl, JNDI: selwynequestriancentre/UploadControllerImpl/local | | 17:18:05,068 INFO [JmxKernelAbstraction]

[jboss-user] [JBoss Seam] - Session scoped bean launching a conversational bean question

2007-06-05 Thread [EMAIL PROTECTED]
This is a button in a session scoped bean. | | When pressed it is supposed to launch to a conversational bean, uploadController. This bean doesn't exist when the button is pressed. Is the bean supposed to automagically created by Seam? It is not created... Please advise. | @Supp

[jboss-user] [JBoss Portal] - Re: from hibernate to sybase

2007-06-05 Thread Sonal K.
I have already checked that. Its is there. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051588#4051588 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051588 ___ jboss-user

[jboss-user] [JBoss Portal] - Re: Migrate WebLogic Portal Application to JBoss

2007-06-05 Thread ashu_prakash
Are there any software, tool, utility availble for migration to JBoss Portal? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051586#4051586 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051586 _

[jboss-user] [JBoss Seam] - Re: Injection and relation between components

2007-06-05 Thread [EMAIL PROTECTED]
"hstang" wrote : As well, if you SourceConsumptionHome is in fact already conversation-scoped, you may want to try adding @Out to make sure the changes are outjected. This is not necessary. Just make sure that the sourceConsumptionHome component is conversation scoped. View the original post :

[jboss-user] [JBoss Seam] - rememberMe at security: cannot get the username

2007-06-05 Thread xtia004
Has anybody experienced this problem -- Identity cannot get the username from the cookie? By tracking into the code, the real cause is that at getCookie method FacesContext.getCurrentInstance() always returns null. The other session scope component with @Startup + @Create also has got the same p

[jboss-user] [JBoss jBPM] - Installation of the jbpm-bpel

2007-06-05 Thread pillcase
Dear all, I want to install the jBPM-bpel, and I've just created the jbpm-bpel.sar according to the bpel getting started guide; But there is something I could not understand, in the guide 3.5.3, Before deploying the service, start JBoss in the server configuration of your choice (see Server Con

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

2007-06-05 Thread [EMAIL PROTECTED]
"nathandennis" wrote : thanks shane, | i was hoping i was that lost.. It seems like there wasn't a bug with fileUpload after all, I retested it again and no matter what I did it worked every time. Perhaps because it was late at night when I tried it the first time my brain was playing tricks

[jboss-user] [JBoss Seam] - Re: Injection and relation between components

2007-06-05 Thread hstang
As well, if you SourceConsumptionHome is in fact already conversation-scoped, you may want to try adding @Out to make sure the changes are outjected. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051577#4051577 Reply to the post : http://www.jboss.com/index

[jboss-user] [JBoss Seam] - Re: Injection and relation between components

2007-06-05 Thread hstang
Is SourceConsumptionHome a regular javabean? If you haven't already, try adding a Scope=Conversation to the class. EntityHome objects are, by default, conversation-scoped so they will participate through the entire lifecycle of a conversation, but regular javabean components are event-scoped.

[jboss-user] [Beginners Corner] - Classloader -- multiple wars

2007-06-05 Thread haplar
If I have two different wars with the same fully qualified class name (e.g. pcg.animal.AnimalProps), can there be any problems with the classloader? If so, what should I look out for? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051575#4051575 Reply to th

[jboss-user] [JBoss Seam] - Injection and relation between components

2007-06-05 Thread rmemoria
Hi all, I'm using JBOSS 4.0.5 and SEAM 1.2.1 I don't know if it's a bug or my (wrong) way of using components. I have a long running conversation and a java bean component declared like this: @Name("drugOrderHome") | public class DrugOrderHome extends EntityHome{ | private static final

[jboss-user] [Remoting] - Re: Remoting from unsigned applet - ClassLoader security exc

2007-06-05 Thread [EMAIL PROTECTED]
See http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051568#4051568 in the "Design of JBoss Remoting, Unified Invokers" forum. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051569#4051569 Reply to the post : http://www.jboss.com/index.html?module=b

[jboss-user] [JBoss Seam] - Re: faces-config 1.1 or 1.2

2007-06-05 Thread [EMAIL PROTECTED]
And I just updated the scheme declarations everywhere. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051567#4051567 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051567 ___

[jboss-user] [JBoss Seam] - Re: Trouble Using on Glassfish

2007-06-05 Thread epbernard
Hi, Before digging more, try and update to HEM 3.3.1 Download the package and copy cp $HEM_HOME/lib/hibernate-annotations.jar $JBOSSAS_HOME/client cp $HEM_HOME/lib/hibernate-annotations.jar $HEM_HOME/server/default/lib cp $HEM_HOME/lib/hibernate-entitymanager.jar $JBOSSAS_HOME/server/default/lib c

[jboss-user] [JBoss Seam] - Re: @Out with stateless beans should be outlawed?

2007-06-05 Thread liudan2005
I have a similar problem with @Out and I don't know if it's caused by the same problem as described. I have a page that dispalys a search box and serach result, when searchResult annotated with @Out is null, a search box shows. Otherwise, search result is displayed. I've noticed search result i

[jboss-user] [JBoss Seam] - Re: faces-config 1.1 or 1.2

2007-06-05 Thread [EMAIL PROTECTED]
It is not needed in Seam 1.3, since it is already in the faces-config.xml in the seam jar. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051564#4051564 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051564 ___

[jboss-user] [JBoss Seam] - faces-config 1.1 or 1.2

2007-06-05 Thread awhitford
>From Michael Yuan's blog, he instructs to update the /WEB-INF/faces-config.xml >file to add the SeamELResolver using the new JSF 1.2 XML schema declaration... Looking at a fresh seam-gen application (from 1.3.0.ALPHA), I see that faces-config still has the 1.1 dtd and it has no SeamELResolver..

[jboss-user] [JBoss Seam] - Re: Trouble Using on Glassfish

2007-06-05 Thread soluble
Thanks for the clarification. Seam really does have some neat features! I am trying to get to the root of my problem so have reverted to using the "jboss-seam-1.2.1.GA/examples/glassfish" example. I tried adding to the components.xml file expecting the example app to still work. However I got

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - JSF 1.1 RI + JSTL + JBoss doesn't work

2007-06-05 Thread pjsa
Hi JBoss Community! I developed an application (using Netbeans 5.5 with Sun AS 9.0) that uses following technologies: - Database MySQL 5.0 - Persistence JPA - Business Layer EJB 3.0 - Web Servlet JSP with JSTL 1.1 JSF 1.1 Everything work fine in my development environment, but the produc

[jboss-user] [JBoss jBPM] - Re: #{taskInstance} is null on Notify='yes'

2007-06-05 Thread kukeltje
did you look at the testcases? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051559#4051559 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051559 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: Null check in condition

2007-06-05 Thread kukeltje
what is not working? If this is the only transition, it will always be taken (afaik) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051558#4051558 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051558 _

[jboss-user] [JBoss Seam] - Re: Can I create a flag variable in a entity-home maded in a

2007-06-05 Thread hstang
You can extend the EntityHome class, put your variable name there and reference your newly created class in components.xml using something like | | someValue | | or you could even use the Namespace feature part of Seam. The documentation have more info on this. View the original

[jboss-user] [Management, JMX/JBoss] - Re: Make an MBean (Quartz) depends on loaded jar?

2007-06-05 Thread avixcore
This is what I'd like to depend on, if it helps. [EMAIL PROTECTED] { url=file:/opt/jboss-4.0.5.GA/server/default/deploy/MovementCore.jar } deployer: [EMAIL PROTECTED] status: Deployed state: STARTED watch: file:/opt/jboss-4.0.5.GA/server/default/deploy/MovementCore.jar altDD: null las

[jboss-user] [Management, JMX/JBoss] - Make an MBean (Quartz) depends on loaded jar?

2007-06-05 Thread avixcore
I'm using Quartz service right now in JBOSS 4. When it starts, it looks for JARs that haven't been loaded yet and I'd like it to have it depend on if it is loaded. I've looked into maybe trying to get it to work with MainDeployer, but I'm relatively new and am not sure what to put in my quar

[jboss-user] [Installation, Configuration & Deployment] - Where is digester ??

2007-06-05 Thread jmiguel77
Hi: I downloaded the jboss-4.2.0-GA and tried to deploy and application i developed for 4.0.5 First of all, myfaces is gone, so i had to get rid of it in my web.xml and figure out what other components i could use But that is not the thing here. When i tried to deploy my app the server log to

[jboss-user] [JBossWS] - Duplicate SOAP body/envelope tags in SOAP message

2007-06-05 Thread jopere
I have written two web services that I have tested separately and now I am trying to call one web service from the other. I have a client that is succesfully calling web service A, but when A tries to call web service B I get this message: 16:08:03,834 ERROR [SOAPFaultExceptionHelper] SOAP req

[jboss-user] [JBoss Seam] - Re: Class loading problem

2007-06-05 Thread Lightguard
What if you just leave it out of the xml file all together? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051550#4051550 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051550 ___

[jboss-user] [JBoss Seam] - Re: Trouble Using on Glassfish

2007-06-05 Thread [EMAIL PROTECTED]
You have misunderstood the semantics of @Startup(depends=...). Check the JavaDoc, and the line about "if it is installed". Bottom line: you do not need MC to use an SMPC in glassfish. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051547#4051547 Reply to t

[jboss-user] [JBoss Seam] - Re: Can you check for Hibernate filters at some point in a c

2007-06-05 Thread [EMAIL PROTECTED]
No, a persistence context caches loaded data, you would have to destroy the cache if you wanted to "change" the filters halfway, which can have all sorts of side-effects. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051542#4051542 Reply to the post : ht

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

2007-06-05 Thread [EMAIL PROTECTED]
ok, great View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051541#4051541 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051541 ___ jboss-user mailing list jboss-user@lists.jbos

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

2007-06-05 Thread trouby
Hey, just to mention: - If I replace Seam's 'fileUpload' tag with Myfaces one it works well and the file gets uploaded. - Something is very odd, even if I bind the tag with a varabile/backend seam component that does not exist it doesnt throw a 'property not found' exception when the page get

[jboss-user] [Beginners Corner] - Re: how to create connection pool

2007-06-05 Thread PeterJ
When you declare your datasource using a *-ds.xml file, supply min-pool-size and max-pool-size entries. For example: | | ds/ProductDS | jdbc:postgresql:productdb | org.postgresql.Driver | xxx | xxx | 5 | 20 | | | Referen

[jboss-user] [Beginners Corner] - Re: why jboss is not calling release() in taglibs

2007-06-05 Thread mdonato
Hi All, Sorry by the post, but i found what is wrong! The release Method is not invoked each time, couse the specification said that there are a pool of taglib instance class, that could be reused. So i invoke the release method in the doEndTag method for cleaning up my attibutes. And its work

[jboss-user] [Installation, Configuration & Deployment] - ClassLoading questions

2007-06-05 Thread viniciuscarvalho
Hi there! According to http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossClassLoadingUseCases When I have a non-scoped deploy, and a version of a class on my server/default/lib and on my war/lib I get the version loaded by the first UCL (the 2nd scenario on the page). Well I give it a try. Created

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

2007-06-05 Thread nathandennis
thanks shane, i was hoping i was that lost.. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051530#4051530 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051530 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Trouble Using on Glassfish

2007-06-05 Thread soluble
Looking futher at the configuration I have discovered that just adding to the components.xml file in the Glassfish example of jboss-seam-1.2.1.GA causes all the errors in the previous post. On examination of the org.jboss.seam.core.EntityManagerFactory source code I found that there is a requi

[jboss-user] [JBoss Seam] - NPE

2007-06-05 Thread trouby
Hey, I'm trying to simply use fileUpload with no luck, submitting the form always returns null of the bean's property binded to the 'data' parameter of the 'fileUpload' tag. I have exactly the same code as mentioned at the begining of this post: http://www.jboss.org/index.html?module=bb&op=view

[jboss-user] [EJB/JBoss] - Stateful session reference problem while upgrading to Jboss

2007-06-05 Thread saifi27
We have a J2EE based product that we are running on Jboss 3.0.8. Its been in production for a couple of years now and is running fine. Recently we have tried to upgrade to Jboss 4.0 and we are seeing some strange behavior with our stateful session beans. We have a SFSB in our application that

[jboss-user] [Javassist user questions] - Re: Anomalous VerifyError (related to inner classes?)

2007-06-05 Thread hlship
I think that Javassist is instrumenting field access incorrectly inside static methods (when the static method accesses an instance variable of an object passed as a parameter). That's why it affects these $access methods so much ... that's pretty much what those do. View the original post :

[jboss-user] [Javassist user questions] - Re: drools integration with spring frame work using java

2007-06-05 Thread hlship
Not on this forum, you can't. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051521#4051521 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051521 ___ jboss-user mailing list j

[jboss-user] [Javassist user questions] - Re: A javassist is in the problem in the WEB application

2007-06-05 Thread hlship
That's some lovely gibberish. http://www.catb.org/~esr/faqs/smart-questions.html View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051520#4051520 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051520

[jboss-user] [JBoss jBPM] - Re: #{taskInstance} is null on Notify='yes'

2007-06-05 Thread [EMAIL PROTECTED]
I'm stilling running into issues with jBPM's notify feature. Can anybody from jboss verify that this is an issue, or point me to an example? Thanks, View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051519#4051519 Reply to the post : http://www.jboss.com/inde

[jboss-user] [JBoss Seam] - Re: seam 1.3.0.alpha seam-gen error

2007-06-05 Thread awhitford
I traced the problem to having a foreign key constraint. If I drop the constraint, seam-gen works fine... (But I want that constraint, and I'm expecting seam-gen will generate code with convert-entity...) View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=40515

[jboss-user] [JBoss AOP] - Re: Newbie needs help with configuration

2007-06-05 Thread JReifsnyder
Hello again Kabir, I removed the aop.xml file from my jar and renamed it, put it in the deploy directory, and it is all working. Thanks so much. Jamie View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051516#4051516 Reply to the post : http://www.jboss.com/in

[jboss-user] [JBoss Seam] - Re: Unable to locate NamespaceHandler for namespace [http://

2007-06-05 Thread youngm
Well, they're located in CVS at "/src/ioc/META-INF" I don't know if they are getting packaged into a source package. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051515#4051515 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=

[jboss-user] [JBoss Seam] - Seam Email Formatting w/CSS

2007-06-05 Thread gwzoller
Hello, Is it possible to do CSS formatting in a Seam templated email message? I tried including a CSS file into the m:body but it didn't like that. If its possible can someone please post a simple example? Thanks! Greg View the original post : http://www.jboss.com/index.html?module=bb&op=view

[jboss-user] [JBoss Seam] - Re: Can you check for Hibernate filters at some point in a c

2007-06-05 Thread hstang
Sorry, the contrived hierarchy should be put in code blocks for readability. | Region | -> Organizations |-> Employees |-> Assign employee of the month | View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051513#4051513 Reply to the p

[jboss-user] [JBoss Seam] - Can you check for Hibernate filters at some point in a conve

2007-06-05 Thread hstang
Currently when Hibernate filters are setup with Seam, they are either enabled/disabled during initialization of SMPC. In my application, these filters are disabled when I first get an SMPC, but I need Seam to do the check again for disabling/enabling (dynamically) while I'm in the conversation

[jboss-user] [JBoss Seam] - Re: seam 1.3.0.alpha seam-gen error

2007-06-05 Thread awhitford
Are you sure that did the trick? I see the same hibernate-all.jar in project\lib as seam-gen\lib. Renaming the one in project\lib doesn't change a thing for me... I recall I had this problem in the past and I had gotten around it by removing tables and constraints... View the original post

[jboss-user] [EJB 3.0] - Re: Primary key generator best practices? (Postgres specific

2007-06-05 Thread asack
"asack" wrote : "kpiis" wrote : "asack" wrote : The other thing I find odd is that Hibernate attempts to make it a integer during auto creation of the table instead of a SERIAL type. Why is that? | | Can you provide the analogue of serial type in Java? | | "The type names serial and ser

[jboss-user] [JBoss Seam] - Re: Class loading problem

2007-06-05 Thread Jump
Maybe if I point javaModule to tmp directory... But jar's name changes from start to start. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051509#4051509 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051509 __

[jboss-user] [JBoss Seam] - Re: no such setter method: ...core.Manager.conversationIsLon

2007-06-05 Thread PatrickMadden
Thanks Gavin, That indeed fixed that exception. I have some new one's now that I'll look into! Thanks again for fast reply. PVM View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051508#4051508 Reply to the post : http://www.jboss.com/index.html?module=bb&op=p

[jboss-user] [JBoss Seam] - Re: Class loading problem

2007-06-05 Thread Jump
There is no difference whether I define jsf-facelets.jar as javaModule or not. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051507#4051507 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051507

[jboss-user] [Beginners Corner] - how to create connection pool

2007-06-05 Thread ramesh123
Hi , could you please tell me how to create connection pool by using jboss thanks Ramesh View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051505#4051505 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051505 __

[jboss-user] [JBoss Seam] - Re: s:fileUpload when used along with h:selectOneMenu

2007-06-05 Thread [EMAIL PROTECTED]
Does anybody have this scenario working? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051503#4051503 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051503 ___ jboss-user mai

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

2007-06-05 Thread titou09
Gavin and shushamen, FYI I've opned a PMR with IBM on this. I'm waiting for feedback, I'll keep you informed View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051502#4051502 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=40

[jboss-user] [JBoss Seam] - Re: no such setter method: ...core.Manager.conversationIsLon

2007-06-05 Thread [EMAIL PROTECTED]
Remove conversation-is-long-running-parameter from core:manager in components.xml. That is a change in Seam 1.3. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051500#4051500 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=repl

[jboss-user] [EJB 3.0] - Re: XMBean description for @Service annotated mbeans

2007-06-05 Thread vvenkatar
Hi: I am also looking for a way to address this problem. Any suggestions/pointers to the same would be really helpful. Thanks Venkatesh View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051499#4051499 Reply to the post : http://www.jboss.com/index.html?module

[jboss-user] [JBoss Portal] - Re: JAAS authentication is failing for Correct User name and

2007-06-05 Thread Antoine_h
Strange. if it is critical, what I would do is : - replace the jaas login module with an overriden one, that show with added logs what's going on when checking the identity. - or try with MySQL, to see if it may come from the portal code, or from the oracle db. I don't know enough about oracle

[jboss-user] [JBoss Seam] - no such setter method: ...core.Manager.conversationIsLongRun

2007-06-05 Thread PatrickMadden
Hi, My project was working "well" with 4.2.0.CR2 but after upgrading to GA it doesn't. I've gone through and removed references to EL jars and have looked at the Seam 1.3 examples for 4.2.0.GA based on Michael Yuan's blog post without luck. Just curious if anyone else has seen this when trying t

[jboss-user] [Installation, Configuration & Deployment] - Is there any web interface to view JBoss server log dynamica

2007-06-05 Thread sepgs2004
I always go to the server location (for example, C:\jboss_lomboz_32\server\default\log) and look into the log file. I worked with Oracle App Server, used to have an Enterprise Manager Console, where I can see the log file contents and refresh them by a click... Could anyone help me locating th

[jboss-user] [JBoss Seam] - Re: Class loading problem

2007-06-05 Thread Lightguard
You mentioned earlier in the application.xml you had that jar defined as a javaModule. Maybe JBoss is picking it up, then Tomcat is. Have you tried taking the line out of the application.xml? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051495#4051495 Re

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

2007-06-05 Thread [EMAIL PROTECTED]
I guess I could make it three-valued, ie. true|false|inherit, which would give you the behavior you prefer. Add a feature request to JIRA if this is something you really *have* to have. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051491#4051491 Reply to t

[jboss-user] [JBoss Seam] - Can I create a flag variable in a entity-home maded in a com

2007-06-05 Thread srpantano
I need to create a flag variable (parameter) for a entity-home object created by component.xml, is it possible? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051489#4051489 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[jboss-user] [JBoss Seam] - Re: Class loading problem

2007-06-05 Thread Jump
"Lightguard" wrote : Probably shouldn't matter, but try cleaning out your tmp and work directories in Jboss then redeploying. Also check the JBOSS_HOME/server/which_server_name_you_use/jbossweb-tomcat55.sar/jsf-libs dir and see if there's a copy of facelets in there (if you haven't already). A

[jboss-user] [JBoss AOP] - Re: Newbie needs help with configuration

2007-06-05 Thread [EMAIL PROTECTED]
You should not duplicate your classes in separate jars. If ZenAS.jar contains EJB's then renaming it to ZenAS.jar.aop will cause the ejb-jar.xml to not get picked up. Likewise a META-INF/jboss-aop.xml file only gets picked up in archives ending with .aop :-) If you download the distribution the

[jboss-user] [JBoss Seam] - Re: EntityHome validation error (Chapter 14 example)

2007-06-05 Thread trickyvail
TMTOWTDI = there's more than one way to do it (it's an acronym popularized by PERL). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051483#4051483 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051483 _

[jboss-user] [EJB 3.0] - Re: Primary key generator best practices? (Postgres specific

2007-06-05 Thread asack
"kpiis" wrote : "asack" wrote : The other thing I find odd is that Hibernate attempts to make it a integer during auto creation of the table instead of a SERIAL type. Why is that? | Can you provide the analogue of serial type in Java? "The type names serial and serial4 are equivalent: both cr

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

2007-06-05 Thread iradix
I remember hearing that Gavin wasn't around when I posted this initially, I don't know if he's back now but either way, does no one else have any interest? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051481#4051481 Reply to the post : http://www.jboss.com

[jboss-user] [JBoss AOP] - Re: Newbie needs help with configuration

2007-06-05 Thread JReifsnyder
Hi Kabir, Thanks once again for your help. I had not done enough excluding, and now it is starting with minimal delay. I think I mentioned earlier that I had renamed my .jar file from ZenAS.jar to ZenAS.jar.aop. When I have the .aop extension, the loadtime weaving is happening, but the beans in

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

2007-06-05 Thread tnfink
Hi, I have a problem with the convertEntity-Tag. Maybe someone can help :-) This is the XHTML-code: | | | | | The data is loaded correctly from the database and displayed on the web page. This is the signature of the bean method: | public class ItemCacheBean implements

[jboss-user] [JBoss Portal] - Re: Help: Instance of a existent portlet in my new container

2007-06-05 Thread FcoLva
Hey Anette!! thanks for your replay! Your descriptor works fine :) I appreciate your response. Thanks again. Francisco View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051476#4051476 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[jboss-user] [JBoss Seam] - Can Seam be used with SJSAS 8.1?

2007-06-05 Thread qvanegeren
I was wondering if Seam will work with SJSAS 8.1? If so, does anyone out there have a working example? Also, what is the easiest way to get one of the existing Seam examples to run under SJSAS 8.1? (besides migrating to a real appserver, which is not possible at this point) Thanks in advance..

[jboss-user] [JBoss jBPM] - PropertyAccessException: could not get field value by reflec

2007-06-05 Thread meghanai_99
Hello, When I deploy BPEL definition zip file, I am getting following exception - 13:44:03,371 INFO [BpelReader] read wsdl document: resources/xml/SystemWorkflow | .wsdl | 13:44:07,433 INFO [BpelReader] read wsdl document: ServicePLWrapper.wsdl | 13:44:07,902 INFO [BpelReader] read bpel

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: why container is not calling release() in taglib class

2007-06-05 Thread mdonato
Hi All, I have this same Issue! Jboss 4.0.2 Struts/Struts-el/jstl taglib's Someone can help? Regards View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051468#4051468 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=40514

[jboss-user] [Beginners Corner] - Re: why jboss is not calling release() in taglibs

2007-06-05 Thread mdonato
Hi All, I have this same Issue! Jboss 4.0.2 Struts/Struts-el/jstl taglib's Someone can help? Regards View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051467#4051467 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=40514

[jboss-user] [JBoss Messaging] - Re: Is scoped loader-repository feature unusable now

2007-06-05 Thread [EMAIL PROTECTED]
Just as a reference: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=110051&start=10 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051464#4051464 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051464

[jboss-user] [JBoss Portal] - Re: Help: Instance of a existent portlet in my new container

2007-06-05 Thread engela
You need to add a "NavigationWindow" which references an instance of the NavigationPortlet and is placed into the region "navigation" to your page description: | | | | overwrite | default | | HelloWorldPContainerPage | |

[jboss-user] [EJB 3.0] - Re: Primary key generator best practices? (Postgres specific

2007-06-05 Thread kpiis
"asack" wrote : The other thing I find odd is that Hibernate attempts to make it a integer during auto creation of the table instead of a SERIAL type. Why is that? Can you provide the analogue of serial type in Java? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtop

[jboss-user] [JBoss Portal] - Re: Help: Instance of a existent portlet in my new container

2007-06-05 Thread FcoLva
can anybody help me :( ? there is any extra information that I should include in my issue? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051459#4051459 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051459 ___

[jboss-user] [EJB 3.0] - Re: Misunderstanding SqlResultSetMapping

2007-06-05 Thread kpiis
Please help me understand this stuff View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051457#4051457 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051457 ___ jboss-user mailing

[jboss-user] [JBoss Seam] - Re: Unable to locate NamespaceHandler for namespace [http://

2007-06-05 Thread wiggum14
Are those files suppose to be in META-INF? They seem to be absent from the 1.2.1.GA src. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051456#4051456 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4051456

[jboss-user] [EJB 3.0] - Re: Primary key generator best practices? (Postgres specific

2007-06-05 Thread kpiis
"andydale" wrote : don't forget to add allocationSize = 1 to the @SequenceGenerator annotation, or what is stored migth not match the sequence values. | | Cheers, | | Andy You are right, the default value is 50, but if you look in property of an sequence in DB you will see : CREATE SEQ

[jboss-user] [EJB 3.0] - Re: Primary key generator best practices? (Postgres specific

2007-06-05 Thread asack
The other thing I find odd is that Hibernate attempts to make it a integer during auto creation of the table instead of a SERIAL type. Why is that? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051452#4051452 Reply to the post : http://www.jboss.com/index.

[jboss-user] [JBoss Seam] - Re: Seam + Maven + Richfaces + softeu

2007-06-05 Thread maku01
"Lightguard" wrote : Is it the seam references that are giving you a hard time or the richfaces stuff? The maven plugin from softeu define a dependency like this: | jboss.seam.profiles | seam-ajax4jsf | ${seam.version} | compile | But the webapp is not able to resolve the richfaces t

[jboss-user] [EJB 3.0] - Re: Primary key generator best practices? (Postgres specific

2007-06-05 Thread asack
Thanks guys. Let me ask you this, can lack of VACUUMing cause primary key generation to screw up? Also why isn't AUTO appropriate (which should be database agnostic)? SEQUENCE stuff isn't really right for MySQL...or I thought? View the original post : http://www.jboss.com/index.html?module=b

[jboss-user] [JBoss jBPM] - Re: How to coordinate amongst child & parent processes?

2007-06-05 Thread estaub
Jon, Warning: I have a lot more "book learning" than real experience here. On the wiki you'll find an example called "ForEachForkActionHandler' or similar. Check it out. Re join: Updating process variables to show status is trivial - you can just use script if you want. If all you need is a

[jboss-user] [JBossWS] - Re: Stop enforcing parameter names?

2007-06-05 Thread [EMAIL PROTECTED]
You can setup an endpoint that consumes raw XML. Have a look at JAXWS @Provider, also an XML preproccessing phase might do the job for you View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051443#4051443 Reply to the post : http://www.jboss.com/index.html?modul

[jboss-user] [JBoss jBPM] - Null check in condition

2007-06-05 Thread tarun1981
Hi Guys, I am trying to check for null condition in transition but its not working for me. I have tried various possible ways of EL. I have tried following till now but nothing worked for me | #{outputData == "null"} | | | |

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

2007-06-05 Thread [EMAIL PROTECTED]
I tested this by adding a second s:fileUpload to the registration form in the seamspace example, and while the data for the second file wasn't null, it was partially truncated. I've created a JIRA issue for this and I'll fix it in the next day or so. http://jira.jboss.org/jira/browse/JBSEAM-13

[jboss-user] [JBoss Seam] - Re: @Out with stateless beans should be outlawed?

2007-06-05 Thread supernovasoftware.com
I came across this problem quite some time ago. It is quite confusing until you determine what is going on. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4051436#4051436 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=

[jboss-user] [JBoss AOP] - Re: Newbie needs help with configuration

2007-06-05 Thread [EMAIL PROTECTED]
At a glance it looks fine. How many classes do you have in your large jar? As you say it might be an idea to narrow down what you want to weave, packaging them up in a separate jar will have no effect though. Try using the Include/Exclude attributes of the AspectManagerService. http://labs.jboss

[jboss-user] [Installation, Configuration & Deployment] - Re: JBoss 4.2.0.GA + Eclipse integration

2007-06-05 Thread CLink
Do you mean this one? http://labs.jboss.com/jbosside/download/index.html I had anyway a problem, when I tried to install it using updates of Eclipse. The same happened previously with the Hibernate as you can see: http://www.keskilinkki.com/images/eclipseinstallationfails.png Nothing happens,

[jboss-user] [Messaging, JMS & JBossMQ] - Re: create durable topic

2007-06-05 Thread [EMAIL PROTECTED]
I've updated that WIKI page to make it explict what you need to configure for MDBs by providing links to where it is explained. http://wiki.jboss.org/wiki/Wiki.jsp?page=WhatIsTheCorrectWayToMakeADurableSubscription View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p

  1   2   3   >