borken link in JCA Migration docs

2006-02-02 Thread Richard Kennedy
A link to the jca.zip sample application is broken in the JBoss to
Geronimo - JCA Migration.html doc shipped with geronimo 1.0.

The patch below fixes that link. (I've also attached the patch in case
it gets mangled in the mail)

Cheers
Richard 



--- JBoss to Geronimo - JCA Migration (copy).html   2005-12-22 
05:20:39.0 +
+++ JBoss to Geronimo - JCA Migration.html  2006-02-02 12:48:20.0 
+
@@ -98,7 +98,7 @@
 pa href=#JBosstoGeronimo-JCAMigration-top title=top on JBoss to Geronimo 
- JCA MigrationBack to Top/a/p
 
 h1a name=JBosstoGeronimo-JCAMigration-Sampleapplication/aSample 
application a name=JBosstoGeronimo-JCAMigration-sampleApp/a/h1
-pThis article contains a a 
href=http://localhost:9090/download/attachments/1567/jca.zip?version=1; 
title=jca.zip attached to JBoss to Geronimo - JCA MigrationFile Retriever 
JCA/a sample application to demonstrate the migration from JBoss to Geronimo. 
This application consists of two modules that, for this sample purposes, are 
deployed separately and not as a single EAR archive./p
+pThis article contains a a href=JBoss to Geronimo - JCA 
Migration_attachments/jca.zip title=jca.zip attached to JBoss to Geronimo - 
JCA MigrationFile Retriever JCA/a sample application to demonstrate the 
migration from JBoss to Geronimo. This application consists of two modules 
that, for this sample purposes, are deployed separately and not as a single EAR 
archive./p
 
 pThe first module is a simple file system resource adapter that conforms to 
the JCA architecture without any server-specific extensions. The adapter 
provides only two functions:/p
 

--- JBoss to Geronimo - JCA Migration (copy).html	2005-12-22 05:20:39.0 +
+++ JBoss to Geronimo - JCA Migration.html	2006-02-02 12:48:20.0 +
@@ -98,7 +98,7 @@
 pa href=#JBosstoGeronimo-JCAMigration-top title=top on JBoss to Geronimo - JCA MigrationBack to Top/a/p
 
 h1a name=JBosstoGeronimo-JCAMigration-Sampleapplication/aSample application a name=JBosstoGeronimo-JCAMigration-sampleApp/a/h1
-pThis article contains a a href=http://localhost:9090/download/attachments/1567/jca.zip?version=1; title=jca.zip attached to JBoss to Geronimo - JCA MigrationFile Retriever JCA/a sample application to demonstrate the migration from JBoss to Geronimo. This application consists of two modules that, for this sample purposes, are deployed separately and not as a single EAR archive./p
+pThis article contains a a href=JBoss to Geronimo - JCA Migration_attachments/jca.zip title=jca.zip attached to JBoss to Geronimo - JCA MigrationFile Retriever JCA/a sample application to demonstrate the migration from JBoss to Geronimo. This application consists of two modules that, for this sample purposes, are deployed separately and not as a single EAR archive./p
 
 pThe first module is a simple file system resource adapter that conforms to the JCA architecture without any server-specific extensions. The adapter provides only two functions:/p
 


Re: Need help with db2jcc_license_cu jar file deployment

2006-02-02 Thread Aaron Mulder
For now, your best bet is to create the pool in the console but don't
test it, and then use the Show Plan option.  Then save the plan to a
file, and copy the dependency element that refers to the JDBC driver
JAR and point the copies to the additionaly driver JAR(s) you need. 
Then you can deploy that plan using the command-line deployment tool
like this:

java -jar bin/deployer.jar
repository/tranql/rars/tranql-connector-1.1.rar my-plan.xml

Thanks,
Aaron

