Re: Acrobat problem

2001-04-17 Thread RameshBabu R Muthuvel

Hi
I presume you'r trying to use fo to transfrom xml to pdf format.

I too had a similar problem.  I didn't know how to plugin acrobat to IE. I 
worked my way out by removing the installed acrobat and freshly download and 
reinstalled.  It works well now. Try this

thanks

ramesh

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




Re: JDBC question

2001-04-17 Thread RameshBabu R Muthuvel

Hi
There are numerous issues.

Some are:
1) either ur dsn is not there
2) Your tables datatype doesn't match with the value passed or accessed from 
servlet etc...

send ur servlet, to find out what really happens

ramesh

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




Re: Acrobat question clarification

2001-04-17 Thread RameshBabu R Muthuvel

Hi

This happens to me too, though i use a NT machine.  I normally do the foll:

1) clear the browsers cache, close the browser and restart it, it works 
fine.
2) (the first time i got this error), my acrobat could not launch. so i 
downloaded and reinstalled, since i was not sure about plugging in the 
browser.

I think no special config is required, anyway i am not sure about a unix 
system.

thanks

ramesh

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


Let me clarrify the problem. I am using Tomcat on a Unix system. I am using it stand-alone without Apache. I have 2 problems. I have an html file with links to serveral PDFs in it. When I click the link Tomcat loads the PDF into the browser as ascii text rather than launching Acrobat. If I navigate to the PDF without going through Tomcat, my Netscape Browser opens Acrobat and loads the PDF just fine. I have confirmed that there is a mime-type declaration in the web.xml filein the conf directory. My other problem is I have a unique image format that is having the same problem. If I navigate to it outside of Tomcat, Netscape will launch the application I have set up in the preferences file, but if I go through the server it loads the image file as ascii garbage in the browser. Is there something special that I need to do in the Tomcat configuration that I am missing?

Thanks,
Steve and NanetteGet your FREE download of MSN Explorer at http://explorer.msn.com




Re: tomcat installation problem in win98

2001-04-11 Thread RameshBabu R Muthuvel

Hai

see the attachment. If it still doesn't work do mail to me

ramesh

[EMAIL PROTECTED]


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


Apache , Tomcat , mySQL - Installation Instruction  for Windows O/S

Step 1

1) Download the   apache_1.3.19.zip  file (currently available final 
version) of Apache Binaries from http://www.apache.org/dist

2) Download the  jakarta-tomcat-3.2.1.zip  file (currently available final 
version) of Tomcat Binaries from 
http://jakarta.apache.org/builds/tomcat/release/v3.2.1/bin/

3)  Download the  ApacheModuleJServ.zip   file  from  
http://jakarta.apache.org/builds/tomcat/release/v3.2.1/bin/win32/i386/


4) Download the suitable version of mySQL binaries from 
http://www.mysql.com/downloads/mysql-3.23.html

5) Download the  poolman-1.4.1.zip file from 
http://poolman.sourceforge.net/PoolMan/download.shtml
(if you wish to go in for connection pooling)


Step 2

I) Apache Installation

1) Uncompress the apache_1.3.19.zip file in a directory like c:\ (windows by 
default will install apache in c:\Program Files\Apache Group\Apache

2) Accept the defaults and follow the installation instructions

3) You got to edit the c:\Program Files\Apache Group\Apache\conf\httpd.conf

4) Open the httpd.conf file in your favorite editor say, notepad

5) Look for "ServerType StandAlone" under the Section 1: Global Environment.

6) Insert the line:  "ServerName localhost" below it and save the file.

7)  Try the configuration out by starting Apache (from the start menu) and 
navigating to http://localhost/ in your browser.  If you see the Apache web 
server page, then your installation is successful.

8)  Stop Apache (again using Stop menu)




II) Tomcat Installation

1) Uncompress the download into some sensible place , like  c:\Program 
Files\Apache Group\jakarta-tomcat-3.2.1

2) Go to Start  Settings  Control Panel  System  System Properties  and 
select the "Environment"  tab.

3) Under "User Variables for Administrator",  type the following:

Variable:  JAVA_HOME
Value   :  c:\jdk1.3(give your correct JDK path)

4) Similarly enter the following:

