[jboss-user] [JBoss Tools (users)] - Re: Access a page request parameter in the portlets inside t

2007-07-23 Thread [EMAIL PROTECTED]
post to the portal forum... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066541#4066541 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066541 ___ jboss-user mailing list jbo

[jboss-user] [JBoss Seam] - workaround

2007-07-23 Thread wise_guybg
OK, finally I came up with a workaround: | | | | The request parameter is processed by localeProvider.updateLocale(): | public void updateLocale() { | if (l != null && l.length() > 0) { | localeSelector.selectLanguage(l); | } | } |

[jboss-user] [JBoss jBPM] - Re: can't get task list of an actor

2007-07-23 Thread galvino
hi, i have another problem. into the last task, when i added taskInstance.end(); in this code: | GraphSession graphSession=jbpmContext.getGraphSession(); | TaskMgmtSession taskMgmtSession=jbpmContext.getTaskMgmtSession(); | |

[jboss-user] [JBoss Seam] - Re: s:fileUpload working locally but not remote

2007-07-23 Thread tobias.hult
Thanks for your answer I tried uploading an image to the server using my home computer (Mac OS X, forward slashes) but got the same problem, so the path is probably not the issue. I've also tried to set the to false in components.xml (to rule out any write permission issues) but that didn't h

[jboss-user] [JBoss AOP] - Re: (AopC) Compiled AOP in signed jars/applet.

2007-07-23 Thread cranphin
"[EMAIL PROTECTED]" wrote : Can you try aop 2.0.alpha5? Scott added some fixes there to take the ProtectionDomain into account The AOP enhanced classes also run on a JBoss 4.2.0.GA server which the applet talks to (we use them as value classes between the applet and EJB service.). Trying to rep

[jboss-user] [Beginners Corner] - Re: durable topic

2007-07-23 Thread teodoro21
I have solved this problem, really it's not a problem but a my misunderstand. Messages are stored to JMS_MESSAGES only for subscribers that cannot be able to receive message when the message is sent to a durable topic. So this is not a problem! Sorry.. View the original post : http://www.jbo

[jboss-user] [JBossWS] - Re: trying to access a webservice - not working from either

2007-07-23 Thread rodgerca
Thank you for the reply I'm now getting a different error:- Starting Test Client Creating a service Using: http://127.0.0.1:8080/EchoBeanService/EchoBean?wsdl and {http://session.address.cmmgroup.com/}EchoBeanService Creating an instance Exception in thread "main" java.lang.NoSu

[jboss-user] [JNDI/Naming/Network] Virtual host environment

2007-07-23 Thread Steve
Hello, Does anyone know how to configure a different set of JNDI environment entries for each virtual host that uses the same WAR in JBoss? This can be done with stand alone Tomcat using context.xml fragments under CATALINA_HOME/conf/Catalina/www.site1.com/ROOT.xml I can then give each virtu

[jboss-user] [JBoss Portal] - Re: how can i get current PortalNode

2007-07-23 Thread k3nnymusic
which .jar 's should I add to my portlet project? I must link source all sources from jboss portal 2.4.2-src ??? Could you give me simple solution? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066555#4066555 Reply to the post : http://www.jboss.com/index

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

2007-07-23 Thread damianharvey
when you change the value of your dropdown the onchange event launches and does 2 things: 1. Updates the value of dataTransferScheme in the loginBean 2. Calls the setAuthFields method in the loginBean. The way you have it, you are trying to pass the updated value of dataTransferScheme into #2 wh

[jboss-user] [JBoss Seam] - Re: Quick entity question

2007-07-23 Thread Manuel Palacio
It doesn't have to be a repository or something that persists data, I might be interested in injecting other types of services/domain objects. I think there's value in being able to do that. I might have entities that are domain objects which I happen to want to inject with other domain objects

[jboss-user] [Clustering/JBoss] - Re: :: Singleton Object in clustered Environment ::

2007-07-23 Thread morki
Therefore you could use a HASingleton. This singleton only runs on one node but is deployed on all other nodes via the deploy-hasingleton directory in order to provide failing over in case of a crash of the singleton-running server. note that if you just implement a common singleton you should e

[jboss-user] [Microcontainer] - Re: Emulating ServiceMBeanSupport