On 1/31/06, [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:
 Hello,

 I am very new to Geronimo, have installed Geronimo-Tomcat-J2EE-1.0 just last
 week on my Window-XP to evaluate it. I have DB2 UDB Workgroup server 8.2
 running on another Windows server within my LAN and I am trying to add a
 database pool for this DB2 using Geronimo Web Console.

 I could successfully add the two jar files db2jcc.jar and
 db2jcc_license_cu.jar to the Geronimo repository and they are now under
 ...\geronimo-1.0\repository\db2\jars but renamed as db2jcc-8.2.jar and
 db2jcc_license_cu-8.2.jar respectively since I specified their version as
 8.2. They are listed as db2/db2jcc/8.2/jar and db2/db2jcc_license_cu/8.2/jar
 respectively under the Current Repository Entries.

 While adding the new database pool, I can successfully step through until
 the Test Connection which fails trying to find the appropriate license
 file db2jcc_license_cu.jar. Below is the error message:
 ==
 com.ibm.db2.jcc.b.SqlException: The version of the IBM Universal JDBC driver
 in use is not licensed for connectivity to DB2 for Unix/Windows databases.
 To connect to this DB2 server, please obtain a licensed copy of the IBM DB2
 Universal Driver for JDBC and SQLJ.  An appropriate license file
 db2jcc_license_*.jar for this target platform must be installed to the
 application classpath.  Connectivity to DB2 for Unix/Windows databases is
 enabled by any of the following license files: { db2jcc_license_cu.jar,
 db2jcc_license_cisuz.jar }
  at com.ibm.db2.jcc.b.o.db(o.java:3103)
  at com.ibm.db2.jcc.b.o.cb(o.java:3049)
  at com.ibm.db2.jcc.a.b.cb(b.java:629)
  at com.ibm.db2.jcc.a.b.init(b.java:306)
  at com.ibm.db2.jcc.DB2Driver.connect(DB2Driver.java:162)
  at
 org.apache.geronimo.console.databasemanager.wizard.DatabasePoolPortlet.attemptConnect(DatabasePoolPortlet.java:797)
  at
 org.apache.geronimo.console.databasemanager.wizard.DatabasePoolPortlet.processAction(DatabasePoolPortlet.java:321)
 ...
 ...
 ...
 ===
 The DB2 license file name  is expected to be db2jcc_license_cu.jar, but the
 Web Console renames it to db2jcc_license_cu-8.2.jar due to its jar file
 naming rules.

 I have seen a posting by Mr. Young Skim ([EMAIL PROTECTED]) on 01/12/2006
 seeking help on the same problem and I have tried one of the solutions
 posted by Mr. Matt Hogstrom i.e. add dependency to these jar files to the
 application's deployment plan. It did not work, may be because I am not sure
 exactly to which xml file, I should add this.

 Please help me!
 Thanks a lot!
 Prakash



Re: Geronimo Eclipse Plugin doesn't start web app

2006-02-02 Thread Sachin Patel
Sure, send me the video.  I may not get to it until later today or tommorow. - sachin On Feb 2, 2006, at 9:01 AM, Edson Carlos Ericksson Richter wrote:Ok, now I go with WTP 1.0.1 oficial released, and latest Eclipse Plugin (20060130-0958 http://cvs.apache.org/dist/geronimo/eclipse/unstable/20060130-0958/), but still having in trouble.I have removed Geronimo server and Geronimo runtime, the File - New - Server, created new Geronimo Runtime + JDK 1.4.2, changed my very simple project to use JDK 1.4.2, put Geronimo library (with WTP 1.0.1 it works - this problem is solved), right click project node, ask "Run as - Run as Server", select "Geronimo". The app is deployed (or I think it is), then I get the message "Could not find a client that is able to launch the selection".Starting geronimo got to infinite starting (again, appear the problem goes back).I've created a video from my work session ... I made some comments during video, was a long test :-), I think comments could enrich with "what a hell is on user's mind when he done this?" to you ;-) - if you wan't, I can send it privatelly so you could analyze (I didn't send to maillist because it has 1,59Mb - will be abusive with readers who don't care).Any tips?RichterEdson Carlos Ericksson Richter escreveu: Ok, I'm downloading and giving a try right now.RichterSachin Patel escreveu: No please, don't wait.  The I build is a 1.5 driver.  A new 1.0.1 M driver was just released.http://download.eclipse.org/webtools/downloads/drops/M-M200602010238-200602010238/ - sachinOn Feb 1, 2006, at 12:09 PM, Edson Carlos Ericksson Richter wrote: Should I try WTP "I" latest build? Or should I wait for official 1.0.1 release?Richter___ Yahoo! doce lar. Faça do Yahoo! sua homepage. http://br.yahoo.com/homepageset.html                  ___ Yahoo! doce lar. Faça do Yahoo! sua homepage. http://br.yahoo.com/homepageset.html ___ Yahoo! doce lar. Faça do Yahoo! sua homepage. http://br.yahoo.com/homepageset.html  

Re: Geronimo Eclipse Plugin doesn't start web app

2006-02-02 Thread Edson Carlos Ericksson Richter
This always happens... just after clicking Send button, I realized that 
I forgot to change password for system user. So I got to Server 
configuration and changed password, and the forever starting problem 
goes away (should not Plugin alert about password problems instead of 
forever starting problem?).


But app still not run (and is not either deployed).

I'll do retry with server running under JDK 1.5.0 (my preferred 
plataform - because I have some external projects sucessfully deployed 
under this same Geronimo install), and let you know results.



Richter

Sachin Patel escreveu:

Sure, send me the video.  I may not get to it until later today or 
tommorow.


- sachin



On Feb 2, 2006, at 9:01 AM, Edson Carlos Ericksson Richter wrote:

Ok, now I go with WTP 1.0.1 oficial released, and latest Eclipse 
Plugin (20060130-0958 
http://cvs.apache.org/dist/geronimo/eclipse/unstable/20060130-0958/), 
but still having in trouble.
I have removed Geronimo server and Geronimo runtime, the File - New 
- Server, created new Geronimo Runtime + JDK 1.4.2, changed my very 
simple project to use JDK 1.4.2, put Geronimo library (with WTP 1.0.1 
it works - this problem is solved), right click project node, ask 
Run as - Run as Server, select Geronimo. The app is deployed (or 
I think it is), then I get the message Could not find a client that 
is able to launch the selection.


Starting geronimo got to infinite starting (again, appear the problem 
goes back).


I've created a video from my work session ... I made some comments 
during video, was a long test :-), I think comments could enrich with 
what a hell is on user's mind when he done this? to you ;-) - if 
you wan't, I can send it privatelly so you could analyze (I didn't 
send to maillist because it has 1,59Mb - will be abusive with readers 
who don't care).


Any tips?

Richter



Edson Carlos Ericksson Richter escreveu:


Ok, I'm downloading and giving a try right now.

Richter

Sachin Patel escreveu:

No please, don't wait.  The I build is a 1.5 driver.  A new 1.0.1 M 
driver was just released.


http://download.eclipse.org/webtools/downloads/drops/M-M200602010238-200602010238/ 


- sachin



On Feb 1, 2006, at 12:09 PM, Edson Carlos Ericksson Richter wrote:

Should I try WTP I latest build? Or should I wait for official 
1.0.1 release?


Richter






___ Yahoo! 
doce lar. Faça do Yahoo! sua homepage. 
http://br.yahoo.com/homepageset.html 










   ___ 
Yahoo! doce lar. Faça do Yahoo! sua homepage. 
http://br.yahoo.com/homepageset.html









___ Yahoo! doce 
lar. Faça do Yahoo! sua homepage. http://br.yahoo.com/homepageset.html 










___ 
Yahoo! doce lar. Faça do Yahoo! sua homepage. 
http://br.yahoo.com/homepageset.html 



Re: Geronimo Eclipse Plugin doesn't start web app

2006-02-02 Thread Sachin Patel
 - sachin On Feb 2, 2006, at 9:30 AM, Edson Carlos Ericksson Richter wrote:This always happens... just after clicking Send button, I realized that I forgot to change password for system user. So I got to Server configuration and changed password, and the "forever starting" problem goes away (should not Plugin alert about password problems instead of forever starting problem?).Yes, can you open a jira on that?But app still not run (and is not either deployed).I'll do retry with server running under JDK 1.5.0 (my preferred plataform - because I have some external projects sucessfully deployed under this same Geronimo install), and let you know results.G is only certified to run on 1.4.xRichterSachin Patel escreveu: Sure, send me the video.  I may not get to it until later today or tommorow.- sachinOn Feb 2, 2006, at 9:01 AM, Edson Carlos Ericksson Richter wrote: Ok, now I go with WTP 1.0.1 oficial released, and latest Eclipse Plugin (20060130-0958 http://cvs.apache.org/dist/geronimo/eclipse/unstable/20060130-0958/), but still having in trouble.I have removed Geronimo server and Geronimo runtime, the File - New - Server, created new Geronimo Runtime + JDK 1.4.2, changed my very simple project to use JDK 1.4.2, put Geronimo library (with WTP 1.0.1 it works - this problem is solved), right click project node, ask "Run as - Run as Server", select "Geronimo". The app is deployed (or I think it is), then I get the message "Could not find a client that is able to launch the selection".Starting geronimo got to infinite starting (again, appear the problem goes back).I've created a video from my work session ... I made some comments during video, was a long test :-), I think comments could enrich with "what a hell is on user's mind when he done this?" to you ;-) - if you wan't, I can send it privatelly so you could analyze (I didn't send to maillist because it has 1,59Mb - will be abusive with readers who don't care).Any tips?RichterEdson Carlos Ericksson Richter escreveu: Ok, I'm downloading and giving a try right now.RichterSachin Patel escreveu: No please, don't wait.  The I build is a 1.5 driver.  A new 1.0.1 M driver was just released.http://download.eclipse.org/webtools/downloads/drops/M-M200602010238-200602010238/ - sachinOn Feb 1, 2006, at 12:09 PM, Edson Carlos Ericksson Richter wrote: Should I try WTP "I" latest build? Or should I wait for official 1.0.1 release?Richter___ Yahoo! doce lar. Faça do Yahoo! sua homepage. http://br.yahoo.com/homepageset.html                  ___ Yahoo! doce lar. Faça do Yahoo! sua homepage. http://br.yahoo.com/homepageset.html ___ Yahoo! doce lar. Faça do Yahoo! sua homepage. http://br.yahoo.com/homepageset.html   ___ Yahoo! doce lar. Faça do Yahoo! sua homepage. http://br.yahoo.com/homepageset.html  

