RE: building tomcat source in eclipse

2004-08-14 Thread Hiller, Dean D (Dean)
Ant is at ant.apache.org.  download is just a target.  Read up on ant to
understand more.  They have mailing lists there.  

Doing it in eclipse...I don't think this is an eclipse list.  Look at
the eclipse documentation in the help about ant and if you have trouble
there are many great eclipse forums out there(I have used them myself)
Thanks,
dean

-Original Message-
From: Chris [mailto:[EMAIL PROTECTED] 
Sent: Friday, August 13, 2004 1:58 PM
To: Tomcat Developers List
Subject: Re: building tomcat source in eclipse

> > The trick is to get all dependencies. Do an "ant download", then
create
> > project for repository, tomcat-connectors, tomcat-catalina, jasper,
> > servletapi ( with the obvious dependencis ). 

What is "ant download" ? How to do that in Eclipse?

TIA

- Original Message - 
From: "Patrick Lacson" <[EMAIL PROTECTED]>
To: "Tomcat Developers List" <[EMAIL PROTECTED]>
Sent: Saturday, August 14, 2004 2:08 AM
Subject: Re: building tomcat source in eclipse


> Thanks Costin, I'll give that a try.  
> 
> 
> 
> On Thu, 12 Aug 2004 22:07:50 -0700, Costin Manolache
> <[EMAIL PROTECTED]> wrote:
> > The trick is to get all dependencies. Do an "ant download", then
create
> > project for repository, tomcat-connectors, tomcat-catalina, jasper,
> > servletapi ( with the obvious dependencis ). Eclipse will find all
> > source trees and jars, then compile without problems. Same works
> > in Idea.
> > 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: building tomcat source in eclipse

2004-08-13 Thread Chris
> > The trick is to get all dependencies. Do an "ant download", then create
> > project for repository, tomcat-connectors, tomcat-catalina, jasper,
> > servletapi ( with the obvious dependencis ). 

What is "ant download" ? How to do that in Eclipse?

TIA

- Original Message - 
From: "Patrick Lacson" <[EMAIL PROTECTED]>
To: "Tomcat Developers List" <[EMAIL PROTECTED]>
Sent: Saturday, August 14, 2004 2:08 AM
Subject: Re: building tomcat source in eclipse


> Thanks Costin, I'll give that a try.  
> 
> 
> 
> On Thu, 12 Aug 2004 22:07:50 -0700, Costin Manolache
> <[EMAIL PROTECTED]> wrote:
> > The trick is to get all dependencies. Do an "ant download", then create
> > project for repository, tomcat-connectors, tomcat-catalina, jasper,
> > servletapi ( with the obvious dependencis ). Eclipse will find all
> > source trees and jars, then compile without problems. Same works
> > in Idea.
> > 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: building tomcat source in eclipse

2004-08-13 Thread Patrick Lacson
Thanks Costin, I'll give that a try.  



On Thu, 12 Aug 2004 22:07:50 -0700, Costin Manolache
<[EMAIL PROTECTED]> wrote:
> The trick is to get all dependencies. Do an "ant download", then create
> project for repository, tomcat-connectors, tomcat-catalina, jasper,
> servletapi ( with the obvious dependencis ). Eclipse will find all
> source trees and jars, then compile without problems. Same works
> in Idea.
> 
> Costin
> 
> 
> 
> 
> Hiller, Dean D (Dean) wrote:
> > I am just trying not to have 800 errors when I run tomcat in eclipse.
> > It would be easier if someone just provided .project and .classpath
> > files.  I am working on setting up in eclipse.  Am down to 800 problems
> > from 1000, and am still playing with it.  I can't find mail.jar that
> > eclipse is using(might need to just go get it myself), but I can't
> > figure out how tomcat built successfully without it via command line.
> > Couldn't find it anywhere including /usr/java/share nor the tomcat view
> > I have...and that is after building everything fine from command line.
> > Thanks,
> > dean
> >
> > -Original Message-
> > From: Mark Thomas [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, August 12, 2004 2:24 PM
> > To: 'Tomcat Developers List'; 'Patrick Lacson'
> > Subject: RE: building tomcat source in eclipse
> >
> > What are you trying to achieve? I use Eclipse to develop TC5 (& TC4) but
> > always
> > build from the command line. I have each of the top level directories
> > created by
> > the build script as an Eclipse project. You can still use remote
> > debugging etc
> > as well as all the other Eclipse features.
> >
> > Mark
> >
> >
> >>-Original Message-
> >>From: Patrick Lacson [mailto:[EMAIL PROTECTED]
> >>Sent: Thursday, August 12, 2004 9:16 PM
> >>To: [EMAIL PROTECTED]
> >>Subject: building tomcat source in eclipse
> >>
> >>I searched the archives regarding my question and found nothing.
> >>
> >>Has anybody successfully built the tomcat 5 source tree from within
> >>eclipse?  If so could share your .project and .classpath file?
> >>
> >>I want to build and run tomcat from within eclipse, launching it as a
> >>Java Application within the IDE.
> >>
> >>thanks,
> >>patrick
> >>
> >>-
> >>To unsubscribe, e-mail: [EMAIL PROTECTED]
> >>For additional commands, e-mail: [EMAIL PROTECTED]
> >>
> >>
> >
> >
> >
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-- 
Patrick

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: building tomcat source in eclipse

2004-08-12 Thread Costin Manolache
The trick is to get all dependencies. Do an "ant download", then create 
project for repository, tomcat-connectors, tomcat-catalina, jasper, 
servletapi ( with the obvious dependencis ). Eclipse will find all 
source trees and jars, then compile without problems. Same works
in Idea.

Costin
Hiller, Dean D (Dean) wrote:
I am just trying not to have 800 errors when I run tomcat in eclipse.
It would be easier if someone just provided .project and .classpath
files.  I am working on setting up in eclipse.  Am down to 800 problems
from 1000, and am still playing with it.  I can't find mail.jar that
eclipse is using(might need to just go get it myself), but I can't
figure out how tomcat built successfully without it via command line.
Couldn't find it anywhere including /usr/java/share nor the tomcat view
I have...and that is after building everything fine from command line.
Thanks,
dean
-Original Message-
From: Mark Thomas [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 12, 2004 2:24 PM
To: 'Tomcat Developers List'; 'Patrick Lacson'
Subject: RE: building tomcat source in eclipse

What are you trying to achieve? I use Eclipse to develop TC5 (& TC4) but
always
build from the command line. I have each of the top level directories
created by
the build script as an Eclipse project. You can still use remote
debugging etc
as well as all the other Eclipse features.
Mark

-Original Message-
From: Patrick Lacson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 12, 2004 9:16 PM
To: [EMAIL PROTECTED]
Subject: building tomcat source in eclipse

I searched the archives regarding my question and found nothing.
Has anybody successfully built the tomcat 5 source tree from within
eclipse?  If so could share your .project and .classpath file?
I want to build and run tomcat from within eclipse, launching it as a
Java Application within the IDE.
thanks,
patrick
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: RE: building tomcat source in eclipse

2004-08-12 Thread helpdesk
Thanks for your email.

This is an auto response to confirm we have received your email.

If you are wishing to check the whereabouts of an order please use our order tracker 
at  -

http://www.seetickets.com/tracker

have your reference number and email address handy!

If you wish to change your delivery address, we have an on-line address change 
facility. Please send a blank
e-mail to [EMAIL PROTECTED] with your reference number and the last four digits of the 
card used to place the order
in the subject line.

Many thanks for booking with See Tickets

If your query is urgent  we can be contacted by telephone on *0871 22 00 260 24 hours 
a day.

*For customers outside UK please call us on +44 115 912 9000


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: building tomcat source in eclipse

2004-08-12 Thread Mark Thomas
The ant script is quite sophisticated. There are lots of optional things that
don't get built if you don't set the appropriate option - AFAIR mail.jar is one
of these. I wouldn't even bother trying to build Tomcat directly in Eclipse. The
best you can hope for is to call the ant script from Eclipse.

I'll send you the eclipse files directly - the apache mailing server won't
accept zips.

Mark


> -Original Message-
> From: Hiller, Dean D (Dean) [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, August 12, 2004 11:52 PM
> To: Tomcat Developers List; Patrick Lacson
> Subject: RE: building tomcat source in eclipse
> 
> I am just trying not to have 800 errors when I run tomcat in eclipse.
> It would be easier if someone just provided .project and .classpath
> files.  I am working on setting up in eclipse.  Am down to 
> 800 problems
> from 1000, and am still playing with it.  I can't find mail.jar that
> eclipse is using(might need to just go get it myself), but I can't
> figure out how tomcat built successfully without it via command line.
> Couldn't find it anywhere including /usr/java/share nor the 
> tomcat view
> I have...and that is after building everything fine from command line.
> Thanks,
> dean
> 
> -Original Message-
> From: Mark Thomas [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, August 12, 2004 2:24 PM
> To: 'Tomcat Developers List'; 'Patrick Lacson'
> Subject: RE: building tomcat source in eclipse
> 
> What are you trying to achieve? I use Eclipse to develop TC5 
> (& TC4) but
> always
> build from the command line. I have each of the top level directories
> created by
> the build script as an Eclipse project. You can still use remote
> debugging etc
> as well as all the other Eclipse features.
> 
> Mark
> 
> > -Original Message-
> > From: Patrick Lacson [mailto:[EMAIL PROTECTED] 
> > Sent: Thursday, August 12, 2004 9:16 PM
> > To: [EMAIL PROTECTED]
> > Subject: building tomcat source in eclipse
> > 
> > I searched the archives regarding my question and found nothing.
> > 
> > Has anybody successfully built the tomcat 5 source tree from within
> > eclipse?  If so could share your .project and .classpath file?
> > 
> > I want to build and run tomcat from within eclipse, 
> launching it as a
> > Java Application within the IDE.
> > 
> > thanks,
> > patrick
> > 
> > 
> -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > 
> > 
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: building tomcat source in eclipse

2004-08-12 Thread Hiller, Dean D (Dean)
I am just trying not to have 800 errors when I run tomcat in eclipse.
It would be easier if someone just provided .project and .classpath
files.  I am working on setting up in eclipse.  Am down to 800 problems
from 1000, and am still playing with it.  I can't find mail.jar that
eclipse is using(might need to just go get it myself), but I can't
figure out how tomcat built successfully without it via command line.
Couldn't find it anywhere including /usr/java/share nor the tomcat view
I have...and that is after building everything fine from command line.
Thanks,
dean

-Original Message-
From: Mark Thomas [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 12, 2004 2:24 PM
To: 'Tomcat Developers List'; 'Patrick Lacson'
Subject: RE: building tomcat source in eclipse

What are you trying to achieve? I use Eclipse to develop TC5 (& TC4) but
always
build from the command line. I have each of the top level directories
created by
the build script as an Eclipse project. You can still use remote
debugging etc
as well as all the other Eclipse features.

Mark

> -Original Message-
> From: Patrick Lacson [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, August 12, 2004 9:16 PM
> To: [EMAIL PROTECTED]
> Subject: building tomcat source in eclipse
> 
> I searched the archives regarding my question and found nothing.
> 
> Has anybody successfully built the tomcat 5 source tree from within
> eclipse?  If so could share your .project and .classpath file?
> 
> I want to build and run tomcat from within eclipse, launching it as a
> Java Application within the IDE.
> 
> thanks,
> patrick
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: building tomcat source in eclipse

2004-08-12 Thread Hiller, Dean D (Dean)
I second this.  That would rock.  If anyone could provide the .project
and .classpath files, that would be easy to set up in eclipse.  (I am
currently trying to build from command line first but my next step was
to bring it into eclipse)
dean

-Original Message-
From: Patrick Lacson [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 12, 2004 2:16 PM
To: [EMAIL PROTECTED]
Subject: building tomcat source in eclipse

I searched the archives regarding my question and found nothing.

Has anybody successfully built the tomcat 5 source tree from within
eclipse?  If so could share your .project and .classpath file?

I want to build and run tomcat from within eclipse, launching it as a
Java Application within the IDE.

thanks,
patrick

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: building tomcat source in eclipse

2004-08-12 Thread Mark Thomas
What are you trying to achieve? I use Eclipse to develop TC5 (& TC4) but always
build from the command line. I have each of the top level directories created by
the build script as an Eclipse project. You can still use remote debugging etc
as well as all the other Eclipse features.

Mark

> -Original Message-
> From: Patrick Lacson [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, August 12, 2004 9:16 PM
> To: [EMAIL PROTECTED]
> Subject: building tomcat source in eclipse
> 
> I searched the archives regarding my question and found nothing.
> 
> Has anybody successfully built the tomcat 5 source tree from within
> eclipse?  If so could share your .project and .classpath file?
> 
> I want to build and run tomcat from within eclipse, launching it as a
> Java Application within the IDE.
> 
> thanks,
> patrick
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



building tomcat source in eclipse

2004-08-12 Thread Patrick Lacson
I searched the archives regarding my question and found nothing.

Has anybody successfully built the tomcat 5 source tree from within
eclipse?  If so could share your .project and .classpath file?

I want to build and run tomcat from within eclipse, launching it as a
Java Application within the IDE.

thanks,
patrick

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]