[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Jar utility hot deploy/redeploy

2007-10-26 Thread itsme
Right on the servers deploy directory. If you are using default configuration then it would be default deploy. For better separation create your own application folder and the whole directory structure of an ear. No you can copy your jar to the appservers structure within your own structure

[jboss-user] [JBossWS] - Re: Exception while deploying the webservice using jax-ws

2007-10-26 Thread tpawankumar
alessio.soldano wrote: anonymous wrote : Could you please post the code where you're using the XmlAccessorType annotation? | I mean, are you using this | Code: | | @XmlAccessorType(XmlAccessType.FIELD) | | | or something different? (like an array of AccessType.FIELD) |

[jboss-user] [Beginners Corner] - Re: A simple question about JBoss Portal

2007-10-26 Thread arunprasathav
Hi folks, I have developed sample portlet in jboss portal 2.6.1 and jboss AS 4.0.5. My portlet gets displated on some layout and theme. Thats not the problem now. My doubt is that i get login configuration at the top of portal. I want to get rid of that login and i have to directly communicate

[jboss-user] [JBoss Seam] - Re: Cannot create a session after the response has been comm

2007-10-26 Thread rlao
you are correct; we use Seam 1.1.6 because some other frameworks we also use does not work with later version of Seam (that may have changed recently though, we haven't religiously checked into them) Do you mind to educate me on what may be the bug that would cause this weird behavior? is

[jboss-user] [JNDI/Naming/Network] - Re: ClassCastException on PortableRemoteObject.narrow(object

2007-10-26 Thread jaikiran
anonymous wrote : 20:56:33,671 ERROR [STDERR] Caused by: java.lang.ClassCastException: $Proxy86 | 20:56:33,671 ERROR [STDERR] at com.sun.corba.se.impl.javax.rmi.PortableRemoteObject.narrow(Port | ableRemoteObject.java:212) This does look like the interfaces being present in the

[jboss-user] [JBoss Seam] - Re: Class Loading problem using jrockit

2007-10-26 Thread maeste
MyFaces 1.1.5 solved this problem, but still have the problem with STATE_SAVING_METHOD (isn't possible to set it to server). It's not possible for us to keep STATE_SAVING_METHOD to client, having 15'000 very active users. We now switched to JSF 1.2 RI and all works better View the original

[jboss-user] [Beginners Corner] - Re: Error with AspectManager when start Jboss

2007-10-26 Thread abdujaparov
Please Help me, I neee to resolve this problem because with this I cannot go on. Thanks, bye bye. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099126#4099126 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099126

[jboss-user] [JBoss Seam] - Re: Let's use component scope before lookupInStatefulContext

2007-10-26 Thread dmitriy.lapko
Sure, http://jira.jboss.org/jira/browse/JBSEAM-2159 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099127#4099127 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099127 ___

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-26 Thread jamesjmp
Um, I don´t see where do yo use Contexts.removeFromAllContexts in that persist method. I thought you used it in the persist, update and remove. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099129#4099129 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: Exception during JBoss 4.2.2 shutdown using JBoss Messag

2007-10-26 Thread timfox
balkanboy wrote : Hail to the JBoss Messaging gurus (Tim, et al.) - I installed JBM 1.4GA as outlined in the manual on a clean JBoss 4.2.2AS installation, and I am getting the following exception: | | anonymous wrote : | | 17:30:21,541 ERROR [ExceptionUtil]

[jboss-user] [JBoss Tools (users)] - Re: Creating Message Driven Bean, Error while testing

2007-10-26 Thread marcelkoch_net
[EMAIL PROTECTED] wrote : this is a question about xdoclet and MessageDriven bean usage; not really a jboss tools or eclipse question. | | I think you will have a better chance of geting help in a more general message driven beans/xdoclet forum. Hi Max, you got that right. The fault by me

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-26 Thread terryb
I had cut it to reduce confusion, since you asked for what I return from those methods. Yes I use it those methods see below, but here I use it to remove context variables for pulldown lists for jsf page. @Override public String persist() { ... } catch (ActivityLoggerException e) { //skip

[jboss-user] [JBoss Messaging] - Problem accessing JBoss Messaging from remote client

2007-10-26 Thread gvnanil
I am getting exception when I am trying to connect to JBoss Messaging (running on JBoss AS) from a remote client. I am running a simple pub/sub application. No problems arise when my client is on the same host as JBoss AS. But from remote system, I get this problem. The exception is pasted

[jboss-user] [JBoss Messaging] - Re: Problem accessing JBoss Messaging from remote client

2007-10-26 Thread ataylor
It looks like you are connecting to the wrong url. Check that the jndi url is correct, both the host and the port. The port to use is configured in jboss-service.xml on the server side. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099135#4099135 Reply to

[jboss-user] [JBoss Seam] - Antonym for @BypassInterceptors

2007-10-26 Thread dmitriy.lapko
Is there any way to define, which interceptors should be applied for a method in a component, marked with @BypassInterceptors? For example, I have a component, which contains only one method, which should be surrouned with transactions and serialized access. Now for this I mark all other

[jboss-user] [Messaging, JMS JBossMQ] - Message is not been delivered

2007-10-26 Thread marcelkoch_net
Hi everbody, I wrote a message driven Bean which sends a message to a certain queue. The program runs sucessfully. Unfortunatelly the message is not be delivered to the queue. I also tried the default queue queue/A and created a new one with the jmx console. Is there any hint how I could find

[jboss-user] [JBoss Seam] - Re: Cannot create a session after the response has been comm

2007-10-26 Thread [EMAIL PROTECTED]
HttpRequest.getSession(true) needs to be called before any response is written. A workaround might be to put this call in a filter around the remoting servlet. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099142#4099142 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Identity check during hibernate operaiotn in application

2007-10-26 Thread ng.tech
Hey, Yes that's what I'm currently doing, but I thought there might exist a cleaner solution. If it doesn't then I well continue to use the setSecurityEnable method. thanks, Regards, Nicolas View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099146#4099146

[jboss-user] [JBoss Portal] - site using jbossportal

2007-10-26 Thread je.a.le
For our current project, jboss + jbossportal is the solution I want to go with. Looking for references it seem jbp is one of the top choose, except I found barrely no one telling they're using it for this site of this one etc.. (with is strange : for typo3, ez, etc... there're plainty of

[jboss-user] [JBoss Messaging] - Re: Problem accessing JBoss Messaging from remote client

2007-10-26 Thread gvnanil
I am starting jboss using the following command: :/run.bat -Djboss.bind.address=0.0.0.0 -c messaging Client code runs well if its on the same host as the server View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099159#4099159 Reply to the post :

[jboss-user] [JBoss Seam] - @RequestParam is working but param is not

2007-10-26 Thread amitev
Hi all! I got the following code in pages.xml: page view-id=/group.xhtml action=#{groupAction.selectGroup} | param name=groupId value=#{groupAction.id} / | /page But when the selectGroup method is called the #{groupAction.id} is null If i do | @RequestParameter(groupId)

[jboss-user] [JBoss jBPM] - Re: How to integrate jBpm into EJB3 based application

2007-10-26 Thread [EMAIL PROTECTED]
To further answer Aldo's question about combining EJB3 and jBPM, you should wrap the jBPM API you need in a stateless session bean. You can inject your EJB3 persistence context in this session bean and use it to programmatically change the session on your jBPM context. In that way you don't use

[jboss-user] [JBoss Seam] - Re: NoSuchMethodFound createFullTextQuery()

2007-10-26 Thread chrisky
I have the same problem JBoss 4.2.1 with Hibernate 3.0.0 without using SEAM(in EJB) | org.hibernate.Session origSession = (org.hibernate.Session)em.getDelegate(); | FullTextSession session = Search.createFullTextSession(origSession); | |

[jboss-user] [JBoss jBPM] - Re: jBMP web forms

2007-10-26 Thread [EMAIL PROTECTED]
I am afraid documentation about the forms is rather sparse and probably out of date... I would suggest to take a look at the websale example. Also support in the GPD for this is very limited and even buggy. It is on my task list to improve this. Regards, Koen View the original post :

[jboss-user] [JBoss jBPM] - Re: How to set the timer duedate dynamicly

2007-10-26 Thread [EMAIL PROTECTED]
By the way, you can always work around the issue by changing the timer due date programmatically in an action. Regards, Koen View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099150#4099150 Reply to the post :

[jboss-user] [JBoss Messaging] - Re: Problem accessing JBoss Messaging from remote client

2007-10-26 Thread gvnanil
my jndi properties are: java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory java.naming.provider.url=jnp://garan10-xp1:1099 java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - HP UX Problem

2007-10-26 Thread tukkann
i've installed on a HP UX server with JBOSS 4.2.0. i've 2GB of RAM when server is run very long time, the jboss efficiency down until this crash. Which is the problem??? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099156#4099156 Reply to the post :

[jboss-user] [JBoss jBPM] - Re: How to set the timer duedate dynamicly

2007-10-26 Thread abdelak01
thanks for your answer, I solved the problem by using an action to update the timer due date . here is the action | . | public class UpdatingTimerActionHandler implements ActionHandler { | | private static final long serialVersionUID = 1L; | | | | /** |

[jboss-user] [JBoss AOP] - Re: Jboss AOP with web services upon jboss

2007-10-26 Thread abdujaparov
Hi Kabir, I've noticed that when I start jboss it give me this error: | .. | .. | .. | 10:18:08,967 WARN [ServiceController] Problem creating service jboss.aop:service=AspectManager | java.lang.NullPointerException | at

[jboss-user] [JBoss Seam] - Re: TransientObjectException in seamspace-like approach

2007-10-26 Thread [EMAIL PROTECTED]
Yes, this should work on any step. Which means the problem is certainly that the entity is becoming unmanaged - I can't see why though from your code. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099210#4099210 Reply to the post :

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

2007-10-26 Thread [EMAIL PROTECTED]
The org.jbos.seam.localeSelected event is reaised when the locale is selected - that's your callback View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099205#4099205 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099205

[jboss-user] [JBoss Seam] - Re: Aditional update without press update button

2007-10-26 Thread [EMAIL PROTECTED]
Don't bump your topic after 20 minutes, thats just rude. Try using a manual flush mode conversation. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099206#4099206 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099206

[jboss-user] [JBoss Seam] - Re: Universal JSF-native confirmation box

2007-10-26 Thread nickarls
I'm bumping this since Pete seems to be up and running once more ;-) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099211#4099211 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099211

[jboss-user] [JBoss Seam] - Re: Nested ui:repeat fails

2007-10-26 Thread [EMAIL PROTECTED]
Which version of facelets (a bug like this was fixed in the most recent release of facelets). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099204#4099204 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099204

[jboss-user] [JBoss Seam] - Re: TransientObjectException in seamspace-like approach

2007-10-26 Thread [EMAIL PROTECTED]
It looks like at some point your userRoles are becoming unmanaged. Are you doing this all in a long running conversation? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099192#4099192 Reply to the post :

[jboss-user] [JBossCache] - Re: TreeCacheMbean not part of JbossCache 2.0 ??

2007-10-26 Thread haribaasha
sorry i jumped with that too soon, been going through the docs and code and found CacheJmxWrapperMBean. shuold solve everything for me :) thankx hari View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099198#4099198 Reply to the post :

[jboss-user] [Tomcat, HTTPD, Servlets JSP] - XML fragment inclusion in web.xml

2007-10-26 Thread fbonsi
Hi all, I'm trying to include an external xml fragment in my web.xml but that doesn' work (the related file is not found). Any help is appreciated. Follows a description of the problem. I'm working on JBoss 4.0.4 GA and the web container is Tomcat 5.5 This is my web.xml file: ?xml version=1.0

[jboss-user] [JBoss Seam] - Re: Load property file from seam entity bean

2007-10-26 Thread [EMAIL PROTECTED]
ResourceLoader.instance().getResource(/secure/velocitytemplates/foo.vm) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099191#4099191 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099191

[jboss-user] [JBoss Seam] - Re: seam-gen generate entities errors

2007-10-26 Thread [EMAIL PROTECTED]
Make sure you bring this to hibernate tools team's attention at http://tools.hibernate.org View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099187#4099187 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099187

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-26 Thread jamesjmp
thank you Pete, Is that compatible with seam 1.2.1? That´s the version I´m using. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099186#4099186 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099186

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-26 Thread [EMAIL PROTECTED]
Also take a look at the org.jboss.seam.afterTransactionSuccess.Foo event (only in Seam 2) http://docs.jboss.org/seam/2.0.0.CR3/reference/en/html/framework.html#d0e6472 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099183#4099183 Reply to the post :

[jboss-user] [JBoss jBPM] - how to set a global delay for a process

2007-10-26 Thread abdelak01
hello. actually, I start to use JBPM to manage a process in my project. The process has a global delay. I don't know how to do that. using a timer will not resolve the problem, because the timer is associated with a state and when we leave it, timer will be deleted. any ideas are welcome .

[jboss-user] [Messaging, JMS JBossMQ] - Re: Message is not been delivered

2007-10-26 Thread marcelkoch_net
Add: I'm using JBoss 4.2.1 together with the JBoss Tools under Eclipse 3.3 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099180#4099180 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099180

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-26 Thread terryb
James, can you please post your code for the first bit. I may learn something from that too. If you are going New Record from the View page. The easiest fix may be to pass empty Id param in your New Record button or link. (f:param name=youPojoId value=/ View the original post :

[jboss-user] [Remoting] - Cat not catch excption when jboss as is down - remote servic

2007-10-26 Thread tony9427
Application environment: JBoss Application Server 4.2.1, JBoss Messaging 1.3.0 THere is a standalone application to receive jms in a while loop When Jboss server is up, the application runs well. But When I shutdown the JBoss server and restart it, the application can not run Part of the code:

[jboss-user] [JBoss Seam] - Re: NoSuchMethodFound createFullTextQuery()

2007-10-26 Thread chrisky
Ok I got it working... It happens that you have to copy the hiberaten-search.jar and the dependency jars to the jboss lib folder. it wont work if you got it in EAR (even i have include the jar in the application.xml) chrisky wrote : I have the same problem | JBoss 4.2.1 with Hibernate 3.0.0

[jboss-user] [Beginners Corner] - Re: Coldfusion WAR Deployment fun

2007-10-26 Thread GreatSeaSpider
*bump* still stuck! ^__^ View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099161#4099161 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099161 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Universal JSF-native confirmation box

2007-10-26 Thread [EMAIL PROTECTED]
I suppose I was thinking about doing this on another view, rather than a popup from the current view. For a popup (probably a better idea) you probably could use a modal panel from richfaces. Ask over there are you would need to get the sequencing correct calling the actions... and post a

[jboss-user] [JBoss Messaging] - Re: Problem accessing JBoss Messaging from remote client

2007-10-26 Thread ataylor
ok, its not connecting to garan10-xp1 its connecting to localhost, you can see the ip address in the trace Connection refused to host: 127.0.0.1 which is why it works when they are on the same machine. you must be picking up the wrong jndi properties. View the original post :

[jboss-user] [JBoss Messaging] - Re: Problem accessing JBoss Messaging from remote client

2007-10-26 Thread gvnanil
Ok. I have found out the problem. When I am starting JBoss, I should give -bmy ip (example -b192.168.22.14) in the startup parameter. My problem got rectified when I started jboss using the command: :/run.bat -Djboss.bind.address=0.0.0.0 -c messaging -b155.35.13.81

[jboss-user] [JCA/JBoss] - Opening connection from a marked rollback tx

2007-10-26 Thread oglueck
I have a case where the transaction is marked rollback during the course of a complex process. But I still have to read from the DB and do some more processing. During that a new DB connection is opened (for read-only purposes) behind the scenes and thats where the connection manager complains:

[jboss-user] [JBoss Portal] - Portal, ActiveDirectory and changing password

2007-10-26 Thread plansoft_msarti
Portal version jboss-portal-2.6.2.GA I successfully connected the portal identity mgmt to the ActiveDirectory with ssl connection (important, AD does not accept password changing without a ssl connection). When user goes to his profile, he can change some information (ex. email address) and

[jboss-user] [JBossCache] - TreeCacheMbean not part of JbossCache 2.0 ??

2007-10-26 Thread haribaasha
Hi i have been using JbossCache using the MBeanserver locator. i am in the process of upgrading to jboss cache 2.0 and cant find TreeCacheMBean ? MBeanServer server = MBeanServerLocator.locate(); tree = (TreeCacheMBean) MBeanProxyExt.create(TreeCacheMBean.class,

[jboss-user] [Beginners Corner] - Re: A Beginner Problem: JAVA_HOME not set?

2007-10-26 Thread jaikiran
You can edit the run.bat and set the JAVA_HOME as follows (see the line marked in bold): @echo off | rem - | rem JBoss Bootstrap Script for Win32 | rem

[jboss-user] [JBoss Seam] - Re: Uses of seam-gen

2007-10-26 Thread [EMAIL PROTECTED]
Use *the built war* from hibernate or jpa examples as a reference. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099177#4099177 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099177

[jboss-user] [JBoss Messaging] - can not catch excption when jboss as is down

2007-10-26 Thread tony9427
Application environment: JBoss Application Server 4.2.1, JBoss Messaging 1.3.0 THere is a standalone application to receive jms in a while loop When Jboss server is up, the application runs well. But When I shutdown the JBoss server and restart it, the application can not run Part of the code:

[jboss-user] [JBoss Seam] - Re: Antonym for @BypassInterceptors

2007-10-26 Thread [EMAIL PROTECTED]
No, I think you are on track with your approach. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099184#4099184 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099184 ___ jboss-user

[jboss-user] [JBoss Seam] - removing table prefix for generate-entities ?

2007-10-26 Thread taccart
Hi all I'm using seam since a few days (CR2), and first of all, a big thank you to all developpers involved :) My question is on reverse engenering side : I'm working on already existing tables. In the db, all tables are prefixed with a string TP_XS_*driving generate-entities to create

[jboss-user] [JBoss Seam] - Re: getter method called hundereds of times

2007-10-26 Thread [EMAIL PROTECTED]
Probably this is normal. Post the view too. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099188#4099188 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099188 ___ jboss-user

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-26 Thread [EMAIL PROTECTED]
Please read my post anonymous wrote : Also take a look at the org.jboss.seam.afterTransactionSuccess.Foo event (only in Seam 2) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099190#4099190 Reply to the post :

[jboss-user] [JBoss Seam] - Re: Antonym for @BypassInterceptors

2007-10-26 Thread [EMAIL PROTECTED]
Unfortunately Seam doesn't currently support extensible interceptors http://jira.jboss.com/jira/browse/JBSEAM-699 - I guess we could support the ability to explicitly list out the interceptors to be applied to a class as part of that issue. View the original post :

[jboss-user] [JBoss Seam] - Re: Antonym for @BypassInterceptors

2007-10-26 Thread dmitriy.lapko
What do you think about adding an annotation like @ApplyInterceptors(value={TransactionInterceptor.class, BijectionInterceptor.class}) ? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099193#4099193 Reply to the post :

[jboss-user] [JBoss Seam] - Re: NoSuchMethodFound createFullTextQuery()

2007-10-26 Thread chrisky
Well, it does not work... Although it fixed the search by copy the jar to jboss lib folder, it break the adding index part... | javax.ejb.EJBException: java.lang.RuntimeException: java.lang.NoSuchMethodError: org.apache.lucene.document.Document.add(Lorg/apache/lucene/document/Field;)V |

[jboss-user] [JBoss Seam] - Re: Question on conversation...

2007-10-26 Thread [EMAIL PROTECTED]
As I explained to you in another thread you will only get that exception *if* you are already in another long running conversation when you attempt to @Begin another long running conversation. The solution is to design your app properly (the most common pattern is to not propagate the

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-26 Thread jamesjmp
Sorry I wrote it right away, and then I realised yo hav just said that!!! I´ll prepare a post with more details and code. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099202#4099202 Reply to the post :

[jboss-user] [JBoss Seam] - Re: TransientObjectException in seamspace-like approach

2007-10-26 Thread hispeedsurfer
Hi Pete, yes I think so. @Stateful | @Name(register) | public class RegisterAction implements Register and s:link view=/admin/registration.xhtml propagation=begin value=Neuer Benutzer/ If I move adding userrole to last step of my wizard the problem disappears. in register(): UserRole ur

[jboss-user] [JBoss Seam] - Re: EJB vs POJO (I don't need transactions)

2007-10-26 Thread [EMAIL PROTECTED]
Your post is a bit unclear, but by this anonymous wrote : What I care about the most is speed in a clustered environment I don't have a need for distribution yet neither. I assume you mean your primary concern is performance of your application when running on a cluster. In this case you

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-26 Thread jamesjmp
hello again, Terry, Pete and whoever.., this is the problem I´m facing: I´ve created an app by means of seam-gen without EJB3 (seam version is 1.2.1) Let´s call the table RstReport, the following steps work fine: - creating new data (RstReportEdit.xhtml and RstReportEdit.page) - details of a new

[jboss-user] [JBoss Portal] - Portlet Instances gone on Page Layout Admin page

2007-10-26 Thread roth
Hi If you look at Figure 33 of the reference manual (http://docs.jboss.com/jbportal/v2.6.2/quickstartuser/html/interaction.html#d0e506 ), you see a list of available portlet instances that can be added to a page layout. This list does not show for me. The cause is that I use LDAP and have no

[jboss-user] [JBoss Seam] - Re: Let's use component scope before lookupInStatefulContext

2007-10-26 Thread [EMAIL PROTECTED]
I'm concerned about this as it drastically changes the behaviour of @In - currently if you have a component called user, in the session scope, and outject a variable called user into a the event scope, you would get the variable NOT the component injected. With this proposed change you would

[jboss-user] [JBossCache] - Re: Problem in Optimistic Locking

2007-10-26 Thread [EMAIL PROTECTED]
They both support concurrency; it's just that optimistic locking will allow readers to read while writers write, allowing a *higher level* of concurrency. Regarding the deadlock with remote prepares, this is a possibility with both OL and PL, since remote locks are only acquired on prepare and

[jboss-user] [JBoss Seam] - Re: Passing dynamic values to enhanced el expression

2007-10-26 Thread [EMAIL PROTECTED]
The only way to use el enhancements inside an iterator is to use a datatable - and even that functionality is under debate. Better to use page parameters. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099224#4099224 Reply to the post :

[jboss-user] [JBoss Tools (users)] - Re: how to configure for hot deployment of JSP files

2007-10-26 Thread om.prakash
I am also looking for this issue. Do anyone have the solution ? Thanks, Om View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099227#4099227 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099227

[jboss-user] [JBoss Seam] - Re: ajax4jsf mediaOutput in Seam?

2007-10-26 Thread [EMAIL PROTECTED]
What version of ajax4jsf? You need to use 3.1.0 http://jira.jboss.com/jira/browse/AJSF-54 View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099228#4099228 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099228

[jboss-user] [JBossCache] - Re: writing to JBoss Cache Remotely

2007-10-26 Thread [EMAIL PROTECTED]
No. We don't distribute any code that does this, although creating a wrapper interface to do this using the technology of your choice should be trivial. I know of people who were trying to wrap the cache interface in CORBA so they could write to it from a C app, but that's an extreme case.

[jboss-user] [JBoss Seam] - Re: removing table prefix for generate-entities ?

2007-10-26 Thread luizruiz
You can use a custom ReverseEngineeringStrategy, overriding the tableToClassName or columnToPropertyName methods. Your class can extends org.hibernate.cfg.reveng.DelegatingReverseEngineeringStrategy. View the original post :

[jboss-user] [JBoss Seam] - Re: authentication method not called

2007-10-26 Thread kgoedert
I have only a username and password field and the message I get for both is conversion error View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099240#4099240 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099240

[jboss-user] [JBoss Seam] - Re: Odd Errors and OutOfMemory

2007-10-26 Thread [EMAIL PROTECTED]
err, heap space of course ;) View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099235#4099235 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099235 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Let's use component scope before lookupInStatefulContext

2007-10-26 Thread [EMAIL PROTECTED]
Ok, I see the problem, but I don't think this is the solution (as it is basically alters the entire way Seam works). perNestedConversation: what version of Seam? As we removed the annotation scan for perNestedConversation for CR3 at least. View the original post :

[jboss-user] [JBoss Seam] - Re: Let's use component scope before lookupInStatefulContext

2007-10-26 Thread [EMAIL PROTECTED]
So, you can skip the lookupInStatefullContexts if you use Component.getInstance(foo, SESSION); You can use this in your app using @In(scope=SESSION) Foo foo; However you still have to do a lookupInStatefulContexts when injecting objects into JSF. You should raise JIRA issues if you spot Seam

[jboss-user] [JBoss Seam] - Seam-Spring XML namespace problem

2007-10-26 Thread lisaanm
Hi, Please help me with the following exception when trying to run Seam+Spring example (1.2.1 GA) under Eclipse-Exadel and Tomcat | org.springframework.beans.factory.parsing.BeanDefinitionParsingException: | Configuration problem: Unable to locate Spring NamespaceHandler for XML schema |

[jboss-user] [JBossWS] - Using Jbossws for username token secure communication outsid

2007-10-26 Thread BigHeartedTone
Hi Can anybody help me? I have been unable to find anything that points me in the right direction those these two posts are the closest. http://www.jboss.com/index.html?module=bbop=viewtopicp=4040908#4040908 http://www.jboss.com/index.html?module=bbop=viewtopicp=4067456#4067456 I am trying to

[jboss-user] [JBoss Seam] - Re: UrlRewrite and Custom servlets

2007-10-26 Thread [EMAIL PROTECTED]
I don't see the context filter in that stack trace - I suspect your urlrewrite filter is causing it not to be applied. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099243#4099243 Reply to the post :

[jboss-user] [JBoss Seam] - org.jboss.seam.ui.entityConverter not working with set of en

2007-10-26 Thread chandu_great
Hi, The entity converter is not working with a set of entities. I think, the entity converter(org.jboss.seam.ui.entityConverter) doesn't hanlde Set of entities. Its handles only Lists or Collection of entities. In components.xml, I had an entity query(shown below) which was generating a lot of

[jboss-user] [JBoss Seam] - Re: Let's use component scope before lookupInStatefulContext

2007-10-26 Thread dmitriy.lapko
Yes, I thought about this - that such feature can influence outjection. But if I'm sure, that I wouldn't in any place outject any property with name, equal to my component name, I could just specify it in @Name annotation, like: @Name(value = loginBean, limitSearchByGivenScope=true) So in

[jboss-user] [EJB 3.0] - Error Injecting EntityManager

2007-10-26 Thread liss_jboss
Hi guys, I hava an EJB project and I separated it into two components: service.jar (which contains only interfaces) and service-impl.jar (which contains implementation of those interfaces). At service.jar I've a ordinary interface. At service-impl.jar I've an local interface (@Local), remote

[jboss-user] [JBoss Seam] - framework:entity-query called on pages that don't use it?

2007-10-26 Thread david.spark
I've been looking at the console log for my site and I've notice that the framework:entity-queries from web.xml are being called on some pages where there is no reference to the query name. It seems to only happen the first time that the page is loaded. I'm wondering if this is normal behaviour

[jboss-user] [JBoss Seam] - Re: NoSuchMethodFound createFullTextQuery()

2007-10-26 Thread chrisky
Ok I have got it fixed this time, both searching and indexing give no error. Basically you just have to avoid FullTextSession, create FullTextEntityManager instead. I will post the code later on tonight View the original post :

[jboss-user] [JBoss Seam] - Re: DataTable Sorting Example

2007-10-26 Thread [EMAIL PROTECTED]
Whole exception? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099229#4099229 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099229 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Odd Errors and OutOfMemory

2007-10-26 Thread [EMAIL PROTECTED]
Can we see the whole stack trace for the first two? How much PermGen space are you giving JBoss AS? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099233#4099233 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099233

[jboss-user] [JBoss Seam] - Re: Destroying Context Variable

2007-10-26 Thread [EMAIL PROTECTED]
I'm pretty sure this works out of the box on Seam 1.2 - I'll check though. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099246#4099246 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099246

[jboss-user] [JBoss Tools (users)] - Re: how to configure for hot deployment of JSP files

2007-10-26 Thread [EMAIL PROTECTED]
eh - it is done per default by our adapter so nothing needed to set it up. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099232#4099232 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099232

[jboss-user] [JBoss Seam] - Re: org.jboss.seam.ui.entityConverter not working with set o

2007-10-26 Thread [EMAIL PROTECTED]
Post your xhtml View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099262#4099262 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099262 ___ jboss-user mailing list

[jboss-user] [JBoss Seam] - Re: Exceptions in page param converters

2007-10-26 Thread adamw
Ok, found it, Component.getInstance() :) Thought, even after removing @BypassInterceptors from the converter, the message isn't shown on the exception page. So I suppose it's a bug, I'll add a testcase to JIRA. Adam View the original post :

[jboss-user] [JBoss Seam] - Re: Help!!! Seam with Hibernate Search problem

2007-10-26 Thread epbernard
You need to be sure to have hibernate annotations 3.3.0 and Hibernate 3.0.0 in your classpath, and not older versions. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099303#4099303 Reply to the post :

[jboss-user] [JBoss jBPM] - Unable to locate current JTA transaction

2007-10-26 Thread [EMAIL PROTECTED]
I am also getting the same error. I am working on jbpm3.2.2\jbpm-jpdl-3.2.2 websphere 6. I am able to connect and give token.signal but at state-end i am getting this error. | org.jbpm.db.JobSession deleteJobsForProcessInstance org.hibernate.TransactionException: Could not register

[jboss-user] [JBoss Seam] - Re: Seam 2 B1 - Ending a process instance fails.

2007-10-26 Thread [EMAIL PROTECTED]
I am also getting the same error. I am working on jbpm3.2.2\jbpm-jpdl-3.2.2 websphere 6. I am able to connect and give token.signal but at state-end i am getting this error. | org.jbpm.db.JobSession deleteJobsForProcessInstance org.hibernate.TransactionException: Could not register

[jboss-user] [JBoss Seam] - Re: Exceptions in page param converters

2007-10-26 Thread adamw
Posted in JIRA: http://jira.jboss.org/jira/browse/JBSEAM-2163 Adam View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099291#4099291 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4099291

[jboss-user] [JBoss Seam] - Re: Is there a plan to fix fileUpload issue in Seam-ICEfaces

2007-10-26 Thread gus888
[EMAIL PROTECTED] wrote : In Seam 2 you have the option of disabling the built-in filters, so if you wish to use the ICEfaces file upload control you can now disable Seam's MultipartFilter. Hi Shane, Thank you very much for your reply. If I wish to use Seam s:fileUpload in Seam-ICEfaces

[jboss-user] [Installation, Configuration DEPLOYMENT] - Drools Configuration -No Eclipse?

2007-10-26 Thread jboss_cody
What are the steps/commands needed to install drools without the Eclipse bundle? I already have Eclipse installed and would like to install Drools without Eclipse. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4099275#4099275 Reply to the post :

  1   2   3   >