Variable:  ANT_HOME
Value   :  c:\program files\apache group\jakarta-tomcat3.2.1


Variable:  TOMCAT_HOME
Value   :  c:\program files\apache group\jakarta-tomcat3.2.1

(give your correct path, if your installation directory / path is different)

5) Run the "startup.bat" batch file found in the jakarta-tomcat-3.2.1\bin 
directory.  If the DOS window starts and then closes immediately,  try  " 
tomcat run" from the same command window.

6) Tomcat should normally start.

7)  If still your tomcat doesn't start, try adding c:\jdk1.3 in the classpath 
for  "system variables" under the environment tab ofSystem Properties. 
(Refer step 2).

8)  If still the problem persists, try shutting down the system for changes 
to be registered.  Restart the computer and repeat step 5.  Now Tomcat 
should normally start. (This has worked for me)

9) Test the result by going to http://localhost:8080/  in your browser and 
run some examples.

10) Run the  "shutdown.bat" from the same directory (refer step 5).





III) Installing  mod_jserv


1) Uncompress the download in some sensible place.

2) Copy the "ApacheModuleJServ.dll"  file into the Apache modules directory 
( in our case c:\program files\apache group\apache\modules directory)

3) Start tomcat and keep it running

4) Edit the "httpd.conf" file ( in our case available in c:\progam 
files\apache group\apache\conf directory)

5) Add the following line to the end,

Include "c:\Program Files\Apache 
Group\jakarta-tomcat-3.2.1\conf\tomcat-apache.conf"

(use the correct path in your installation)

6) Save the file and stop Tomcat


IV) Testing out final configuration


1) Start Tomcat  (from c:\program files\apache 
group\jakarta-tomcat-3.2.1\bin  directory)

2) Start Apache (from start menu)

3) Check if  Apache is working  (by going to http://localhost/)

4) Go to http://localhost/examples/jsp  and try out the examples.


V) Setting up your web application

1)  We should add a web application declaration in the "server.xml" 
configuration file, available under c:\program files\apache 
group\jakarta-tomcat-3.2.1\conf   directory.

2)  Open this file in text editor and add the following lines

Context path="/examples"
 docBase="webapps/miami"
 crossContext="false"
 debug="0"
 reloadable="true" 
/Context

(in the above example,  "miami" is my webapplication folder name, substitute 
your folder name here).




--
Share your experiences with : [EMAIL PROTECTED]





Re: JDBC Prob

2001-03-22 Thread RameshBabu R Muthuvel

mm.mysql-2.0.4-bin.jar

Download and put the above file in your system class path. This is type 4 
driver.  I worked for me.

ramesh
[EMAIL PROTECTED]
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




Connection Pooling - Please Help

2001-03-19 Thread RameshBabu R Muthuvel

Hi

I am using Apache 1.3.12, Tomcat 3.2.1, mySQL 3.23 on Windows NT 4.0

I am trying to include connection pooling in my JSP pages using PoolMan.
Inspite of carrying out all the elaborate installation procedure, yet i
could not establish a connection.


Anyone out there has done connection pooling with tomcat. If so can you help 
me.
Please reply immediately.

Thanking in advance

Ramesh babu R.M.
[EMAIL PROTECTED]





_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




Connection Pooling Help needed

2001-03-17 Thread RameshBabu R Muthuvel


Hi

I am using Apache 1.3.12, Tomcat 3.2.1, mySQL 3.23 on Windows NT 4.0

I am trying to include connection pooling in my JSP pages using PoolMan.
Inspite of carrying out all the elaborate installation procedure, yet i
could not establish a connection.

I get the following error:

java.lang.NullPointerException
a non-SQL exception occured when requesting a connection:
java.lang.NullPointerException

java.lang.RunTimeException : ERROR: SQLManager: couldn't create connection
pool.


Can anyone help me to fix this problem. Is there any other means of
achieving connection pooling. Please reply immediately.

Thanking in advance

Ramesh babu R.M.
[EMAIL PROTECTED]





_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




Connection Pooling Help needed

2001-03-16 Thread RameshBabu R Muthuvel

Hi

I am using Apache 1.3.12, Tomcat 3.2.1, mySQL 3.23 on Windows NT 4.0

