[jboss-user] [JBoss Portal Users] - JBoss User Guide/Documentation PDF not found

2009-09-28 Thread ilangocal
Hi I would like to take JBoss portal for a test drive. I am trying to find out if there is a User Guide that shows the features of JBoss Portal. I viewed the video though. What I would like to do is look at the user guide and look if I can as a User on the Portal allow other users to download

[jboss-user] [JBoss Portal Users] - Re: JBoss User Guide/Documentation PDF not found

2009-09-28 Thread ilangocal
PeterJ wrote : Did you try the Documentation link on the Portal product page (http://jboss.org/jbossportal/)? | | The Portal includes a Content Management System that can be used to server files. No, I did not try that. Thanks View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - can an MessageDriven bean listen on more than one queue

2009-01-02 Thread ilangocal
Hi I have an Message Driven at the present time that is listening to just one queue. I am interested in having my Message Driven Bean listen to more than one queue. For the present time I want it to listen to two queues. Is it possible to use JBoss to achieve this end, and if so is there a code

[jboss-user] [EJB 3.0] - Re: UNRESOLVED Demands 'jboss.ejb:service=EJBTimerService *

2008-12-12 Thread ilangocal
nanda_kishore wrote : i removed all %JBOSS_HOME%/server/ serverName/deploy folder/messaging files and i removed hssql-ds.xml . now i left with this error UNRESOLVED Demands 'jboss.ejb:service=EJBTimerService **. | do i need to configure %JBOSS_HOME%/server/

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: EJB3 Timer Service Problem with Oracle Datasource

2008-12-09 Thread ilangocal
I remember having set it to FALSE. But it did not work. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4195327#4195327 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4195327 ___

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: EJB3 Timer Service Problem with Oracle Datasource

2008-12-08 Thread ilangocal
Jaikiran This table already exists in the database. Also, the error java.sql.SQLException: ORA-00942: table or view does not exist is because a table called qrtz_locks does not exist. I tried to run the SQL script in docs/dbTables, after deleting all the tables, and started JBoss, but then this

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: EJB3 Timer Service Problem with Oracle Datasource

2008-12-08 Thread ilangocal
jaikiran wrote : anonymous wrote : ner) sql failed: CREATE TABLE QRTZ_JOB_DETAILS(JOB_NAME VARCHAR2(80) NOT NULL, JOB_GROUP VARCHAR2(8 | | 0) NOT NULL, DESCRIPTION VARCHAR2(120) NULL, JOB_CLASS_NAME VARCHAR2(128) NOT NULL, IS_DURABLE VAR | | CHAR2(1) NOT NULL, IS_VOLATILE VARCHAR2(1)

[jboss-user] [Installation, Configuration DEPLOYMENT] - which sql statements from tables_oracle.sql in quartz source

2008-12-07 Thread ilangocal
Hi I have configured JBoss 5 CR2 with Oracle 10g on a Windows XP machine In the process I added in SQL statements in ejb3-timer-service.xml Now on JBoss startup, I keep getting an messsage that said: sql failed: qrtz_job_details. So wonder if the rest of the statements from tables_oracle.sql

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: ClassNotFoundException: net/sf/HibernateException

2008-12-06 Thread ilangocal
jaikiran wrote : anonymous wrote : 16:54:21,973 ERROR [[/DexCenterQueueing2-war]] StandardWrapper.Throwable | | java.lang.NoClassDefFoundError: net/sf/hibernate/HibernateException | | at java.lang.Class.forName0(Native Method) | | at

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: errors on JBoss startup - replacing Hypersonic DB with O

2008-12-01 Thread ilangocal
braca wrote : Hi, | | I removed hsqldb-ds.xml and replaced it with oracle-ds.xml. For this reason, I changed the following files by replacing DefaultDS to OracleDS (your Datasource name). | | conf/login-config.xml | deploy/uuid-key-generator.sar/META-INF/jboss-service.xml |

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: JBoss 5.0 CR2 and PostgreSQL

2008-12-01 Thread ilangocal
PeterJ wrote : You must also configure messaging and quartz to use the postgresql database. For messaging, copy the docs/examples/jms/postgresql-persistence-service.xml file to server/xxx/deploy/messaging and remove the hsqldb-persistence-service.xml file. Also, you must edit the file if you

[jboss-user] [Installation, Configuration DEPLOYMENT] - errors on JBoss startup - replacing Hypersonic DB with Oracl

2008-11-26 Thread ilangocal
Hi These are the errors I get when I start up JBoss. I have a new oracle-ds.xml, got rid of the hsqldb-ds.xml,, copied the ojdbc.jar file into lib, dropped in a new oracle-db-persistence.xml and have java://oracleDS in it instead of defaultDS. What am I missing in the configuration. I even

[jboss-user] [Installation, Configuration DEPLOYMENT] - java.lang.NoClassDefFoundError: net/sf/hibernate/HibernateEx

2008-11-21 Thread ilangocal
Hi I am trying to deploy an EAR file that has a Message Bean, a Stateless Session Bean and 3 servlets. Any suggestions on why I am getting this error: Thanks in advance 14:57:49,441 INFO [SessionSpecContainer] Starting

[jboss-user] [JBoss Messaging] - JBoss Messaging -do I have to download it for JBoss 5 CR2

2008-11-17 Thread ilangocal
Hi I have been using JBoss 5 CR2 for at least a month and a half now. I have been running JMS programs in JBoss 5 CR2. I have been making the following assumption: 1) Jboss messaging is an integral part of JBoss 5 that was shipped by default when I downloaded JBoss 5 AS. 2) Some documentation