2007-07-23 Thread alesj
"alesj" wrote : | Just added new feature: | | | | | | will do the job. ;-) | But this is useless, since you'll only get this injected at the whenRequired state - which you can 'tell' in advance. ;-) Perhaps use one of the [State]KernelControllerContextAware interfaces to get

[jboss-user] [JBoss Portal] - Re: LDAP Authentication

2007-07-23 Thread bdaw
I think you will see this only during the first startup. When you switch identity store to LDAP you need to provide default admin user/role - admin/Admin - for administration. This is needed by CMS. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066568#406656

[jboss-user] [JBossWS] - Re: web.xml modified to web.xml.org - Subsequent runs fail

2007-07-23 Thread vitarius
I have the same problem with an exploded WAR, when restarting the application server, my web services get lost. The JBossWS implementation simply overlooks the servlet definitions that have already been modified. Rewriting the web.xml is okay, but it should be changed back to the original on sh

[jboss-user] [Microcontainer] - Re: Emulating ServiceMBeanSupport

2007-07-23 Thread alesj
"genman" wrote : | In JBoss 5.0 some of the state management is handled by the Microcontainer. But a lot is still handled by the ServiceController. | All of the state management is handled by MC, ServiceController is just a facade over MC - see actual code for more details: http://anonsvn.

[jboss-user] [Microcontainer] - Re: Emulating ServiceMBeanSupport

2007-07-23 Thread alesj
"genman" wrote : | When I write my Interceptor, how do I know if the Microcontainer is calling me due to Lifecycle transition, or the call is from "somebody else"? | You can always check the current execution stack. :-) View the original post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [JBoss jBPM] - Re: can't get task list of an actor

2007-07-23 Thread syngolis
1. In the last task, you do assign ernie as actor...Does ernie exist in your db? 2. You shouldn't signal processInstance. Try it only with taskInstance.end View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066573#4066573 Reply to the post : http://www.jboss.co

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: java.lang.LinkageError-hot deployment

2007-07-23 Thread jimmymani
any comments View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066574#4066574 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066574 ___ jboss-user mailing list jboss-user@lists.j

[jboss-user] [JBossCache] - JBossCache with EJB 2.1

2007-07-23 Thread morki
I have a clustered environment with two nodes and ejb 2.1. In oder to use failover i need to cache the state of my stateful session beans. jboss version is 4.2.0 GA. is it possible to configure jbosscache for ejb 2.1? i just found everything for ejb 3 but none for 2.1. thanks for your ideas.

[jboss-user] [JBoss Seam] - EntityController not testable?

