[jboss-user] [JBoss/Spring Integration] - Using Spring to integrate POJOs as MBeans in JBoss

2007-08-04 Thread dima.frid
Hi, I am trying to use Spring to eliminate the need to use SAR XML method descriptors for MBeans (like the following: | http://www.jboss.org/j2ee/dtd/jboss_xmbean_1_0.dtd";> | | Some Services | | | | | | packa

[jboss-user] [JBoss Seam] - Re: In attribute requires non-null value: authenticator.enti

2007-08-04 Thread mmakundi
This thread actually solved my problem, indirectly: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=112375 The key is: One other potential trap is that I have just upgraded from Seam 1.2.1 to 2.0b1 and "managed-persistence-context" has been moved from namespace core to persistence. If

[jboss-user] [JBoss Seam] - Bug in org.jboss.seam.core.Contexts.java

2007-08-04 Thread matt.drees
Hey Gavin, I'm pretty sure this isn't right. | @Scope(ScopeType.APPLICATION) | public class Contexts | { | |@Factory("org.jboss.seam.core.eventContext") |public Context getEventContext() |{ | return org.jboss.seam.contexts.Contexts.getEventContext(); |}

[jboss-user] [JBoss Seam] - In attribute requires non-null value: authenticator.entityMa

2007-08-04 Thread mmakundi
Hi! Has anyone found a solution to the problem described here: http://www.mail-archive.com/jboss-user@lists.jboss.org/msg67427.html I am using MyFaces with Seam and similar configuration, but I do not even get the following initialization log line: 16:53:36,554 INFO [Component] Component: enti

[jboss-user] [Management, JMX/JBoss] - Re: Managing JBoss programmatically?

2007-08-04 Thread BogusException
PeterJ, Thanks for writing, as always! anonymous wrote : You are attempting to write a stand-alone Java application (one not deployed to JBoss AS) that you can use to deploy applications. Not quite. I'm just looking for ideas as how to do this from within a deployed app on the same server. I

[jboss-user] [JBoss Seam] - Re: value for '#{org.jboss.seam.security.identity}' sometime

2007-08-04 Thread colablade
btw, my class is like | @Name("jbpmWorkingProcessInfoList") | @Scope(ScopeType.APPLICATION) | public class JbpmWorkingProcessInfoList { | @In | JbpmContext jbpmContext; | | @In | private Actor actor; | ... | } | View the original post : http://www.jbos

[jboss-user] [JBoss Portal] - JSF Navigation issue with MyFaces 1.1.5

2007-08-04 Thread SyedH
Hi, I have an application running as a JSF portlet in my JBoss portal version 2.4.1 and JBoss AS 4.0.5 (myFaces version is 1.1.4). I had some problems with the myFaces portlet version 1.1.4, so I replaced the myFaces 1.1.4 jars with myFaces version 1.1.5 jars in my JBoss AS (jsf-libs folder).

[jboss-user] [JBoss Seam] - Re: value for '#{org.jboss.seam.security.identity}' sometime

2007-08-04 Thread colablade
i'm having the same problem here, and what really puzzles me is that if i press the 'back' button, then repeat the what i did before, no exception is thrown! most of the time, it just works nicely! and instead of "org.jboss.seam.security.identity", sometimes i'm also getting "Cannot get value fo

[jboss-user] [JBoss Portal] - Re: Portal Events, Portal Session and Portlet Session

2007-08-04 Thread explorer
Got this one... I dont know if this is a hack. we can get handle to the portlet through the Navigation class. Navigation.getPortalRuntimeContext(). View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070918#4070918 Reply to the post : http://www.jboss.com/index.

[jboss-user] [EJB 3.0] - IllegalArgumentException on remove

2007-08-04 Thread Quake4Ialdaris
Hey guys, I'm trying to remove an entity. here's the code Entity class: @Entity public class NewsEntity implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; private String title; private String body; public NewsEntity() { }

[jboss-user] [JBoss Portal] - Re: IPC - Event not fired

2007-08-04 Thread explorer
I Got it. I missed out the link for it in the *-Object.xml. Declaring the listener for the portal. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070916#4070916 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070916 ___

[jboss-user] [JBoss Seam] - Re: nested conversations and parent objects

2007-08-04 Thread matt.drees
"pdpantages" wrote : The documentation clearly states that the parent/outer conversation objects are "read-only" in the nested conversation. | This means you can't put things in or take things out of the parent conversation. That is, the conversation itself is immutable, but not the objec

[jboss-user] [JBoss Seam] - Re: Seam from CVS in Eclipse, missing files

2007-08-04 Thread [EMAIL PROTECTED]
Run ant build View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070914#4070914 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070914 ___ jboss-user mailing list jboss-user@lists.

[jboss-user] [JBoss jBPM] - Re: Memory usage in Workflow wait states

2007-08-04 Thread kukeltje
anonymous wrote : Will the 1000 instances be in memory for 7 days (or until they receive the message) no anonymous wrote : [or will they be swapped to make space for other instances? no They are just in the database View the original post : http://www.jboss.com/index.html?module=bb&op=viewto

[jboss-user] [JBoss jBPM] - Memory usage in Workflow wait states

2007-08-04 Thread ZazzaZ
Hi all, i'm using jbpm tom develop a workflow use case. Suppose you run 1000 (or an high number you can decide) workflows and suppose each of them stops waiting for a message from someone. Suppose the workflow instances are running on the same machine. Then suppose that the response the wait st

[jboss-user] [JBoss Seam] - Re: Seam Remoting - ajax request after session expires

2007-08-04 Thread monkeyden
BUMP I'd like the know the elegant solution for this too. Seems to me that the request itself would keep the session alive, rather than simply querying for remaining time left, if any. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070908#4070908 Reply to

[jboss-user] [EJB 3.0] - Web Page Having Trouble Connecting to EJB 3.0 Enity

2007-08-04 Thread kurzweil4
I have an application with a Model and a View project. The bean in the View project is having trouble finding the EJB Enity in the Model project. The binding DepartmentsBean.departments is failing with this error: javax.el.ELException: javax.faces.el.EvaluationException: javax.el.ELException:

[jboss-user] [JBoss Seam] - Re: Google Maps and application/xhtml+xml mime type

2007-08-04 Thread samdoyle
"modoc" wrote : have you tried this: | | | | | Your issue may be similar to the issue that I was having with Google Ads: | | http://www.digitalsanctuary.com/tech-blog/archives/19 | | Devon No I haven't. I will try it as soon as I get in the office on Monday. Thanks for the

[jboss-user] [JBossWS] - Re: ServiceFactoryImpl: deprecated?

2007-08-04 Thread chui
Oh, I forgot to visit this topic =X Well, I'm using JAX-WS. But I asked about a "new" ServiceFactoryImpl for JAX-RPC because I still have a JAX-RPC version of my application ^^" JAX-WS is so much simpler... Thank you, andy! View the original post : http://www.jboss.com/index.html?module=bb&op

[jboss-user] [JBoss Portal] - Re: Problem to get Changes in jsp-files to apply

2007-08-04 Thread saigon_man
First, try to restart the jboss server. If this doesn't work, stop the server, then delete everything inside the server\default\tmp\deploy folder plus everything inside the server\default\work\jboss.web\localhost. restart the server. You might want to delete your war file as well and redeploy wh

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Getting a session from entityManager

2007-08-04 Thread mladen.babic
Hi , I 've tried to use query by example.Problem is thet I get error when I try to get session.This is fragment of my code: | public List findDistributors(String name,BigDecimal time,BigDecimal costs,String account){ | DistributorEntity newDistributor=new DistributorEnt

[jboss-user] [JBoss Seam] - EntityManager is null??

2007-08-04 Thread mladen.babic
Hi , I've tried to use entityQuery in my app but it trows me error: | SEVERE: Error Rendering View[/order/distributors/distributors.xhtml] | java.lang.IllegalStateException: entityManager is null | at org.jboss.seam.framework.EntityQuery.validate(EntityQuery.java:31) | at

[jboss-user] [JBoss Seam] - Re: Seam 1.2.1, AS 4.2.1, @Restricted method gives NoClassDe

2007-08-04 Thread supernovasoftware.com
I have seen this exception, but in my case is was always due to an error on my part and disappeared after I fixed it. I am currently using Seam 1.2.1 on JBAS 4.2.1 in production. I will switch to Seam 2.0 as soon as it comes out though. View the original post : http://www.jboss.com/index.html?

[jboss-user] [JBoss Seam] - nested conversations and parent objects

2007-08-04 Thread pdpantages
Hello Forum, I am using Seam 1.2.1.GA I am using nested conversations to edit entries in a table. The editor is in a nested conversation, launched from a long running conversation. The conversation is started with s:link+propagation="nest" The editor injects the table bean with @In ServiceTab

[jboss-user] [JBoss Seam] - Seam from CVS in Eclipse, missing files

2007-08-04 Thread demetrio812
Hi, I want to build a CVS version of seam, got it from anonymous cvs but Eclipse reports me import error of the following files: org.jboss.seam.text.SeamTextLexer; org.jboss.seam.text.SeamTextParser; I verified that no org.jboss.seam.text is in the CVS version I imported where do I wrong?

[jboss-user] [JBoss jBPM] - Re: GPD-78 Adding ConfigInfoElements to Actions and nested C

2007-08-04 Thread [EMAIL PROTECTED]
Thanks for reporting these issues. Can you please try to specify a minimal process definition for each of the issues you are reporting? If possible attach them to the JIRA issue or else feel free to post them here in the forum. Regards, Koen View the original post : http://www.jboss.com/inde

[jboss-user] [JBoss Seam] - Re: Google Maps and application/xhtml+xml mime type

2007-08-04 Thread modoc
have you tried this: Your issue may be similar to the issue that I was having with Google Ads: http://www.digitalsanctuary.com/tech-blog/archives/19 Devon View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070891#4070891 Reply to the post : http://www.jboss

[jboss-user] [EJB 3.0] - Re: Em does not rollback

2007-08-04 Thread vphagura
Thx very much for the response! I think that may the issue as you mentioned. As, I'm using MySQL on Linux. I may have to read a little about its configuration. I'll post my more findings... Thx for your time. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=40

[jboss-user] [JBoss Seam] - Re: NEWBIE: seam-gen don't generate search fields for number

2007-08-04 Thread jseider69
Database Informix 10.0UC5 seam version 2.0.0Beta1 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070882#4070882 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070882 ___ jbo

[jboss-user] [Tomcat, HTTPD, Servlets & JSP] - mod_jk - Broken Pipe error

2007-08-04 Thread meet_nagi
Hi, In my production system we have a set up of Clustered environment with two nodes of JBOSS-4.0.5.GA, two apache mod_jk 1.2.23 and Cisco load balancer. We also have a firewall inbetween apache and jboss. When users are trying to access the web pages its loading too long and after some time w

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

2007-08-04 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=SeamRepository View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070880#4070880 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070880 ___

[jboss-user] [JBoss Seam] - CVS configuration

2007-08-04 Thread urswag
Hello Please tell me how I can configure CVS that I can check out the Seam version for JBoss 4.0.5. Thanks for Your answer. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070879#4070879 Reply to the post : http://www.jboss.com/index.html?module=bb&op=postin

[jboss-user] [Messaging, JMS & JBossMQ] - MDB fails to deploy InstanceNotFoundException

2007-08-04 Thread MrForms
When starting JBoss all container, I get an error when it tries to deploy one of my MDB: ERROR [org.jboss.kernel.plugins.dependency.AbstractKernelController] Error installing to Start: name=jboss.j2ee:ear=obp-stats.ear,jar=obp-stats-ejb.jar,name=StatisticListener,service=EJB3 state=Create org.

[jboss-user] [JBoss Seam] - Re: NEWBIE: seam-gen don't generate search fields for number

2007-08-04 Thread ellenzhao
What is your database and version number? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070877#4070877 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070877 ___ jboss-user m

[jboss-user] [JBoss Seam] - Re: begin-conversation in Seam2 prevents data load

2007-08-04 Thread [EMAIL PROTECTED]
I'm afraid thats working correctly for me :( Did you make any changes to pages.xml? The best way to do this is to post a patch with the changes you've made, then I can easily replicate here. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070876#4070876 Rep

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Setting up multiple instances of JBoss on the same machi

2007-08-04 Thread jaikiran
Have a look at http://wiki.jboss.org/wiki/Wiki.jsp?page=ConfiguringMultipleJBossInstancesOnOneMachine View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070874#4070874 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=40708

[jboss-user] [JBoss Seam] - Re: begin-conversation in Seam2 prevents data load

2007-08-04 Thread damianharvey
Pete, I have modified the UI example and it shows the same problem. I added an ID to the personHome in components.xml: | #{personId} | I changed selectItems.xhtml to include the following links at the top: | | | |

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Setting up multiple instances of JBoss on the same machine

2007-08-04 Thread redro
Hi All, I've downloaded JBoss4.2.1 and unzipped the package. Now i need to setting up multiple instances. Could you please any one can give me the details and step by step documentation. Regards, [EMAIL PROTECTED] View the original post : http://www.jboss.com/index.html?module=bb&op=viewto

[jboss-user] [JBoss Portal] - DWR (Direct web remoting) & JBoss Portal 2.6 integration?

2007-08-04 Thread saigon_man
Hello, Has anyone experienced with integrating DWR within JBoss Portal 2.6? I am using DWR 2.0 and JBoss Portal 2.6 and can't quite figure out how to implement DWR within jboss portal. Is there examples/websites out there about this integration? Thanks, TL View the original post : http://www.

[jboss-user] [JBoss Seam] - Re: Marking Hibernate POJO's as entities without annotations

2007-08-04 Thread [EMAIL PROTECTED]
Put orm.xml in your ejb-jar/META-INF - it does work. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070866#4070866 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070866 ___ jb

[jboss-user] [JBoss Seam] - Re: Test fails with Seam 2.0

2007-08-04 Thread lzhu
it's fixed, just forget it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070865#4070865 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070865 ___ jboss-user mailing list jbos

[jboss-user] [JBoss Seam] - Re: Exception getting property value

2007-08-04 Thread [EMAIL PROTECTED]
Have you read http://docs.jboss.com/seam/2.0.0.B1/reference/en/html/concepts.html#d0e2682 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070864#4070864 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070864 ___

[jboss-user] [JBoss Seam] - NEWBIE: seam-gen don't generate search fields for number col

2007-08-04 Thread jseider69
hi folks, why seam-gen don't generate search fields for number columns for database entities? For character/string columns it does. Anybody here can give me a source code template to include a search for a number column in a seam crud application? thx joerg View the original post : http://ww

[jboss-user] [Beginners Corner] - JBoss for Sales and Marketing people

2007-08-04 Thread elsa
I need someone to explain to me the limitations of JBoss, if indeed there are any. My company is thinking of using JBoss for a new site development, however, I am getting the impression from our developer that JBoss can not handle certain things on the wish-list from our sales and marketing gr

[jboss-user] [JBoss Seam] - Re: method expressions with parameter in the nested

2007-08-04 Thread wkzk
Thank you for your reply. Although I didn't post it, I did try like this. | @Name("someAction") | public class SomeAction { | | @DataModel(value="parents") | private List parents; | | @DataModelSelection(value="parents") | @Out(required=false, scope=ScopeType.CONVERSATI

[jboss-user] [JBoss Seam] - Re: method expressions with parameter in the nested

2007-08-04 Thread [EMAIL PROTECTED]
You need to outject datamodels not lists for extended EL to work like that I think. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070860#4070860 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070860 __

[jboss-user] [JBoss Portal] - Arabic Support

2007-08-04 Thread linnuxxy
I'm still downloading the portal from ur site... but I wanted to ask : how hard would be to build an Arabic portal based on this product? translating the .properties files will be ok... but what about the right to left page direction? would it need just a new theme? or I have to modify other thing

[jboss-user] [JBoss Seam] - Re: Google Maps and application/xhtml+xml mime type

2007-08-04 Thread Manuel Palacio
This is a major oversight of the Google Maps API team, to use a feature that is deprecated. My .xhtml pages with embedded maps only work with IE. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070858#4070858 Reply to the post : http://www.jboss.com/index.htm

[jboss-user] [JBoss Seam] - Re: Test fails with Seam 2.0

2007-08-04 Thread lzhu
I encounter same problem with seam2 but in AS 4.2 ... where is Signature.java in Jboss AS 4.2 ? it doesn't have jboss-embedded-all.jar in jboss 4.2 thx View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070857#4070857 Reply to the post : http://www.jboss.com/i

[jboss-user] [JBoss Seam] - Re: SelectBooleanCheckbox and Y/N mapping

2007-08-04 Thread [EMAIL PROTECTED]
Exactly, this is, IMO, the "right" way to do it. You want your domain model as represented by entity beans to be "correct", and use hibernate to map it to your legacy schema. You should just use JSF converters for converting from the correct model to display and back. View the original post :

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Accessing collections from queries

2007-08-04 Thread alexg79
And if I only want a sum of deliveries before a certain date? Referring to the map key has been the crux of the problem! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070852#4070852 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mo

[jboss-user] [JBossWS] - Failed to create a new SAX parser

2007-08-04 Thread Ufic
Hi. I created a simple webservice with a string param and a string return value. I'm able to deploy it and to use it through a standalone application (a simple main function). But, if I use THE SAME code in a servlet, I receive this error: [ServiceFactoryImpl] Use jaxrpc-mapping from: jar:file:

[jboss-user] [JBoss Seam] - Re: method expressions with parameter in the nested

2007-08-04 Thread wkzk
sorry , i forgot to say that I'm using seam v2.0beta. Thanks. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070848#4070848 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070848 ___

[jboss-user] [JBoss jBPM] - Re: Bypass Form Validation For Certain Operations?

2007-08-04 Thread kukeltje
anonymous wrote : As you pointed out, specifying the validation in the PDL is preferable to performing validation in the UI. I would recommend that the jpdl schema be enhanced to support more validation. enhancing the schema is not that difficult, creating the code behind it is. If it is done

[jboss-user] [JBoss Seam] - method expressions with parameter in the nested

2007-08-04 Thread wkzk
Hi. I have a problem that a method expressions with parameter in the nested doesn't work. this is the situation Parent class has a List named children. and xhtml is like this; | | | | | | |

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Update to jdk 1.5.0_12 causes package does not exists in

2007-08-04 Thread jaikiran
Not sure what the issue is. See if this works - delete the contents of the %JBOSS_HOME%/server/<< theServerYouAreUsing>>/work folder and restart JBoss. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070844#4070844 Reply to the post : http://www.jboss.com/i

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Update to jdk 1.5.0_12 causes package does not exists in

2007-08-04 Thread jaikiran
Not sure what the issue is. See if this works - delete the contents of the %JBOSS_HOME%/server//work folder and restart JBoss. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070843#4070843 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [JBossCache] - Re: POJOCache unresponsive

2007-08-04 Thread BruceSpringfield
Thanks for your reply! I really appreciate it!! I see what my error was. I used a pojocache-passivation-service.xml for the config file when I was only testing on a local machine with no network connections. You really need to be aware of what is in the config file. I changed to cache-confi

[jboss-user] [Beginners Corner] - Spawning processes from JBoss App Server

2007-08-04 Thread dilip_anant
Hi There, I am new to Jboss and this is my first post in the forum. We have an application that does data collection from disparate systems and checks for their availability. My application checks if a system is up or not by pinging the IP and checking if certain services are running on machine