Re: Classpath

2004-10-19 Thread Rod Giffin
Or from any program. It looks a little like MySQL is not running, running on another port, or something of that nature... Could also be the montefiore database does not have permissions granted, or tables configured. Rod. Art Spasky said: > can you connect to your server via java program (not fr

Re: LDAP authentification with username and password

2003-11-20 Thread Rod Giffin
Stephanie Zohner said: > Hi, > > I make use of the LDAP transformer for authentification in my web > application. > > When I understood the documentation right then Authentification requires > 2 steps: > > 1. get all necessary user data (username & password) from all users in > LDAP 2. Compare the

RE: Cocoon activity

2003-11-15 Thread Rod Giffin
On Sat, 2003-11-15 at 05:13, [EMAIL PROTECTED] wrote: > thnx rob > > i have try to run all this succesful > > but i can not see many debug capabilities. > > is it possible to have not the compiled classes but the source .java files > from an action or a gennerator or a transformer for example

Re: Cocoon activity

2003-11-15 Thread Rod Giffin
On Sat, 2003-11-15 at 00:43, Geoff Howard wrote: > Rod Giffin wrote: > > >>the truth is that cocoon is not (beginners-dev)-friendly > >>because many parameters (the pipeline-approach, missing IDE, less debug > >>tools) > >> > >>after 2 years here

RE: Cocoon activity

2003-11-14 Thread Rod Giffin
> > > hi rob > > i have put webapp in a project (samples) directory > i can browse see and edit cocoon's webapp dir content > > but how can start this and make it to wait for requests in 8080 for > example ? > > > thnx for your time Absolutly no problem!! Cocoon seems to be nothing more than a sop

RE: Cocoon activity

2003-11-14 Thread Rod Giffin
On Fri, 14 Nov 2003, Rod Giffin wrote: > Simply mount that directory as the filesystem of your project. It takes > a bit of time initially, for Netbeans to parse all of the .jar files, > but it's instantly recognized as a webapp, and as long as you don't > create any con

RE: Cocoon activity

2003-11-14 Thread Rod Giffin
> On Fri, 14 Nov 2003, Rod Giffin wrote: > > Cocoon on NetBeans ? > can you give me some hints? (urls, docs ..); Well, hints yes, at the moment. If there aren't any docs anywhere, maybe I can provide them. For myself, I just tried it to see, and it worked in both Linux and Wi

RE: Cocoon activity

2003-11-14 Thread Rod Giffin
> the truth is that cocoon is not (beginners-dev)-friendly > because many parameters (the pipeline-approach, missing IDE, less debug > tools) > > after 2 years here and with cocoon in production from the first 2.0rc is > still difficult for me to do something without to see an example. > > .. but

Re: does cocoon support css

2003-11-07 Thread Rod Giffin
Asim Raja said: > Hi, > > I'm interested in using use Cocoon to convert an html page to a PDF > file. I would like to feed the URL of the page and get the PDF. I would > like to know if CSS used by the webpage would be supported by the > HTMLGenerator and the PDF Serializer? > > Thank you in advanc

Re: hello everyone

2003-10-23 Thread Rod Giffin
John Blumer said: > Maybe this is wrong. What all do I need to show for my path in .sh? > > set path = $PATH /users/johnblumer/cocoon-2.1.2/cocoon.sh Paths are case sensitive. Your listing shows /Users/...etc., not /users/ so your path is going elsewhere. Rod. --

Re: hello everyone

2003-10-23 Thread Rod Giffin
John Blumer said: > Maybe the file is corrupt. How do I do a clean install, please. It's in install.txt, but having just done that yesterday on my XP box (I do use Cocoon on my Linux systems too) I did ./build clean to remove the existing build, then ./build [option] where option is optional and

Re: hello everyone

2003-10-23 Thread Rod Giffin
John Blumer said: > /User/johnblumer/cocoon-2.1.2/cocoon.sh: No such file or directory But > it is there! I opened up and looked! I bet it's not executable (a permissions thing). If you have enough rights to the directory, you should be able to change the permissions with chmod +x (or read man

Re: hello everyone

2003-10-23 Thread Rod Giffin
Try it without the trailing slash. /Users/johnblumer/cocoon-2.1.2/cocoon.sh Rod. John Blumer said: > /Users/johnblumer/cocoon-2.1.2/cocoon.sh/: Not a directory. > On Thursday, Oct 23, 2003, at 10:57 America/Chicago, McDonald, Bruce > wrote: > >> >> Well, what directory are you in? ---

Re: Cocoon and MySQL databases

2003-07-28 Thread Rod Giffin
Kieran Kirwan said: > 2 Define connection pool (cocooon.xconf) > > > false > jdbc:mysql://localhost/abc > root > > Did you try specifying the port that MySQL is running on? eg, if you were using the default setup the dburl would be: jdbc:mysql://localhost:3306/abc Rod. --