You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@geronimo.apache.org by tb...@yahoo.com on 2005/10/19 08:06:48 UTC

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

I'm creating a connector and want to use it to connect
to Derby. Not even the connector's that come with
Geronimo work!

The error I'm getting is below.

Thanks!
Tyler


 Error: Unable to distribute
default-database-plan.xml: Syntax error
 in deployment plan or no deployer service available
(currently I
 can't tell the difference):


	
		
__________________________________ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

Re: Connectors -- PHP and Geronimo?

Posted by Miguel A Paraz <mp...@gmail.com>.
Here's what I did with JBoss + Tomcat to get PHP apps running under
the same "host":
http://migs.paraz.com/w/archives/2005/06/20/tomcat-php-on-a-single-host

I'm curious about the configuration to make Geronimo Tomcat or Jetty
do the same... will try it out sometime.

Re: Connectors -- PHP and Geronimo?

Posted by Barry van Someren <go...@gmail.com>.
PHP is really just an interpreter for a language that you can embed
(the whole idea of the php-java bridge)
You will however be running native code in your app server and it has
not been known to be super stable.
It's probably best to run Apache with php seperately.

On 10/22/05, Miguel A Paraz <mp...@gmail.com> wrote:
> I found this deeper solution on the code level for PHP developers
> http://php-java-bridge.sourceforge.net/
>
> The docs refer to Tomcat standalone - no idea if it will work with
> Geronimo's embedded Tomcat.
>

Re: Connectors -- PHP and Geronimo?

Posted by Miguel A Paraz <mp...@gmail.com>.
I found this deeper solution on the code level for PHP developers
http://php-java-bridge.sourceforge.net/

The docs refer to Tomcat standalone - no idea if it will work with
Geronimo's embedded Tomcat.

Re: Connectors -- PHP and Geronimo?

Posted by Bruce Snyder <br...@gmail.com>.
On 10/19/05, tbot55@yahoo.com <tb...@yahoo.com> 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 'print unpack("u30","D0G)U8V4\@4VYY9&5R\"F)R=6-E+G-N>61E<D\!G;6%I;\"YC;VT*"
);'

The Castor Project
http://www.castor.org/

Apache Geronimo
http://geronimo.apache.org/

Re: Connectors -- PHP and Geronimo?

Posted by tb...@yahoo.com.
Yeah, that would be cool. Has anyone done that?
Tyler


--- Miguel A Paraz <mp...@gmail.com> wrote:

> On 10/20/05, tbot55@yahoo.com <tb...@yahoo.com>
> 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 security stuff alone is my
> > best bet, time conserving wise.
> 
> Since there is no JVM runtime for PHP (as far as I
> know), you'll need
> to use the PHP runtime for Apache httpd. Apache
> httpd will forward
> specified URLs to Geronimo's web connector (Jetty or
> Tomcat) via AJP.
> 
> I guess that makes the question more specific: how
> to configure AJP on Geronimo?
> 



		
__________________________________ 
Start your day with Yahoo! - Make it your home page! 
http://www.yahoo.com/r/hs

Re: Connectors -- PHP and Geronimo?

Posted by Miguel A Paraz <mp...@gmail.com>.
On 10/20/05, tbot55@yahoo.com <tb...@yahoo.com> 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 security stuff alone is my
> best bet, time conserving wise.

Since there is no JVM runtime for PHP (as far as I know), you'll need
to use the PHP runtime for Apache httpd. Apache httpd will forward
specified URLs to Geronimo's web connector (Jetty or Tomcat) via AJP.

I guess that makes the question more specific: how to configure AJP on Geronimo?

Re: Connectors -- PHP and Geronimo?

Posted by tb...@yahoo.com.
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 least for the time being, I think
leaving the declarative security stuff alone is my
best bet, time conserving wise.

What are your thoughts?

Tyler



--- Stanley Bradbury <St...@gmail.com> wrote:

> 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 Server.."  from 7/28/2005 ).  I do not know
> if accessing another 
> database is possible when using the 
> LoginModuleGBean but, if this seems 
> like an option then you might find the configuration
> of the Derby 
> connector I documented helpful - it is pretty
> straight forward:     
>
http://db.apache.org/derby/integrate/JPetStoreGeronimo.html
> 
> One thing I noticed is that your are using the
> EmbeddedDriver 
> (org.apache.derby.jdbc.EmbeddedDriver) and Geronimo
> runs Network Server 
> to access the SystemDatabase.  I believe either of
> the Client Drivers 
> should work (com.ibm.db2.jcc.DB2Driver or 
> org.apache.derby.jdbc.ClientDriver) if you can get
> your code run in the 
> same environment as the Network Server and have the
> correct host and 
> port information.  I did not resolve this problem
> and have not yet had 
> time to follow up on it with a developer list post. 
> 
> To construct the database connection URL you will
> also need to know what 
> port the Network Server is listening on.  I was
> unsuccessful using the 
> default hostname and port when I attempted to ping
> the Geronimo 
> NetworkServer.  Also be aware that Geronimo defines
> derby.system.home in 
> the server JVM thus limiting the default location
> for Derby databases, 
> derby.log and the derby.properties file.
> 
> Hope this helps - I am interested in seeing what you
> find out.  My 
> background is with Derby and I am very interested in
> learning about the 
> different J2EE configurations that can be used with
> Derby.
> 
> tbot55@yahoo.com wrote:
> 
> >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 it isn't going into the database. I created a
> >couple tables in the SystemDatabase, and here are
> the
> >options I set in the LoginModuleGBean:
> >jdbcUser=system
> >jdbcPassword=manager
> >jdbcURL=jdbc:derby:SystemDatabase
> >jdbcDriver=org.apache.derby.jdbc.EmbeddedDriver
> >userSelect="select username, password from users"
> >groupSelect="select groupname, username from
> >groups_users"
> >
> >I dont think there's anything different from
> >properties files because I already have that
> working,
> >and it doesn't seem very applicable due to its lack
> of
> >scalability. Thus I'd like to upgrade it a little
> >more.
> >
> >I wish there were an example in Geronimo on this
> like
> >for the properties file, but it's probably an easy
> >fix.
> >
> >Also, David, I did get the connector working as you
> >described. Can I use this to perform insert
> >statements? Or does that have to be done totally
> >separate?
> >
> >Thanks!
> >Tyler
> >
> >
> >
> >--- David Jencks <da...@yahoo.com> wrote:
> >
> >  
> >
> >>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 
> >>
> >>    
> >>
>
>~/.maven/repository/tranql/rars/tranql-connector-derby-embed-xa-1.0.rar
> >  
> >
> >>Leaving out the j2ee artifact you are trying to
> >>deploy will result in 
> >>the error you are seeing.  If you are copying the
> >>default-database-plan 
> >>we supply you may want to change the configID in
> the
> >>plan since this 
> >>plan is pre-deployed into the config-store that
> >>comes with geronimo.
> >>
> >>The tranql connectors should work fine for your
> >>proposed application.
> >>
> >>Hope this gets you farther,
> >>david jencks
> >>
> >>On Oct 18, 2005, at 11:51 PM, <tb...@yahoo.com>
> >>wrote:
> >>
> >>    
> >>
> >>>I want to be able to connect to Derby for
> password
> >>>authentication. I'd like to eventually create a
> >>>      
> >>>
> >>form
> >>    
> >>
> >>>where users can register and store their data in
> >>>      
> >>>
> >>the
> >>    
> >>
> >>>database. I'm using M5. Here's my deployment
> >>>      
> >>>
> >>command:
> >>    
> >>
> >>>java -jar ..\..\bin\deployer.jar --user system
> >>>--password manager deploy
> >>>      
> >>>
> >>default-database-plan.xml
> >>    
> >>
> >>>I can't even get the default database connector
> to
> >>>work.
> >>>
> >>>Tyler
> >>>
> >>>
> >>>--- David Jencks <da...@yahoo.com> wrote:
> >>>
> >>>      
> >>>
> >>>>Deploying connectors works fine for me,
> >>>>        
> >>>>
> >>especially
> >>    
> >>
> >>>>the tranql ones.  If
> >>>>you want any help you will need to provide a lot
> >>>>more information about
> >>>>what you are doing including geronimo version,
> >>>>        
> >>>>
> >>plan,
> >>    
> >>
> >>>>and deployment
> >>>>command.
> >>>>
> >>>>I'm curious as to what features you find lacking
> 
=== message truncated ===



		
__________________________________ 
Yahoo! Music Unlimited 
Access over 1 million songs. Try it free.
http://music.yahoo.com/unlimited/

Re: Connectors -- SQLLoginModule...