I am trying to include connection pooling in my JSP pages using PoolMan.
Inspite of carrying out all the elaborate installation procedure, yet i 
could not establish a connection.

I get the following error:

java.lang.NullPointerException
a non-SQL exception occured when requesting a connection: 
java.lang.NullPointerException

java.lang.RunTimeException : ERROR: SQLManager: couldn't create connection 
pool.


Can anyone help me to fix this problem. Is there any other means of 
achieving connection pooling. Please reply immediately.

Thanking in advance

Ramesh babu R.M.
[EMAIL PROTECTED]





_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.




Re: TOMCAT vs Apache

2001-03-10 Thread RameshBabu R Muthuvel

1)Tomcat is not robust
2)"horses for courses",  Let tomcat do, what it is good in - "Serving 
servlets/JSP pages and apache serve static pages.

for more details try and read the FAQ at http://apache.org

ramesh


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


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




Re: Httpd.conf

2001-03-10 Thread RameshBabu R Muthuvel

hai karthik

see the attachement. hope it helps you

ramesh



_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


Apache , Tomcat , mySQL - Installation Instruction  for Windows O/S

Step 1

1) Download the   apache_1.3.19.zip  file (currently available final 
version) of Apache Binaries from http://www.apache.org/dist

2) Download the  jakarta-tomcat-3.2.1.zip  file (currently available final 
version) of Tomcat Binaries from 
http://jakarta.apache.org/builds/tomcat/release/v3.2.1/bin/

3)  Download the  ApacheModuleJServ.zip   file  from  
http://jakarta.apache.org/builds/tomcat/release/v3.2.1/bin/win32/i386/


4) Download the suitable version of mySQL binaries from 
http://www.mysql.com/downloads/mysql-3.23.html

5) Download the  poolman-1.4.1.zip file from 
http://poolman.sourceforge.net/PoolMan/download.shtml
(if you wish to go in for connection pooling)


Step 2

I) Apache Installation

1) Uncompress the apache_1.3.19.zip file in a directory like c:\ (windows by 
default will install apache in c:\Program Files\Apache Group\Apache

2) Accept the defaults and follow the installation instructions

3) You got to edit the c:\Program Files\Apache Group\Apache\conf\httpd.conf

4) Open the httpd.conf file in your favorite editor say, notepad

5) Look for "ServerType StandAlone" under the Section 1: Global Environment.

6) Insert the line:  "ServerName localhost" below it and save the file.

7)  Try the configuration out by starting Apache (from the start menu) and 
navigating to http://localhost/ in your browser.  If you see the Apache web 
server page, then your installation is successful.

8)  Stop Apache (again using Stop menu)




II) Tomcat Installation

1) Uncompress the download into some sensible place , like  c:\Program 
Files\Apache Group\jakarta-tomcat-3.2.1

2) Go to Start  Settings  Control Panel  System  System Properties  and 
select the "Environment"  tab.

3) Under "User Variables for Administrator",  type the following:

Variable:  JAVA_HOME
Value   :  c:\jdk1.3(give your correct JDK path)

4) Similarly enter the following:

Variable:  ANT_HOME
Value   :  c:\program files\apache group\jakarta-tomcat3.2.1


Variable:  TOMCAT_HOME
Value   :  c:\program files\apache group\jakarta-tomcat3.2.1

(give your correct path, if your installation directory / path is different)

5) Run the "startup.bat" batch file found in the jakarta-tomcat-3.2.1\bin 
directory.  If the DOS window starts and then closes immediately,  try  " 
tomcat run" from the same command window.

6) Tomcat should normally start.

7)  If still your tomcat doesn't start, try adding c:\jdk1.3 in the classpath 
for  "system variables" under the environment tab ofSystem Properties. 
(Refer step 2).

8)  If still the problem persists, try shutting down the system for changes 
to be registered.  Restart the computer and repeat step 5.  Now Tomcat 
should normally start. (This has worked for me)

9) Test the result by going to http://localhost:8080/  in your browser and 
run some examples.

10) Run the  "shutdown.bat" from the same directory (refer step 5).





III) Installing  mod_jserv


1) Uncompress the download in some sensible place.

2) Copy the "ApacheModuleJServ.dll"  file into the Apache modules directory 
( in our case c:\program files\apache group\apache\modules directory)

3) Start tomcat and keep it running

