Re: ques abt DDL

2007-12-11 Thread Venkat Venkataramanan
Min:

Tools such as SQL Navigator, Toad, ERWin, S-Designer have the capability to
reverse-engineer a database.

Venki

On Dec 11, 2007 5:03 PM, minky arora [EMAIL PROTECTED] wrote:

 Hi Gurus,

 I know this is a Tomcat mailing list..I have a basic question about
 DDL and am hoping someone would give me an answer.

 I have been given a schema of a DB which will eventually be deployed
 on Tomcat Server.Now I need to extract the DDL for this.I am very new
 to Oracle.This schema has been developed by a different set of
 programmers .Could you please tell me what tool I can use to generate
 the DDL for this?

 Thanks so much,

 Min

 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: Catalina.bat and Tomcat 5.5.23

2007-07-30 Thread Venkat Venkataramanan
Varuna:

The batch file checks if there is an environmental variable called
CATALINA_HOME set. If it is not set, it creates the Environmental variable
set to the directory, CURRENT_DIR is set to. Then it

Then it checks for the batch file, catalina.bat, in %CATALINA_HOME%\bin.
If it is there, the execution branches to :okHome.

venki


On 7/30/07, Varuna Seneviratna [EMAIL PROTECTED] wrote:

 Can you please explain the following
 rem Guess CATALINA_HOME if not defined
 set CURRENT_DIR=%cd%
 if not %CATALINA_HOME% ==  goto gotHome  //What is meant by this, Does
 it mean if Catalina Home is not equal to  then
 CATALINA_HOME=%CURRENT_DIR%   //what is the need to
 execute CATALINA_HOME=%CURRENT_DIR%
 if exist %CATALINA_HOME%\bin\catalina.bat goto okHome  //What is
 indicated by okHome, actually what does this code says
 cd ..
 set CATALINA_HOME=%cd%
 cd %CURRENT_DIR%
 :gotHome
 if exist %CATALINA_HOME%\bin\catalina.bat goto okHome
 echo The CATALINA_HOME environment variable is not defined correctly
 echo This environment variable is needed to run this program
 goto end
 :okHome

 rem Get standard environment variables
 if exist %CATALINA_HOME%\bin\setenv.bat call
 %CATALINA_HOME%\bin\setenv.bat



RE: Tomcat admin,Manager app setup

2007-05-23 Thread Venkat Venkataramanan
Rashmi:

I posted a similar message and I was told then that the Admin application
v5.5 is not compatible with Tomcat v6.0.x

