Re: Geronimo and Java 1.6

2007-01-22 Thread Kaeto23
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Hello, I run Geronimo 1.2 with JDK 6. Webservices are working thanks to converting ANY EJB webservices to JAX-RPC. Best regards Dirk Kevan Miller schrieb: > Mark, > Thanks for the information. Sounds interesting... > > On Jan 20, 2007, at 4:2

Re: Problem with Struts(Properties files) on Linux

2007-01-22 Thread Hari Krishna Korrapati
Hi kaven, Its correct that the problem is because of case sensitivity in linux. After giving the correct the correct case, the application is running successfully. Thanks a lot. On 1/22/07, Kevan Miller <[EMAIL PROTECTED]> wrote: On Jan 22, 2007, at 5:12 AM, Hari Krishna Korrapati wrote: >

Re: Catch-All App

2007-01-22 Thread Nicholas Irving
Okay, how about this http://tuckey.org/urlrewrite/ On 23/01/07, pc3 <[EMAIL PROTECTED]> wrote: Thanks.. but yeah, we have tomcat 5.5.15 running w/ gero Does anyone know how to do it with tc? Pete Nicholas Irving wrote: > > One way is to use mod_rewrite in Apache. > > > RewriteEngine On >

Re: Catch-All App

2007-01-22 Thread David Woldrich
For my app, using deploy.bat, I removed the default app that ships with Geronimo that squats on the context root at /. And then in my app, I set the context root set at /. I suppose you could have a servlet that just matches on * and then it would match everything at your context root ... I

Re: Catch-All App

2007-01-22 Thread pc3
Thanks.. but yeah, we have tomcat 5.5.15 running w/ gero Does anyone know how to do it with tc? Pete Nicholas Irving wrote: > > One way is to use mod_rewrite in Apache. > > > RewriteEngine On > RewriteBase / > RewriteCond %{REQUEST_FILENAME} !-f > RewriteCond %{REQUEST_FILENAME} !-d > Rewri

Re: Catch-All App

2007-01-22 Thread Nicholas Irving
One way is to use mod_rewrite in Apache. RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /foo/index.jsp [L] Not sure so sure about how to do this with Tomcat. Nicholas Irving [EMAIL PROTECTED] pc3 wrote: Hey folks, I hav

Catch-All App

2007-01-22 Thread pc3
Hey folks, I have a webapp at http://www.myhost.com/foo I'd like to configure a "catch-all" web application that will take all requests for any context other than foo and have them handled by a single jsp / servlet... so I can redirect them into the /foo webapp. E.g. people who request http:/

Re: Accessing EJB via JNDI from a web application

2007-01-22 Thread Aman Nanner/MxI Technologies
I'm using the following GBean declaration in my geronimo-application.xml: remote local I was looking at the source code for EjbBindings.xml where I see the following code fragment: static { GBeanInfoBuilder builder = GBeanInfoBuilder.createStatic(EjbBindings

Re: Problem with Struts(Properties files) on Linux

2007-01-22 Thread Kevan Miller
On Jan 22, 2007, at 5:12 AM, Hari Krishna Korrapati wrote: Hi, I am working with Geronimo 1.1.1. I have an application which is running successfully on Windows with the following environtment. jdk1.5.0_02 and Geronimo1.1.1 I have deployed the same application on

Re: Geronimo with Tomcat

2007-01-22 Thread Kevan Miller
On Jan 22, 2007, at 11:23 AM, Jiang Liu wrote: Hi all i am new to Geronimo server, and currently i have some web applications that can only be deployed at Tomcat. I know Geronimo has built-in Tomcat server but the whole folder structure and configuration have changed, so how could i deplo

Re: Accessing EJB via JNDI from a web application

2007-01-22 Thread David Jencks
On Jan 22, 2007, at 6:46 AM, Aman Nanner/MxI Technologies wrote: This GBean apparently takes a magic attribute "kernel" of type "String" (according to the source code definition, although the documentation I've seen says it should be of type Kernel). Its the actual kernel instance that ge

Geronimo with Tomcat

2007-01-22 Thread Jiang Liu
Hi all i am new to Geronimo server, and currently i have some web applications that can only be deployed at Tomcat. I know Geronimo has built-in Tomcat server but the whole folder structure and configuration have changed, so how could i deploy applications at Geronimo? What modification do i hav

Re: Accessing EJB via JNDI from a web application

2007-01-22 Thread Aman Nanner/MxI Technologies
This GBean apparently takes a magic attribute "kernel" of type "String" (according to the source code definition, although the documentation I've seen says it should be of type Kernel). I can't find any examples on how a GBean that takes magic attributes is declared within an application module, a

[geronimo1.1.1] Strange behavior calling jms service between axis2 and geronimo

2007-01-22 Thread falom
Hi, I first setup jms resources in geronimo with AxisConnectionFactory and AxisQueue, and deploy one axis2 service with jms transport. Now two confusing situations below: 1.When i configure the axis2 jmslistener (initiated when geronimo loads up the axis2 war app) to listen to this queue by ja

Re: Geronimo Transaction Management - not spec compliant?

2007-01-22 Thread James Richardson
> I find the text of the jta 1.0.1B spec somewhat unclear on this but I > notice on p. 63 in the change history for 1.0.1B they changed the > description of when to call Synchronization.beforeCompletion from > "before the start of the transaction completion process" to "before > the start of the

Problem with Struts(Properties files) on Linux

2007-01-22 Thread Hari Krishna Korrapati
Hi, I am working with Geronimo 1.1.1. I have an application which is running successfully on Windows with the following environtment. jdk1.5.0_02 and Geronimo1.1.1 I have deployed the same application on Linux with the following environment jdk1.5.0_10 an

Problem with Struts on Linux

2007-01-22 Thread Hari Krishna Korrapati
Hi, -- hari krishna korrapati