4) Edit the "httpd.conf" file ( in our case available in c:\progam 
files\apache group\apache\conf directory)

5) Add the following line to the end,

Include "c:\Program Files\Apache 
Group\jakarta-tomcat-3.2.1\conf\tomcat-apache.conf"

(use the correct path in your installation)

6) Save the file and stop Tomcat


IV) Testing out final configuration


1) Start Tomcat  (from c:\program files\apache 
group\jakarta-tomcat-3.2.1\bin  directory)

2) Start Apache (from start menu)

3) Check if  Apache is working  (by going to http://localhost/)

4) Go to http://localhost/examples/jsp  and try out the examples.


V) Setting up your web application

1)  We should add a web application declaration in the "server.xml" 
configuration file, available under c:\program files\apache 
group\jakarta-tomcat-3.2.1\conf   directory.

2)  Open this file in text editor and add the following lines

Context path="/examples"
 docBase="webapps/miami"
 crossContext="false"
 debug="0"
 reloadable="true" 
/Context

(in the above example,  "miami" is my webapplication folder name, substitute 
your folder name here).




--
Share your experiences with : [EMAIL PROTECTED]






Re: wmlc

2001-03-10 Thread RameshBabu R Muthuvel

Hi Graham

I am trying to run WAP application (tomcat-apache on windows NT) using phone 
simulators. I get a 404 error.

I am looking for:

1)can you send some details on configuring tomcat for serving WML decks
2)What plugins i would need

I had already added the required mimetype mappings in the tomcat "web.xml" 
file, and apache "mimi.types" file.

thanx in advance

ramesh



_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


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




Re: Help with Apache-Tomcat configuration

2001-03-10 Thread RameshBabu R Muthuvel

Hi

Installing  mod_jserv


1)Uncompress the download in some sensible place.

2)Copy the "ApacheModuleJServ.dll"  file into the Apache modules directory ( 
in our case c:\program files\apache group\apache\modules directory)

3)Start tomcat and keep it running

4)Edit the "httpd.conf" file ( in our case available in c:\progam 
files\apache group\apache\conf directory)

5)Add the following line to the end,

6)Include "c:\Program Files\Apache 
Group\jakarta-tomcat-3.2.1\conf\tomcat-apache.conf"

(use the correct path in your installation)

7)Save the file and stop Tomcat



Follow the above instructions. this worked for me

cheers

ramesh
[EMAIL PROTECTED]

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


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




Re: connecting tomcat3.2.1 to apache1.3.19 using mod_jk

2001-03-08 Thread RameshBabu R Muthuvel

1) Download the  ApacheModuleJServ.zip   file  from  
http://jakarta.apache.org/builds/tomcat/release/v3.2.1/bin/win32/i386/
2) Uncompress in ApacheModules directory

and try again. It worked for me

ramesh


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


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




Re: request.sendRedirect()

2001-03-08 Thread RameshBabu R Muthuvel

response.sendRedirect("ReallyATest.jsp");

This worked for me, in the same servlet context

cheers
ramesh

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


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




Re: MySQL driver - java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver

2001-02-26 Thread RameshBabu R Muthuvel

Try the following

1) URL = "jdbc:mysql:test";
2) Add the classpath "c:\mm.mysql-2.0.2-bin.jar"  as follows:
   StartSettingsControl PanelSystemEnvironmentSystem Variables
3) Restart the computer

Try again. I got it, you too will get it.

ramesh


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


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




Re: Cannot load d:/apache/modules/ApacheModuleJServ.dll into server:

2001-02-21 Thread RameshBabu R Muthuvel

Hi

Follow this simple step
1) Install Apache
2) Install Tomcat
3) Download mod_jserv (file name for windows version is 
ApacheModuleJServ.dll from jakarta website).
4) copy it into the Apache modules directory(say c:\program files\Apache 
Group\apache\modules)

5) eidt your httpd.conf in (say c:\program files\Apache Group|Apache\conf) 
directory and add the following line to the end

Include "c:\Program Files\Apache 
Group\jakarta-tomcat\conf\tomcat-apache.conf"

(USE CORRECT PATH to the tomcat-apache.conf FILE IN UR MACHINE ABOVE)


Hope this helps

cheers


_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.


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