Posted by Stanley Bradbury <St...@gmail.com>.
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 Server.."  from 7/28/2005 ).  I do not know if accessing another 
database is possible when using the  LoginModuleGBean but, if this seems 
like an option then you might find the configuration of the Derby 
connector I documented helpful - it is pretty straight forward:     
http://db.apache.org/derby/integrate/JPetStoreGeronimo.html

One thing I noticed is that your are using the EmbeddedDriver 
(org.apache.derby.jdbc.EmbeddedDriver) and Geronimo runs Network Server 
to access the SystemDatabase.  I believe either of the Client Drivers 
should work (com.ibm.db2.jcc.DB2Driver or 
org.apache.derby.jdbc.ClientDriver) if you can get your code run in the 
same environment as the Network Server and have the correct host and 
port information.  I did not resolve this problem and have not yet had 
time to follow up on it with a developer list post. 

To construct the database connection URL you will also need to know what 
port the Network Server is listening on.  I was unsuccessful using the 
default hostname and port when I attempted to ping the Geronimo 
NetworkServer.  Also be aware that Geronimo defines derby.system.home in 
the server JVM thus limiting the default location for Derby databases, 
derby.log and the derby.properties file.

Hope this helps - I am interested in seeing what you find out.  My 
background is with Derby and I am very interested in learning about the 
different J2EE configurations that can be used with Derby.

tbot55@yahoo.com wrote:

>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 it isn't going into the database. I created a
>couple tables in the SystemDatabase, and here are the
>options I set in the LoginModuleGBean:
>jdbcUser=system
>jdbcPassword=manager
>jdbcURL=jdbc:derby:SystemDatabase
>jdbcDriver=org.apache.derby.jdbc.EmbeddedDriver
>userSelect="select username, password from users"
>groupSelect="select groupname, username from
>groups_users"
>
>I dont think there's anything different from
>properties files because I already have that working,
>and it doesn't seem very applicable due to its lack of
>scalability. Thus I'd like to upgrade it a little
>more.
>
>I wish there were an example in Geronimo on this like
>for the properties file, but it's probably an easy
>fix.
>
>Also, David, I did get the connector working as you
>described. Can I use this to perform insert
>statements? Or does that have to be done totally
>separate?
>
>Thanks!
>Tyler
>
>
>
>--- David Jencks <da...@yahoo.com> wrote:
>
>  
>
>>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 
>>
>>    
>>
>~/.maven/repository/tranql/rars/tranql-connector-derby-embed-xa-1.0.rar
>  
>
>>Leaving out the j2ee artifact you are trying to
>>deploy will result in 
>>the error you are seeing.  If you are copying the
>>default-database-plan 
>>we supply you may want to change the configID in the
>>plan since this 
>>plan is pre-deployed into the config-store that
>>comes with geronimo.
>>
>>The tranql connectors should work fine for your
>>proposed application.
>>
>>Hope this gets you farther,
>>david jencks
>>
>>On Oct 18, 2005, at 11:51 PM, <tb...@yahoo.com>
>>wrote:
>>
>>    
>>
>>>I want to be able to connect to Derby for password
>>>authentication. I'd like to eventually create a
>>>      
>>>
>>form
>>    
>>
>>>where users can register and store their data in
>>>      
>>>
>>the
>>    
>>
>>>database. I'm using M5. Here's my deployment
>>>      
>>>
>>command:
>>    
>>
>>>java -jar ..\..\bin\deployer.jar --user system
>>>--password manager deploy
>>>      
>>>
>>default-database-plan.xml
>>    
>>
>>>I can't even get the default database connector to
>>>work.
>>>
>>>Tyler
>>>
>>>
>>>--- David Jencks <da...@yahoo.com> wrote:
>>>
>>>      
>>>
>>>>Deploying connectors works fine for me,
>>>>        
>>>>
>>especially
>>    
>>
>>>>the tranql ones.  If
>>>>you want any help you will need to provide a lot
>>>>more information about
>>>>what you are doing including geronimo version,
>>>>        
>>>>
>>plan,
>>    
>>
>>>>and deployment
>>>>command.
>>>>
>>>>I'm curious as to what features you find lacking
>>>>        
>>>>
>>in
>>    
>>
>>>>the tranql derby
>>>>connectors that lead you to want to write your
>>>>        
>>>>
>>own.
>>    
>>
>>>>thanks
>>>>david jencks
>>>>
>>>>
>>>>On Oct 18, 2005, at 11:06 PM, <tb...@yahoo.com>
>>>>wrote:
>>>>
>>>>        
>>>>
>>>>>I'm creating a connector and want to use it to
>>>>>          
>>>>>
>>>>connect
>>>>        
>>>>
>>>>>to Derby. Not even the connector's that come
>>>>>          
>>>>>
>>with
>>    
>>
>>>>>Geronimo work!
>>>>>
>>>>>The error I'm getting is below.
>>>>>
>>>>>Thanks!
>>>>>Tyler
>>>>>
>>>>>
>>>>> Error: Unable to distribute
>>>>>default-database-plan.xml: Syntax error
>>>>> in deployment plan or no deployer service
>>>>>          
>>>>>
>>>>available
>>>>        
>>>>
>>>>>(currently I
>>>>> can't tell the difference):
>>>>>
>>>>>
>>>>>	
>>>>>		
>>>>>__________________________________
>>>>>Yahoo! Mail - PC Magazine Editors' Choice 2005
>>>>>http://mail.yahoo.com
>>>>>
>>>>>          
>>>>>
>>>>        
>>>>
>>>
>>>	
>>>		
>>>__________________________________
>>>Yahoo! Mail - PC Magazine Editors' Choice 2005
>>>http://mail.yahoo.com
>>>
>>>      
>>>
>>    
>>
>
>
>
>		
>__________________________________ 
>Yahoo! Music Unlimited 
>Access over 1 million songs. Try it free.
>http://music.yahoo.com/unlimited/
>
>  
>



Re: Connectors -- SQLLoginModule...

Posted by tb...@yahoo.com.
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 it isn't going into the database. I created a
couple tables in the SystemDatabase, and here are the
options I set in the LoginModuleGBean:
jdbcUser=system
jdbcPassword=manager
jdbcURL=jdbc:derby:SystemDatabase
jdbcDriver=org.apache.derby.jdbc.EmbeddedDriver
userSelect="select username, password from users"
groupSelect="select groupname, username from
groups_users"

I dont think there's anything different from
properties files because I already have that working,
and it doesn't seem very applicable due to its lack of
scalability. Thus I'd like to upgrade it a little
more.

I wish there were an example in Geronimo on this like
for the properties file, but it's probably an easy
fix.

Also, David, I did get the connector working as you
described. Can I use this to perform insert
statements? Or does that have to be done totally
separate?

Thanks!
Tyler



--- David Jencks <da...@yahoo.com> wrote:

> 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 
>
~/.maven/repository/tranql/rars/tranql-connector-derby-embed-xa-1.0.rar
> 
> Leaving out the j2ee artifact you are trying to
> deploy will result in 
> the error you are seeing.  If you are copying the
> default-database-plan 
> we supply you may want to change the configID in the
> plan since this 
> plan is pre-deployed into the config-store that
> comes with geronimo.
> 
> The tranql connectors should work fine for your
> proposed application.
> 
> Hope this gets you farther,
> david jencks
> 
> On Oct 18, 2005, at 11:51 PM, <tb...@yahoo.com>
> wrote:
> 
> > I want to be able to connect to Derby for password
> > authentication. I'd like to eventually create a
> form
> > where users can register and store their data in
> the
> > database. I'm using M5. Here's my deployment
> command:
> >
> > java -jar ..\..\bin\deployer.jar --user system
> > --password manager deploy
> default-database-plan.xml
> >
> > I can't even get the default database connector to
> > work.
> >
> > Tyler
> >
> >
> > --- David Jencks <da...@yahoo.com> wrote:
> >
> >> Deploying connectors works fine for me,
> especially
> >> the tranql ones.  If
> >> you want any help you will need to provide a lot
> >> more information about
> >> what you are doing including geronimo version,
> plan,
> >> and deployment
> >> command.
> >>
> >> I'm curious as to what features you find lacking
> in
> >> the tranql derby
> >> connectors that lead you to want to write your
> own.
> >>
> >> thanks
> >> david jencks
> >>
> >>
> >> On Oct 18, 2005, at 11:06 PM, <tb...@yahoo.com>
> >> wrote:
> >>
> >>> I'm creating a connector and want to use it to
> >> connect
> >>> to Derby. Not even the connector's that come
> with
> >>> Geronimo work!
> >>>
> >>> The error I'm getting is below.
> >>>
> >>> Thanks!
> >>> Tyler
> >>>
> >>>
> >>>  Error: Unable to distribute
> >>> default-database-plan.xml: Syntax error
> >>>  in deployment plan or no deployer service
> >> available
> >>> (currently I
> >>>  can't tell the difference):
> >>>
> >>>
> >>> 	
> >>> 		
> >>> __________________________________
> >>> Yahoo! Mail - PC Magazine Editors' Choice 2005
> >>> http://mail.yahoo.com
> >>>
> >>
> >>
> >
> >
> >
> > 	
> > 		
> > __________________________________
> > Yahoo! Mail - PC Magazine Editors' Choice 2005
> > http://mail.yahoo.com
> >
> 
> 



		
__________________________________ 
Yahoo! Music Unlimited 
Access over 1 million songs. Try it free.
http://music.yahoo.com/unlimited/

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

Posted by Lin Sun <li...@yahoo.com>.
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 is available in
geronimo\sandbox\daytrader directory.  Since it is similar to what you are trying to
do... daytrader can allow new users to register, login and buy and sell socks.   And it
is using the tranql-connector-derby-embed-xa-1.0.rar connector provided by tranql.  

> > I want to be able to connect to Derby for password
> > authentication. I'd like to eventually create a form
> > where users can register and store their data in the
> > database.

--- David Jencks <da...@yahoo.com> wrote:

> 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 
> ~/.maven/repository/tranql/rars/tranql-connector-derby-embed-xa-1.0.rar
> 
> Leaving out the j2ee artifact you are trying to deploy will result in 
> the error you are seeing.  If you are copying the default-database-plan 
> we supply you may want to change the configID in the plan since this 
> plan is pre-deployed into the config-store that comes with geronimo.
> 
> The tranql connectors should work fine for your proposed application.
> 
> Hope this gets you farther,
> david jencks
> 
> On Oct 18, 2005, at 11:51 PM, <tb...@yahoo.com> wrote:
> 
> > I want to be able to connect to Derby for password
> > authentication. I'd like to eventually create a form
> > where users can register and store their data in the
> > database. I'm using M5. Here's my deployment command:
> >
> > java -jar ..\..\bin\deployer.jar --user system
> > --password manager deploy default-database-plan.xml
> >
> > I can't even get the default database connector to
> > work.
> >
> > Tyler
> >
> >
> > --- David Jencks <da...@yahoo.com> wrote:
> >
> >> Deploying connectors works fine for me, especially
> >> the tranql ones.  If
> >> you want any help you will need to provide a lot
> >> more information about
> >> what you are doing including geronimo version, plan,
> >> and deployment
> >> command.
> >>
> >> I'm curious as to what features you find lacking in
> >> the tranql derby
> >> connectors that lead you to want to write your own.
> >>
> >> thanks
> >> david jencks
> >>
> >>
> >> On Oct 18, 2005, at 11:06 PM, <tb...@yahoo.com>
> >> wrote:
> >>
> >>> I'm creating a connector and want to use it to
> >> connect
> >>> to Derby. Not even the connector's that come with
> >>> Geronimo work!
> >>>
> >>> The error I'm getting is below.
> >>>
> >>> Thanks!
> >>> Tyler
> >>>
> >>>
> >>>  Error: Unable to distribute
> >>> default-database-plan.xml: Syntax error
> >>>  in deployment plan or no deployer service
> >> available
> >>> (currently I
> >>>  can't tell the difference):
> >>>
> >>>
> >>> 	
> >>> 		
> >>> __________________________________
> >>> Yahoo! Mail - PC Magazine Editors' Choice 2005
> >>> http://mail.yahoo.com
> >>>
> >>
> >>
> >
> >
> >
> > 	
> > 		
> > __________________________________
> > Yahoo! Mail - PC Magazine Editors' Choice 2005
> > http://mail.yahoo.com
> >
> 
> 


thanks, 

Lin


		
__________________________________ 
Start your day with Yahoo! - Make it your home page! 
http://www.yahoo.com/r/hs

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

Posted by David Jencks <da...@yahoo.com>.
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 
~/.maven/repository/tranql/rars/tranql-connector-derby-embed-xa-1.0.rar

Leaving out the j2ee artifact you are trying to deploy will result in 
the error you are seeing.  If you are copying the default-database-plan 
we supply you may want to change the configID in the plan since this 
plan is pre-deployed into the config-store that comes with geronimo.

The tranql connectors should work fine for your proposed application.

Hope this gets you farther,
david jencks

On Oct 18, 2005, at 11:51 PM, <tb...@yahoo.com> wrote:

> I want to be able to connect to Derby for password
> authentication. I'd like to eventually create a form
> where users can register and store their data in the
> database. I'm using M5. Here's my deployment command:
>
> java -jar ..\..\bin\deployer.jar --user system
> --password manager deploy default-database-plan.xml
>
> I can't even get the default database connector to
> work.
>
> Tyler
>
>
> --- David Jencks <da...@yahoo.com> wrote:
>
>> Deploying connectors works fine for me, especially
>> the tranql ones.  If
>> you want any help you will need to provide a lot
>> more information about
>> what you are doing including geronimo version, plan,
>> and deployment
>> command.
>>
>> I'm curious as to what features you find lacking in
>> the tranql derby
>> connectors that lead you to want to write your own.
>>
>> thanks
>> david jencks
>>
>>
>> On Oct 18, 2005, at 11:06 PM, <tb...@yahoo.com>
>> wrote:
>>
>>> I'm creating a connector and want to use it to
>> connect
>>> to Derby. Not even the connector's that come with
>>> Geronimo work!
>>>
>>> The error I'm getting is below.
>>>
>>> Thanks!
>>> Tyler
>>>
>>>
>>>  Error: Unable to distribute
>>> default-database-plan.xml: Syntax error
>>>  in deployment plan or no deployer service
>> available
>>> (currently I
>>>  can't tell the difference):
>>>
>>>
>>> 	
>>> 		
>>> __________________________________
>>> Yahoo! Mail - PC Magazine Editors' Choice 2005
>>> http://mail.yahoo.com
>>>
>>
>>
>
>
>
> 	
> 		
> __________________________________
> Yahoo! Mail - PC Magazine Editors' Choice 2005
> http://mail.yahoo.com
>


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

Posted by tb...@yahoo.com.
I want to be able to connect to Derby for password
authentication. I'd like to eventually create a form
where users can register and store their data in the
database. I'm using M5. Here's my deployment command:

java -jar ..\..\bin\deployer.jar --user system
--password manager deploy default-database-plan.xml

I can't even get the default database connector to
work.

Tyler


--- David Jencks <da...@yahoo.com> wrote:

> Deploying connectors works fine for me, especially
> the tranql ones.  If 
> you want any help you will need to provide a lot
> more information about 
> what you are doing including geronimo version, plan,
> and deployment 
> command.
> 
> I'm curious as to what features you find lacking in
> the tranql derby 
> connectors that lead you to want to write your own.
> 
> thanks
> david jencks
> 
> 
> On Oct 18, 2005, at 11:06 PM, <tb...@yahoo.com>
> wrote:
> 
> > I'm creating a connector and want to use it to
> connect
> > to Derby. Not even the connector's that come with
> > Geronimo work!
> >
> > The error I'm getting is below.
> >
> > Thanks!
> > Tyler
> >
> >
> >  Error: Unable to distribute
> > default-database-plan.xml: Syntax error
> >  in deployment plan or no deployer service
> available
> > (currently I
> >  can't tell the difference):
> >
> >
> > 	
> > 		
> > __________________________________
> > Yahoo! Mail - PC Magazine Editors' Choice 2005
> > http://mail.yahoo.com
> >
> 
> 



	
		
__________________________________ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com

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

Posted by David Jencks <da...@yahoo.com>.
Deploying connectors works fine for me, especially the tranql ones.  If 
you want any help you will need to provide a lot more information about 
what you are doing including geronimo version, plan, and deployment 
command.

I'm curious as to what features you find lacking in the tranql derby 
connectors that lead you to want to write your own.

thanks
david jencks


On Oct 18, 2005, at 11:06 PM, <tb...@yahoo.com> wrote:

> I'm creating a connector and want to use it to connect
> to Derby. Not even the connector's that come with
> Geronimo work!
>
> The error I'm getting is below.
>
> Thanks!
> Tyler
>
>
>  Error: Unable to distribute
> default-database-plan.xml: Syntax error
>  in deployment plan or no deployer service available
> (currently I
>  can't tell the difference):
>
>
> 	
> 		
> __________________________________
> Yahoo! Mail - PC Magazine Editors' Choice 2005
> http://mail.yahoo.com
>