RE: JDK 1.3.0...

2001-07-17 Thread Everitt, Andrew

All olg JDKs are available on the Sun site, you just have to know where to
look, try going to:
http://java.sun.com/j2se/1.3.0/

Cheers,
Andi

Andrew Everitt
Xerox Mobile Solutions, Cambridge. UK 

 -Original Message-
 From: Dmitri Colebatch [mailto:[EMAIL PROTECTED]]
 Sent: 17 July 2001 14:05
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: Re: JDK 1.3.0...
 
 
 I have 1.3.0_02 for linux if you want - or anyone else for 
 that matter.
 
 [dim@dim dim]$ java -version
 java version 1.3.0_02
 Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0_02)
 Java HotSpot(TM) Client VM (build 1.3.0_02, mixed mode)
 [dim@dim dim]$ 
 
 cheesr
 dim
 
 On Tue, 17 Jul 2001, Adam Fowler wrote:
 
  Hey all,
  
  Sorry about sending this from a non-subscribed account - 
 I'm at work 8o)
  
  I know a few people were looking for Java 2 SDK version 1.3 
 as opposed to
  1.3.1. A friend of mine, Paul, has the Windows install at
  http://users.aber.ac.uk/pms/jdk/index.html if anyone wants 
 it. I'm still
  looking for the linux version to put up.
  
  Hope this helps,
  
  Adam.
  
  
  Adam Fowler
  Help Desk Live Project
  Information Services
  University of Wales, Aberystwyth
  E-mail: [EMAIL PROTECTED]
  
  
  
 



RE: c++ dll

2001-07-05 Thread Everitt, Andrew

It doesn't require code, in the arguments for the JVM add the -D parameter
e.g.

java -classpath [CLASSPATH] -Djava.library.path=[Path to DLL]
org.apache.tomcat.Tomcat [args]

