[jboss-user] [JBoss jBPM] - Re: Jbpm - Transaction to be used

2008-06-03 Thread kukeltje
please read the docs on db/persistency/transactions a little. There is info on injecting sessions etc. Best is if you read the docs from cvs since there have been some updates lately in that area View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=410#410

[jboss-user] [JBoss jBPM] - Re: Where is the process definition file is stored?

2008-06-03 Thread kukeltje
anonymous wrote : But we have big hurdle on..thats JSF issue...where exactly JavaBeans & Jsf tags are mapped? I read evrywhere that, JSF objects and actual JavaClass is mapped inside "faces-config.xml". But in our case it was not their? Inside 'jbpm-console.war' No, jsf can use variable resolv

[jboss-user] [JBossWS] - SOAP Header Parameters and xml param renaming in Doc style E

2008-06-03 Thread siddharth_god
Hi, I have a Document literal - wrapped style endpoint. I am using wstools with its config file to generate all necessary artifacts. But even if i mark some of the method parameters in my endpoint with `header="true" mode="IN"` and `xml-name=""1, the WSDL doesn't seem to reflect any of these.

[jboss-user] [EJB 3.0] - Re: Problem using JBoss Datasource

2008-06-03 Thread peiguo
I used resource injection with JBoss 4.2.2 and Oracle 10g, and there was no probem. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155541#4155541 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4155541 _

[jboss-user] [EJB 3.0] - Trying to map two fields to the same class

2008-06-03 Thread jim.barrows
I have a class that keeps track of relationship data between two parties., so part of it looks like: Entity | @Inheritance(strategy = InheritanceType.SINGLE_TABLE) | public class PartyRelationship extends BasePersistentModel{ | | @Temporal(TemporalType.DATE) | private Date fromD

[jboss-user] [EJB 3.0] - Re: Trying to map two fields to the same class

2008-06-03 Thread jim.barrows
Okay, in essence: select r from Relationship r returns both partyRoles correctly. select pr from PartyRole pr where pr.id = :idOfToPartyRole returns pr.involvedIn, with the correct relationsihps select pr from PartyRole pr where pr.id= :idOfFromPartyRole does not return pr.invovledIn with any rel

[jboss-user] [JBoss jBPM] - Re: Where is the process definition file is stored?

2008-06-03 Thread ms_shitole
Thank you Ronald! It feels nice to gaining knowledge from u & clarifying doubts. As here we are making very good use of jbpm..almost means our project is progressing well. We made all user mapping as well as added security stuff also-:) But we have big hurdle on..thats JSF issue...where e

[jboss-user] [JBoss Portal] - [IOTools] Error while closing outstream

2008-06-03 Thread smart_umesh_123
I get this error for the simple HelloWorld portlet where I use following code protected void doView(RenderRequest rRequest, RenderResponse rResponse) throws PortletException, IOException, UnavailableException { rResponse.setContentType("text/html"); PrintWriter writer = rResponse.

[jboss-user] [EJB 3.0] - Re: EJB3 error in deploy - javax.wsdl.xml.WSDLLocator.close

2008-06-03 Thread ruchika
I am using JOSSO and JBoss Portal 2.6.4. I am getting following error: 09:21:05,562 INFO [Lookup] Initializing SSOAuditManager ... DONE 09:21:05,625 INFO [PropertyMessageResources] Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true 09:21:05,625 INFO [PropertyMessageRe

[jboss-user] [Beginners Corner] - Re: How to set JBoss 3.0.8 Bind Address ?

2008-06-03 Thread albert__kam
Hi, Thanks for the tip, but we're using standalone JBoss. Anyway, i've tried adding address attribute in connector tag inside tomcat's server.xml, and it worked out fine. Regards, Albert Kam View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155534#4155534 Re

[jboss-user] [Messaging, JMS & JBossMQ] - how Mbean connect to a queue when JbossAS startup?

2008-06-03 Thread tianfang
I write a Mbean, and want to connect to a queue when it starts. if I hot deploy the MBean, it work correctly, but when the system start (the Mbean is deployed), my Mbean can not find "ConnectionFactory", I add jboss:service=Naming in jboss-service.xml the error is also. I also asked the same

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - JPQL issue - org.hibernate.QueryParameterException: could no

2008-06-03 Thread JoPe
I am trying to execute two JPQL queries in an EJB3 application deployed on a JBoss 4.2.2.GA. The code looks as follows: | String queryString1 = "select sub from Subscription sub where sub.itemPattern in (select ip from ItemPattern ip where ip.caption = :c)"; | List queryResultList = em.creat

[jboss-user] [Installation, Configuration & DEPLOYMENT] - java.lang.IllegalAccessError: class javax.xml.parsers.Securi

2008-06-03 Thread beyarecords
Hi, I am in the process of migrating my application from 4.0.3SP1 to 5.0.0.CR1, on Win XP SP1, and am receiving the following error message in the server logs when placing my WAR (Cocoon 2.1.8) into the deploy directory. It would seem that there is an issue concerning the xml-apis.jar/xml-apis-1

[jboss-user] [JBoss Portal] - JBoss with JSR286

2008-06-03 Thread iamnew2jboss
Hello there, Is JBoss Portal + JSR286 GA release available to download? If not, when is it coming? Thanks, -Amol View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155526#4155526 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=

[jboss-user] [Remoting] - Re: NIO - PooledInvoker Question

2008-06-03 Thread [EMAIL PROTECTED]
Hi Sebastien, The "socket" transport is somewhat faster than the "rmi" transport. When paired with JBossSerialization, it's about twice as fast, at least in some tests. The client side of the socket transport maintains a pool of connections, which it closes when the client disconnects. I'm s

[jboss-user] [JBoss Portal] - Re: Link for downalding a document PDF in a portlet

2008-06-03 Thread Shazzaam
You need to point your link to a servlet and pass the necessary information and have the servlet create the pdf. A portlet won't work for creating a pdf, excel doc, csv etc... because the portal content will have already been drawn to the view before the portlet content is created. View the o

[jboss-user] [Remoting] - Re: NIO - PooledInvoker Question

2008-06-03 Thread sebastiendeg
Hi Ron, Tks for you response. I thought JBoss EJB 3.0 was using RMI, that's why I said RMI :-) Any reason to use Socket based instead of RMI ? What's the recommendation ? After fews test, JBoss remoting is promising, specially also beceause it does not keep the connection open between client

[jboss-user] [Remoting] - Re: NIO - PooledInvoker Question

2008-06-03 Thread [EMAIL PROTECTED]
Hi Sebastien, Remoting is the greatest thing since sliced worms. No question about it. Seriously, though, when you say "RMI", are you referring to Java RMI or generic "remote method invocation"? Actually, Remoting offers both, in the sense that there is an "RMI" transport that uses Java RMI

[jboss-user] [JBoss Cache: Core Edition] - Re: Problem using Non-JTA Transaction Manager

2008-06-03 Thread mlamdin
Manik, We looked at that page, and unfortunately we still have some questions. Specifically: * Is the setup in our first post viable - can we do pessimistic locking reliably with a Spring non-JTA transaction manager and Tomcat? * If we do pessimistic locking, what is the recommended configurat

[jboss-user] [EJB 3.0] - Re: java.lang.UnsupportedOperationException: setProperty mus

2008-06-03 Thread Usul
"PeterJ" wrote : | usually indicates that you are running with JDK 6. | OK I solved it, thanx to ur hint. Apparently, it isn enough to set the compliance level to Java 1.5 in Eclipse. And you cant just start a project with Java 1.5 either, because then u cant use the annotation @Webser

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Migration from 4.0.3SP1 to 5.0.0.Beta4, hibernate.har pl

2008-06-03 Thread beyarecords
Many thanks, Peter. Re-building the har did the trick!! I did notice though, that even with 'Hbm2ddlAuto' set to 'update' in my jboss-service.xml file no output was generated in 5.0.0.CR1 in regards to mapping db tables!! View the original post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [Remoting] - Re: JMS Transport Protocol

2008-06-03 Thread [EMAIL PROTECTED]
anonymous wrote : | A) Has anyone ever tried implementing/using JMS as the underlying transport protocol for JBoss Remoting? | Don't know that it's ever been done. It doesn't seem like a natural fit, since Remoting 2 works on an RPC model, so you'd probably have to go through some conto

[jboss-user] [JBoss Tools (users)] - Re: 2.1.0.GA and startup errors

2008-06-03 Thread jespersm
I did update (to 2.1.0.GA), but I didn't check beforehand which update site I had configured - and it must have picked some or all the features from the development update site. After that first update, I had the problems with the missing classes in the org.jboss.ide.eclipse.as bundle, since tha

[jboss-user] [Remoting] - Re: Remoting and seam app

2008-06-03 Thread [EMAIL PROTECTED]
I'm not sure I see the Remoting part of the question, unless you're talking about an org.jboss.remoting.ServerInvocationHandler. In the case of EJB3 beans, the ServerInvocationHandler is system code and shouldn't be touched by the application. For more information about EJB3, try the "EJB 3.0"

[jboss-user] [Remoting] - Re: Worker thread initialization failure

2008-06-03 Thread [EMAIL PROTECTED]
The java.io.OptionalDataException suggests to me that you have different versions of Remoting on the client side and server side. You can get the version of a Remoting jar as follows: java -jar jboss-remoting.jar Also, on the client side, besides jboss-remoting.jar, look for jbossall-client.

[jboss-user] [Remoting] - Re: MulticastDetector crashes my network

2008-06-03 Thread [EMAIL PROTECTED]
I've created a JIRA issue to look into this problem: http://jira.jboss.com/jira/browse/JBREM-991 "Investigate MulticastDetector message flood". As I noted, there is some odd looking behavior in MulticastDetector.listen(): | else | { |// for now, a

[jboss-user] [JBoss Portal] - Re: Portlet permissions, using the security element

2008-06-03 Thread Shazzaam
Hi, Maybe I didn't ask the question right, I'm going to rephrase it, in hopes that it's more clear what I'm asking: In JBoss portal 2.6.5 is it possible to create custom permissions for a role at the portlet level? For instance, say I want to add a Write permission so that only certain roles

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Migration from 4.0.3SP1 to 5.0.0.Beta4, hibernate.har pl

2008-06-03 Thread PeterJ
Did you recompile your app and rebuild the har using the hibernate jars in CR1? Looks like you might be coming across some kind of incompatibility. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155498#4155498 Reply to the post : http://www.jboss.com/index.

[jboss-user] Automatically rejected mail

2008-06-03 Thread Mail Delivery Subsystem
Your message was automatically rejected by Dovecot Mail Delivery Agent. The following reason was given: Quota exceeded binFV7g5vNTBG.bin Description: message/disposition-notification --- Begin Message --- --- End Message --- ___ jboss-user mailing lis

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Migration from 4.0.3SP1 to 5.0.0.Beta4, hibernate.har pl

2008-06-03 Thread beyarecords
Hi Peter, so I have built 5.0.0.CR1. Whilst maintaining the same project structure as mentioned in my opening post, the following error message is now being generated in the server logs: | 2008-06-03 22:06:49,375 WARN [org.jboss.detailed.classloader.ClassLoaderManager] (main) Unexpected err

[jboss-user] [Beginners Corner] - Re: JBoss seam and Hibernate

2008-06-03 Thread PeterJ
Please provide this information for both your machine and the server: 1) Operating system 2) JDK version 3) JBossAS version 4) Where is the JDK installed 5) Where is JBossAS installed How are you running and packaging your application? Is it an EAR or a WAR? Exploded directory or archive file? O

[jboss-user] [Beginners Corner] - JBoss seam and Hibernate

2008-06-03 Thread mitabhushan
I transfer the application form my machine to server. App works on my machine but doesn't work on the Server. The error I get is org.jboss.seam.deployment.ComponentDeploymentHandler] could not load class: com.med.session.OpeningHome java.lang.ClassNotFoundException: com.med.hrtracker.session.Open

[jboss-user] [JBoss Portal] - Re: Design Portlet

2008-06-03 Thread PeterJ
To declare multiple instances of a portal, assuming the portal is named p1, portlet-instances.xml would contain: | | | inst1 | p1 | | | xxx | aaa | | | | | | | inst2

[jboss-user] [JBoss Portal] - Re: Design Portlet

2008-06-03 Thread gopi12345
Hi Peter, thanks for the reply! So, how does your 'portlet-instances.xml' look like? http://www.jboss.org/portal/dtd/portlet-instances_2_6.dtd";> portlet-1 portlet-1Portlet portlet-2 portlet-2Portlet portlet-3

[jboss-user] [JBoss Portal] - Re: Design Portlet

2008-06-03 Thread PeterJ
Actually, a portlet is only a small part of a screen. If you look at the default portal provided by JBoss Portal, the home page has around 5 portlets. Also, a single portlet can appear multiple times, both on a given page, and on multiple pages. As an example, one of my portlets has a certain po

[jboss-user] [JBoss Tools (users)] - Re: 2.1.0.GA and startup errors

2008-06-03 Thread svadu
"ziphyre" wrote : | Svadu: | Did you have also the "Initializing Java Tooling" error, when you start eclipse, and JBoss AS view not active? | Yes, this is exactly what I had. Had JBoss AS perspective open, which has JBoss AS view enabled. When I started eclipse, I had an error on startup

[jboss-user] [JBoss Tools (users)] - Re: 2.1.0.GA and startup errors

2008-06-03 Thread svadu
"[EMAIL PROTECTED]" wrote : svadu - you say you *had* a similar problem, does that mean it is now solved for you ? Yes, Max, it's solved in the way I described. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155475#4155475 Reply to the post : http://www.jbo

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: (java.lang.IllegalStateException: removeAttribute: Sessi

2008-06-03 Thread tomas.am
Correct title to this post: (java.lang.IllegalStateException: removeAttribute: Session already invalidated) - LifecycleException: Manager has not yet been started Tomas Augusto Muller [EMAIL PROTECTED] View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155472#4

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 2.1.0.GA released

2008-06-03 Thread svadu
"[EMAIL PROTECTED]" wrote : Seam 2.0.1.GA is the only one that actually works with JBoss Tools. 2.0.0.GA had other issues like the embedded test container not working well from within eclipse with WTP projects. | | "However I see that the deployer first created a directory jboss-seam-2.0.1.

[jboss-user] [Installation, Configuration & DEPLOYMENT] - (java.lang.IllegalStateException: removeAttribute: Session a

2008-06-03 Thread tomas.am
Hello! This is the environment that I has been working with: - JbossAS 4.0.1 Sp1 - Java version "1.5.0_13" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_13-b05) Java HotSpot(TM) 64-Bit Server VM (build 1.5.0_13-b05, mixed mode) - An application that uses: SpringFramework 2.0.8,

[jboss-user] [JBoss Portal] - Design Portlet

2008-06-03 Thread gopi12345
Hi All, I am a bit new to this Portal/Portlet. I have some question regarding the portlet design. My requirement is to develop a portal application which has around 900 screens. My design specific questions are , 1. Howmany portlets ('class' extends GenericPortlet) will I be having in my

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Migration from 4.0.3SP1 to 5.0.0.Beta4, hibernate.har pl

2008-06-03 Thread PeterJ
You can get the files from subversion at http://anonsvn.jboss.org/repos/jbossas/trunk/. One warning though - trunk, or at least thridparty within trunk, has been going through mavenization. It tends to build and run one day, but not the next. Alternatively, you could wait for RC1 (JIRA says it

[jboss-user] [EJB 3.0] - Re: Problem with jboss-4.0.4.GA doing lookup for EJB3.0

2008-06-03 Thread chinvelski
Do you solved the problem? I am with the same problem. Thanks, André Chinvelski View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155456#4155456 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4155456 ___

[jboss-user] [JBoss Portal] - Re: DivDecorationRenderer private methods

2008-06-03 Thread [EMAIL PROTECTED]
I'd rate this as unlikely at best as we are working on a new presentation framework that will render this obsolete. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155466#4155466 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=re

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Migration from 4.0.3SP1 to 5.0.0.Beta4, hibernate.har pl

2008-06-03 Thread beyarecords
Many thanks for the link, Peter. Could you, or anyone else, please remind me how I go about obtaining the changed files? Many thanks in advance. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155463#4155463 Reply to the post : http://www.jboss.com/index.ht

[jboss-user] [Clustering/JBoss] - Re: Remote cluster ejb access

2008-06-03 Thread [EMAIL PROTECTED]
Don't try the second way; you shouldn't edit the conf/jndi.properties file. Can you enable TRACE logging for org.jnp and post what happens before the exception? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155462#4155462 Reply to the post : http://www.jbo

[jboss-user] [EJB 3.0] - Re: java.lang.UnsupportedOperationException: setProperty mus

2008-06-03 Thread PeterJ
This error: Caused by: java.rmi.RemoteException: Call invocation failed; nested exception is: | java.lang.UnsupportedOperationException: setProperty must be overridden by all subclasses of SOAPMessage usually indicates that you are running with JDK 6. Yes, you said you compiled with JDK 5,

[jboss-user] [EJB 3.0] - java.lang.UnsupportedOperationException: setProperty must be

2008-06-03 Thread Usul
Hi, Im trying to develop a simple webservice with "EJB 3.0" and a simple client. I use: - jboss-4.2.2.GA - Eclipse My two Server classes: package myserv; | | import javax.ejb.Remote; | import javax.ejb.Stateless; | import javax.jws.WebService; | | | @Stateless | @WebService(en

[jboss-user] [JBoss jBPM] - Re: Jbpm - Transaction to be used

2008-06-03 Thread jjacobwip
Could you please tell me when to use DBPersistenceServiceFactory and when to use the default JtaPersistenceServiceFactory? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155458#4155458 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&

[jboss-user] [JBoss Portal] - DivDecorationRenderer private methods

2008-06-03 Thread esmith1
I was wondering whether you might consider changing the access to protected for the 3 private methods in DivDecorationRenderer? It would be nice if subclasses had access to the ModeAndStateComparator class when overriding the render method. Source (head): http://viewvc.jboss.org/cgi-bin/viewvc

[jboss-user] [JBoss Portal] - org.apache.jackrabbit.core.state.NoSuchItemStateException

2008-06-03 Thread jimjxr
Hi, Anyone got this error before? We're uploading archive to 2.6.5SP1, it failed with this error, aftwards the CMS becomes unusable. It has NPE on everypage, and we cannot delete the content folder because the same NoSuchItemStateException, it basically stuck. We had to restore to a previous d

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Migration from 4.0.3SP1 to 5.0.0.Beta4, hibernate.har pl

2008-06-03 Thread PeterJ
See http://jira.jboss.org/jira/browse/JBAS-5232 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155443#4155443 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4155443 ___ jboss-u

[jboss-user] [JBoss Portal] - Link for downalding a document PDF in a portlet

2008-06-03 Thread khadijbal
I want to make a link for telecharger file PDF, in a portlet, but that does not work, i have a error. Here is my code in the portlet: public void doView(RenderRequest req, RenderResponse rep) | throws PortletException, IOException { | String filename = (String)

[jboss-user] [JBoss jBPM] - Re: Integrate JPA with JBPM-JPDL3.2.2

2008-06-03 Thread [EMAIL PROTECTED]
Thanks, I am using the setsession to make this integration work. like jbpmContext = jbpmConfiguration.createJbpmContext(); jbpmContext.setSession(<>); Now the session object is handling all the database activities for me. The session is getting opened and also closed automatically by my transact

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Sharing a class between 2 ears (classloader)

2008-06-03 Thread PeterJ
On sharing a jar, a couple of possibilities: 1) Put that jar in server/xxx/lib (not ideal, but doable) 2) Create a third ear without a classloader repository, and put the jar into that ear. (This is the solution I have used before.) View the original post : http://www.jboss.com/index.html?modul

[jboss-user] [installation, configuration, deployement] jboss stuck in memory during redeployement

2008-06-03 Thread saqib butt
hi there, I am facing problem that whenever i try to redeploy e.g. an EAR file in already running jboss deploy folder, it stuck and in result of this the jboss stop responding, and i have to restart my linux server to free this stuck instance. its even not shutdown with "kill" command at linux pro

[jboss-user] [EJB 3.0] - Advanced trigger mechanism for Entities

2008-06-03 Thread wark2007
I am looking for a "trigger" implementation (similar to database trigger) for entity beans. I had a look on the EventListener and they are quite good in many cases but they have one huge disadvantage - they don't give me access to the old object, since only the current object is passed to the

[jboss-user] [EJB 3.0] - Re: Dependency bug with multiple modules in EAR

2008-06-03 Thread anilit99
Hey Kiran, Thanks a lot. But I am not seeing 4.2.3 in the release page. Is there any way other than, checking out and building it ? thanks Anil. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155428#4155428 Reply to the post : http://www.jboss.com/i

[jboss-user] [Clustering/JBoss] - Re: Remote cluster ejb access

2008-06-03 Thread mancinis
hi, when I use the remote reference ejb/LucyConfBeanRemote jnp://RLLSIRFPAS01A:1100/ejb/LucyConfBean I obtain the following exception: 2008-06-03 17:26:28,969 ERROR [ServiceFinder] exception caught javax.naming.NamingException: Could not dereference object [Root exception is

[jboss-user] [JBoss Portal] - Strong authentication - how to implement?

2008-06-03 Thread tl83
Hi, I would like to have following functionality: 1. User log on with username and password 2. The system sends one time password in SMS to the users mobile 3. User log on with one time password So how could this be implemented to the JBossPortal? Could you give me some hints if it is possible

[jboss-user] [JBoss Tools (users)] - Re: 2.1.0.GA and startup errors

2008-06-03 Thread [EMAIL PROTECTED]
ziphyre: there is no source tab anymore, its handled with the splitter. jespersm: so if you did not actually update how come you got errors suddenly? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155422#4155422 Reply to the post : http://www.jboss.com/inde

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Sharing a class between 2 ears (classloader)

2008-06-03 Thread quaidbrown
Ya, I guess that the wizard that generated my project did some extra work for me without telling me :) Because the 2 projects had their own loader repository, it wasn't really automatic. That said, this solution isn't really 100% what I was hoping for. Now I have to worry about these 2 project

[jboss-user] [JBoss jBPM] - Re: Using end-complete-process attribute of end-state

2008-06-03 Thread nizzy
Thanks Ronald, Having a look at executing sub processes at the moment as soon as I get back onto it I will do as you suggest. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155418#4155418 Reply to the post : http://www.jboss.com/index.html?module=bb&op=post

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Migration from 4.0.3SP1 to 5.0.0.Beta4, hibernate.har placem

2008-06-03 Thread beyarecords
Hi, my project structure is as follows: default: - deployers/ejb3.deployer/ postgresql-8.2.504.jdbc4 - deploy/ hibernate.har postgres-ds As I am unable to find any information relating to the placement of hibernate.har directories in 5beta4, could someone kindly inform me where this directory

[jboss-user] [JBoss jBPM] - Re: Jbpm - Transaction to be used

2008-06-03 Thread jjacobwip
Thank you...my exact scenario is as below... I have a J2EE application which is already using Hibernate (running on Jboss)My jbpm process is to be plugged into this existing application. I am planning to create my jbpm databases on a different schema and the existing J2EE application is usi

[jboss-user] [Beginners Corner] - Re: How to set JBoss 3.0.8 Bind Address ?

2008-06-03 Thread PeterJ
Are you using JBossAS with embedded Tomcat or Jetty? If Tomcat, look for the server.xml config file (I hope that old of a Tomcat version uses that file and that it looks somehwta like the recent version) and look at the Connector entry, the "address" attribute. In 4.0.x and 4.2.x, it looks like

[jboss-user] [JBoss jBPM] - Re: Jbpm - EJB LazyInitialization Exception

2008-06-03 Thread jjacobwip
Thank you!! You are right, its working fine when I do all the operations in EJB itself. Also I saw in another thread that Lazy initialization of hibernate is not supported across layers especially in a Servlet - EJB scenario. Thanks again!! View the original post : http://www.jboss.com/index.h

[jboss-user] [JBoss Portal] - Re: Getting scripts/css into the header tags

2008-06-03 Thread esmith1
If you have some static entries for the head you can place them into the http://www.jboss.com/index.html?module=bb&op=viewtopic&t=132465 If you have dynamic content, you can inject it programatically:rResponse.setProperty("HEADER_CONTENT", | "http://www.jboss.com/in

[jboss-user] [JBoss jBPM] - Re: Want to suspend\close the taskInstance for some actors o

2008-06-03 Thread csplrj
Thanks for your reply Can this be added as an enhancement or this is a custom requirement? To me it feels it is a generalised requirement Thanks again CSJakharia View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155401#4155401 Reply to the post : http://www.

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Sharing a class between 2 ears (classloader)

2008-06-03 Thread PeterJ
Ah, you defined a loader repository. That is what I meant by "Only if you don't want this to happen do you have to do extra work." View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155399#4155399 Reply to the post : http://www.jboss.com/index.html?module=bb&op=

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Incomplete deployment - DataSourceBinding- JBOSS 4.2.2 +

2008-06-03 Thread jaikiran
Your persistence.xml mentions the datasource name: anonymous wrote : java:/cuoreds This means that the application will be using the persistence manager to persist to a database being pointed to by the datasource. The datasource is configured separately. Each application server has its own way

[jboss-user] [JBoss jBPM] - versioning external webservice client jars

2008-06-03 Thread thijseggen
Hey, We are facing the following problem, maybe someone here has some thoughts or has faces the same problem before. We have implemented a business process as an jBPM flow and this is running without much trouble in live production. Untill now we have deployes 5 new versions of the flow withou

[jboss-user] [JBoss Cache: Core Edition] - Re: ClusteredCacheLoader

2008-06-03 Thread lovelyliatroim
Any update on why this occurs?? Thanks, LL View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155394#4155394 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4155394 ___ jboss-user

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Java JDK1.0.6_06 and Jboss5.0.0.Beta3/4 no go!!

2008-06-03 Thread jaikiran
anonymous wrote : Caused by: java.lang.ClassNotFoundException: [Ljava.lang.Class; You are using Java 1.6, so its probably related to this http://wiki.jboss.org/wiki/ClassNotFoundJava.lang.StringInJDK6 This got fixed in JBoss-5 Beta4 http://jira.jboss.com/jira/browse/JBAS-4491 View the original

[jboss-user] [JBoss jBPM] - Re: Using end-complete-process attribute of end-state

2008-06-03 Thread kukeltje
nizzy, instead of using a 'debugstate' method, use asserts to show what you expect at certain points. Since I only have a slight clue what you want to achieve it is more difficult to help out. If you do create a testcase, put the processdefinition as a string inside of it, so I can also run i

[jboss-user] [JBoss Portal] - Social Network with JBoss Portal

2008-06-03 Thread bprojects
Hi, I'm new to JBoss portal. After reading the docs and playing with the software, I like to know if it is possible to customize JBoss portal as a social network portal like facebook. There are a lot common features. I only miss the public profile pages feature (with subdomains). Like usernam

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Java JDK1.0.6_06 and Jboss5.0.0.Beta3/4 no go!!

2008-06-03 Thread beyarecords
"jaikiran" wrote : Do not install JBoss or even Java in a folder containing a space in its path name. Sweet Lord...how did I miss that!!! Although saying that I do already have a fully operational 4.0.3SP1 project operating from the same directory!! Anyways, Jboss5.0.0.Beta4 starts up correctly

[jboss-user] [Messaging, JMS & JBossMQ] - Integration with WebSphere MQ: externalizing configuration p

2008-06-03 Thread martin_fritz
Hi there, I succesfully managed to integrate JBoss AS 4.2.2 with IBM WebSphere MQ V6 using the JCA resource adapter approach described in http://wiki.jboss.org/wiki/UsingWebSphereMQSeriesWithJBossASPart4. However, this requires hard-wiring many configuration parameters in the section of the d

[jboss-user] [JBoss jBPM] - Re: Want to suspend\close the taskInstance for some actors o

2008-06-03 Thread kukeltje
this does require a custom webapplication though View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155388#4155388 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4155388 ___ jboss-

[jboss-user] [JBoss jBPM] - Re: Want to suspend\close the taskInstance for some actors o

2008-06-03 Thread kukeltje
you can't from jBPM directly. If you assign to a pool of users, ONE of those has to act on it. What you can do is develop a web interface so that if one of the users acts on it, you do not end the task, but remove specific users from the pool and reassign back to the pool (by making the actor

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Incomplete deployment - DataSourceBinding- JBOSS 4.2.2 +

2008-06-03 Thread July Pyrra
Thank you for your answer. I saw that -ds.xml file in many discussion around this theme but I don't get why it used to work without I had to worry about that. Though, I found a hsqldb-ds.xml file in my deploy folder. I'm not sure you're talking about this one. I precise that I use Hibernate

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 2.1.0.GA released

2008-06-03 Thread [EMAIL PROTECTED]
As for the started / starting issue, that's a well documented use case. You probably have your server password protected and the piece of code which is checking to see if the server is up or down is not getting the answer it needs because of this. The poller uses JMX. You must set the user / pa

[jboss-user] [JBoss jBPM] - Want to suspend\close the taskInstance for some actors out o

2008-06-03 Thread csplrj
I am assigning a task to a pool of actors and later on I want to suspend\close the taskInstance for some actors out of those pool of actors? eg. I assign a task named "Submit your notebooks" and have assigned them to persons a,b,c,d and then I require that if except for "a,b" I want to close th

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Jboss start up problem

2008-06-03 Thread vvitayau
add the following run to you $JBOSS_HOME/bin/run.conf JAVA_OPTS="$JAVA_OPTS -Djavax.xml.transform.TransformerFactory=org.apache.xalan.processor.TransformerFactoryImpl" i have a similar issue and its odd because I have two machines with clean installation of Fedora Core 8. One machine works and t

[jboss-user] [JBoss Portal] - Re: Forcing locale

2008-06-03 Thread je.a.le
I managed to inject/force a custorm local by adding a new mbean (ServerInterceptor) into JBossInterceptorStackFactory (jboss-service.xml) My problem now is i'm unable to retrive any session attribure passed from a servlet into the HttpSession. On the servlet side, no pb, can read attribute back

[jboss-user] [JBoss Tools (users)] - Re: 2.1.0.GA and startup errors

2008-06-03 Thread jespersm
It was an "error 40" (the error was 40 cm from the screen) - I must have added the "development" update site earlier on, and updated from there. So the JBoss AS classes being picked up were 1.0.1.GA versions, not the new 1.1.0.GA package had not been downloaded. Updating the files on the develo

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 2.1.0.GA released

2008-06-03 Thread [EMAIL PROTECTED]
anonymous wrote : 1: With the patch | It creates the seam folder and puts the seam jar in that folder (Which I then just manually move to the ear root) confirmed. feh. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155375#4155375 Reply to the post : htt

[jboss-user] [JBoss Tools (users)] - Re: 2.1.0.GA and startup errors

2008-06-03 Thread jespersm
I'm getting the same problem. I also installed JBoss Tools 2.0.1GA from scratch, then updated to 2.1.0.GA by using the update manager. On startup, I get java.lang.NoClassDefFoundError: org/jboss/ide/eclipse/as/core/JBossServerCorePlugin in the .log, and the JBoss Servers view and related stuff

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 2.1.0.GA released

2008-06-03 Thread whitty69
Sorry if I was vague, as I said I didn't know whether to post here or elsewhere. This all occured whilst fighting with the jboss-seam.jar deployment problem , so I may have missed a few details. I start my server instance from eclipse using either the standard server or the JBoss 'servers' view

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Java JDK1.0.6_06 and Jboss5.0.0.Beta3/4 no go!!

2008-06-03 Thread jaikiran
anonymous wrote : Home Dir: C:\Program Files\jboss-5.0.0.Beta4 Do not install JBoss or even Java in a folder containing a space in its path name. Move the JBoss installation to maybe C:\JBoss\jboss-5.0.0.Beta4 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=415

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 2.1.0.GA released

2008-06-03 Thread [EMAIL PROTECTED]
Clicking stop in the console window and terminating the process should automatically set the server's state to "stopped". There is a process listener on the jboss process and once it is terminated the server state should fix itself. View the original post : http://www.jboss.com/index.html?mo

[jboss-user] [JBoss jBPM] - Re: Dynamic task creation

2008-06-03 Thread scull
i'm waiting for your replies View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155368#4155368 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4155368 ___ jboss-user mailing list jb

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Java JDK1.0.6_06 and Jboss5.0.0.Beta3/4 no go!!

2008-06-03 Thread beyarecords
Apologies for the original 5.0.0.Beta4 Log I posted. This reading is from the start of the error: | 14:27:48,937 ERROR [AbstractKernelController] Error installing to Instantiated: name=jboss:service=AttributePersistenceService state=Described mode=Manual requiredState=Configured | org.jbos

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Java JDK1.0.6_06 and Jboss5.0.0.Beta3/4 no go!!

2008-06-03 Thread beyarecords
Jboss 5.0.0.Beta3 reads (taking from the begining of the error): | 14:34:54,062 ERROR [AbstractKernelController] Error installing to Described: name=AspectAppParsingDeployer state=PreInstall | java.lang.RuntimeException: java.lang.reflect.UndeclaredThrowableException | at org.jboss.ao

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 2.1.0.GA released

2008-06-03 Thread [EMAIL PROTECTED]
anonymous wrote : If I use stop from the console and remove the ear from the server, it deletes the contents of the deploy folder apart from my project ear.. what?! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155364#4155364 Reply to the post : htt

[jboss-user] [JBoss Tools (users)] - Re: JBoss Tools 2.1.0.GA released

2008-06-03 Thread whitty69
I was struggling with this all day aswell. Decided to do an eclipse update, it offered me wst and after that it seemed to work as expected. I did remove the ear first. I wrote some more info about the eclipse update versions at : http://www.jboss.com/index.html?module=bb&op=viewtopic&t=131331&p

[jboss-user] [JBoss jBPM] - Re: Jbpm - Transaction to be used

2008-06-03 Thread estaub
Probably CMT. The question to ask is whether there is an outer contextual transaction that you want the engine to participate in. Usually, there's an MDB driving at least some activity, and usually you want the MDB to roll back and retry on an engine exception. But your situation may be diffe

[jboss-user] [JBoss Tools (users)] - Re: 2.1.0.GA and startup errors

2008-06-03 Thread ziphyre
For the source tab problem: http://jira.jboss.com/jira/browse/JBIDE-2287 I've tried with a fressh install and an empty workspace, still same.. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4155349#4155349 Reply to the post : http://www.jboss.com/index.html?m

[jboss-user] [JBoss Tools (users)] - Re: upgrade to WTP 2.0.2 breaks EAR deployment in JBoss Tool

2008-06-03 Thread whitty69
I just updated the eclipse wst package today and it works. fyi, Update history shows me this: 03.06.2008 15:15:18 org.eclipse.wst.common_sdk.feature_2.0.2.v200802150100-4-384H8HS6JCZyXYql06-5r3HoFL feature-install success 03.06.2008 15:17:27 org.eclipse.wst.common_core.feat

[jboss-user] [JBoss jBPM] - Re: Using end-complete-process attribute of end-state

2008-06-03 Thread nizzy
Hi Interestingly in my debug, I see that node-entered is the required end state however execution of the process does not finish at this point! | | 10:47:20,613 [main] INFO ForkTest : Signaling: Waiting for a | 10:47:20,613 [main] DEBUG ForkTest : inside signal(instance, childKey = a)

  1   2   >