DO NOT REPLY [Bug 45173] Apache installation in Windows Vista Home Premium is failing
https://issues.apache.org/bugzilla/show_bug.cgi?id=45173 Sudipto Chakraborty <[EMAIL PROTECTED]> changed: What|Removed |Added Severity|major |blocker -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45178] New: mod_jk not working with Java CIFS NTLM filter
https://issues.apache.org/bugzilla/show_bug.cgi?id=45178 Summary: mod_jk not working with Java CIFS NTLM filter Product: Tomcat 5 Version: 5.0.28 Platform: PC OS/Version: Windows XP Status: NEW Severity: major Priority: P2 Component: Native:JK AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] Created an attachment (id=22107) --> (https://issues.apache.org/bugzilla/attachment.cgi?id=22107) httpd file attached. We are have configured apache web server as load balancer using mod_jk 1.2.26 over two tomcat 5.0.28 nodes. We have Java CIFS NTLM filter in our web application to negotiate the user credentials for authenticating user. But, negotiation is not successful, we are receiving 401 / 500 status code. we tried setting KeepAlive On but doesn't seem to work. Authentication works well when we use mod_proxy for load balancing. Please can you assist? -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45179] New: Tomcat does not answer nor send any information in catalina.log
https://issues.apache.org/bugzilla/show_bug.cgi?id=45179 Summary: Tomcat does not answer nor send any information in catalina.log Product: Tomcat 5 Version: 5.5.20 Platform: PC OS/Version: Windows Vista Status: NEW Severity: critical Priority: P2 Component: Catalina AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] calls to ${web_app_path}/jsp/sample.jsp or ${web_app_path}/jsp/sample.html does not return anything , the request finally ends in a time out. catalina.out does not either log anything Tests were done with : in a browser : ${web_app_path} http://.../webapp/ on local console : ${web_app_path} = wget http://localhost:../ server.xml is -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45179] Tomcat does not answer nor send any information in catalina.log
https://issues.apache.org/bugzilla/show_bug.cgi?id=45179 Mark Thomas <[EMAIL PROTECTED]> changed: What|Removed |Added Status|NEW |RESOLVED Resolution||INVALID --- Comment #1 from Mark Thomas <[EMAIL PROTECTED]> 2008-06-10 09:19:33 PST --- This looks like a configuration issue. Please use the users list to debug. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45173] Apache installation in Windows Vista Home Premium is failing
https://issues.apache.org/bugzilla/show_bug.cgi?id=45173 Mark Thomas <[EMAIL PROTECTED]> changed: What|Removed |Added Status|NEW |RESOLVED Resolution||INVALID --- Comment #1 from Mark Thomas <[EMAIL PROTECTED]> 2008-06-10 09:21:04 PST --- It looks like the user you are installing / running Tomcat with a user that does not have the necessary permissions. Please use the users list to debug this issue. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45179] Tomcat does not answer nor send any information in catalina.log
https://issues.apache.org/bugzilla/show_bug.cgi?id=45179 --- Comment #2 from Olivier <[EMAIL PROTECTED]> 2008-06-10 10:03:31 PST --- Tank you for your advice, could you provide a link to explain the "user list to debug" ? -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r666232 - /tomcat/trunk/java/org/apache/juli/FileHandler.java
Author: fhanik Date: Tue Jun 10 10:43:28 2008 New Revision: 666232 URL: http://svn.apache.org/viewvc?rev=666232&view=rev Log: prevent NPE during shutdown where the logger has been shutdown and delayed resources still trying to log java.lang.NullPointerException at org.apache.juli.FileHandler.publish(FileHandler.java:136) Modified: tomcat/trunk/java/org/apache/juli/FileHandler.java Modified: tomcat/trunk/java/org/apache/juli/FileHandler.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/juli/FileHandler.java?rev=666232&r1=666231&r2=666232&view=diff == --- tomcat/trunk/java/org/apache/juli/FileHandler.java (original) +++ tomcat/trunk/java/org/apache/juli/FileHandler.java Tue Jun 10 10:43:28 2008 @@ -133,8 +133,12 @@ } try { -writer.write(result); -writer.flush(); +if (writer!=null) { +writer.write(result); +writer.flush(); +} else { +reportError("FileHandler is closed or not yet initialized, unable to log ["+result+"]", null, ErrorManager.WRITE_FAILURE); +} } catch (Exception e) { reportError(null, e, ErrorManager.WRITE_FAILURE); return; - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r666233 - /tomcat/trunk/webapps/docs/changelog.xml
Author: fhanik Date: Tue Jun 10 10:44:24 2008 New Revision: 666233 URL: http://svn.apache.org/viewvc?rev=666233&view=rev Log: update changelog Modified: tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=666233&r1=666232&r2=666233&view=diff == --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Tue Jun 10 10:44:24 2008 @@ -54,6 +54,9 @@ + 666232 + Prevent NPE stacktrace, and lost log message when logger has been shutdown. Instead log the error, with the message (fhanik) + 645184 Properly deserialize Proxy classes - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45178] mod_jk not working with Java CIFS NTLM filter
https://issues.apache.org/bugzilla/show_bug.cgi?id=45178 --- Comment #1 from Rainer Jung <[EMAIL PROTECTED]> 2008-06-10 10:54:19 PST --- I think I know people, who successfully use mod_jk in combination with jCIFS NTLM. Can you please also post your file I:/Apps/Apache/2.2/conf/workers.properties. If you disable authentication, can you get your content from Tomcat via Apache, i.e. is your basic setup working and there is only an authentication problem? Do you have the same problem, if you do not load balance and only use one Tomcat backend (via mod_jk)? If all questions are yes: Increase KeepAliveTimeout. By default it is 5 seconds, so it is possible though unlikely, that it expires during authentication negotiation. Check your Tomcat and application log files, especially because you sometimes get status 500. Do you know, when you get 401 and when 500? Sniff TCP to port 80 (e.g. using Wireshark) when you are the only user and reproduce the problem. How many different TCP connections get used if you only try to get one URL? Only one? If more than one, post the packet dump. Can you set JkLogLevel to trace and do one fresh test, which fails. Please then post the (hige) log file and add information, which URL you tried to retrieve. Please use a test user, because your password might be in the log file (I'm not sure at the moment). -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45155] Authentication with windows XP Mini-redirector
https://issues.apache.org/bugzilla/show_bug.cgi?id=45155 --- Comment #8 from Mark Thomas <[EMAIL PROTECTED]> 2008-06-10 11:06:04 PST --- I've tried a similar trick with mapping drives but this process insists on using the Webdav Mini-redirector. If you can find a way to trick drive mapping into using the other DLL I can probably extend the valve to get the clients to work. I can't see anything else I can do now to work-around this MS bug. MS hosts a regular (annual?) 'How can we help Apache products work better in MS environments' workshop. Hopefully I'll be able to go to the next one and see if we can find a way around this. The down side is that it is about a year away. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45153] Javabean not accessible to jsp until placed in a package.
https://issues.apache.org/bugzilla/show_bug.cgi?id=45153 Mark Thomas <[EMAIL PROTECTED]> changed: What|Removed |Added Status|NEW |RESOLVED Resolution||INVALID --- Comment #1 from Mark Thomas <[EMAIL PROTECTED]> 2008-06-10 14:37:01 PST --- This is as required by the Java language specification. You can't use packageless classes in a JSP. See: http://wiki.apache.org/tomcat/FAQ/Class_Not_Found http://www.google.co.uk/search?hl=en&q=java+import+packageless -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45180] New: CRLF Newline characters stripped from header values
https://issues.apache.org/bugzilla/show_bug.cgi?id=45180 Summary: CRLF Newline characters stripped from header values Product: Tomcat 5 Version: 5.5.26 Platform: PC OS/Version: Windows Server 2003 Status: NEW Severity: blocker Priority: P2 Component: Unknown AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] While trying to implement RFC 2231 with "Parameter Value Continuations" I had a header that should appear as follows: Content-Disposition: attachment; filename*0="Rodney.20080516.VaR_Simple.HG2008_HG2008_20080516_issueDetailLog"; filename*1="_boy_this_is_a_long_header_value"; filename*2="_now_is_it_not.csv" That is according to RFC 2231 which allows this. I use HttpServletResponse.addHeader(String,String) to add the appropriate header as so: addHeader("Content-Disposition", above value with \r\n inside the string) Unfortanetely Tomcat is replacing my String's "\r\n" after each ";" with two spaces instead. This results in the actual header returned to the browser being: Content-Disposition: attachment; filename*0="Rodney.20080516.VaR_Simple.HG2008_HG2008_20080516_issueDetailLog"; filename*1="_boy_this_is_a_long_header_value"; filename*2="_now_is_it_not.csv" [Each ; is followed by filename instead of \r\nfilename] Firefox 2.0.14 will gracefully correct this malformed, non-compliant RFC2231 header, but Internet Explorer 6 nor 7 will handle this correctly. IE is more strict about the RFC2231 format. I believe this may have been implemented to discourage XSS mistakes in code, but now it breaks using \r\n inside header values. Perhaps a new method such as "addUncheckedHeader(String,String)" that doesn't scrub the \r\n would be appropriate? -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r666342 - /tomcat/connectors/branches/other/Apache/
Author: markt Date: Tue Jun 10 14:56:48 2008 New Revision: 666342 URL: http://svn.apache.org/viewvc?rev=666342&view=rev Log: Remove dir that causes a name clash on Windows. It only contains a AL 1.1 license file. Removed: tomcat/connectors/branches/other/Apache/ - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r666347 - in /tomcat: archive/tc3.1.x/ archive/tc3.2.x/ archive/tc3.3.x/ archive/tc3.3.x/tc3.3.2.final/ archive/tc3.3.x/tc3.3.2.final/connectors/ archive/tc3.3.x/tc3.3.2.rc1/ archive/tc3.3
Author: markt Date: Tue Jun 10 15:15:58 2008 New Revision: 666347 URL: http://svn.apache.org/viewvc?rev=666347&view=rev Log: Start to move tc3.x to the archive area. This commit just moves the connectors to confirm that I can do multiple moves in a single commit and avoid the deluge of commit messages I generated when archiving 5.0.x Added: tomcat/archive/tc3.1.x/ tomcat/archive/tc3.2.x/ tomcat/archive/tc3.3.x/ tomcat/archive/tc3.3.x/tc3.3.2.final/ tomcat/archive/tc3.3.x/tc3.3.2.final/connectors/ (props changed) - copied from r666342, tomcat/connectors/tags/tc3.3.x/tomcat_332_final/ tomcat/archive/tc3.3.x/tc3.3.2.rc1/ tomcat/archive/tc3.3.x/tc3.3.2.rc1/connectors/ (props changed) - copied from r666342, tomcat/connectors/tags/tc3.3.x/tomcat_332_rc1/ tomcat/archive/tc3.3.x/tc3.3.m4/ tomcat/archive/tc3.3.x/tc3.3.m4/connectors/ (props changed) - copied from r666342, tomcat/connectors/tags/tc3.3.x/tomcat_33_m4/ Removed: tomcat/connectors/tags/tc3.3.x/ Propchange: tomcat/archive/tc3.3.x/tc3.3.2.final/connectors/ -- svn:mergeinfo = Propchange: tomcat/archive/tc3.3.x/tc3.3.2.rc1/connectors/ -- svn:mergeinfo = Propchange: tomcat/archive/tc3.3.x/tc3.3.m4/connectors/ -- svn:mergeinfo = - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
svn commit: r666348 - in /tomcat/archive/tc3.3.x: tags/ tags/tc3.3.2.final/ tags/tc3.3.2.rc1/ tags/tc3.3.m4/ tc3.3.2.final/ tc3.3.2.rc1/ tc3.3.m4/
Author: markt Date: Tue Jun 10 15:22:01 2008 New Revision: 666348 URL: http://svn.apache.org/viewvc?rev=666348&view=rev Log: The archived connectors for 3.3.x should have been placed under tags Added: tomcat/archive/tc3.3.x/tags/ tomcat/archive/tc3.3.x/tags/tc3.3.2.final/ (props changed) - copied from r666347, tomcat/archive/tc3.3.x/tc3.3.2.final/ tomcat/archive/tc3.3.x/tags/tc3.3.2.rc1/ (props changed) - copied from r666347, tomcat/archive/tc3.3.x/tc3.3.2.rc1/ tomcat/archive/tc3.3.x/tags/tc3.3.m4/ (props changed) - copied from r666347, tomcat/archive/tc3.3.x/tc3.3.m4/ Removed: tomcat/archive/tc3.3.x/tc3.3.2.final/ tomcat/archive/tc3.3.x/tc3.3.2.rc1/ tomcat/archive/tc3.3.x/tc3.3.m4/ Propchange: tomcat/archive/tc3.3.x/tags/tc3.3.2.final/ -- svn:mergeinfo = Propchange: tomcat/archive/tc3.3.x/tags/tc3.3.2.rc1/ -- svn:mergeinfo = Propchange: tomcat/archive/tc3.3.x/tags/tc3.3.m4/ -- svn:mergeinfo = - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
RE: DO NOT REPLY [Bug 45180] New: CRLF Newline characters stripped from header values
My understanding is that crlf breaks the rfc and leads to http response splitting attacks. -Original Message- From: [EMAIL PROTECTED] Sent: Tuesday, June 10, 2008 11:50 AM To: [EMAIL PROTECTED] Subject: DO NOT REPLY [Bug 45180] New: CRLF Newline characters stripped from header values https://issues.apache.org/bugzilla/show_bug.cgi?id=45180 Summary: CRLF Newline characters stripped from header values Product: Tomcat 5 Version: 5.5.26 Platform: PC OS/Version: Windows Server 2003 Status: NEW Severity: blocker Priority: P2 Component: Unknown AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] While trying to implement RFC 2231 with "Parameter Value Continuations" I had a header that should appear as follows: Content-Disposition: attachment; filename*0="Rodney.20080516.VaR_Simple.HG2008_HG2008_20080516_issueDetailLog"; filename*1="_boy_this_is_a_long_header_value"; filename*2="_now_is_it_not.csv" That is according to RFC 2231 which allows this. I use HttpServletResponse.addHeader(String,String) to add the appropriate header as so: addHeader("Content-Disposition", above value with \r\n inside the string) Unfortanetely Tomcat is replacing my String's "\r\n" after each ";" with two spaces instead. This results in the actual header returned to the browser being: Content-Disposition: attachment; filename*0="Rodney.20080516.VaR_Simple.HG2008_HG2008_20080516_issueDetailLog"; filename*1="_boy_this_is_a_long_header_value"; filename*2="_now_is_it_not.csv" [Each ; is followed by filename instead of \r\nfilename] Firefox 2.0.14 will gracefully correct this malformed, non-compliant RFC2231 header, but Internet Explorer 6 nor 7 will handle this correctly. IE is more strict about the RFC2231 format. I believe this may have been implemented to discourage XSS mistakes in code, but now it breaks using \r\n inside header values. Perhaps a new method such as "addUncheckedHeader(String,String)" that doesn't scrub the \r\n would be appropriate? -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bu [The entire original message is not included] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45182] New: Add functionality to automate the jkmanager disable/activate prcess.
https://issues.apache.org/bugzilla/show_bug.cgi?id=45182 Summary: Add functionality to automate the jkmanager disable/activate prcess. Product: Tomcat 6 Version: unspecified Platform: PC OS/Version: All Status: NEW Severity: enhancement Priority: P2 Component: Native:JK AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] A way to disable/activate nodes passing URL parameters to jkmanager. Or use wildchar processing for worker names, to disable/activate them. This would result in it being possible to automate the jkmanager disable/activate prcess. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45173] Apache installation in Windows Vista Home Premium is failing
https://issues.apache.org/bugzilla/show_bug.cgi?id=45173 --- Comment #2 from Sudipto Chakraborty <[EMAIL PROTECTED]> 2008-06-10 22:17:45 PST --- (In reply to comment #1) > It looks like the user you are installing / running Tomcat with a user that > does not have the necessary permissions. Please use the users list to debug > this issue. Hi I have only one user (the administrator). What do you mean by debugging the issue using user list ? Please let me know about the steps required for that.. Now I am getting the same Exception with windows installer as well java.net.SocketException: Permission denied: listen failed at java.net.PlainSocketImpl.socketListen(Native Method) at java.net.PlainSocketImpl.listen(PlainSocketImpl.java:374) at java.net.ServerSocket.bind(ServerSocket.java:320) at java.net.ServerSocket.(ServerSocket.java:185) at java.net.ServerSocket.(ServerSocket.java:141) at org.apache.tomcat.util.net.DefaultServerSocketFactory.createSocket(DefaultServerSocketFactory.java:50) at org.apache.tomcat.util.net.PoolTcpEndpoint.initEndpoint(PoolTcpEndpoint.java:293) at org.apache.coyote.http11.Http11BaseProtocol.init(Http11BaseProtocol.java:139) at org.apache.catalina.connector.Connector.initialize(Connector.java:1017) at org.apache.catalina.core.StandardService.initialize(StandardService.java:578) at org.apache.catalina.core.StandardServer.initialize(StandardServer.java:782) at org.apache.catalina.startup.Catalina.load(Catalina.java:504) at org.apache.catalina.startup.Catalina.load(Catalina.java:524) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:267) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432) Jun 11, 2008 9:46:45 AM org.apache.catalina.startup.Catalina load Regards Sudipto -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45173] Apache installation in Windows Vista Home Premium is failing
https://issues.apache.org/bugzilla/show_bug.cgi?id=45173 Sudipto Chakraborty <[EMAIL PROTECTED]> changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|INVALID | --- Comment #3 from Sudipto Chakraborty <[EMAIL PROTECTED]> 2008-06-10 22:19:47 PST --- (In reply to comment #1) > It looks like the user you are installing / running Tomcat with a user that > does not have the necessary permissions. Please use the users list to debug > this issue. Hi I have only one user (the administrator). What do you mean by debugging the issue using user list ? Please let me know about the steps required for that.. Now I am getting the same Exception with windows installer as well java.net.SocketException: Permission denied: listen failed at java.net.PlainSocketImpl.socketListen(Native Method) at java.net.PlainSocketImpl.listen(PlainSocketImpl.java:374) at java.net.ServerSocket.bind(ServerSocket.java:320) at java.net.ServerSocket.(ServerSocket.java:185) at java.net.ServerSocket.(ServerSocket.java:141) at org.apache.tomcat.util.net.DefaultServerSocketFactory.createSocket(DefaultServerSocketFactory.java:50) at org.apache.tomcat.util.net.PoolTcpEndpoint.initEndpoint(PoolTcpEndpoint.java:293) at org.apache.coyote.http11.Http11BaseProtocol.init(Http11BaseProtocol.java:139) at org.apache.catalina.connector.Connector.initialize(Connector.java:1017) at org.apache.catalina.core.StandardService.initialize(StandardService.java:578) at org.apache.catalina.core.StandardServer.initialize(StandardServer.java:782) at org.apache.catalina.startup.Catalina.load(Catalina.java:504) at org.apache.catalina.startup.Catalina.load(Catalina.java:524) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:267) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432) Jun 11, 2008 9:46:45 AM org.apache.catalina.startup.Catalina load Regards Sudipto -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
DO NOT REPLY [Bug 45173] Apache installation in Windows Vista Home Premium is failing
https://issues.apache.org/bugzilla/show_bug.cgi?id=45173 Mark Thomas <[EMAIL PROTECTED]> changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution||INVALID --- Comment #4 from Mark Thomas <[EMAIL PROTECTED]> 2008-06-10 23:37:29 PST --- http://tomcat.apache.org/lists.html -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]