Andi.

 -Original Message-
 From: Manish Bhatnagar [mailto:[EMAIL PROTECTED]]
 Sent: 05 July 2001 12:49
 To: [EMAIL PROTECTED]
 Subject: RE: c++ dll
 
 
 Can you mail the snippet of your code?
 
 -Original Message-
 From: Everitt, Andrew [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, July 05, 2001 4:26 PM
 To: '[EMAIL PROTECTED]'
 Subject: RE: c++ dll
 
 
 Arik,
 
 Try setting 'java.library.path' for the JVM that you are 
 running tomcat in
 to point to the directory containing the DLL.
 
 Andi.
 
 Andrew Everitt
 Xerox Mobile Solutions, Cambridge. UK 
 
  -Original Message-
  From: Arik Levin [mailto:[EMAIL PROTECTED]]
  Sent: 05 July 2001 12:16
  To: [EMAIL PROTECTED]
  Subject: c++ dll
  
  
  
  Hi.
  
  I have some c++ dll, which I use thru native java class
  at my servlet. (I call it like.. System.loadLibrary(dll name))
  
  When I use it at JRun env it works fine.
  
  I have Jboss-Tomcat env, and at this env It just
  wouldn't work. I have this Exception: UnsatisfiedLinkError.
  
  
  Please ,,, HELP 
  Thank's Arik 
  
 



RE: Virtual hosting with IIS

2001-07-03 Thread Everitt, Andrew

Markus,

Go in to IIS admin console and right click the computer icon, select
properties. In 'Master Properties' select 'WWW Service' and click the 'Edit
...' button this will bring up the default properties page for all virtual
server's on the computer - set the things you want set globally and you're
done.

Cheers,
Andi.

 -Original Message-
 From: Markus Strickler [mailto:[EMAIL PROTECTED]]
 Sent: 03 July 2001 10:53
 To: [EMAIL PROTECTED]
 Subject: Virtual hosting with IIS
 
 
 Hi!
 I have several IIS webserver instances running on different 
 ports on the
 same IP.
 Now I need to map the *.xml extension to Cocoon for all instances.
 Anybody an idea how to set this up?
 
 I'm using IIS5, Tomcat-3.2.2, JDK1.3
 
 Any help would be appreciated,
 
 -markus
 



RE: Virtual hosting with IIS

2001-07-03 Thread Everitt, Andrew

To get the mapping to happen you need to configure your
uriworkermap.properties file (in the tomcat 'conf' directory) to pickup xml
files:
#
# Simple worker configuration file
#

# Catch all XML files and pass to Tomcat
*.xml=ajp12

As I understand it this should cause all .xml files requested to IIS to have
the request passed to tomcat. You then need tomcat to pickup the xml files
and pass them thro' your servlet, you achieve this in web.xml using a
mapping.

Andi.

 -Original Message-
 From: Markus Strickler [mailto:[EMAIL PROTECTED]]
 Sent: 03 July 2001 12:31
 To: [EMAIL PROTECTED]
 Subject: Re: Virtual hosting with IIS
 
 
 Andi-
 
 actually which parameters to set, is the problem.
 For example I have two server instances with their doc roots at
 C:\server1 and c:\server2
 
 a) If I access a file from server1 like this:
 http://server:9000/index.xml
 I need the Cocoon servlet being invoked and the path 
 C:\server1\index.xml
 passed to it.
 b) If I access a file from server2 like this:
 http://server:9001/index.xml
 I need the servlet being invoked and the path 
 C:\server2\index.xml passed to
 it.
 
 The best solution would be if in case a) and b) different 
 servlet contexts
 could be invoked.
 
 Any idea how to accomplish this?
 
 Note that I have several dozens of web servers, so using a 
 separate JVM for
 each is ruled out.
 
 Thanks for any help
 
  -markus
 - Original Message -
 From: Everitt, Andrew [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, July 03, 2001 12:44 PM
 Subject: RE: Virtual hosting with IIS
 
 
  Markus,
 
  Go in to IIS admin console and right click the computer icon, select
  properties. In 'Master Properties' select 'WWW Service' and 
 click the
 'Edit
  ...' button this will bring up the default properties page 
 for all virtual
  server's on the computer - set the things you want set 
 globally and you're
  done.
 
  Cheers,
  Andi.
 
   -Original Message-
   From: Markus Strickler [mailto:[EMAIL PROTECTED]]
   Sent: 03 July 2001 10:53
   To: [EMAIL PROTECTED]
   Subject: Virtual hosting with IIS
  
  
   Hi!
   I have several IIS webserver instances running on different
   ports on the
   same IP.
   Now I need to map the *.xml extension to Cocoon for all instances.
   Anybody an idea how to set this up?
  
   I'm using IIS5, Tomcat-3.2.2, JDK1.3
  
   Any help would be appreciated,
  
   -markus
  
 
 
 



RE: Windows 2000 Professional Isapi Redirection Problrm

2001-04-09 Thread Everitt, Andrew

Hi Brian,

Check your uriworkermap.properties file. You need to have an entry for each
URI that you want to be trapped by isapi_redirect and forwarded to Tomcat.

I have Tomcat/Win2K/IIS combination working here so it is possible!

Andi.

 -Original Message-
 From: Brian Rook [mailto:[EMAIL PROTECTED]]
 Sent: 09 April 2001 16:21
 To: [EMAIL PROTECTED]
 Subject: Windows 2000 Professional Isapi Redirection Problrm
 
 
 I have been having trouble getting the isapi_redirect.dll 
 filter to operate 
 properly on windows 2000 professional PWS.  I have verified 
 that jakarta is 
 properly installed (http://localhost:8080 comes up fine)  
 Additionally, I 
 have followed the install docs quite thoroughly.
 
 I can generate an isapi.log file.  I can hit the examples 
 page using port 
 8080 but cannot hit it using port 80, I receive a 404.  Also, 
 in my www log 
 files I will not get an entry for the redirection unless I 
 use my IP address 
 (not localhost), at which point I generate a 404.
 
 I have attached my isapi log file and my www log file for you 
 to look at.
 
 If you need additional information please contact me.
 
 Thank you,
 
 brian
 _
 Get your FREE download of MSN Explorer at http://explorer.msn.com
 



RE: Tomcat and JDK 1.3.x

2000-11-01 Thread Everitt, Andrew

I am using Tomcat with JDK1.3 on NT 4 and Linux (RH6.2) and all seems to
work fine.
 
Andi.

Andrew Everitt
Xerox Mobile Solutions, Cambridge. UK 

-Original Message-
From: Andreas Ljunggren [mailto:[EMAIL PROTECTED]]
Sent: 01 November 2000 11:54
To: [EMAIL PROTECTED]
Subject: Tomcat and JDK 1.3.x


Hello folks,
I am considering using Tomcat as a servlet engine,
but what are the general community thinking about using
Tomcat with JDK 1.3.x (for Linux), any experience would 
be mush appreciated.

Regards
Andreas


* * * * * * * * * * * * * * * * * * * * * * * * * * *   __  
* Andreas Ljunggren |Any comment in this letter are|*  / /\
* Lagergrensgata 8  |my own, and in no way my |* / /  \
* 651 15 Karlstad   |employers.   |*/ / /\ \
* SWEDEN www.ljunggren.net
http://www.ljunggren.net/   *   / / /\ \ \
* +46 (0)54 29 46 57   *  / /_/__\ \ \
* +46 (0)70 644 6512  'Keep on Trekking'* /\ \ \
* * * * * * * * * * * * * * * * * * * * * * * * * * * \___\/