This is not a valid address at SNL Securities (http://www.snl.com). Please remove him/her from your mailing list or address book. Your message reads: Received: from snlexch.snl.com (unverified [10.0.1.9]) by mail.snl.com (Rockliffe SMTPRA 4.5.4) with ESMTP id <[EMAIL PROTECTED]> for <[EMAIL PROTECTED]>; Thu, 22 Feb 2001 14:51:30 -0500 Received: by SNLEXCH with Internet Mail Service (5.5.2653.19) id <F3WAVKKS>; Thu, 22 Feb 2001 14:49:10 -0500 Received: from mail.snl.com (SNLDMZBDC [10.0.0.7]) by snlexch.snl.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id F3WAVKKR; Thu, 22 Feb 2001 14:49:08 -0500 Received: from apache.org (unverified [64.208.42.41]) by mail.snl.com (Rockliffe SMTPRA 4.5.4) with SMTP id <[EMAIL PROTECTED]> for <[EMAIL PROTECTED]>; Thu, 22 Feb 2001 14:51:27 -0500 Received: (qmail 34611 invoked by uid 500); 22 Feb 2001 18:40:55 -0000 Received: (qmail 34506 invoked from network); 22 Feb 2001 18:40:47 -0000 Received: from mail.datachannel.com (HELO belsmtp1.datachannel.com) (12.104.65.69) by h31.sny.collab.net with SMTP; 22 Feb 2001 18:40:47 -0000 Received: by belsmtp1.datachannel.com with Internet Mail Service (5.5.2653.19) id <1KBC9ADF>; Thu, 22 Feb 2001 10:40:17 -0800 Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm Precedence: bulk Reply-To: [EMAIL PROTECTED] list-help: <mailto:[EMAIL PROTECTED]> list-unsubscribe: <mailto:[EMAIL PROTECTED]> list-post: <mailto:[EMAIL PROTECTED]> Delivered-To: mailing list [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> From: Bryan Lipscy <[EMAIL PROTECTED]> To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Subject: RE: IIS5 - Missing something very simple Date: Thu, 22 Feb 2001 10:40:22 -0800 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: multipart/alternative; boundary="----_=_NextPart_001_01C09CFE.E9D8F530" X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N ------_=_NextPart_001_01C09CFE.E9D8F530 Content-Type: text/plain; charset="iso-8859-1" Got it! Thank you to Randy & Etienne for their help. Causes: 1) I setup a new web site as opposed to creating a virtual directory. In the virtual directory I: disabled Windows Integrated Authentication enabled anonymous access using the TOMCAT account. NOTE: Do not use the <machine_name>\TOMCAT account. Remove the <machine_name> and enable IIS controls the password. IIS sees <machine_name>\TOMCAT as a non-local account and it cannot control the password. 2) The projsp files furnished by Wrox publishing are hosed up. These files are referenced by "Professional JSP" [ISBN: 1-861003-62-5]. Removed them and Tomcat runs fine. 3) Had to make changes in jni_workers.properties, jni_server.xml, wrapper.properties, workers.properties to reflect the correct values for JAVA_HOME and TOMCAT_HOME. Bryan -----Original Message----- From: Randy Layman [ mailto:[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> ] Sent: Thursday, February 22, 2001 9:25 AM To: [EMAIL PROTECTED] Subject: RE: IIS5 - Missing something very simple Ok, lets take this one step at a time.... First, in your first message, which you is included at the very bottom of this message, you indicate that IIS (the Microsoft Web Server) is running on port 8080. According to your error message, one of the ports Tomcat is trying to use is already in use when Tomcat starts up, most likely 8080. Therefore, http://localhost:8080 <http://localhost:8080> is talking to IIS, not Tomcat. Now, you are getting 403 errors, which are access denined. Since you are running IIS on port 8080 (see first paragraph), you will need to look at you IIS configuration and turn off the directory security there, or give it a Windows NT username and password (and maybe domain, depending upon your configuration). This is a guess, but what you really want is IIS running on port 80 and some directory (like /projsp) from IIS to redirect to Tomcat. To do this, you need to follow the IIS-HowTo and then change the uriworkermap.properties file to map /projsp to Tomcat. I'm not really sure what your projsp webapp is, but it would seem that its trying to load something at startup that isn't there. Is the projsp.jar file really the WAR file and it should be expanded, or is it your set of classes that should be in the WEB-INF/lib directory? Was this application developed on another JSP engine and therefore might be incompatible with Tomcat? Randy -----Original Message----- From: Bryan Lipscy [ mailto:[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> ] Sent: Thursday, February 22, 2001 12:39 PM To: '[EMAIL PROTECTED]' Subject: RE: IIS5 - Missing something very simple Directory security is set for anonymous using the TOMCAT account. Integrated windows authentication is disabled. tomcat.properties: security.selfservlet=false tomcat-users.xml: <tomcat-users> <user name="tomcat" password="tomcat" roles="tomcat" /> <user name="role1" password="tomcat" roles="role1" /> <user name="both" password="tomcat" roles="tomcat,role1" /> </tomcat-users> Same 403 error regardless of what port IIS is set on. Tomcat is throwing this exception at startup: Including all jars in D:\app\tomcat\lib in your CLASSPATH. Using CLASSPATH: D:\app\tomcat\classes;D:\app\tomcat\lib\ant.jar;D:\app\tomcat\lib\jasper .jar ;D:\app\tomcat\lib\jaxp.jar;D:\app\tomcat\lib\parser.jar;D:\app\tomcat\l ib\s ervlet.jar;D:\app\tomcat\lib\webserver.jar;D:\app\tomcat\lib\projsp.jar; D:\a pp\tomcat\classes;D:\app\tomcat\lib\ant.jar;D:\app\tomcat\lib\jasper.jar ;D:\ app\tomcat\lib\jaxp.jar;D:\app\tomcat\lib\parser.jar;D:\app\tomcat\lib\s ervl et.jar;D:\app\tomcat\lib\webserver.jar;D:\app\java\j2sdk_1.3\lib\tools.j ar;D :\app\java\j2sdk_1.3\lib\tools.jar Startup command = "D:\app\java\j2sdk_1.3\bin\java" -Dtomcat.home="D:\app\tomcat" org.apache.tomcat.startup.Tomcat Starting Tomcat in new window 2001-02-22 09:33:57 - ContextManager: Adding context Ctx( /examples ) 2001-02-22 09:33:57 - ContextManager: Adding context Ctx( /admin ) Starting tomcat. Check logs/tomcat.log for error messages 2001-02-22 09:33:57 - ContextManager: Adding context Ctx( ) 2001-02-22 09:33:57 - ContextManager: Adding context Ctx( /test ) 2001-02-22 09:33:57 - ContextManager: Adding context Ctx( /projsp.jar ) 2001-02-22 09:33:57 - ContextManager: Adding context Ctx( /projsp ) 2001-02-22 09:33:57 - ContextManager: Adding context Ctx( /Readme.txt ) 2001-02-22 09:33:57 - ContextManager: Adding context Ctx( /isapi_redirect.dll ) D:\app\tomcat\webapps\projsp\ch11\init.conf (The system cannot find the path specified) --> 20010222.093358.397: error: main: javax.servlet.UnavailableException: The directory D:\app\tomcat\webapps\projsp\ch14\photos specified in the image.directory initialization parameter does not exist. at com.magiccookie.photodb.PhotoServlet.init(PhotoServlet.java:153) at org.apache.tomcat.core.ServletWrapper.doInit(ServletWrapper.java:317) at org.apache.tomcat.core.Handler.init(Handler.java:215) at org.apache.tomcat.core.ServletWrapper.init(ServletWrapper.java:296) at org.apache.tomcat.context.LoadOnStartupInterceptor.contextInit(LoadOnSta rtup Interceptor.java:130) at org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:49 1) at org.apache.tomcat.core.ContextManager.init(ContextManager.java:453) at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195) at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235) cannot load servlet name: PhotoServlet FATAL:java.net.BindException: Address in use: JVM_Bind java.net.BindException: Address in use: JVM_Bind at java.net.PlainSocketImpl.socketBind(Native Method) at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:397) at java.net.ServerSocket.<init>(ServerSocket.java:170) at java.net.ServerSocket.<init>(ServerSocket.java:121) at org.apache.tomcat.net.DefaultServerSocketFactory.createSocket(DefaultSer verS ocketFactory.java:97) at org.apache.tomcat.service.PoolTcpEndpoint.startEndpoint(PoolTcpEndpoint. java :239) at org.apache.tomcat.service.PoolTcpConnector.start(PoolTcpConnector.java:1 88) at org.apache.tomcat.core.ContextManager.start(ContextManager.java:527) at org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:202) at org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235) Press any key to continue . . . D:\app\tomcat\bin> I do not see D:\app\tomcat\webapps\projsp\ch14\photos in the projsp.jar file although there are sub-directories for photos. index.jsp resides in photos\grand-teton. -----Original Message----- From: Randy Layman [ mailto:[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> ] Sent: Thursday, February 22, 2001 8:13 AM To: [EMAIL PROTECTED] Subject: RE: IIS5 - Missing something very simple Since you have IIS running on port 8080, I would be willing to be that you have turned on directory security for the directory that you are requesting. Either turn it off, or use a username/password that IIS knows about (i.e. machine logins) Randy -----Original Message----- From: Etienne Baert (SPS Europe) [ mailto:[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> ] Sent: Thursday, February 22, 2001 11:43 AM To: [EMAIL PROTECTED] Subject: RE: IIS5 - Missing something very simple Hi Bryan, when specifying the 8080 port, you access your pages directly via tomcat, you thus bypass IIS in that case. You maybe configured tomcat with security rules (see tomcat.properties and tomcat-users.xml) If you would like to access tomcat through IIS, you need to use URL without specifying the tomcat port ( http://localhost/ <http://localhost/> for example). Hope this helps, Etienne -----Original Message----- From: Bryan Lipscy [ mailto:[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> ] Sent: jeudi 22 fevrier 2001 17:35 To: '[EMAIL PROTECTED]' Subject: IIS5 - Missing something very simple Good morning to all, Quick config rundown: [Root partition] Windows 2000 Server (no sp1) IIS5 (Ports 80, 81, 8080) [Seperate partition] Apache 1.3.14 r2 (Port 90) JDK 1.3 J2EE 1.3 Tomcat 3.2.1 I know that I am missing something very simple. When I call up http://localhost:8080 <http://localhost:8080> I am getting 403'd (You are not authorized to view this page). Checked & re-checked my registry settings. Checked the config files. Sharing and/or web sharing is not enabled. IIS5 is set up with a jakarta web root pointed to the folder with the isapi_redirect.dll. The isapi_redirect.dll is installed in the ISAPI filters and has a green arrow. Anyone have any idea what it is that I am missing? Bryan --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED] ------_=_NextPart_001_01C09CFE.E9D8F530 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <HTML> <HEAD> <META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version = 5.5.2653.12"> <TITLE>RE: IIS5 - Missing something very simple</TITLE> </HEAD> <BODY> <P><FONT SIZE=3D2>Got it!</FONT> <BR><FONT SIZE=3D2>Thank you to Randy & Etienne for their = help.</FONT> </P> <P><FONT SIZE=3D2>Causes:</FONT> <BR><FONT SIZE=3D2>1) I setup a new web = site as opposed to creating a virtual directory.</FONT> <BR> <FONT SIZE=3D2>In the = virtual directory I:</FONT> <BR> = <FONT SIZE=3D2>disabled = Windows Integrated Authentication</FONT> <BR> = <FONT SIZE=3D2>enabled = anonymous access using the TOMCAT account. </FONT> <BR> = = <FONT SIZE=3D2>NOTE: Do not = use the <machine_name>\TOMCAT account. </FONT> <BR> = = = <FONT SIZE=3D2>Remove the = <machine_name> and enable IIS controls the password. = </FONT> <BR> = = = <FONT SIZE=3D2>IIS sees = <machine_name>\TOMCAT as a non-local account and it cannot = control the password.</FONT></P> <P> = =20 <BR><FONT SIZE=3D2>2) The projsp files = furnished by Wrox publishing are hosed up. These files are = referenced by "Professional JSP" [ISBN: 1-861003-62-5]. = Removed them and Tomcat runs fine.</FONT></P> <P><FONT SIZE=3D2>3) Had to make changes = in jni_workers.properties, jni_server.xml, wrapper.properties, = workers.properties to reflect the correct values for JAVA_HOME and = TOMCAT_HOME.</FONT></P> <BR> <P><FONT SIZE=3D2>Bryan</FONT> </P> <BR> <P><FONT SIZE=3D2>-----Original Message-----</FONT> <BR><FONT SIZE=3D2>From: Randy Layman [<A = HREF=3D"mailto:[EMAIL PROTECTED]">mailto:randy.layman@aswethink= .com</A>]</FONT> <BR><FONT SIZE=3D2>Sent: Thursday, February 22, 2001 9:25 AM</FONT> <BR><FONT SIZE=3D2>To: [EMAIL PROTECTED]</FONT> <BR><FONT SIZE=3D2>Subject: RE: IIS5 - Missing something very = simple</FONT> </P> <BR> <BR> <P> <FONT SIZE=3D2>Ok, lets = take this one step at a time....</FONT> </P> <P> <FONT SIZE=3D2>First, in = your first message, which you is included at the very</FONT> <BR><FONT SIZE=3D2>bottom of this message, you indicate that IIS (the = Microsoft Web Server) is</FONT> <BR><FONT SIZE=3D2>running on port 8080. According to your error = message, one of the ports</FONT> <BR><FONT SIZE=3D2>Tomcat is trying to use is already in use when = Tomcat starts up, most likely</FONT> <BR><FONT SIZE=3D2>8080. Therefore, <A = HREF=3D"http://localhost:8080" = TARGET=3D"_blank">http://localhost:8080</A> is talking to IIS, not = Tomcat.</FONT> </P> <P> <FONT SIZE=3D2>Now, you = are getting 403 errors, which are access denined. Since</FONT> <BR><FONT SIZE=3D2>you are running IIS on port 8080 (see first = paragraph), you will need to</FONT> <BR><FONT SIZE=3D2>look at you IIS configuration and turn off the = directory security there, or</FONT> <BR><FONT SIZE=3D2>give it a Windows NT username and password (and = maybe domain, depending upon</FONT> <BR><FONT SIZE=3D2>your configuration).</FONT> </P> <P> <FONT SIZE=3D2>This is a = guess, but what you really want is IIS running on port 80</FONT> <BR><FONT SIZE=3D2>and some directory (like /projsp) from IIS to = redirect to Tomcat. To do</FONT> <BR><FONT SIZE=3D2>this, you need to follow the IIS-HowTo and then = change the</FONT> <BR><FONT SIZE=3D2>uriworkermap.properties file to map /projsp to = Tomcat.</FONT> </P> <P> <FONT SIZE=3D2>I'm not = really sure what your projsp webapp is, but it would seem</FONT> <BR><FONT SIZE=3D2>that its trying to load something at startup that = isn't there. Is the</FONT> <BR><FONT SIZE=3D2>projsp.jar file really the WAR file and it should be = expanded, or is it your</FONT> <BR><FONT SIZE=3D2>set of classes that should be in the WEB-INF/lib = directory? Was this</FONT> <BR><FONT SIZE=3D2>application developed on another JSP engine and = therefore might be</FONT> <BR><FONT SIZE=3D2>incompatible with Tomcat?</FONT> </P> <P> <FONT = SIZE=3D2>Randy</FONT> </P> <P><FONT SIZE=3D2>-----Original Message-----</FONT> <BR><FONT SIZE=3D2>From: Bryan Lipscy [<A = HREF=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>= ]</FONT> <BR><FONT SIZE=3D2>Sent: Thursday, February 22, 2001 12:39 PM</FONT> <BR><FONT SIZE=3D2>To: '[EMAIL PROTECTED]'</FONT> <BR><FONT SIZE=3D2>Subject: RE: IIS5 - Missing something very = simple</FONT> </P> <BR> <P><FONT SIZE=3D2>Directory security is set for anonymous using the = TOMCAT account.</FONT> <BR><FONT SIZE=3D2>Integrated windows authentication is disabled. = </FONT> <BR><FONT SIZE=3D2>tomcat.properties: </FONT> <BR><FONT SIZE=3D2>security.selfservlet=3Dfalse </FONT> <BR><FONT SIZE=3D2>tomcat-users.xml: </FONT> <BR><FONT SIZE=3D2><tomcat-users> </FONT> <BR><FONT SIZE=3D2> <user name=3D"tomcat" = password=3D"tomcat" roles=3D"tomcat" /> </FONT> <BR><FONT SIZE=3D2> <user name=3D"role1" = password=3D"tomcat" roles=3D"role1" /> = </FONT> <BR><FONT SIZE=3D2> <user name=3D"both" = password=3D"tomcat" roles=3D"tomcat,role1" /> = </FONT> <BR><FONT SIZE=3D2></tomcat-users> </FONT> <BR><FONT SIZE=3D2>Same 403 error regardless of what port IIS is set = on. </FONT> <BR><FONT SIZE=3D2>Tomcat is throwing this exception at startup: = </FONT> <BR><FONT SIZE=3D2>Including all jars in D:\app\tomcat\lib in your = CLASSPATH. </FONT> <BR><FONT SIZE=3D2>Using CLASSPATH:</FONT> <BR><FONT = SIZE=3D2>D:\app\tomcat\classes;D:\app\tomcat\lib\ant.jar;D:\app\tomcat\l= ib\jasper.jar</FONT> <BR><FONT = SIZE=3D2>;D:\app\tomcat\lib\jaxp.jar;D:\app\tomcat\lib\parser.jar;D:\app= \tomcat\lib\s</FONT> <BR><FONT = SIZE=3D2>ervlet.jar;D:\app\tomcat\lib\webserver.jar;D:\app\tomcat\lib\pr= ojsp.jar;D:\a</FONT> <BR><FONT = SIZE=3D2>pp\tomcat\classes;D:\app\tomcat\lib\ant.jar;D:\app\tomcat\lib\j= asper.jar;D:\</FONT> <BR><FONT = SIZE=3D2>app\tomcat\lib\jaxp.jar;D:\app\tomcat\lib\parser.jar;D:\app\tom= cat\lib\servl</FONT> <BR><FONT = SIZE=3D2>et.jar;D:\app\tomcat\lib\webserver.jar;D:\app\java\j2sdk_1.3\li= b\tools.jar;D</FONT> <BR><FONT SIZE=3D2>:\app\java\j2sdk_1.3\lib\tools.jar</FONT> <BR><FONT SIZE=3D2>Startup command =3D = "D:\app\java\j2sdk_1.3\bin\java"</FONT> <BR><FONT SIZE=3D2>-Dtomcat.home=3D"D:\app\tomcat" = org.apache.tomcat.startup.Tomcat </FONT> <BR><FONT SIZE=3D2>Starting Tomcat in new window </FONT> <BR><FONT SIZE=3D2>2001-02-22 09:33:57 - ContextManager: Adding context = Ctx( /examples ) </FONT> <BR><FONT SIZE=3D2>2001-02-22 09:33:57 - ContextManager: Adding context = Ctx( /admin ) </FONT> <BR><FONT SIZE=3D2>Starting tomcat. Check logs/tomcat.log for error = messages </FONT> <BR><FONT SIZE=3D2>2001-02-22 09:33:57 - ContextManager: Adding context = Ctx( ) </FONT> <BR><FONT SIZE=3D2>2001-02-22 09:33:57 - ContextManager: Adding context = Ctx( /test ) </FONT> <BR><FONT SIZE=3D2>2001-02-22 09:33:57 - ContextManager: Adding context = Ctx( /projsp.jar ) </FONT> <BR><FONT SIZE=3D2>2001-02-22 09:33:57 - ContextManager: Adding context = Ctx( /projsp ) </FONT> <BR><FONT SIZE=3D2>2001-02-22 09:33:57 - ContextManager: Adding context = Ctx( /Readme.txt ) </FONT> <BR><FONT SIZE=3D2>2001-02-22 09:33:57 - ContextManager: Adding context = Ctx(</FONT> <BR><FONT SIZE=3D2>/isapi_redirect.dll ) </FONT> <BR><FONT SIZE=3D2>D:\app\tomcat\webapps\projsp\ch11\init.conf (The = system cannot find the path</FONT> <BR><FONT SIZE=3D2>specified) </FONT> <BR><FONT SIZE=3D2>--> 20010222.093358.397: error: main: = javax.servlet.UnavailableException:</FONT> <BR><FONT SIZE=3D2>The directory = D:\app\tomcat\webapps\projsp\ch14\photos specified in the</FONT> <BR><FONT SIZE=3D2>image.directory initialization parameter does not = exist.</FONT> <BR><FONT SIZE=3D2> at = com.magiccookie.photodb.PhotoServlet.init(PhotoServlet.java:153) = </FONT> <BR><FONT SIZE=3D2> at</FONT> <BR><FONT = SIZE=3D2>org.apache.tomcat.core.ServletWrapper.doInit(ServletWrapper.jav= a:317) </FONT> <BR><FONT SIZE=3D2> at = org.apache.tomcat.core.Handler.init(Handler.java:215) </FONT> <BR><FONT SIZE=3D2> at</FONT> <BR><FONT = SIZE=3D2>org.apache.tomcat.core.ServletWrapper.init(ServletWrapper.java:= 296) </FONT> <BR><FONT SIZE=3D2> at</FONT> <BR><FONT = SIZE=3D2>org.apache.tomcat.context.LoadOnStartupInterceptor.contextInit(= LoadOnStartup</FONT> <BR><FONT SIZE=3D2>Interceptor.java:130) </FONT> <BR><FONT SIZE=3D2> at</FONT> <BR><FONT = SIZE=3D2>org.apache.tomcat.core.ContextManager.initContext(ContextManage= r.java:491) </FONT> <BR><FONT SIZE=3D2> at</FONT> <BR><FONT = SIZE=3D2>org.apache.tomcat.core.ContextManager.init(ContextManager.java:= 453) </FONT> <BR><FONT SIZE=3D2> at = org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:195) </FONT> <BR><FONT SIZE=3D2> at = org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235) </FONT> <BR><FONT SIZE=3D2>cannot load servlet name: PhotoServlet </FONT> <BR><FONT SIZE=3D2>FATAL:java.net.BindException: Address in use: = JVM_Bind </FONT> <BR><FONT SIZE=3D2>java.net.BindException: Address in use: JVM_Bind = </FONT> <BR><FONT SIZE=3D2> at = java.net.PlainSocketImpl.socketBind(Native Method) </FONT> <BR><FONT SIZE=3D2> at = java.net.PlainSocketImpl.bind(PlainSocketImpl.java:397) </FONT> <BR><FONT SIZE=3D2> at = java.net.ServerSocket.<init>(ServerSocket.java:170) </FONT> <BR><FONT SIZE=3D2> at = java.net.ServerSocket.<init>(ServerSocket.java:121) </FONT> <BR><FONT SIZE=3D2> at</FONT> <BR><FONT = SIZE=3D2>org.apache.tomcat.net.DefaultServerSocketFactory.createSocket(D= efaultServerS</FONT> <BR><FONT SIZE=3D2>ocketFactory.java:97) </FONT> <BR><FONT SIZE=3D2> at</FONT> <BR><FONT = SIZE=3D2>org.apache.tomcat.service.PoolTcpEndpoint.startEndpoint(PoolTcp= Endpoint.java</FONT> <BR><FONT SIZE=3D2>:239) </FONT> <BR><FONT SIZE=3D2> at</FONT> <BR><FONT = SIZE=3D2>org.apache.tomcat.service.PoolTcpConnector.start(PoolTcpConnect= or.java:188) </FONT> <BR><FONT SIZE=3D2> at</FONT> <BR><FONT = SIZE=3D2>org.apache.tomcat.core.ContextManager.start(ContextManager.java= :527) </FONT> <BR><FONT SIZE=3D2> at = org.apache.tomcat.startup.Tomcat.execute(Tomcat.java:202) </FONT> <BR><FONT SIZE=3D2> at = org.apache.tomcat.startup.Tomcat.main(Tomcat.java:235) </FONT> <BR><FONT SIZE=3D2>Press any key to continue . . . </FONT> <BR><FONT SIZE=3D2>D:\app\tomcat\bin> </FONT> <BR><FONT SIZE=3D2> </FONT> <BR><FONT SIZE=3D2>I do not see = D:\app\tomcat\webapps\projsp\ch14\photos in the projsp.jar file</FONT> <BR><FONT SIZE=3D2>although there are sub-directories for photos. = index.jsp resides in</FONT> <BR><FONT SIZE=3D2>photos\grand-teton.</FONT> </P> <BR> <BR> <BR> <P><FONT SIZE=3D2>-----Original Message----- </FONT> <BR><FONT SIZE=3D2>From: Randy Layman [<A = HREF=3D"mailto:[EMAIL PROTECTED]">mailto:randy.layman@aswethink= .com</A>] </FONT> <BR><FONT SIZE=3D2>Sent: Thursday, February 22, 2001 8:13 AM </FONT> <BR><FONT SIZE=3D2>To: [EMAIL PROTECTED] </FONT> <BR><FONT SIZE=3D2>Subject: RE: IIS5 - Missing something very simple = </FONT> </P> <BR> <BR> <P><FONT SIZE=3D2> Since you = have IIS running on port 8080, I would be willing to be </FONT> <BR><FONT SIZE=3D2>that you have turned on directory security for the = directory that you are </FONT> <BR><FONT SIZE=3D2>requesting. Either turn it off, or use a = username/password that IIS knows </FONT> <BR><FONT SIZE=3D2>about (i.e. machine logins) </FONT> </P> <BR> <P><FONT SIZE=3D2> Randy = </FONT> <BR><FONT SIZE=3D2>-----Original Message----- </FONT> <BR><FONT SIZE=3D2>From: Etienne Baert (SPS Europe) [<A = HREF=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>] </FONT> <BR><FONT SIZE=3D2>Sent: Thursday, February 22, 2001 11:43 AM </FONT> <BR><FONT SIZE=3D2>To: [EMAIL PROTECTED] </FONT> <BR><FONT SIZE=3D2>Subject: RE: IIS5 - Missing something very simple = </FONT> </P> <BR> <P><FONT SIZE=3D2>Hi Bryan, </FONT> <BR><FONT SIZE=3D2> </FONT> <BR><FONT SIZE=3D2>when specifying the 8080 port, you access your pages = directly via </FONT> <BR><FONT SIZE=3D2>tomcat, you thus bypass IIS in that case. </FONT> <BR><FONT SIZE=3D2>You maybe configured tomcat with security rules (see = tomcat.properties </FONT> <BR><FONT SIZE=3D2>and tomcat-users.xml) </FONT> <BR><FONT SIZE=3D2> </FONT> <BR><FONT SIZE=3D2>If you would like to access tomcat through IIS, you = need to use </FONT> <BR><FONT SIZE=3D2>URL without specifying the tomcat port (<A = HREF=3D"http://localhost/" TARGET=3D"_blank">http://localhost/</A> for = example). </FONT> <BR><FONT SIZE=3D2> </FONT> <BR><FONT SIZE=3D2>Hope this helps, </FONT> <BR><FONT SIZE=3D2>Etienne </FONT> <BR><FONT SIZE=3D2>-----Original Message----- </FONT> <BR><FONT SIZE=3D2>From: Bryan Lipscy [<A = HREF=3D"mailto:[EMAIL PROTECTED]">mailto:[EMAIL PROTECTED]</A>= ] </FONT> <BR><FONT SIZE=3D2>Sent: jeudi 22 f=E9vrier 2001 17:35 </FONT> <BR><FONT SIZE=3D2>To: '[EMAIL PROTECTED]' </FONT> <BR><FONT SIZE=3D2>Subject: IIS5 - Missing something very simple = </FONT> </P> <BR> <P><FONT SIZE=3D2>Good morning to all, </FONT> <BR><FONT SIZE=3D2>Quick config rundown: </FONT> <BR><FONT SIZE=3D2>[Root partition] </FONT> <BR><FONT SIZE=3D2> Windows = 2000 Server (no sp1) </FONT> <BR><FONT SIZE=3D2> IIS5 = (Ports 80, 81, 8080) </FONT> <BR><FONT SIZE=3D2>[Seperate partition] </FONT> <BR><FONT SIZE=3D2> Apache = 1.3.14 r2 (Port 90) </FONT> <BR><FONT SIZE=3D2> JDK 1.3 = </FONT> <BR><FONT SIZE=3D2> J2EE 1.3 = </FONT> <BR><FONT SIZE=3D2> Tomcat = 3.2.1 </FONT> </P> <BR> <P><FONT SIZE=3D2>I know that I am missing something very simple. = When I call up </FONT> <BR><FONT SIZE=3D2><A HREF=3D"http://localhost:8080" = TARGET=3D"_blank">http://localhost:8080</A> I am getting 403'd (You are = not authorized to view </FONT> <BR><FONT SIZE=3D2>this page). </FONT> <BR><FONT SIZE=3D2>Checked & re-checked my registry settings. = </FONT> <BR><FONT SIZE=3D2>Checked the config files. </FONT> <BR><FONT SIZE=3D2>Sharing and/or web sharing is not enabled. = </FONT> <BR><FONT SIZE=3D2>IIS5 is set up with a jakarta web root pointed to = the folder with the </FONT> <BR><FONT SIZE=3D2>isapi_redirect.dll. </FONT> <BR><FONT SIZE=3D2>The isapi_redirect.dll is installed in the ISAPI = filters and has a green </FONT> <BR><FONT SIZE=3D2>arrow. </FONT> <BR><FONT SIZE=3D2>Anyone have any idea what it is that I am missing? = </FONT> <BR><FONT SIZE=3D2>Bryan </FONT> <BR><FONT = SIZE=3D2>---------------------------------------------------------------= ------ </FONT> <BR><FONT SIZE=3D2>To unsubscribe, e-mail: = [EMAIL PROTECTED] </FONT> <BR><FONT SIZE=3D2>For additional commands, email: = [EMAIL PROTECTED] </FONT> </P> <P><FONT = SIZE=3D2>---------------------------------------------------------------= ------</FONT> <BR><FONT SIZE=3D2>To unsubscribe, e-mail: = [EMAIL PROTECTED]</FONT> <BR><FONT SIZE=3D2>For additional commands, email: = [EMAIL PROTECTED]</FONT> </P> </BODY> </HTML> ------_=_NextPart_001_01C09CFE.E9D8F530-- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]
