Hi Howard,
Thankyou for your response. I will post the issue to JBoss Remoting forum.
The JBoss Remoting version is 2.2.2.SP8 the one that came with JBoss AS 4.2.3 GA (haven't upgraded the JBoss Remoting version).
| Contents of Manifest.mf file in jboss-remoting.jar are shown below:
|
| Manifest-Version: 1.0
| Specification-Title: JBoss
| Built-By: rsigal
| Created-By: 1.5.0_06-b05 (Sun Microsystems Inc.)
| Specification-Version: 4.2.3.GA
| Implementation-Vendor-Id: http://www.jboss.org/
| Implementation-URL: http://www.jboss.org/
| Created-On: 2008-06-23 10:21:20
| Ant-Version: Apache Ant 1.7.0
| Main-Class: org.jboss.remoting.Version
| Implementation-Title: JBoss [Trinity]
| Specification-Vendor: JBoss (http://www.jboss.org/)
| Implementation-Version: 4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=20
| 0807181417)
| Implementation-Vendor: JBoss Inc.
|
| Name: JBossRemoting
| Specification-Title: JBossRemoting
| Implementation-Title: JBossRemoting
| Specification-Vendor: JBoss Inc.
| Specification-Version: 2.2.2.SP8
| Implementation-Vendor-Id: http://www.jboss.org
| Implementation-Version: 2.2.2.SP8
| Implementation-Vendor: JBoss Inc.
|
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263400#4263400
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263400
I am using
| <arg><object expr="#{attendeeId}"/></arg>
|
attendeeId is process variable of type String.
| Caused by: java.lang.Exception: couldn't create argument 0: script evaluation er
| ror: javax.el.PropertyNotFoundException: Cannot find property attendeeId
| at org.jbpm.pvm.internal.wire.descriptor.ObjectDescriptor.getArgs(Object
| Descriptor.java:348)
| at org.jbpm.jpdl.internal.activity.JavaActivity.perform(JavaActivity.jav
| a:79)
|
Is the expression correct?
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263395#4263395
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263395
"kliu(a)tieroneoss.com" wrote :
| Why aren't these queued defined when you define the Message Driven Bean?
|
Queues (or topics) are part of the JMS configurations and are independent of EJB3. MDBs are just one way of listening to such destinations. As such, creation of destinations isn't part of the MDB responsibilities.
"kliu(a)tieroneoss.com" wrote :
| Is there a way to use annotations to define the queues instead of using this xml file?
|
|
Not that i know of.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263389#4263389
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263389
I'm sorry I wasn't clear enough. I'm new to this and couldn't describe it as well as I would have liked to. I solved it though. I'm using 3.x so I couldn't use identity service so I just did this:
| private String getUserEmail(String userid) {
| JbpmConfiguration jbpmConfiguration = JbpmConfiguration.getInstance();
| JbpmContext jbpmContext = jbpmConfiguration.createJbpmContext();
| Session hbSession = jbpmContext.getSession();
| Query query = hbSession.createSQLQuery("SELECT EMAIL_ FROM JBPM_ID_USER WHERE NAME_='" + userid + "'");
| String emailAddress = (String) query.list().get(0);
| jbpmContext.close();
| return emailAddress;
| }
|
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4263383#4263383
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4263383