-Original Message-
From: Rashmi Rubdi [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 22, 2007 8:58 PM
To: Tomcat Users List
Subject: Re: Tomcat admin,Manager app setup

On 5/22/07, Raja [EMAIL PROTECTED] wrote:
  Hi ,

 We are trying to setup multiple instanace of tomcat running on the same
 server. we can able to do it successfully.
 We need to  run the Manager,Admin applications also on  each instance.

 Version Details : Tomcat 6.0.10
 JDK Version :  1.5.09

 1 .From the docs, i understand that, by default there is no ADMIN
 application enabled in the tomcat. So anyone in the group guide me setup
 this application and let me know where can i download the application as
 well.

There doesn't seem to be a download link for the Admin App for Tomcat
6.0.x at http://tomcat.apache.org/download-60.cgi

However, there is one for Tomcat 5.5.x here:
http://tomcat.apache.org/download-55.cgi#5.5.23

I haven't tried the 5.5.x Admin app on Tomcat 6.0.x , but it probably
(just a guess) might be compatible.

 2. I have copied Manager application to the individual instacne of the
 tomcat webapps folder. But i am getting 404 error while accessing that
 applcation.

What link did you use to access the Manager app?

With the default install and default config of Tomcat 6.0.x , I'm able
to access the manager app at: http://localhost:8080/manager/html  ,
after defining a user and a role for that user in tomcat-users.xml

Look for tomcat-users.xml under apache-tomcat-6.0.x\conf\ folder and
add something like:

?xml version='1.0' encoding='utf-8'?
tomcat-users
  role rolename=manager/
  role rolename=admin/
  user username=somuser password=secret roles=admin,manager/
/tomcat-users

 Your help on this will be really helpful to us. Thanks in advance.


 With Regards,

 Alagar Raja R


-Regards
Rashmi

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Help in using the Manager application

2007-05-17 Thread Venkat Venkataramanan
Hello:

 

I installed Tomcat 5.5.3 . I made sure that there was a user with the
manager role in the tomcat-users.xml. Howver, when I tried the url,
http://localhost:8080/manager/list, I get a  http 403 error.

 

type Status report

message Access to the requested resource has been denied

description Access to the specified resource (Access to the requested
resource has been denied) has been forbidden.

 

Also, from the tomcat home page, clicking on status gives me the same error
page.

 

Can somebody guide me?

 

Venki

 



RE: Help in using the Manager application

2007-05-17 Thread Venkat Venkataramanan
Guru:

I actually followed the same steps but now, after restarting, it works. I
did restart the server before, though!

Thanks anyway.

-Original Message-
From: Raghupathy, Gurumoorthy [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 17, 2007 11:10 AM
To: Tomcat Users List; [EMAIL PROTECTED]
Subject: RE: Help in using the Manager application

Edit the file tomcat-users.xml in your conf directory of tomcat.
Add roles using 
role rolename=manager/
role rolename=admin/

Then  add user 

user username=admin password=admin roles=admin,manager/
Close the file ... restart tomcat and close all browser instance and hit

http://localhost:8080/manager/html/list

username is admin password is admin ...

Let me know if this works  


Regards
Guru

-Original Message-
From: Venkat Venkataramanan [mailto:[EMAIL PROTECTED] 
Sent: 17 May 2007 16:05
To: 'Tomcat Users List'
Subject: Help in using the Manager application

Hello:

 

I installed Tomcat 5.5.3 . I made sure that there was a user with the
manager role in the tomcat-users.xml. Howver, when I tried the url,
http://localhost:8080/manager/list, I get a  http 403 error.

 

type Status report

message Access to the requested resource has been denied

description Access to the specified resource (Access to the requested
resource has been denied) has been forbidden.

 

Also, from the tomcat home page, clicking on status gives me the same
error
page.

 

Can somebody guide me?

 

Venki

 


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Where do I find the Admin tool?

2007-05-16 Thread Venkat Venkataramanan
Chuck:

Thanks. The follow-up questions begs to be asked. In the absence of webapp,
how can I manage the Tomcat instance? Is the 5.5 Admin tool functionality
provided by the Manager application?

-Original Message-
From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 16, 2007 5:19 PM
To: Tomcat Users List
Subject: RE: Where do I find the Admin tool?

 From: Venkat Venkataramanan [mailto:[EMAIL PROTECTED] 
 Subject: Where do I find the Admin tool?
 
 I presume that I can run that under 6.0.10. Please let me know if my
 assumption is right.

The 5.5 admin will not run under 6.0, and there is no admin webapp for
6.0 (at least not for the time being.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Problem starting Tomcat on Windows 2003

2007-05-01 Thread Venkat Venkataramanan
Hello:

 

I just installed Tomcat v6.0 on a Windows 2003 server. I stopped IIS and
tried to run the batch file, startup.bat and the Command windows closed. I
see the following errors in the log file:

 

May 1, 2007 10:20:25 AM org.apache.catalina.core.AprLifecycleListener init

 

INFO: The Apache Tomcat Native library which allows optimal performance in
production environments was not found on the java.library.path: D:\Program
Files\Java\jre1.6.0_01\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\

WINDOWS;C:\Program Files\Common Files\Crystal
Decisions\2.5\bin\NOTES\;C:\Program Files\Common Files\Crystal
Decisions\2.5\bin\NOTES\DATA\;D:\PROGRA~1\Serena\vm\win32\bin;D:\PROGRA~1\Se

rena\vm\common\bin\win32;D:\oracle\10.2.0\db_1\bin;C:\WINDOWS\system32;C:\WI

NDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Common Files\Roxio
Shared\DLLShared\;C:\PROGRA~1\COMMON~1\SONICS~1\;C:\Program Files\Microsoft
SQL Server\80\Tools\Binn\;D:\Program Files\Microsoft SQL
Server\90\DTS\Binn\;D:\Program Files\Microsoft SQL
Server\90\Tools\binn\;D:\Program Files\Microsoft SQL
Server\90\Tools\Binn\VSShell\Common7\IDE\;D:\Program Files\Microsoft Visual
Studio 8\Common7\IDE\PrivateAssemblies\;C:\Program

Files\QuickTime\QTSystem\;D:\Program Files\Java\jdk1.6.0_01\bin;D:\Program

Files\Java\jre1.6.0_01\bin;

 

May 1, 2007 10:20:25 AM org.apache.coyote.http11.Http11Protocol init

 

SEVERE: Error initializing endpoint

 

java.net.BindException: Address already in use: JVM_Bind:8080

My questions are:

 

1.   Where is the path for java.library.path getting set to?

 

2.   What native library is it not finding?

 

3.   What does the exception on the last line mean?

 

Venki



RE: Problem starting Tomcat on Windows 2003

2007-05-01 Thread Venkat Venkataramanan
I realized that there was another software package that was running as a
service and using Tomcat.

Thanks for all your help.

-Original Message-
From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 01, 2007 12:05 PM
To: Tomcat Users List
Subject: RE: Problem starting Tomcat on Windows 2003

 From: Venkat Venkataramanan [mailto:[EMAIL PROTECTED] 
 Subject: Problem starting Tomcat on Windows 2003
 
 1.   Where is the path for java.library.path getting set to?

From the PATH environment variable for the process.  This is the default
value for a Sun JVM running on Windows.

 2.   What native library is it not finding?

The Apache Portable Runtime, which is an optional connector that will
improve performance somewhat over the standard pure-Java connectors.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]