Re: Geronimo Eclipse Plugin doesn't start web app

2006-02-02 Thread Edson Carlos Ericksson Richter

Sachin Patel escreveu:



- sachin



On Feb 2, 2006, at 9:30 AM, Edson Carlos Ericksson Richter wrote:

This always happens... just after clicking Send button, I realized 
that I forgot to change password for system user. So I got to Server 
configuration and changed password, and the forever starting 
problem goes away (should not Plugin alert about password problems 
instead of forever starting problem?).



Yes, can you open a jira on that?


I never used Jira, but I'll try (should not be so different than 
BugZilla ;-) ).






But app still not run (and is not either deployed).

I'll do retry with server running under JDK 1.5.0 (my preferred 
plataform - because I have some external projects sucessfully 
deployed under this same Geronimo install), and let you know results.



G is only certified to run on 1.4.x


I know, but I'm getting very high success running under 5.0 (either Sun 
JDK or JRockit). May be because I just work with WebApps (with direct 
JDBC access and/or Hibernate).



Richter




Richter

Sachin Patel escreveu:

Sure, send me the video.  I may not get to it until later today or 
tommorow.


- sachin



On Feb 2, 2006, at 9:01 AM, Edson Carlos Ericksson Richter wrote:

Ok, now I go with WTP 1.0.1 oficial released, and latest Eclipse 
Plugin (20060130-0958 
http://cvs.apache.org/dist/geronimo/eclipse/unstable/20060130-0958/), 
but still having in trouble.
I have removed Geronimo server and Geronimo runtime, the File - 
New - Server, created new Geronimo Runtime + JDK 1.4.2, changed my 
very simple project to use JDK 1.4.2, put Geronimo library (with 
WTP 1.0.1 it works - this problem is solved), right click project 
node, ask Run as - Run as Server, select Geronimo. The app is 
deployed (or I think it is), then I get the message Could not find 
a client that is able to launch the selection.


Starting geronimo got to infinite starting (again, appear the 
problem goes back).


I've created a video from my work session ... I made some comments 
during video, was a long test :-), I think comments could enrich 
with what a hell is on user's mind when he done this? to you ;-) 
- if you wan't, I can send it privatelly so you could analyze (I 
didn't send to maillist because it has 1,59Mb - will be abusive 
with readers who don't care).


Any tips?

Richter



Edson Carlos Ericksson Richter escreveu:


Ok, I'm downloading and giving a try right now.

Richter

Sachin Patel escreveu:

No please, don't wait.  The I build is a 1.5 driver.  A new 1.0.1 
M driver was just released.