[jboss-user] [JBoss Messaging] - System.out.print statements in onMessage method not showing

2008-11-16 Thread ilangocal
I added the System.out statements inside my onMessage method as below: public void onMessage(Message message) { | String name = null; | try { | if (message instanceof ObjectMessage) { | ObjectMessage objMessage = (ObjectMessage) message; |

[jboss-user] [JBoss Messaging] - how to get my message selector to work

2008-11-14 Thread ilangocal
Hi I have used a message selector in my MDB as follows: @ActivationConfigProperty(propertyName = messageSelector, propertyValue = sessionID='1234567') (all on one line) on the servlet client that sends the messages I have the following: ObjectMessage message = session.createObjectMessage();

[jboss-user] [JBoss Messaging] - Re: allowing a client or MDB to specify by message header, m

2008-11-13 Thread ilangocal
Thanks for that tip. I am trying to test it out now. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4189254#4189254 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4189254 ___

[jboss-user] [JBoss Messaging] - setting JMSPriority header message

2008-11-13 Thread ilangocal
I have a JMS client servlet sending messages to queue. I would like to set properties like a JMSPriority Header with a certain value, JMSMessageID, JMSXDeliveryCount. How can I do this in @activationConfig in the MessageBean and in the Message Producer Servlet? thanks View the original

[jboss-user] [JBoss Messaging] - viewing JMS messages and queues created

2008-11-06 Thread ilangocal
Hi How would I able to manage my queues? How would I able to view them, so that I can delete them or create new ones or simply add header properties to them. Should I use Hermes, Habari, or does JBoss come with its own console for managing these queues? Please advise. thanks View the

[jboss-user] [JBoss Messaging] - Re: viewing JMS messages and queues created

2008-11-06 Thread ilangocal
I found that Jopr can currently work only with Jboss 4.2. And I am running JBoss 5. Do you have any suggestions for an alternative? Thanks very much for your generous response View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4187510#4187510 Reply to the post :

[jboss-user] [JBoss Messaging] - setting header values

2008-11-03 Thread ilangocal
How can I create a message with certain values for a header? Thanks for the message selector tip View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4186552#4186552 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4186552

[jboss-user] [JBoss Messaging] - allowing a client or MDB to specify by message header, messa

2008-11-02 Thread ilangocal
Hi I am running JBoss 5 CR2 on Windows Vista. I have a Message Driven that is supposed to listen to message on a queue. Now my effort would be try and implement a Message Selector that would allow this MDB to read the message header off the messages on the queue and pick one up that matches the

[jboss-user] [EJB 3.0] - tools to conduct code review on EJB3 code (MDBs, Session Bea

2008-10-23 Thread ilangocal
Hi What is the best approach to conducting a code review on EJB3 code? Currently I deploy EARs into JBoss 5 CR2. I would like to be able to do a code review. My understanding is that there is a formal procedure that includes the use of tools to make this happen. Any advise on tools,

[jboss-user] [JBoss Messaging] - Re: org.jboss.xb.binding.JBossXBRuntimeException: Failed to

2008-10-21 Thread ilangocal
Peter I did not realize I was posting in the wrong place. Thanks for pointing that out to me. I have not tried this one with JBoss 4. I did not post the full stack trace because I was naive. I thought there was too much to paste here. I am developing an EJB 3 application using MDBs. The

[jboss-user] [Installation, Configuration DEPLOYMENT] - Errors during deployment of EJB3 application into JBoss 5 R2

2008-10-21 Thread ilangocal
On deploying my Ear file (containing EJB 3 MDBs with annotations, Servlet, Session Facade) into Jboss 5 R2 from Netbeans 6.1, I get the following errors: This is preventing my application from deploying correctly. I (naively perhaps) wrote ejb-jar.xml too and this is included in my EAR file..)

[jboss-user] [JBoss Messaging] - Re: org.jboss.xb.binding.JBossXBRuntimeException: Failed to

2008-10-21 Thread ilangocal
Peter Should I send you the EAR file? It has an MDB, a Session Facade Bean, 2 servlets. It is just a sample that was developed. I have posted the full stack trace in the deploy forum as well. thanks View the original post :

[jboss-user] [JBoss and NetBeans] - Problems deploying an EAR file into NetBeans 6.0.1

2008-10-21 Thread ilangocal
My profound apologies for the duplicate post. I thought this was an appropriate place to post because it was Netbeans related. I developed a sample based on:http://testwww.netbeans.org/kb/55/ejb30-jboss.html On deploying my Ear file (containing EJB 3 MDBs with annotations, Servlet, Session

[jboss-user] [JBoss Messaging] - org.jboss.DeploymentException:

2008-10-21 Thread ilangocal
First my application was completely failing in JBoss 5. So I tried this in Jboss 4. So, on deploying an EAR in JBoss-4.2-2GA I came up with the following errors: The EAR was created from a project structure in Netbeans and I have application.xml in it. Where am I going wrong? Any help is

[jboss-user] [Installation, Configuration DEPLOYMENT] - messaging-type is already there!!

2008-10-21 Thread ilangocal
Peter Ok, so here goes. The messaging-type element is already there in my ejb-jar.xml. This is baffling me. Maybe I am missing something!! Here is my ejb-jar.xml ?xml version=1.0 encoding=UTF-8? | !DOCTYPE ejb-jar PUBLIC -//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN

[jboss-user] [JBoss Messaging] - Re: org.jboss.DeploymentException:

2008-10-21 Thread ilangocal
Peter I supplied the application.xml by repackaging the ear with the application.xml inside META-INF (because Netbeans IDE does not include the application.xml) But now I am still stuck with this messaging-type problem. Again, I assume I am using JBoss Messaging since I am on Jboss 5. I am now

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Errors during deployment of EJB3 application into JBoss

2008-10-21 Thread ilangocal
I thought I was using EJB 3 all along. Perhaps I have been wrong!! The best option is to reproduce the MDB source here: Here is the source for my MDB: Thanks again. Appreciate your kind replies /* | * To change this template, choose Tools | Templates | * and open the template in the

[jboss-user] [Installation, Configuration DEPLOYMENT] - had always been javax.jms.MessageListener

2008-10-21 Thread ilangocal
It had always been javax.jms.MessageListener and then I changed it to the value that you saw, so I changed it back again and I am back to square one. It complains that there is no messaging-type when in fact there is one already!! Thanks again View the original post :

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Errors during deployment of EJB3 application into JBoss

2008-10-21 Thread ilangocal
I just did what you told me to and did a clean and did a fresh deploy to JBoss. I was handed a bunch of errors: They are as below:(notably,jndi-name not found as a child of message-driven ) is one of them. 20:03:35,794 ERROR [AbstractKernelController] Error installing to Parse:

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: Errors during deployment of EJB3 application into JBoss

2008-10-21 Thread ilangocal
PeterJ wrote : The annotations on your MDB look reasonably complete. I would remove the ejb-jar.xml file - you don't need it. JBoss complains that jndi-name is not a child element of message-driven when in fact that is the case!! Thanks very much for bearing with me. These are the contents of

[jboss-user] [Installation, Configuration DEPLOYMENT] - No exceptions this time: the jndi-name stuff was misleadin

2008-10-21 Thread ilangocal
The exception with regard to jndi-name sounded misleading to me. At first I thought it was warning me that there ought to be jndi-name when it was actually there. After some thought I felt that the exception was telling me : hey, jndi-name is NOT to be found as a jndi-name. Well,I removed the

[jboss-user] [JBoss Messaging] - Repeat errors: javax.naming.NameNotFoundException: DCMessag

2008-10-20 Thread ilangocal
Hi I have been getting those very exceptions that I thought I had eliminated before. The second error I am getting is: 13:11:33,388 ERROR [JmsActivation] Unable to reconnect org.jboss.resource.adapte [EMAIL PROTECTED](ra=org.jboss.resource.adapter.jms.JmsResou [EMAIL PROTECTED]

[jboss-user] [JBoss Messaging] - org.jboss.xb.binding.JBossXBRuntimeException: Failed to reso

2008-10-20 Thread ilangocal
On deploying my Ear file into Jboss 5 from Netbeans I get the following errors: This is preventing my application from deploying correctly. Any help in sorting out this issue is gratefully acknowledged. Thanks in advance org.jboss.deployers.spi.DeploymentException: Error creating managed object

[jboss-user] [JBoss Messaging] - problem in doProcess() method in a servlet that posts messag

2008-10-19 Thread ilangocal
My environment is: JBoss 5, Windows Vista. I have written a servlet that will post messages to queue via a Session Bean Facade. Now this is the error the Netbeans IDE is giving me: The IDE (Netbeans is telling me the following: incompatible types: found: javax.jms.QueueSession.CreateProducer

[jboss-user] [JBoss Messaging] - Re: problem in doProcess() method in a servlet that posts me

2008-10-19 Thread ilangocal
Problem solved. I had an import statement wrong and the NetBeans import utility did not work as it should I had to use: import javax.jms.*; instead of :import java util.Queue; thanks View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4183073#4183073 Reply to the

[jboss-user] [JBoss Messaging] - javax.naming.NameNotFoundException: mdb not bound

2008-10-19 Thread ilangocal
I am getting the following exceptions after deploying:Seems to me that is it is complaining about propertyValue=queue/mdb in my @MessageDrivenAnnotation in my Message Driven Bean What could be the source of these errors? Any suggestions are appreciated 15:26:36,009 WARN [JmsActivation]

[jboss-user] [JBoss Messaging] - port problem with JBoss during deployment

2008-10-19 Thread ilangocal
Hi I have tried to deploy a EAR from NetBeans (containing MDB, servlets, Session Beans) into JBoss 5. During JBoss installation I had set the port to 8082 in server.xml, because I had another JBoss (4) running on 8080. Now when I deploy my application the correct behaviour would be to launch a

[jboss-user] [JBoss Messaging] - Re: javax.naming.NameNotFoundException: mdb not bound

2008-10-19 Thread ilangocal
I think I solved my own problem. I will type out another reply a little, so that it might be helpful to someone else as well. Now though, I have run into a port problem, and I am not sure what to do about that. View the original post :