Adventure Builder 1.0.4 Service not found exception in Genonimo 1.1

2007-06-13 Thread Chen Wenguang
Hello, I tried to port Adventure Builder 1.0.4 to Geronimo 1.1 but failed. I started from the Adventure Builder 1.0.3's deplopyment file for Geronimo 1.0 by Jacek from http://issues.apache.org/jira/browse/GERONIMO-1164 I made some changes to the deployment files to make the deployment

Re: Help needed in creating enterprise application deployment plan

2007-06-13 Thread Hernan Cunico
Did you see these docs http://cwiki.apache.org/GMOxDOC11/deployment-plans.html There are also some sample apps here http://cwiki.apache.org/GMOxDOC11/sample-applications.html HTH Cheers! Hernan krishj wrote: Hi, I am new to WAS CE. i have given a job of deploying EJB application in WASCE.

Re: Help needed in creating enterprise application deployment plan

2007-06-13 Thread solprovider
On 6/13/07, Hernan Cunico [EMAIL PROTECTED] wrote: Did you see these docs http://cwiki.apache.org/GMOxDOC11/deployment-plans.html There are also some sample apps here http://cwiki.apache.org/GMOxDOC11/sample-applications.html HTH Cheers! Hernan I have yet to find documentation about the

Re: JAR in Geronimo overrides JAR in WAR

2007-06-13 Thread David Jencks
From a quick look at what you say the problems you are experiencing are from cocoon requiring a more recent JAXP implementation than is in the geronimo 1.2-beta you are using. AFAICT the jaxp implementation has to be installed in lib/endorsed and cannot be affected by any application

Re: Help needed in creating enterprise application deployment plan

2007-06-13 Thread David Jencks
On Jun 13, 2007, at 9:03 AM, [EMAIL PROTECTED] wrote: On 6/13/07, Hernan Cunico [EMAIL PROTECTED] wrote: Did you see these docs http://cwiki.apache.org/GMOxDOC11/deployment-plans.html There are also some sample apps here http://cwiki.apache.org/GMOxDOC11/sample-applications.html HTH

MDB trouble with references

2007-06-13 Thread Viet Hung Nguyen
I am trying to get a simple MDB to work using annotations. However, when I deploy it into Geronimo 2.0, I get the following error. This is with the ConnectionFactory and Queue set up in Geronimo already: Error: Unable to distribute order-ear-2.0-SNAPSHOT.ear: Unable to resolve resource

Re: 1.2 Bug ClassCastException with Properties

2007-06-13 Thread solprovider
This information is now at: https://issues.apache.org/jira/browse/GERONIMO-3243 I am using Geronimo as a local J2EE server for testing from a perceived obligation as an Apache Committer to learn, support, and market Apache software. My application is a flexible front-end for SAP Portal and must

Unable to resolve resource reference on 3.0 with annotations

2007-06-13 Thread Avorcor
Okay, I tried to find a similar situation as this on this forum and on the web, but have not had any luck. I am using Geroimo 2.0M5 I have deployed a new ActiveMQ Resource Adapter with 2 queues and 1 topic. The factory name is Factory1 I have a single session bean that publishes to a JMS

Re: MDB trouble with references

2007-06-13 Thread David Jencks
You need to include the resource plan as a parent of your web-app in the geronimo-web environment element. If this doesn't help please show your entire geroniimo-web.xml. You can eliminate the resource-ref type stuff from your geronimo- web.xml if you make the names exactly the same

Re: Unable to resolve resource reference on 3.0 with annotations

2007-06-13 Thread David Jencks
You need a geronimo plan for your (ejb? ear? app) that includes the jms module you have deployed as a parent, otherwise the references won't be able to be resolved. Also we ignore the mappedName, you should specify the name and make sure it's the same as what's in the jms module plan.

Re: MDB trouble with references

2007-06-13 Thread David Jencks
Also I noticed you are using mappedName which we ignore, try using name instead. thanks david jencks On Jun 13, 2007, at 8:31 PM, David Jencks wrote: You need to include the resource plan as a parent of your web-app in the geronimo-web environment element. If this doesn't help please

Re: Unable to resolve resource reference on 3.0 with annotations

2007-06-13 Thread Avorcor
Well, that sure did fix that in a hurry.Thank you. Now, if I may, one final question. Now that my session bean is deployed, aren't I supposed to be able to access it as web service through EJB? If so, what do I need to do to make that happen? Thank you again. JP djencks wrote: You

Re: MDB trouble with references

2007-06-13 Thread Viet Nguyen
David Jencks wrote: Also I noticed you are using mappedName which we ignore, try using name instead. thanks david jencks On Jun 13, 2007, at 8:31 PM, David Jencks wrote: You need to include the resource plan as a parent of your web-app in the geronimo-web environment element. If this