RE: IMP:Problem migrating to Latest Tomcat 5

2003-10-27 Thread Paresh Varatkar

Hi Remy

Two questions
1 where Can I get the binary install for  5.0.14.
2 Also do you think its possible to move the application from Tomcat to jboss easily.

Regards
Paresh


-Original Message-
From: Remy Maucherat [mailto:[EMAIL PROTECTED]
Sent: Saturday, October 25, 2003 1:46 AM
To: Tomcat Users List
Subject: Re: IMP:Problem migrating to Latest Tomcat 5


Paresh Varatkar wrote:
 Found out thwe problem.
 One of our class is making hard coded refernce to resources that is creating trouble 
 in deploying the application.
 
 One more problem though.
 I am trying to start Tomcat as service.
 It starts and stops immediately
 saying 
 The apache service on computer started then stopped
 some services stop automatically if they have no work to do
 
 has anyone came across this.

That bug has been fixed already, and 5.0.14 will have the fix.

 Sorry Chris,
 I am putting files under 
 webapps\WEB-INF\ourapp\lib directory.

No, it's webapps\ourapp\WEB-INF\lib

-- 
x
Rémy Maucherat
Senior Developer  Consultant
JBoss Group (Europe) SàRL
x


-
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: IMP:Problem migrating to Latest Tomcat 5

2003-10-27 Thread Shapira, Yoav

Hola,

1 where Can I get the binary install for  5.0.14.

http://apache.oregonstate.edu/jakarta/tomcat-5/v5.0.14-alpha/

2 Also do you think its possible to move the application from Tomcat to
jboss easily.

Yes. ;)

Yoav Shapira



This e-mail, including any attachments, is a confidential business communication, and 
may contain information that is confidential, proprietary and/or privileged.  This 
e-mail is intended only for the individual(s) to whom it is addressed, and may not be 
saved, copied, printed, disclosed or used by anyone else.  If you are not the(an) 
intended recipient, please immediately delete this e-mail from your computer system 
and notify the sender.  Thank you.


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



Re: IMP:Problem migrating to Latest Tomcat 5

2003-10-27 Thread Remy Maucherat
Paresh Varatkar wrote:

Hi Remy

Two questions
1 where Can I get the binary install for  5.0.14.
http://mir2.ovh.net/ftp.apache.org/dist/jakarta/tomcat-5/v5.0.14-alpha/ 
(or another mirror)

2 Also do you think its possible to move the application from Tomcat to jboss easily.
That's the idea :)
The JB 3.2 / TC 5 integration should be released soon (likely a little 
after the stable TC 5 release). It needs some more tweaking, right now.

--
x
Rémy Maucherat
Senior Developer  Consultant
JBoss Group (Europe) SàRL
x
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: IMP:Problem migrating to Latest Tomcat 5

2003-10-25 Thread Remy Maucherat
Paresh Varatkar wrote:
Found out thwe problem.
One of our class is making hard coded refernce to resources that is creating trouble 
in deploying the application.
One more problem though.
I am trying to start Tomcat as service.
It starts and stops immediately
saying 
The apache service on computer started then stopped
some services stop automatically if they have no work to do

has anyone came across this.
That bug has been fixed already, and 5.0.14 will have the fix.

Sorry Chris,
I am putting files under 
webapps\WEB-INF\ourapp\lib directory.
No, it's webapps\ourapp\WEB-INF\lib

--
x
Rémy Maucherat
Senior Developer  Consultant
JBoss Group (Europe) SàRL
x
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


IMP:Problem migrating to Latest Tomcat 5

2003-10-24 Thread Paresh Varatkar
Hi,
We used to have application running with Tomcat 3.2.4
During that time we use to use to setup classpath while starting the Tomcat using bat 
file set classpath command
to include jar files from our application.

We use very simple deployment method using directory structure.
We just deploy webapplication directory.
We put our jar files at CATALINA HOME\webapps\ourapp\lib directory.
We put our jsp files at CATALINA HOME\webapps\ourapp directory directly.

When Tomcat starts it is not finding jar files inside the lib thus it gives error 
compiling
jsps.

I am able to make my application work if I put those files under CATALINA 
HOME\common\lib\.
But I do not want to do it again wrong way.

Can anyone suggest what I am missing, I went through documentation again and again.
Is there any aml or properties file where I have to make entry of my application.

Thanks
Paresh


-Original Message-
From: Ben Souther [mailto:[EMAIL PROTECTED]
Sent: Thursday, October 23, 2003 9:47 AM
To: Tomcat Users List
Subject: Re: Does Apache offers any Tomcat like version with GUI and
features.


Have you looked at the admin and manager apps that ship with Tomcat 4.1x and 
up?

On Thursday 23 October 2003 11:53 am, Paresh Varatkar wrote:
 Hi,
 We are using Tomcat server version 3.2.4 with IIS for long time.
 Our IT staff want to upgrade to environment with GUI but Tomcat based and
 is ready to pay the fees if anything like that available.
 Does any one know Tomcat based web serverseasy to operate and migrate the
 application? Thanks
 Paresg

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

-- 
Ben Souther
F.W. Davison  Company, Inc.



-
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: IMP:Problem migrating to Latest Tomcat 5

2003-10-24 Thread Christopher Schultz
Paresh,

We use very simple deployment method using directory structure.
We just deploy webapplication directory.
We put our jar files at CATALINA HOME\webapps\ourapp\lib directory.

I am able to make my application work if I put those files under CATALINA 
HOME\common\lib\.
But I do not want to do it again wrong way.
You must have your JAR files at CATALINA_HOME\webapps\ourapp\WEB-INF\lib

Note the WEB-INF that's required.

-chris

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


IMP:Problem migrating to Latest Tomcat 5

2003-10-24 Thread Paresh Varatkar
Found out thwe problem.
One of our class is making hard coded refernce to resources that is creating trouble 
in deploying the application.

One more problem though.
I am trying to start Tomcat as service.
It starts and stops immediately
saying 
The apache service on computer started then stopped
some services stop automatically if they have no work to do

has anyone came across this.
Regards
Paresh

-Original Message-
From: Paresh Varatkar 
Sent: Friday, October 24, 2003 3:05 PM
To: Tomcat Users List
Cc: [EMAIL PROTECTED]
Subject: RE: IMP:Problem migrating to Latest Tomcat 5
Importance: High


Sorry Chris,
I am putting files under 
webapps\WEB-INF\ourapp\lib directory.

My mistake while typing, Its not working still.
Regards
paresh


-Original Message-
From: Christopher Schultz [mailto:[EMAIL PROTECTED]
Sent: Friday, October 24, 2003 3:02 PM
To: Tomcat Users List
Subject: Re: IMP:Problem migrating to Latest Tomcat 5


Paresh,

 We use very simple deployment method using directory structure.
 We just deploy webapplication directory.
 We put our jar files at CATALINA HOME\webapps\ourapp\lib directory.

 I am able to make my application work if I put those files under CATALINA 
 HOME\common\lib\.
 But I do not want to do it again wrong way.

You must have your JAR files at CATALINA_HOME\webapps\ourapp\WEB-INF\lib

Note the WEB-INF that's required.

-chris


-
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]