http://download.eclipse.org/webtools/downloads/drops/M-M200602010238-200602010238/ 
- sachin




On Feb 1, 2006, at 12:09 PM, Edson Carlos Ericksson Richter wrote:

Should I try WTP I latest build? Or should I wait for official 
1.0.1 release?


Richter






___ Yahoo! 
doce lar. Faça do Yahoo! sua homepage. 
http://br.yahoo.com/homepageset.html 











   ___ 
Yahoo! doce lar. Faça do Yahoo! sua homepage. 
http://br.yahoo.com/homepageset.html









___ Yahoo! doce 
lar. Faça do Yahoo! sua homepage. http://br.yahoo.com/homepageset.html 











___ Yahoo! doce 
lar. Faça do Yahoo! sua homepage. http://br.yahoo.com/homepageset.html 










___ 
Yahoo! doce lar. Faça do Yahoo! sua homepage. 
http://br.yahoo.com/homepageset.html 



Re: borken link in JCA Migration docs

2006-02-02 Thread Hernan Cunico

Good catch, thanks Richard.

Make sure you also check the online version for the latest updates.

http://opensource2.atlassian.com/confluence/oss/display/GERONIMO/Apache+Geronimo+V1+-+Documentation+Draft

Cheers!
Hernan

Richard Kennedy wrote:

A link to the jca.zip sample application is broken in the JBoss to
Geronimo - JCA Migration.html doc shipped with geronimo 1.0.

The patch below fixes that link. (I've also attached the patch in case
it gets mangled in the mail)

Cheers
Richard 




--- JBoss to Geronimo - JCA Migration (copy).html   2005-12-22 
05:20:39.0 +
+++ JBoss to Geronimo - JCA Migration.html  2006-02-02 12:48:20.0 
+
@@ -98,7 +98,7 @@
 pa href=#JBosstoGeronimo-JCAMigration-top title=top on JBoss to Geronimo - JCA 
MigrationBack to Top/a/p
 
 h1a name=JBosstoGeronimo-JCAMigration-Sampleapplication/aSample application a name=JBosstoGeronimo-JCAMigration-sampleApp/a/h1

-pThis article contains a a href=http://localhost:9090/download/attachments/1567/jca.zip?version=1; 
title=jca.zip attached to JBoss to Geronimo - JCA MigrationFile Retriever JCA/a sample application 
to demonstrate the migration from JBoss to Geronimo. This application consists of two modules that, for this sample 
purposes, are deployed separately and not as a single EAR archive./p
+pThis article contains a a href=JBoss to Geronimo - JCA Migration_attachments/jca.zip 
title=jca.zip attached to JBoss to Geronimo - JCA MigrationFile Retriever JCA/a sample application 
to demonstrate the migration from JBoss to Geronimo. This application consists of two modules that, for this sample 
purposes, are deployed separately and not as a single EAR archive./p
 
 pThe first module is a simple file system resource adapter that conforms to the JCA architecture without any server-specific extensions. The adapter provides only two functions:/p
 






--- JBoss to Geronimo - JCA Migration (copy).html   2005-12-22 
05:20:39.0 +
+++ JBoss to Geronimo - JCA Migration.html  2006-02-02 12:48:20.0 
+
@@ -98,7 +98,7 @@
 pa href=#JBosstoGeronimo-JCAMigration-top title=top on JBoss to Geronimo - JCA 
MigrationBack to Top/a/p
 
 h1a name=JBosstoGeronimo-JCAMigration-Sampleapplication/aSample application a name=JBosstoGeronimo-JCAMigration-sampleApp/a/h1

-pThis article contains a a href=http://localhost:9090/download/attachments/1567/jca.zip?version=1; 
title=jca.zip attached to JBoss to Geronimo - JCA MigrationFile Retriever JCA/a sample application 
to demonstrate the migration from JBoss to Geronimo. This application consists of two modules that, for this sample 
purposes, are deployed separately and not as a single EAR archive./p
+pThis article contains a a href=JBoss to Geronimo - JCA Migration_attachments/jca.zip 
title=jca.zip attached to JBoss to Geronimo - JCA MigrationFile Retriever JCA/a sample application 
to demonstrate the migration from JBoss to Geronimo. This application consists of two modules that, for this sample 
purposes, are deployed separately and not as a single EAR archive./p
 
 pThe first module is a simple file system resource adapter that conforms to the JCA architecture without any server-specific extensions. The adapter provides only two functions:/p
 


Geronimo 1.0 Startup Warnings