2007-07-23 Thread nhpvti
It seems that testing of classes derived from EntityController is impossible if a logger or faces messages are in use. Good news: EntityController has method setEntityManager Bad news: similar methods for logger and faces messages are missing. For example calling this.addFacesMessage("some te

[jboss-user] [Advanced Documentation] - Re: jsr-181 pojo endpoint sample at jboss-4.0.5.GA

2007-07-23 Thread [EMAIL PROTECTED]
You will need to manually update the JbossXB library from here http://repository.jboss.org/jboss/jbossxb/1.0.0.GA/lib/ http://jira.jboss.com/jira/browse/JBWS-1749 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066577#4066577 Reply to the post : http://www.

[jboss-user] [JBossCache] - Getting versioning exception in jboss cache

2007-07-23 Thread Ashish Jha
I am getting versioning exception while using jboss cache. Please help me in solving this. | 2007-07-20 04:57:40,200 ERROR [org.jboss.cache.transaction.DummyTransaction] beforeCompletion() failed for [EMAIL PROTECTED], handlers=[TxInterceptor.LocalSynchronizationHandler(gtx=GlobalTransacti

[jboss-user] [JBossCache] - Getting duplicate entry exception

2007-07-23 Thread Ashish Jha
I am getting duplicate entry exception here. Please help in solving this. | | ERROR [org.jboss.cache.loader.JDBCCacheLoader] Failed to insert node: Duplicate entry '/fare/BOM/BHO' for key 1 | com.mysql.jdbc.exceptions.MySQLIntegrityConstraintViolationException: Duplicate entry '/fare/BOM

[jboss-user] [JBossWS] - Re: trying to access a webservice - not working from either

2007-07-23 Thread rodgerca
I want you all to know that I 100% have the latest version of jboss-xml-binding.jar in my classpath. I've deleted all old version from my hard drive. If someone doesn't help me soon I'm going to jump in front of a bus or something ;-) I've had enough I've got all these in my classpath:-

[jboss-user] [JBoss Messaging] - Embedding JBoss Messaging

2007-07-23 Thread jans700
Hi all, I'm looking for a JMS implementation that I can embed into distributed JVMs, and ideally a solution which doesn't rely on external brokers/servers, i.e. the brokers are distributed in each JVM as well. Is it possible to use JBoss Messaging in this way? I've been looking through the do

[jboss-user] [JBoss Seam] - java.lang.NullPointerException at org.jboss.mx.loading.Repos

2007-07-23 Thread motte1979
Using: JBoss-Seam 2.0.0.BETA1 JBossAS4.2GA Hibernate/JPA postgresql-8.1-407.jdbc3 psql (PostgreSQL) 8.1.9 I think i've an configuration-error which causes the following unrecoverable NullpointerException. Unrevoerable means that all database-requests will end up in the same NullpointerException

[jboss-user] [JCA/JBoss] - Re: How to create a UDP server?

2007-07-23 Thread [EMAIL PROTECTED]
Instead of expecting us to do all the work for you (which is why you are ignored) try reading the FAQ first, e.g. http://wiki.jboss.org/wiki/Wiki.jsp?page=IWantToConnectToXYZShouldIUseJCA the answer being the FAQ is another reason for being ignored. View the original post : http://www.jboss.com/

[jboss-user] [JBoss Portal] - Re: How to implement external Authentication and Authorizati

2007-07-23 Thread ganeshraja
Can I use my own Users & Roles defined in separate web application to JBoss Portal Serer? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066583#4066583 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066583

[jboss-user] [JBoss Portal] - Re: How to implement external Authentication and Authorizati

2007-07-23 Thread bdaw
You are still not clear. You can use the same security domain in your web app and portal. You can modify portal login-config.xml and plugin any LoginModule implementation you want. http://docs.jboss.com/jbportal/v2.6/reference-guide/html/authentication.html View the original post : http://www.

[jboss-user] [JBoss jBPM] - Re: JBPM_COMMENTS

2007-07-23 Thread cheets
Many thanks for your reply, Ronald!! But i am still not clear about how a user adds comments to web-console. I think my version of web-console is not set up properly, since I could find no way to add comments from there. (I am using jbpm starters kit 3.1.3). In any case, my interest in the JBPM_

[jboss-user] [Messaging, JMS & JBossMQ] - Re: Deploy Message listener as MBean service get No ClassLoa

2007-07-23 Thread [EMAIL PROTECTED]
"loseyourself" wrote : | I thought it is related with the constructor method, but don't know how to fix, could you please advise me? I do appreciate your help. | | hj Correct. You have no default constructor. So you've either got to define one or tell jboss the constructor parameters.

[jboss-user] [JCA/JBoss] - Re: Message DB + Oracle database connection count problems

2007-07-23 Thread sks4jboss
Thanks for updating the ticket. anonymous wrote : | This means that the TX timeout occurs in your application code , you either need to fine tune the SQL or configure the TX timeout | None of the queries we fire take more then 5-10 ms. Also all the connections are already closed in a f

[jboss-user] [JBoss Seam] - Re: EntityController not testable?

2007-07-23 Thread [EMAIL PROTECTED]
Run it inside a SeamTest. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066590#4066590 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066590 ___ jboss-user mailing list jbos

[jboss-user] [Messaging, JMS & JBossMQ] - Re: High Availability

2007-07-23 Thread [EMAIL PROTECTED]
"tsengden" wrote : i bet you are enjoying being on a power trip... | for the rest of the people that are interested: | Power trip has got nothing to do with it. So far there have 59 reads of this topic (likely more if you include the fact these posts also go to the mailing list. All of whose

[jboss-user] [JBoss Messaging] - Re: Non persistent JMS Message

2007-07-23 Thread aaubry
"timfox" wrote : If you send a message as non persistent (DeliveryMode.NON_PERSISTENT) then it won't get persisted. | | If you don't control over this, them there's not much you can do currently. | | There is a task scheduled for this for JBM2.0 http://jira.jboss.com/jira/browse/JBMESSA

[jboss-user] [JBoss Messaging] - Re: Non persistent JMS Message

2007-07-23 Thread aaubry
"timfox" wrote : If you send a message as non persistent (DeliveryMode.NON_PERSISTENT) then it won't get persisted. | | If you don't control over this, them there's not much you can do currently. | | There is a task scheduled for this for JBM2.0 http://jira.jboss.com/jira/browse/JBMESSA

[jboss-user] [JBoss jBPM] - JBPM and Connection Pooling

2007-07-23 Thread drashmi30
Hi All, In order to improve the performance of JBPM, we are planning to use DBCP for connection pooling so that we can specify a limit to the maximum number of available connections at any given time. However, I am not able to figure out as to how the properties from hibernate.cfg.xml will be r

[jboss-user] [Messaging, JMS & JBossMQ] - Re: OutOfMemory because of too many threads and not sure wha

2007-07-23 Thread [EMAIL PROTECTED]
"zooxmusic" wrote : | Is there anyway to detect a broken connection on the server side and kill the threads? | The server already does this. It disconnects clients that have stopped pinging after 2 minutes (See "Read Timeout" in uil2-service.xml). Most likely you've not closed the connect

[jboss-user] [Messaging, JMS & JBossMQ] - Re: Messages always persistent in Topic

2007-07-23 Thread [EMAIL PROTECTED]
"fljmayer" wrote : | In this behavior JMS compliant?/quote] | | Yes, and the rest is an FAQ. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066596#4066596 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066596 __

[jboss-user] [JBoss Seam] - Re: Quick entity question

2007-07-23 Thread ellenzhao
I wanted @In for entity beans too! http://www.jboss.com/index.html?module=bb&op=viewtopic&t=114111 I watched the Rod presentation. In fact rich domain model is already pretty easy to do with Seam. (With the @In support in entity class, it would be even more convenient) Rich Domain Model, Th

[jboss-user] [JBoss jBPM] - Differences between Designer from CVS and release

2007-07-23 Thread Alaak
Hi I'm wondering why the designer sources from CVS (jbpm.3 --> designer --> jpdl --> org.jbpm.gd.jpdl) do not contain the capability to right klick in the outline view and add new tasks to task nodes etc. but when I install the older release build (3.0.12) I get this feature? The same problem

[jboss-user] [JBoss Portal] - Re: Admin updates to CMS portlet decorations don't take affe

2007-07-23 Thread [EMAIL PROTECTED]
Can you try to set "DecorateContent" to true on the portal:service=ContentRenderer,type=cms Mbean declared in: portal-cms.sar/META-INF/jboss-service.xml It should behave as you expect (note that you can still decide to hide decorations for a particular windows using the windows properties) Vie

[jboss-user] [JBoss Seam] - Re: Seam Flex Integration, How Easy It Is!

2007-07-23 Thread mladen.babic
Hi , I have tried example but it doesn't work for me.Can you tell me howto run example? tnx, mb View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066601#4066601 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066601

[jboss-user] [JBoss Seam] - pooledTaskInstanceList limiting to specific role

2007-07-23 Thread harpritt
Hi Lads and Ladettes i have a UI page that shows all the tasks for people that are in the "processor" role. I use the following in my process definition to assign the task to the role | | the following to display the list | | | |

[jboss-user] [JBoss jBPM] - Re: Differences between Designer from CVS and release

2007-07-23 Thread [EMAIL PROTECTED]
The current CVS head contains a really different codebase than the 3.0.12 release. Adding and removing jpdl elements is not done through the outline view anymore. It is done with the popup menu and/or the dropdown menu in the tabbed properties pane. Regards, Koen View the original post : htt

[jboss-user] [JCA/JBoss] - JCA 1.5 problem when deploying in JBOSS 4.0

2007-07-23 Thread tpawankumar
Hi All, I am migrating my application from weblogic 8.1.4 to JBOSS 4.0 when i migrate the jca module and tried to deploy it is showing the following error 15:40:16,834 ERROR [RARDeployment] Starting failed jboss.jca:service=RARDeployme nt,name='infranetconnector.rar' java.lang.IllegalArgumentExc

[jboss-user] [JBoss Portal] - Re: how can i get current PortalNode

2007-07-23 Thread [EMAIL PROTECTED]
Add this for the compilation: jboss-portlet-api-lib.jar portal-api-lib.jar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066605#4066605 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066605 ___

[jboss-user] [Security & JAAS/JBoss] - JBoss & packet fragmentation attack

2007-07-23 Thread mariamrrr
Hi all, Does anyone know if JBoss/Tomcat has any security mechanism to detect packet fragmentation attack? Thanks in advance View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066607#4066607 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posti

[jboss-user] [JCA/JBoss] - JCA Datasource parameter doubts

2007-07-23 Thread xaleyba
Hi I've developed a JCA RA and need to pass some parameters to it. So I ask: It's possible to get parameters inside my JCA from the datasource file ? I mean, data added to the mydatasourse-ds.xml. Also, inside the mydatasourse-ds.xml file I receive the number referred to the max connection po

[jboss-user] [JBoss Portal] - Giving Admin Priviledges to another Role

2007-07-23 Thread roth
Hi I am trying something supposedly simple. I want to give Admin priviledges to the 'User' role, in preparation for a later switch to ldap. I am using JBoss 4.2.1 on Windows XP with the portal svn trunk. What I did so far: For the admin portal in In jboss-portal.sar\conf\data\default-object.xm

[jboss-user] [JBoss Messaging] - Re: Embedding JBoss Messaging

2007-07-23 Thread LinuxTom
Ich versuche es gerade, aber leider funktioniert es nur in selben Programm. Nicht Programmübergreifend, obwohl die selbe Datenbank verwendet wird. Aber wahrscheinlich habe ich nur etwas falsch konfiguriert. Siehe http://www.jboss.com/index.html?module=bb&op=viewtopic&t=114146. View the original

[jboss-user] [JBoss Messaging] - Re: Embedding JBoss Messaging

2007-07-23 Thread LinuxTom
Sorry, my posting was in german. Here is the english text (no edit-button found ;): I try it straight, but it unfortunately functions only in same program. Not program-spreading, although the same data base is used. But probably I configured only somewhat wrongly. See http://www.jboss

[jboss-user] [JBoss jBPM] - Re: JBPM and Connection Pooling

2007-07-23 Thread fady.matar
Your question is related to hibernate directly and has nothing to do with jBPM. However to configure the DBCP connection pooling you need to specify the following properties in hibernate.cfg.xml | | 3000 | 100 | 10 | true | true | Consult the documentati

[jboss-user] [Clustering/JBoss] - State replication for older EJB versions

2007-07-23 Thread morki
hi my cluster consisting of two nodes is running... my question: how can state replication for ejb 2.1 be achieved. all configuration files for the treecache are for ejb version 3.0. is there a possibility to configure treecache for older versions of EJB? or isn't that covered any longer usin

[jboss-user] [JBoss Seam] - Changing Seam component properties via Remoting

2007-07-23 Thread dkane
Hello I have a Java class that is responsible for some graphics in my web-application. I have turned this class into Seam component. Actually this is session-scoped graphic provider for a4j:mediaOutput element (image) . This works well. There is some plain JavaScript code on web-page that c

[jboss-user] [JBoss Seam] - s:selectDate type control for time?

2007-07-23 Thread david.spark
As there isn't a s:selectTime component does anyone have any experience of solutions for inputting times? I'm trying to use two drop down lists (one for hours one for minutes) but am having problems mapping that to a single time field in the database. View the original post : http://www.jboss.

[jboss-user] [JBoss Seam] - seampay is broken (CVS)

2007-07-23 Thread stephen.friedrich
Clean build of Seam from CVS. Clean installation of JBoss AS 4.2.1. Running the seampay example brings up the overview page, but clicking on any payment gives: Exception during request processing: | Caused by java.lang.IllegalArgumentException with message: "Could not invoke method by reflect

[jboss-user] [JCA/JBoss] - Re: JCA Datasource parameter doubts

2007-07-23 Thread [EMAIL PROTECTED]
"xaleyba" wrote : | Hi | | I've developed a JCA RA and need to pass some parameters to it. | | So I ask: It's possible to get parameters inside my JCA from the datasource file ? I mean, data added to the mydatasourse-ds.xml. | Yes. If by JCA you mean your ManagedConnectionFactory

[jboss-user] [JCA/JBoss] - Re: JCA 1.5 problem when deploying in JBOSS 4.0

2007-07-23 Thread [EMAIL PROTECTED]
Looks like a bug to me: http://jira.jboss.com/jira/browse/JBAS-4575 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066622#4066622 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066622 ___

[jboss-user] [JBoss Seam] - Re: EntityController not testable?

2007-07-23 Thread nhpvti
"[EMAIL PROTECTED]" wrote : Run it inside a SeamTest. | Does your answer mean that EntityController subclasses can be tested in an integration test, but not in a unit test if they rely on a logger or faces messages? public class MyEntityControllerTest extends SeamTest | { | | @Tes

[jboss-user] [JBoss Portal] - Re: how can i get current PortalNode

2007-07-23 Thread k3nnymusic
"[EMAIL PROTECTED]" wrote : Add this for the compilation: | jboss-portlet-api-lib.jar | portal-api-lib.jar Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066624#4066624 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mod

[jboss-user] [JNDI/Naming/Network] - Re: Exception while Storing Event in Database : Could not ge

2007-07-23 Thread smaskar
Problem was resolved. It was related to admin user since it has only one dedicated connection, cant create multiple connections (MSSQL server 2005 developer edition). Using a new user I can insert the data into the database. Thanks, Santosh Maskar View the original post : http://www.jboss.com

[jboss-user] [Security & JAAS/JBoss] - Multiple login modules - LDAP and DB failover

2007-07-23 Thread DeanoUK
Hi all. I'm wondering how best to implement a fail over login system. We have a client who wishes for LDAP authentication and we also use a locally stored DB as an authentication store. Both LoginModules have been written, but instead of combining the DB one into the LDAP module, how can I go

[jboss-user] [JBoss Seam] - weblets similar fuctionality in seam?

2007-07-23 Thread jbuechel
Just a short question (although i did a quite long research in forums): Is there a weblets similar functionality in JBoss Seam or a4j? I'm on the verge of including weblets to my project but i'm not very happy about including another library and configuration stuff.. Information would be very ap

[jboss-user] [JBoss jBPM] - Re: Task assignment

2007-07-23 Thread harpritt
thanks for the replies gent they have been very helpful View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066630#4066630 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066630 _

[jboss-user] [JBoss Portal] - Re: how can i get current PortalNode

2007-07-23 Thread k3nnymusic
One more problem. I am use apache ant 1-6-3, and when I deploy helloworldjspportlet.war builded version to my portal all its ok, but if I deploy version which I am build from heloworldjsp sources I have got the following error: | 13:58:16,771 INFO [TomcatDeployer] deploy, ctxPath=/helloworld

[jboss-user] [EJB/JBoss] - Flushing CMP 2.0 EntityBean updates before end of transactio

2007-07-23 Thread reddy_123
I am using CMP 2.0 Entity Beans in JBoss v3.2.6 I am calling EntityBean from within a Stateless Session Bean method. The stateless Session Bean method has transaction attribute set to TX_REQUIRED. In the Stateless Session Bean method, I am doing a JDBC read after the entity bean update, but the

[jboss-user] [JBoss Seam] - ManyToOne relationship

2007-07-23 Thread odupont
I want to create a ManyToOne relationship but I always receive an error from the import.sql. I have one entity Application which is linked to a Category. Application: @Entity @Table(name="APPLICATION") public class Application implements Serializable ... Category category; @ManyToOne

[jboss-user] [JCA/JBoss] - Re: JCA Datasource parameter doubts

2007-07-23 Thread xaleyba
Adrian Thanks for your reply. May be my questions were so newbie but be sure I know how to make questions. I´ve asked what I want to know and your answers were useful and "on topic". Problem solved. Thank you again J View the original post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [JCA/JBoss] - JCA 1.5 deployment in JBOSS 4.0.0

2007-07-23 Thread tpawankumar
Hi All, I am trying to deploy JCA for infranet on JBOSS4.0.0. I am getting following error. Can anybody help? anonymous wrote : | infranet-ds.xml Ombi.Infranet infranetconnector.rar javax.resource.cci.ConnectionFactory anonymous wrot

[jboss-user] [JCA/JBoss] - Re: Message DB + Oracle database connection count problems

2007-07-23 Thread [EMAIL PROTECTED]
Lots of random assertions with no real evidence. If you really want some help, then use "READ THIS FIRST" to gather that evidence. The only thing we know for certain is that something is marking a transaction for rollback (this isn't necessarily a transaction timeout - but it is most likely) and

[jboss-user] [JBoss Seam] - Please Shane help me!

2007-07-23 Thread szaccaria
Sorry Shane, have you news about seam, jbmp and web service? Or have you got some ideaa about this? Sorry for the insistence... Thanks! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066638#4066638 Reply to the post : http://www.jboss.com/index.html

[jboss-user] [JCA/JBoss] - Re: Message DB + Oracle database connection count problems

2007-07-23 Thread [EMAIL PROTECTED]
"sks4jboss" wrote : occurs whenever we hit a problem with hypersonic DB in production. | That's just asking for trouble. Hypersonic is a "toy", I wouldn't use it for anything other than prototyping or what it was intended for (an in memory database for small amounts of data). See the FAQ f

[jboss-user] [JBoss Portal] - Re: how can i get current PortalNode

2007-07-23 Thread k3nnymusic
I am tried in ant version 1.7 and there are the same problem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066642#4066642 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066642 _

[jboss-user] [JBoss Portal] - Re: Errors with Jboss Portal and Postgres

2007-07-23 Thread roth
I am using postgresql-8.2-504.jdbc2.jar and everything works just fine. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066644#4066644 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066644 ___

[jboss-user] [JBoss Seam] - Re: Please Shane help me!

2007-07-23 Thread [EMAIL PROTECTED]
It's on my big list of things to do, however to help me not lose track of it (and make my life easier) can you please post a deployable code sample in JIRA that reproduces your issue for me. For reference here's the link to your original post: http://www.jboss.com/index.html?module=bb&op=viewt

[jboss-user] [JBoss Seam] - Re: Changing Seam component properties via Remoting

2007-07-23 Thread [EMAIL PROTECTED]
Seam's bijection features should work just the same within a remoting call as they do with a faces request. Can you please post some code showing what you're trying to do? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066647#4066647 Reply to the post : ht

[jboss-user] [JBoss Seam] - Re: Please Shane help me!

2007-07-23 Thread szaccaria
Ok Shane, I'll put this in the jira However if you get me a bit ideaa I'll try to help you in code... Thanks thanks... and thanks again! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066648#4066648 Reply to the post : http://www.jboss.com/index.html?module=

[jboss-user] [Beginners Corner] - Parameter is not sent to my method from jsf

2007-07-23 Thread [EMAIL PROTECTED]
Hi. On my jsf page I have this. in my pages.xml I have this. and my method looks like this public void selectSurvey(Survey surveyxx) { survey = surveyxx; } My method is called allright but surveyxx is just null instead of containing the object from the list. What Im tryi

[jboss-user] [JCA/JBoss] - Re: Message DB + Oracle database connection count problems

2007-07-23 Thread sks4jboss
Hi Adrian, Thanks for the update. We do have EJBs and at runtime we do also hit the database through them (But this shouldn't be at a high TPS). Below is the stack trace for the failure through EJB. What we do is just a read from the database. anonymous wrote : | 19:39:12,435 ERROR [BeanL

[jboss-user] [JBoss Seam] - Re: EntityQuery.refresh() doesn't clear the result list??

2007-07-23 Thread ASavitsky
Looks like it was already fixed in CVS, so I'll be waiting on the next release then... View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066655#4066655 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066655 ___

[jboss-user] [JBoss jBPM] - Re: JBPM - concurrent process execution fails

2007-07-23 Thread efip10
As I have tried to build the minimum setup, I come to think that it is not JBPM problem. Let's put it this way: I create a row in DB, send a JMS message, and create another row. In the end I commit my transaction. In the meantime my message is processed, and there is a query to the DB for the

[jboss-user] [JBoss Portal] - Re: how can i get current PortalNode

2007-07-23 Thread bdaw
Unsupported major.minor version This usually means that you are trying to run classes under lower Java version than the one used to build them - like compile under 1.6 and run under 1.5 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066656#4066656 Reply to t

[jboss-user] [JBoss Seam] - Re: Quick entity question

2007-07-23 Thread Manuel Palacio
Interesting. I'll dig more into Drools. Thanks a lot! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066657#4066657 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066657 ___ j

[jboss-user] [JBoss Seam] - Re: Seam Flex Integration, How Easy It Is!

2007-07-23 Thread cingram
1. Make sure you have an EJB3 copy of JBoss-4.0.5.GA installed 2. Make sure you have "jboss-seam-1.2.1.GA" installed. I haven't tested it with Seam-2.0, all though in looking at the documentation it should work. 3. Unzip the "FlexSeamExample.zip" to the examples\remoting folder of the Seam inst

[jboss-user] [JBoss Seam] - Re: Changing Seam component properties via Remoting

2007-07-23 Thread dkane
There is a lot of code, so only key points : Seam Component interface : @Local | public interface MapImageA4J | { | public void setXc(int xc); | public int getXc(); | public void setYc(int yc); | public int getYc(); | public void setWidth(int width); | public int ge

[jboss-user] [EJB 3.0] - Re: Fail to try first example in

2007-07-23 Thread waynebaylor
does it work if you use View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=400#400 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=400 ___ jboss-user mailing list jboss-

[jboss-user] [JBoss Seam] - Multiple row selection

2007-07-23 Thread trouby
Hey, I have created a CRUD actions for a specific entity via Seam-Gen which seems to be nice and clean using EntityHome/EntityQuery, I would like to add to the generated list another column that has a boolean jsf tag in order to support multiple row selection, I thought about adding a map to

[jboss-user] [EJB 3.0] - Re: Fail to try first example in

2007-07-23 Thread waynebaylor
does it work if you use | Context jndiContext = new InitialContext(); | Object ref = jndiContext.lookup("TravelAgentBean/remote"); | instead of anonymous wrote : | Context jndiContext = getInitialContext(); | View the original post : http://www.jboss.com/index.html?module=bb&op=view

[jboss-user] [EJB 3.0] - Re: deletion of few elements in one to many collection.

2007-07-23 Thread waynebaylor
do you have the @OneToMany(mappedBy) attribute set? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=405#405 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=405 ___ jbo

[jboss-user] [EJB/JBoss] - Re: trying to access a webservice via SOAP

2007-07-23 Thread [EMAIL PROTECTED]
You need to use the web services user forums. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=406#406 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=406 ___ jboss-use

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

2007-07-23 Thread talekar
Seam 1.2.1.GA The NPE is caused by context.getVariables() returning null at line number 109 in BusinessProcessContext. | 98private Set getNamesFromContext() {^M | 99 //TODO: note that this is called from Contexts.destroy(), ^M | 100 // after the Seam-man

[jboss-user] [JBoss Portal] - Re: how can i get current PortalNode

2007-07-23 Thread k3nnymusic
thx View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=409#409 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=409 ___ jboss-user mailing list jboss-user@lists.jboss.org

[jboss-user] [EJB 3.0] - Re: Bidirectional Relationship MarshalException on EJB3 Clie

2007-07-23 Thread waynebaylor
Just a guess, but maybe the Supervisor's Employee set is not being initialized since it's lazily fetched. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4066671#4066671 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4066

[jboss-user] [JBoss jBPM] - Re: deployProcessDefinition to create new ProcessDefiniton

2007-07-23 Thread remon_sherin
Thanks Roland for your reply. I wish I could provide you with a testcase, but, I'm using jbpm from php code using PHP/Java Bridge. All I want to see is a new processDefinition for every deployProcessDefinition function call. Plz help me, it's urgent. Thanks in advance. View the original pos

[jboss-user] [JBoss jBPM] - Re: deployProcessDefinition to create new ProcessDefiniton

2007-07-23 Thread remon_sherin
Oh, I forgot to say that I build ProcessDefinition dynamically using jbpm api, so, I need that any change in ProcessDefinition yields in a new ProcessDefinition with the same name, so that currently running ProcessInstance continues execution without any harm. View the original post : http://

[jboss-user] [JBoss Seam] - The Right Scope

2007-07-23 Thread JUnkie
Hi, I have a working little book search here. I is triggered from page 1 and the results are rendered on page 2 ("searchResultsPage"). My question: In the code below I bind the DataModel object to the session just to have it available on the page that the SLSB redirects to. I don't want that:

[jboss-user] [JBossWS] - Cannot start service endpoint; - nested throwable: (org.jbos

2007-07-23 Thread rashmi_yes
Hi, I have created an EJB Module using Netbeans 5.5.1 with Jboss 4.2.0. as in the below link & created webservice http://www.netbeans.org/kb/55/websvc-jaxws-jboss.html#Exercise_2 As Netbeans is only supporting JAX-RPC & not JAX-WS whereas JBoss wont support this. But, when I deployed the proje

[jboss-user] [JBoss Portal] - Re: Errors with Jboss Portal and Postgres

2007-07-23 Thread sojoknuckle
Thanks roth, I have now install the postgresql-8.2-505.jdbc2.jar driver. I was using the jdbc3 driver. after I did this I still am seeing the same type of issues. in addition to this I am using the a fresh database that is owned by the portal user configured in the data source. Can you descr

  1   2   3   >