Re: The state of Geronimo

2005-10-19 Thread tbot55
At the bottom of the login() method in SQLLoginModule: found should be returned, not true :). My first fix to Geronimo! Tyler --- [EMAIL PROTECTED] wrote: > Actually, I found a serious bug, I got an exception > on > the executeQuery() statement, and it went to the > finally{}, returned true, an

Re: The state of Geronimo

2005-10-19 Thread tbot55
Actually, I found a serious bug, I got an exception on the executeQuery() statement, and it went to the finally{}, returned true, and gave me access. This is probably an easy fix, but was just telling you guys about this hole. Tyler --- [EMAIL PROTECTED] wrote: > Yee haw! It works, debugging i

Re: The state of Geronimo

2005-10-19 Thread tbot55
Yee haw! It works, debugging in the code is my best bet at this point. The DB2 universal driver didn't want the username and password passed in the URL and as properties. Thanks all! Now I could easily do the parameterized username stuff. I'll try modifying it now. Tyler --- David Jencks <[EMA

Re: The state of Geronimo

2005-10-19 Thread David Jencks
On Oct 19, 2005, at 10:19 PM, <[EMAIL PROTECTED]> wrote: I'm so determined I'm rebuilding M5 with print statements in the SQLLoginModule file. Something's clearly wrong with something (dunno what). I may be narrowing it down. From then I guess I can build my own modules that will connect to the

Re: The state of Geronimo

2005-10-19 Thread tbot55
I'm so determined I'm rebuilding M5 with print statements in the SQLLoginModule file. Something's clearly wrong with something (dunno what). I may be narrowing it down. From then I guess I can build my own modules that will connect to the database the way I want, no? If there's a quicker way to re

Re: Daytrader / Geronimo M5

2005-10-19 Thread David Jencks
I'm probably sounding like a broken record by now, but I would use geronimo head for working on daytrader. IIUC it actually now works for regular humans, not just Matt :-) In any case the maven build works so you won't need other downloads. For M5 really the only functional examples are the

Re: Petstore with Geronimo M5 ?

2005-10-19 Thread David Jencks
I think petstore has not been maintained, and I wasn't aware that it ever completely worked. You would probably have to figure out exactly which parent configurations were appropriate and modify the plans appropriately. The most likely guess for this one would be org/apache/geronimo/Security.

Re: Connectors -- PHP and Geronimo?

2005-10-19 Thread Bruce Snyder
On 10/19/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Yeah, that would be cool. Has anyone done that? Not as far as I know and therein lies the real issue. Here is a pretty comprehensive list of languages built on a JVM: http://www.robert-tolksdorf.de/vmlanguages.html Bruce -- perl -e 'pri

Re: Geronimo M5 : magicGball

2005-10-19 Thread David Jencks
MagicGball works for me on head. i think the M5 copy is broken. I recently changed it so the app-client to server communication is over corba rather than the proprietary openejb protocol. It is possible that you would need a 1.4.2_08 jvm for this to work. However it should deploy fine on an

Daytrader / Geronimo M5

2005-10-19 Thread Carla Cremers
I am working with geronimo-1.0-M5/solaris 9/1.4.2_06 and trying to get the various applications to work.   DayTrader : in the README, it says :   The code in this directory contains the code for the benchmark sample called   DayTrader.  This sample was contributed by IBM to the Apache G

Geronimo M5 : magicGball

2005-10-19 Thread Carla Cremers
I am working with geronimo-1.0-M5/solaris 9/1.4.2_06 and trying to get the various applications to work.   magicGBall : any workarounds for the WSDL issue ?  From reading the archives,   it sounds like magicGball may be obsolete and I shouldn't expect it to work.     [EMAIL PROTECTED]:

Petstore with Geronimo M5 ?

2005-10-19 Thread Carla Cremers
I am working with geronimo-1.0-M5/solaris 9/java 1.4.2_06 and trying to get the various applications to work.   Petstore :     [EMAIL PROTECTED]: % pwd   /home/cremers/java_apps/web_servers/geronimo-1.0-M5/sandbox/petstore   [EMAIL PROTECTED]: % maven     ( snip )     [copy] Copyi

Re: Connectors -- PHP and Geronimo?

2005-10-19 Thread tbot55
Yeah, that would be cool. Has anyone done that? Tyler --- Miguel A Paraz <[EMAIL PROTECTED]> wrote: > On 10/20/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> > wrote: > > Does anyone know of a way to configure PHP into > > Geronimo? I think that would be a cool thing to be > > able to do as well. I s

Re: Connectors -- PHP and Geronimo?

2005-10-19 Thread Miguel A Paraz
On 10/20/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Does anyone know of a way to configure PHP into > Geronimo? I think that would be a cool thing to be > able to do as well. I see JSP is built in, as well as > JavaScript. But at least for the time being, I think > leaving the declarative s

Re: The state of Geronimo

2005-10-19 Thread Bruce Snyder
On 10/19/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Lets have some discussion, maybe I'm totally missing > somethings. > > Currently I see all/most the applications I've looked > at as J2EE apps. This is the goal of Geronimo, but > they largly bypass the low-level purposes of Geronimo > by

The state of Geronimo

2005-10-19 Thread tbot55
Lets have some discussion, maybe I'm totally missing somethings. Currently I see all/most the applications I've looked at as J2EE apps. This is the goal of Geronimo, but they largly bypass the low-level purposes of Geronimo by just sticking to J2EE and JSP. Though the GBeans thing is cool. The goa

Re: Connectors -- PHP and Geronimo?

2005-10-19 Thread tbot55
Yeah, I see a bunch of articles on IBM, some here and there, but they seem to avoid any and all declarative security stuff. Does anyone know of a way to configure PHP into Geronimo? I think that would be a cool thing to be able to do as well. I see JSP is built in, as well as JavaScript. But at le

Re: Connectors -- SQLLoginModule...

2005-10-19 Thread Stanley Bradbury
Hi - Unless Geronimo provides a method of accessing the SystemDatabase from you code (I have not researched this) you may find as I did that you need to setup a separate Derby database and connector to achieve what you are trying to do (probelm listed in user-post "Using the Derby Network Ser

Re: Connectors -- Geronimo says syntax error or no deployer service currently available

2005-10-19 Thread Lin Sun
If you don't build using maven, you can just use the following at your geronimo home directory: java -jar bin/deployer.jar --user system --password manager deploy default-database-plan.xml tranql/rars/tranql-connector-derby-embed-xa-1.0.rar You might want to start with the daytrader sample that i

Re: Connectors -- SQLLoginModule...

2005-10-19 Thread tbot55
Thanks David, OK, so maybe I'm not sure what I need to do to get what I want done. I want to use Geronimo's SQLLoginModule class to authenticate users logging in. I also want to be able to register new users through Geronimo (if possible). I can get the GBeans to start in my deployment plan, but

Re: Connectors -- Geronimo says syntax error or no deployer service currently available

2005-10-19 Thread David Jencks
Assuming that the default-database-plan.xml has some resemblance to the one we supply, it's a plan for a j2ee module, so you need to supply the module as a command line argument also, such as java -jar ../../bin/deployer.jar --user system --password manager deploy default-database-plan.xml ~/