Re: setting classpath when running as service on win2k

2004-04-22 Thread Mark Schmeets
Hi Vincent, Normally it is specified in the command line when you install the service. You can check a registry key -- HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/Apache-Catalina/Parameters (assuming your service is named Apache-Catalina). Under this key you should have a JVM Option

Re: Tomcat is stoping Urgent

2004-04-22 Thread Mark Schmeets
Hi, Do you have a backup copy of your .mdb file (from before when the problem occured) that you could roll back to? If everything was working, and just suddenly stopped, it sounds like a data corruption issue. Mark Hans Wichman wrote: Hi, there are other drivers for access, look here

Re: Accessing Dll's

2004-04-22 Thread Mark Schmeets
Hi, Is it possible that this dll is being loaded somewhere else in your instance? My experience with this error came from trying to use the Oracle native JDBC drivers. It usually came down to one of three issues, first that the dll couldn't be found, second that another web-app had already

Re: [Solved]Tomcat As A Windows Service

2004-04-21 Thread Mark Schmeets
The SDK was installed under the C:\Program Files directory. The space was not quoted and broke the command line install. Mark Schmeets wrote: I have set up a number of Tomcat installs to run as Windows Services, but have come across one that I cannot get to work. The Windows Event log shows

java.net.Connection Timed Out error

2004-04-21 Thread Mark Schmeets
Using a Swing application to communicate with Tomcat 4.0.6 on JRE 1.4.2(client and server), this install uses the isapi redirecter to provide HTTPS through IIS. The problem is that I receive seeminly random Exception: java.net.ConnectException: Connection timed out: connect errors. This seems

Tomcat As A Windows Service

2004-04-15 Thread Mark Schmeets
I have set up a number of Tomcat installs to run as Windows Services, but have come across one that I cannot get to work. The Windows Event log shows entries like the following: 4/14/20043:09:24 PMService Control ManagerInformation NoneThe Apache-Catalina service entered

Tomcat 4.0.6 IIS6.0 ISAPI Filter Activation

2003-08-14 Thread Mark Schmeets
I have been able to use the ISAPI redirector filter with IIS 5 and W2K successfully. I just attempted to do the same thing with Server 2003 and IIS 6.0 and cannot get the filter to register any status (no arrows). I did install, and enable the dll as a Web Extension as well. I am using 4.0.6

Re: Tomcat 4.1x with IIS 6 on Windows server 2003

2003-08-14 Thread Mark Schmeets
, What did you do finally? Just left it there or did you contact anybody to write connector for IIS 6? If so, please let me know. Kiran - Original Message - From: Mark Schmeets [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, August 11, 2003 10:08 AM Subject: Re

Re: question marks appearing after deploy to production server

2003-08-14 Thread Mark Schmeets
Hans Wichman wrote: Hi, I have a strange problem, I wrote a servlet that retrieves some data from a database, which may contains characters such as ë. On my local tomcat 4.1.24 testserver the output shows correctly as in 'aërobe'. However if I deploy the application to one of our testservers,

Re: Tomcat 4.1x with IIS 6 on Windows server 2003

2003-08-11 Thread Mark Schmeets
Bala Kiran wrote: Yes. I did reboot the system. Did you try with IIS 6 on Windows Server 2003? Kiran - Original Message - From: vikas jain [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 11, 2003 8:44 AM Subject: Re: Tomcat 4.1x with IIS 6 on Windows server 2003 Did

RE: XML parser

2002-11-20 Thread Mark Schmeets
Definitely take a look at JDOM. It will allow you to access the data in a very familiar fashion. SAX is great when you need it, but for most things the implementations are too much. http://www.jdom.org Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent:

RE: tomcat 4.0.4 and oracle

2002-09-18 Thread Mark Schmeets
I have at times had to put classes12.jar, ocrs12.jar in the WEB-INF/lib directory. On one NT setup I also ended up putting the ocijdbc9.dll in there as well. Enough to make you wonder if there is a black art to this Mark -Original Message- From: Koes, Derrick [mailto:[EMAIL

RE: j_username in session cookie - where did it go?

2002-08-14 Thread Mark Schmeets
whoa, that seems like a very oversimplified answer. Some of us require security at the data level too. A solution like that makes Tomcat's authentication useless in that situation... Mark -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 13,

RE: j_username in session cookie - where did it go?

2002-08-14 Thread Mark Schmeets
is logged in and which roles this user has. That's the only thin that a application needs to show or not show any information. For what do you need a password on this level or j_username ? -Ursprüngliche Nachricht- Von: Mark Schmeets [mailto:[EMAIL PROTECTED]] Gesendet: Mittwoch, 14

RE: j_username in session cookie - where did it go?

2002-08-14 Thread Mark Schmeets
did it go? On Wed, 14 Aug 2002, Mark Schmeets wrote: Date: Wed, 14 Aug 2002 13:47:48 -0400 From: Mark Schmeets [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: RE: j_username in session cookie - where did it go? Well, I know

Unsatisfied link error with Oracle OCI on Solaris

2002-05-24 Thread Mark Schmeets
I have been having a problem using the Oracle OCI driver with Tomcat 4.x. This all seemed to work fine on 3.2.X When I switched I received an unsatisfied link error no ocijdbc9. On NT I am able to overcome this by moving the classes12.jar into WEB-INF/lib along with the ocijdbc9.dll. That works.