2006-02-02 Thread Prakash . Sajja
Hello,I have fresh installation of Geronimo-Tomcat-J2EE-1.0 on Windows XP. I startup the Geronimo server from Geronimo Home with command "bin\geronimo start" and I get warning messages about some GBeans not being started successfully. Below is theinformationon my command line console:=Booting Geronimo Kernel (in Java 1.4.2_10)...Started configuration 1/25 1s geronimo/rmi-naming/1.0/carStarted configuration 2/25 3s geronimo/j2ee-server/1.0/carStarted configuration 3/25 1s geronimo/j2ee-security/1.0/carStarted configuration 4/25 12s geronimo/activemq-broker/1.0/carStarted configuration 5/25 1s geronimo/activemq/1.0/carStarted configuration 6/25 0s geronimo/system-database/1.0/carStarted configuration 7/25 5s geronimo/directory/1.0/carStarted configuration 8/25 0s geronimo/ldap-realm/1.0/car09:11:37,085 INFO [Http11Protocol] Initializing Coyote HTTP/1.1 on http-0.0.0.0-844309:11:37,523 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-844309:11:38,116 INFO [Http11Protocol] Initializing Coyote HTTP/1.1 on http-0.0.0.0-808009:11:38,163 INFO [Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-8080Started configuration 9/25 6s geronimo/tomcat/1.0/carStarted configuration 10/25 1s geronimo/geronimo-gbean-deployer/1.0/carStarted configuration 11/25 3s geronimo/j2ee-deployer/1.0/carStarted configuration 12/25 0s geronimo/tomcat-deployer/1.0/carStarted configuration 13/25 1s geronimo/welcome-tomcat/1.0/carStarted configuration 14/25 1s geronimo/ldap-demo-tomcat/1.0/carStarted configuration 15/25 1s geronimo/servlets-examples-tomcat/1.0/carStarted configuration 16/25 2s geronimo/jsp-examples-tomcat/1.0/carStarted configuration 17/25 2s geronimo/webconsole-tomcat/1.0/carStarted configuration 18/25 1s geronimo/uddi-tomcat/1.0/carStarted configuration 19/25 1s geronimo/jmxdebug-tomcat/1.0/carStarted configuration 20/25 12s geronimo/daytrader-derby-tomcat/1.0/carStarted configuration 21/25 1s geronimo/remote-deploy-tomcat/1.0/carStarted configuration 22/25 2s geronimo/hot-deployer/1.0/carStarted configuration 23/25 1s geronimo/client-system/1.0/carStarted configuration 24/25 0s geronimo/client/1.0/carStarted configuration 25/25 1s geronimo/daytrader-derby-tomcat-streamer-client/1.0/carStartup completed in 63 seconds Listening on Ports: 1099 0.0.0.0 RMI Naming 1389 0.0.0.0 Apache Directory LDAP 1527 0.0.0.0 Derby Connector 4201 0.0.0.0 ActiveIO Connector EJB 4242 0.0.0.0 Remote Login Listener 8009 0.0.0.0 Tomcat Connector AJP 8080 0.0.0.0 Tomcat Connector HTTP 8443 0.0.0.0 Tomcat Connector HTTPS 61616 0.0.0.0 ActiveMQ Message Broker Connector Started Application Modules: WAR: geronimo/welcome-tomcat/1.0/car EAR: geronimo/webconsole-tomcat/1.0/car EAR: geronimo/uddi-tomcat/1.0/car WAR: geronimo/remote-deploy-tomcat/1.0/car WAR: geronimo/ldap-demo-tomcat/1.0/car RAR: geronimo/activemq/1.0/car WAR: geronimo/jmxdebug-tomcat/1.0/car WAR: geronimo/servlets-examples-tomcat/1.0/car EAR: geronimo/daytrader-derby-tomcat/1.0/car WAR: geronimo/jsp-examples-tomcat/1.0/car RAR: geronimo/system-database/1.0/car Web Applications: http://BOT-136635:8080/ http://BOT-136635:8080/console http://BOT-136635:8080/console-standard http://BOT-136635:8080/daytrader http://BOT-136635:8080/debug-tool http://BOT-136635:8080/jsp-examples http://BOT-136635:8080/juddi http://BOT-136635:8080/ldap-demo http://BOT-136635:8080/remote-deploy http://BOT-136635:8080/servlets-examples WARNING: Some GBeans were not started successfully: ConnectionTracker (starting) ActiveMQ RA (starting) jms/TopicConnectionFactory (starting) TransactionContextManager (starting) jms/TopicConnectionFactory (starting) Repository (starting) DefaultWorkManager (starting) activemq/activemq-ra/3.2.1/rar (starting) geronimo.client:type=ClientContainer (starting) jms/TopicConnectionFactory (starting)Geronimo Application Server started=Is it a normal startup or am I missing something or some mis-configuration causing these warnings?Thank you all!Prakash

Re: Geronimo 1.0 Startup Warnings

2006-02-02 Thread Kevan Miller
Hi Prakash,No, it's not a normal startup. Not an absolute sign of a problem, but my guess is that something is wrong You might want to use "geronimo run" and run the process in the foreground until your problems get sorted.Can you look at var/log/geronimo.log for any signs of trouble? When you stop the server, do you see warning messages about stopping GBeans that were in a starting state?--kevanOn Feb 2, 2006, at 10:55 AM, [EMAIL PROTECTED] wrote:Hello, I have fresh installation of Geronimo-Tomcat-J2EE-1.0 on Windows XP. I startup the Geronimo server from Geronimo Home with command "bin\geronimo start" and I get warning messages about some GBeans not being started successfully. Below is the information on my command line console:=Booting Geronimo Kernel (in Java 1.4.2_10)...Started configuration  1/25   1s geronimo/rmi-naming/1.0/carStarted configuration  2/25   3s geronimo/j2ee-server/1.0/carStarted configuration  3/25   1s geronimo/j2ee-security/1.0/carStarted configuration  4/25  12s geronimo/activemq-broker/1.0/carStarted configuration  5/25   1s geronimo/activemq/1.0/carStarted configuration  6/25   0s geronimo/system-database/1.0/carStarted configuration  7/25   5s geronimo/directory/1.0/carStarted configuration  8/25   0s geronimo/ldap-realm/1.0/car09:11:37,085 INFO  [Http11Protocol] Initializing Coyote HTTP/1.1 on http-0.0.0.0-844309:11:37,523 INFO  [Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-844309:11:38,116 INFO  [Http11Protocol] Initializing Coyote HTTP/1.1 on http-0.0.0.0-808009:11:38,163 INFO  [Http11Protocol] Starting Coyote HTTP/1.1 on http-0.0.0.0-8080Started configuration  9/25   6s geronimo/tomcat/1.0/carStarted configuration 10/25   1s geronimo/geronimo-gbean-deployer/1.0/carStarted configuration 11/25   3s geronimo/j2ee-deployer/1.0/carStarted configuration 12/25   0s geronimo/tomcat-deployer/1.0/carStarted configuration 13/25   1s geronimo/welcome-tomcat/1.0/carStarted configuration 14/25   1s geronimo/ldap-demo-tomcat/1.0/carStarted configuration 15/25   1s geronimo/servlets-examples-tomcat/1.0/carStarted configuration 16/25   2s geronimo/jsp-examples-tomcat/1.0/carStarted configuration 17/25   2s geronimo/webconsole-tomcat/1.0/carStarted configuration 18/25   1s geronimo/uddi-tomcat/1.0/carStarted configuration 19/25   1s geronimo/jmxdebug-tomcat/1.0/carStarted configuration 20/25  12s geronimo/daytrader-derby-tomcat/1.0/carStarted configuration 21/25   1s geronimo/remote-deploy-tomcat/1.0/carStarted configuration 22/25   2s geronimo/hot-deployer/1.0/carStarted configuration 23/25   1s geronimo/client-system/1.0/carStarted configuration 24/25   0s geronimo/client/1.0/carStarted configuration 25/25   1s geronimo/daytrader-derby-tomcat-streamer-client/1.0/carStartup completed in 63 seconds  Listening on Ports:    1099 0.0.0.0 RMI Naming    1389 0.0.0.0 Apache Directory LDAP    1527 0.0.0.0 Derby Connector    4201 0.0.0.0 ActiveIO Connector EJB    4242 0.0.0.0 Remote Login Listener    8009 0.0.0.0 Tomcat Connector AJP    8080 0.0.0.0 Tomcat Connector HTTP    8443 0.0.0.0 Tomcat Connector HTTPS   61616 0.0.0.0 ActiveMQ Message Broker Connector  Started Application Modules:    WAR: geronimo/welcome-tomcat/1.0/car    EAR: geronimo/webconsole-tomcat/1.0/car    EAR: geronimo/uddi-tomcat/1.0/car    WAR: geronimo/remote-deploy-tomcat/1.0/car    WAR: geronimo/ldap-demo-tomcat/1.0/car    RAR: geronimo/activemq/1.0/car    WAR: geronimo/jmxdebug-tomcat/1.0/car    WAR: geronimo/servlets-examples-tomcat/1.0/car    EAR: geronimo/daytrader-derby-tomcat/1.0/car    WAR: geronimo/jsp-examples-tomcat/1.0/car    RAR: geronimo/system-database/1.0/car  Web Applications:    http://BOT-136635:8080/    http://BOT-136635:8080/console    http://BOT-136635:8080/console-standard    http://BOT-136635:8080/daytrader    http://BOT-136635:8080/debug-tool    http://BOT-136635:8080/jsp-examples    http://BOT-136635:8080/juddi    http://BOT-136635:8080/ldap-demo    http://BOT-136635:8080/remote-deploy    http://BOT-136635:8080/servlets-examples  WARNING: Some GBeans were not started successfully:    ConnectionTracker (starting)    ActiveMQ RA (starting)    jms/TopicConnectionFactory (starting)    TransactionContextManager (starting)    jms/TopicConnectionFactory (starting)    Repository (starting)    DefaultWorkManager (starting)    activemq/activemq-ra/3.2.1/rar (starting)    geronimo.client:type=ClientContainer (starting)    jms/TopicConnectionFactory (starting)Geronimo Application Server started= Is it a normal startup or am I missing something or some mis-configuration causing these warnings?Thank you all!Prakash 

Re: Geronimo 1.0 Startup Warnings

2006-02-02 Thread Aaron Mulder
This is definitely a problem.  Do you have Geronimo installed in a
directory with spaces in the name?  If so, does the behavior change if
you install it to a directory without spaces?

Thanks,
   Aaron

On 2/2/06, [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:
 Hello,

 I have fresh installation of Geronimo-Tomcat-J2EE-1.0 on Windows XP. I
 startup the Geronimo server from Geronimo Home with command bin\geronimo
 start and I get warning messages about some GBeans not being started
 successfully. Below is the information on my command line console:
 =
 Booting Geronimo Kernel (in Java 1.4.2_10)...
 Started configuration  1/25   1s geronimo/rmi-naming/1.0/car
 Started configuration  2/25   3s geronimo/j2ee-server/1.0/car
 Started configuration  3/25   1s geronimo/j2ee-security/1.0/car
 Started configuration  4/25  12s
 geronimo/activemq-broker/1.0/car
 Started configuration  5/25   1s geronimo/activemq/1.0/car
 Started configuration  6/25   0s
 geronimo/system-database/1.0/car
 Started configuration  7/25   5s geronimo/directory/1.0/car
 Started configuration  8/25   0s geronimo/ldap-realm/1.0/car
 09:11:37,085 INFO  [Http11Protocol] Initializing Coyote HTTP/1.1 on
 http-0.0.0.0
 -8443
 09:11:37,523 INFO  [Http11Protocol] Starting Coyote HTTP/1.1 on
 http-0.0.0.0-844
 3
 09:11:38,116 INFO  [Http11Protocol] Initializing Coyote HTTP/1.1 on
 http-0.0.0.0
 -8080
 09:11:38,163 INFO  [Http11Protocol] Starting Coyote HTTP/1.1 on
 http-0.0.0.0-808
 0
 Started configuration  9/25   6s geronimo/tomcat/1.0/car
 Started configuration 10/25   1s
 geronimo/geronimo-gbean-deployer/1.0/car
 Started configuration 11/25   3s geronimo/j2ee-deployer/1.0/car
 Started configuration 12/25   0s
 geronimo/tomcat-deployer/1.0/car
 Started configuration 13/25   1s geronimo/welcome-tomcat/1.0/car
 Started configuration 14/25   1s
 geronimo/ldap-demo-tomcat/1.0/car
 Started configuration 15/25   1s
 geronimo/servlets-examples-tomcat/1.0/car
 Started configuration 16/25   2s
 geronimo/jsp-examples-tomcat/1.0/car
 Started configuration 17/25   2s
 geronimo/webconsole-tomcat/1.0/car
 Started configuration 18/25   1s geronimo/uddi-tomcat/1.0/car
 Started configuration 19/25   1s
 geronimo/jmxdebug-tomcat/1.0/car
 Started configuration 20/25  12s
 geronimo/daytrader-derby-tomcat/1.0/car
 Started configuration 21/25   1s
 geronimo/remote-deploy-tomcat/1.0/car
 Started configuration 22/25   2s geronimo/hot-deployer/1.0/car
 Started configuration 23/25   1s geronimo/client-system/1.0/car
 Started configuration 24/25   0s geronimo/client/1.0/car
 Started configuration 25/25   1s
 geronimo/daytrader-derby-tomcat-streamer-client
 /1.0/car
 Startup completed in 63 seconds
   Listening on Ports:
 1099 0.0.0.0 RMI Naming
 1389 0.0.0.0 Apache Directory LDAP
 1527 0.0.0.0 Derby Connector
 4201 0.0.0.0 ActiveIO Connector EJB
 4242 0.0.0.0 Remote Login Listener
 8009 0.0.0.0 Tomcat Connector AJP
 8080 0.0.0.0 Tomcat Connector HTTP
 8443 0.0.0.0 Tomcat Connector HTTPS
61616 0.0.0.0 ActiveMQ Message Broker Connector
   Started Application Modules:
 WAR: geronimo/welcome-tomcat/1.0/car
 EAR: geronimo/webconsole-tomcat/1.0/car
 EAR: geronimo/uddi-tomcat/1.0/car
 WAR: geronimo/remote-deploy-tomcat/1.0/car
 WAR: geronimo/ldap-demo-tomcat/1.0/car
 RAR: geronimo/activemq/1.0/car
 WAR: geronimo/jmxdebug-tomcat/1.0/car
 WAR: geronimo/servlets-examples-tomcat/1.0/car
 EAR: geronimo/daytrader-derby-tomcat/1.0/car
 WAR: geronimo/jsp-examples-tomcat/1.0/car
 RAR: geronimo/system-database/1.0/car
   Web Applications:
 http://BOT-136635:8080/
 http://BOT-136635:8080/console
 http://BOT-136635:8080/console-standard
 http://BOT-136635:8080/daytrader
 http://BOT-136635:8080/debug-tool
 http://BOT-136635:8080/jsp-examples
 http://BOT-136635:8080/juddi
 http://BOT-136635:8080/ldap-demo
 http://BOT-136635:8080/remote-deploy
 http://BOT-136635:8080/servlets-examples
   WARNING: Some GBeans were not started successfully:
 ConnectionTracker (starting)
 ActiveMQ RA (starting)
 jms/TopicConnectionFactory (starting)
 TransactionContextManager (starting)
 jms/TopicConnectionFactory (starting)
 Repository (starting)
 DefaultWorkManager (starting)
 activemq/activemq-ra/3.2.1/rar (starting)
 geronimo.client:type=ClientContainer (starting)
 jms/TopicConnectionFactory (starting)
 Geronimo Application Server started
 =

 Is it a normal startup or am I missing something or some mis-configuration
 causing these warnings?
 Thank you all!
 Prakash



Building Geronimo with Maven2

2006-02-02 Thread xandrew
Can I build Geronimo with Maven2?


Re: Building Geronimo with Maven2

2006-02-02 Thread Alan D. Cabrera

On 2/2/2006 9:40 AM, Kevan Miller wrote:



On Feb 2, 2006, at 12:20 PM, xandrew wrote:


Can I build Geronimo with Maven2?



No, not yet. I'm not aware of anyone actively working on it, but it  
is something we want to move to...



We will never swallow m2 whole.  We need to gobble little bits of it at 
a time, e.g. specs.  How can we stage this conversion properly?



Regards,
Alan






from jboss.xml to openejb.xml

2006-02-02 Thread Alejandro Montenegro




Hi I'm starting to work with Geronimo and would really like to make the
switch form jboss to Geronimo, my problem is when I deploy my ears I
got a javax.naming.NameNotFoundException: ejb
I would believe there is something wrong with my openejb-jar.xml

here it is:

?xml version="1.0"?

openejb-jar
 xmlns="http://www.openejb.org/xml/ns/openejb-jar"
 configId="com/bat/cl/arquitectura"
 parentId="org/apache/geronimo/Server"

 enterprise-beans

 session
 ejb-nameFunctions/ejb-name
 jndi-nameejb/Functions/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameDataBaseEngine/ejb-name
 jndi-nameejb/DataBaseEngine/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameFunctionExecuter/ejb-name
 jndi-nameejb/FunctionExecuter/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameServiceExecuter/ejb-name
 jndi-nameejb/ServiceExecuter/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameServices/ejb-name
 jndi-nameejb/Services/jndi-name

 method-attributes
 /method-attributes
 /session

 /enterprise-beans
/openejb-jar

I builded this based on the one in the Geronimo Wiki at
http://wiki.apache.org/geronimo/Deployment#head-e0e0f00a4eae99eb5b4a22fb05287ffb6f10e72d


My Jboss.xml file look as:

?xml version="1.0" encoding="UTF-8"?
!DOCTYPE jboss PUBLIC "-//JBoss//DTD JBOSS 4.0//EN"
"http://www.jboss.org/j2ee/dtd/jboss_4_0.dtd"

jboss

 enterprise-beans

 !--
 To add beans that you have deployment descriptor info for, add
 a file to your XDoclet merge directory called jboss-beans.xml
that contains
 the session/session,
entity/entity and
message-driven/message-driven
 markup for those beans.
 --

 session
 ejb-nameFunctions/ejb-name
 jndi-nameejb/Functions/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameDataBaseEngine/ejb-name
 jndi-nameejb/DataBaseEngine/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameFunctionExecuter/ejb-name
 jndi-nameejb/FunctionExecuter/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameServiceExecuter/ejb-name
 jndi-nameejb/ServiceExecuter/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameServices/ejb-name
 jndi-nameejb/Services/jndi-name

 method-attributes
 /method-attributes
 /session

 !--
 write a merge file jboss-webservices.ent for
webservice-description 
 --

 /enterprise-beans

 !--
 To specify your own assembly descriptor info here, add a file to
your
 XDoclet merge directory called jboss-assembly-descriptor.xml
that contains
 the assembly-descriptor/assembly-descriptor
markup.
 --
 assembly-descriptor
 !-- message destinations --
 !--
 To specify additional message-destination elements, add a file
in the merge
 directory called jboss-message-destinations.ent that contains
them.
 --
 /assembly-descriptor

 resource-managers
 /resource-managers

 !--
 | for container settings, you can merge in jboss-container.xml
 | this can contain invoker-proxy-bindings/ and
container-configurations/
 --

/jboss


Could any help with find my error?

Regards
Alejandro




Re: from jboss.xml to openejb.xml

2006-02-02 Thread leonard flournoy
Have you checked the other configurtation files to ensure that you've not mistyped the jndi name, you should take a look at your applicatoin.xml. At what point did you recieve the error, was it deployment or runtime?
On 2/2/06, Alejandro Montenegro [EMAIL PROTECTED] wrote:



  


Hi I'm starting to work with Geronimo and would really like to make the
switch form jboss to Geronimo, my problem is when I deploy my ears I
got a javax.naming.NameNotFoundException: ejb
I would believe there is something wrong with my openejb-jar.xml

here it is:

?xml version=1.0?

openejb-jar
 xmlns=http://www.openejb.org/xml/ns/openejb-jar
 configId=com/bat/cl/arquitectura
 parentId=org/apache/geronimo/Server

 enterprise-beans

 session
 ejb-nameFunctions/ejb-name
 jndi-nameejb/Functions/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameDataBaseEngine/ejb-name
 jndi-nameejb/DataBaseEngine/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameFunctionExecuter/ejb-name
 jndi-nameejb/FunctionExecuter/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameServiceExecuter/ejb-name
 jndi-nameejb/ServiceExecuter/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameServices/ejb-name
 jndi-nameejb/Services/jndi-name

 method-attributes
 /method-attributes
 /session

 /enterprise-beans
/openejb-jar

I builded this based on the one in the Geronimo Wiki at
http://wiki.apache.org/geronimo/Deployment#head-e0e0f00a4eae99eb5b4a22fb05287ffb6f10e72d



My Jboss.xml file look as:

?xml version=1.0 encoding=UTF-8?
!DOCTYPE jboss PUBLIC -//JBoss//DTD JBOSS 4.0//EN
http://www.jboss.org/j2ee/dtd/jboss_4_0.dtd

jboss

 enterprise-beans

 !--
 To add beans that you have deployment descriptor info for, add
 a file to your XDoclet merge directory called jboss-beans.xml
that contains
 the session/session,
entity/entity and
message-driven/message-driven
 markup for those beans.
 --

 session
 ejb-nameFunctions/ejb-name
 jndi-nameejb/Functions/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameDataBaseEngine/ejb-name
 jndi-nameejb/DataBaseEngine/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameFunctionExecuter/ejb-name
 jndi-nameejb/FunctionExecuter/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameServiceExecuter/ejb-name
 jndi-nameejb/ServiceExecuter/jndi-name

 method-attributes
 /method-attributes
 /session
 session
 ejb-nameServices/ejb-name
 jndi-nameejb/Services/jndi-name

 method-attributes
 /method-attributes
 /session

 !--
 write a merge file jboss-webservices.ent for
webservice-description 
 --

 /enterprise-beans

 !--
 To specify your own assembly descriptor info here, add a file to
your
 XDoclet merge directory called jboss-assembly-descriptor.xml
that contains
 the assembly-descriptor/assembly-descriptor
markup.
 --
 assembly-descriptor
 !-- message destinations --
 !--
 To specify additional message-destination elements, add a file
in the merge
 directory called jboss-message-destinations.ent that contains
them.
 --
 /assembly-descriptor

 resource-managers
 /resource-managers

 !--
 | for container settings, you can merge in jboss-container.xml
 | this can contain invoker-proxy-bindings/ and
container-configurations/
 --

/jboss


Could any help with find my error?

Regards
Alejandro






Re: Geronimo 1.0 running on IBM ISeries.

2006-02-02 Thread Todd Mason
Yes,

Running JDK1.4.2 at the moment, should have listed that in my 
configuration details. :)


Todd

  Silverlake Group of Companies - Internet Email Confidentiality Footer 
***   
Privileged/Confidential Information may be contained in this message.  
If you are not the addressee indicated in this message 
(or responsible for delivery of the message to such person), you may not copy 
or 
deliver this message to anyone.  In such case, you should destroy 
this message, and notify us immediately.