DO NOT REPLY [Bug 42314] New: - Jasper output no details with compilation error in specific case.

2007-05-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42314

   Summary: Jasper output no details with compilation error in
specific case.
   Product: Tomcat 5
   Version: 5.5.23
  Platform: Other
OS/Version: Windows XP
Status: NEW
  Severity: normal
  Priority: P2
 Component: Jasper
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Jasper output no details when Jasper cannot find
mappings between generated servlet code (with mistakes)
and former JSP.
One example JSP is the following. 
(The imported class in the JSP is not found.)
---
<%@
  page import = "not.exist.class"
%>
---

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



DO NOT REPLY [Bug 42314] - Jasper output no details with compilation error in specific case.

2007-05-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42314





--- Additional Comments From [EMAIL PROTECTED]  2007-05-02 01:15 ---
Created an attachment (id=20085)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=20085&action=view)
Patch for Jasper to output details of the compile error.


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



DO NOT REPLY [Bug 42314] - Jasper output no details with compilation error in specific case.

2007-05-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42314





--- Additional Comments From [EMAIL PROTECTED]  2007-05-02 01:30 ---
The patch corrects Jasper to output error details.
And it also fixes a bug that the InputStream was not closed.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



svn commit: r534366 - /tomcat/connectors/trunk/jk/native/common/ap_snprintf.h

2007-05-02 Thread fuankg
Author: fuankg
Date: Wed May  2 02:32:42 2007
New Revision: 534366

URL: http://svn.apache.org/viewvc?view=rev&rev=534366
Log:
added stdarg.h since other platforms might need it for va_list.

Modified:
tomcat/connectors/trunk/jk/native/common/ap_snprintf.h

Modified: tomcat/connectors/trunk/jk/native/common/ap_snprintf.h
URL: 
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/common/ap_snprintf.h?view=diff&rev=534366&r1=534365&r2=534366
==
--- tomcat/connectors/trunk/jk/native/common/ap_snprintf.h (original)
+++ tomcat/connectors/trunk/jk/native/common/ap_snprintf.h Wed May  2 02:32:42 
2007
@@ -24,6 +24,7 @@
 #define APACHE_AP_SNPRINTF_H
 
 #include 
+#include 
 #include 
 
 #ifdef __cplusplus



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



DO NOT REPLY [Bug 42315] New: - Error Handling Custom Error Pages

2007-05-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42315

   Summary: Error Handling Custom Error Pages
   Product: Tomcat 5
   Version: 5.5.23
  Platform: Other
OS/Version: other
Status: NEW
  Severity: normal
  Priority: P2
 Component: Catalina
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


Consider the following content as part of the server.xml

-





-

In order to make that host available in a local machine, you should 
add "example.com" to your hosts file (in windows, it's located at 
C:\WINDOWS\system32\drivers\etc\hosts)

Consider the following web.xml for the context defined above:

-

http://java.sun.com/dtd/web-app_2_3.dtd";>



Controller
com.example.Controller
1



Controller
/



500
/errors/500.htm



-

As you can see, a request made to http://www.example.com will be served by 
the "Controller" servlet, as its "url-pattern" property is set to "/". If I 
point my browser to http://www.example.com/errors/500.htm Tomcat serves me the 
right static html file.
However, when a ServletException occurs (error 500), instead of showing the 
static error page defined in the previous web.xml, I get the default Error 500 
Tomcat page, and the Catalina.out file shows this:

-
SEVERE: Exception Processing ErrorPage[errorCode=500, location=/errors/500.htm]
-

In order to reproduce this bug, consider the following servlet as the 
Controller.java :

-
package com.example;

import javax.servlet.*;
import javax.servlet.http.*;

public class Controller extends HttpServlet{

public void init(ServletConfig conf) throws ServletException{
super.init(conf);
}

public void destroy(){
}

public void doGet(HttpServletRequest req,HttpServletResponse res) 
throws ServletException{
doPost(req,res);
}

public void doPost(HttpServletRequest req,HttpServletResponse res) 
throws ServletException{
throw new ServletException("Force Error 500");
}
}
-

I think this is strange bug, as calling the full 
http://www.example.com/errors/500.htm gives me the page it should be shown 
when an error 500 occurs, which means Tomcat can access perfectly to that 
file, but at the time of showing that page as a result of an exception, then 
it can't access to that location.

In order to resolve that issue, I've added the following content to my web.xml 
file as temporary fix to this issue:

-

Error500
com.example.Error500
2



Error500
/errors/*

-

This would be the content of the Error500 servlet:

-
package com.example;

import javax.servlet.*;
import javax.servlet.http.*;

public class Error500 extends HttpServlet{

public void init(ServletConfig conf) throws ServletException{
super.init(conf);
}

public void destroy(){
}

public void doGet(HttpServletRequest req,HttpServletResponse res) 
throws ServletException{
doPost(req,res);
}

public void doPost(HttpServletRequest req,HttpServletResponse res) 
throws ServletException{
try{
res.sendRedirect("/errors/500.htm");
}
catch(Exception ignored){}
}
}
-

I've tested this on 5.5.23 and 5.5.20.

Thanks!

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



DO NOT REPLY [Bug 42037] - User principal not always set correctly

2007-05-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42037





--- Additional Comments From [EMAIL PROTECTED]  2007-05-02 02:59 ---
Subject.getSubject(AccessController.getContext())

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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



Re: svn commit: r534293 [1/11] - in /tomcat/sandbox/tomcat-lite: ./ bin/ external/ java/ java/org/apache/commons/logging/ java/org/apache/tomcat/lite/ java/org/apache/tomcat/lite/ctxmap/ java/org/apac

2007-05-02 Thread Remy Maucherat

[EMAIL PROTECTED] wrote:

Author: costin
Date: Tue May  1 19:22:45 2007
New Revision: 534293

URL: http://svn.apache.org/viewvc?view=rev&rev=534293
Log:
Updates/fixes/cleanup for the last few months


Added:
tomcat/sandbox/tomcat-lite/external/


I was wondering if Tomcat Lite would go somewhere, it's cool to see it's 
still moving.


Rémy

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



svn commit: r534492 - in /tomcat/tc6.0.x/trunk/webapps: docs/realm-howto.xml examples/WEB-INF/web.xml

2007-05-02 Thread remm
Author: remm
Date: Wed May  2 07:51:32 2007
New Revision: 534492

URL: http://svn.apache.org/viewvc?view=rev&rev=534492
Log:
- Fix paths.
- Submitted by Frank McCown.

Modified:
tomcat/tc6.0.x/trunk/webapps/docs/realm-howto.xml
tomcat/tc6.0.x/trunk/webapps/examples/WEB-INF/web.xml

Modified: tomcat/tc6.0.x/trunk/webapps/docs/realm-howto.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/realm-howto.xml?view=diff&rev=534492&r1=534491&r2=534492
==
--- tomcat/tc6.0.x/trunk/webapps/docs/realm-howto.xml (original)
+++ tomcat/tc6.0.x/trunk/webapps/docs/realm-howto.xml Wed May  2 07:51:32 2007
@@ -241,7 +241,7 @@
 The example application shipped with Tomcat 6 includes an area that is
 protected by a security constraint, utilizing form-based login.  To access it,
 point your browser at
-http://localhost:8080/jsp-examples/security/protected/";>http://localhost:8080/jsp-examples/security/protected/
+http://localhost:8080/examples/jsp/security/protected/";>http://localhost:8080/examples/jsp/security/protected/
 and log on with one of the usernames and passwords described for the default
 MemoryRealm.
 

Modified: tomcat/tc6.0.x/trunk/webapps/examples/WEB-INF/web.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/examples/WEB-INF/web.xml?view=diff&rev=534492&r1=534491&r2=534492
==
--- tomcat/tc6.0.x/trunk/webapps/examples/WEB-INF/web.xml (original)
+++ tomcat/tc6.0.x/trunk/webapps/examples/WEB-INF/web.xml Wed May  2 07:51:32 
2007
@@ -237,7 +237,7 @@
   
  Protected Area
 
- /security/protected/*
+ /jsp/security/protected/*
 
 DELETE
  GET



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



Proposed new CometEvent.notify method

2007-05-02 Thread Remy Maucherat

Hi,

To more conveniently support some use cases, a new notify method could 
be added to the event. This would do an action callback and call a new 
method in the Poller class would add the socket to a structure like the 
socket add list. The comet poller thread will then check if there are 
sockets in that list, and call an event (as for the event type, it could 
be a regular timeout - it's very similar - or a new type which will 
behave the same as timeout - which would be significantly harder since 
modifications will have to be made to accommodate the new event type).


I know how to make this fairly easily with the APR connector, and I'm 
not so sure about the NIO one (most likely it's very similar, however). 
The main thing which is annoying to implement is if the fact that there 
will not be any other concurrent event occurring has to be enforced and 
there are multiple pollers (I think the socket has to be removed "just 
in case" from each poller, which is quite annoying).


Comments ?

Rémy

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



svn commit: r534661 - /tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11AprProcessor.java

2007-05-02 Thread remm
Author: remm
Date: Wed May  2 17:11:35 2007
New Revision: 534661

URL: http://svn.apache.org/viewvc?view=rev&rev=534661
Log:
- Recycle the comet flag (pretty large glitch ...).

Modified:
tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11AprProcessor.java

Modified: 
tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11AprProcessor.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11AprProcessor.java?view=diff&rev=534661&r1=534660&r2=534661
==
--- tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11AprProcessor.java 
(original)
+++ tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11AprProcessor.java 
Wed May  2 17:11:35 2007
@@ -786,6 +786,7 @@
 
 // Error flag
 error = false;
+comet = false;
 keepAlive = true;
 
 int keepAliveLeft = maxKeepAliveRequests;



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



Re: svn commit: r533881 - /tomcat/tc6.0.x/trunk/webapps/examples/WEB-INF/classes/chat/ChatServlet.java

2007-05-02 Thread Filip Hanik - Dev Lists

Remy Maucherat wrote:

Filip Hanik - Dev Lists wrote:

question about this one,
since a client disconnect is signaled by a READ for the NIO 
connector, and the only way to find out if the client was 
disconnected, the InputStream.read() is supposed to return -1, how 
does that work with the is.available()?


For a client disconnect, you'll get an IO exception during the read, 
not a -1. The only situation where you'll get a -1 (that I know about) 
is for the end of the request body, for example if the content-length 
header says 10, and 10 bytes of the body have been read (so bytes may 
still be available on the socket, but they belong to the next 
request). Ideally, there would be a way to detect a disconnect in the 
poller so that the correct event is sent (this would avoid most IO 
exceptions, which is IMO much cleaner and more efficient).


I understand available() as "there's something to read, and it won't 
block". It also allows enforcing the rule saying that the servlet must 
read all the stuff that is available when it gets a read event, which 
doesn't hurt.
correct, but what does available() return on a client disconnect, since 
in NIO it's detected as a read. Are we coding it such that when a read 
event happens, available() always return -1


Filip


Rémy

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






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



Re: svn commit: r533881 - /tomcat/tc6.0.x/trunk/webapps/examples/WEB-INF/classes/chat/ChatServlet.java

2007-05-02 Thread Remy Maucherat

Filip Hanik - Dev Lists wrote:
correct, but what does available() return on a client disconnect, since 
in NIO it's detected as a read. Are we coding it such that when a read 
event happens, available() always return -1


available() would return 1 if there's a read event sent for whatever 
reason (meaning the servlet must read and continue reading until 
available() returns <= 0), including a disconnect.


It's never going to be perfectly accurate, I know, there are too many 
buffers, including the native ones, and some are encoded ;) Where did 
you see -1 (it should not be returning -1, it's either 0, 1, or some 
slightly more accurate number if the buffer at the servlet layer 
contains something) ?


If there are ways to properly detect disconnects (like APR apparently 
does on Unix, but not on Windows) it would be much better. There are 
hacks which could emulate it, like doing a read in CoyoteAdapter.event 
before sending the read event, and modify the event accordingly (for 
example, calling InputBuffer.realReadBytes to attempt filling the first 
buffer and see if a horrible exception occurs would detect a disconnect).


Rémy

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



Re: Proposed new CometEvent.notify method

2007-05-02 Thread Remy Maucherat

Remy Maucherat wrote:

Hi,

To more conveniently support some use cases, a new notify method could 
be added to the event. This would do an action callback and call a new 
method in the Poller class would add the socket to a structure like the 
socket add list. The comet poller thread will then check if there are 
sockets in that list, and call an event (as for the event type, it could 
be a regular timeout - it's very similar - or a new type which will 
behave the same as timeout - which would be significantly harder since 
modifications will have to be made to accommodate the new event type).


I know how to make this fairly easily with the APR connector, and I'm 
not so sure about the NIO one (most likely it's very similar, however). 
The main thing which is annoying to implement is if the fact that there 
will not be any other concurrent event occurring has to be enforced and 
there are multiple pollers (I think the socket has to be removed "just 
in case" from each poller, which is quite annoying).


Along with it, I think a semi dynamic option should be added to not use 
read polling (which does funky stuff in certain cases, since when using 
pipelining, there's data available but the data may actually not belong 
to this request), but still check timeout. I think per connection 
timeout should also be supported by APR. Having these in addition to 
notify() would allow all possible usage scenarios without running into 
funny corner cases.


Rémy

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



svn commit: r534695 - /tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11NioProcessor.java

2007-05-02 Thread fhanik
Author: fhanik
Date: Wed May  2 19:35:56 2007
New Revision: 534695

URL: http://svn.apache.org/viewvc?view=rev&rev=534695
Log:
Same fix as for the APR processor, although wouldn't this flag be set on the 
"recycle" method

Modified:
tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11NioProcessor.java

Modified: 
tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11NioProcessor.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11NioProcessor.java?view=diff&rev=534695&r1=534694&r2=534695
==
--- tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11NioProcessor.java 
(original)
+++ tomcat/tc6.0.x/trunk/java/org/apache/coyote/http11/Http11NioProcessor.java 
Wed May  2 19:35:56 2007
@@ -818,6 +818,8 @@
 // Error flag
 error = false;
 keepAlive = true;
+comet = false;
+
 
 int keepAliveLeft = maxKeepAliveRequests;
 long soTimeout = endpoint.getSoTimeout();



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



Re: svn commit: r533881 - /tomcat/tc6.0.x/trunk/webapps/examples/WEB-INF/classes/chat/ChatServlet.java

2007-05-02 Thread Filip Hanik - Dev Lists

Remy Maucherat wrote:

Filip Hanik - Dev Lists wrote:
correct, but what does available() return on a client disconnect, 
since in NIO it's detected as a read. Are we coding it such that when 
a read event happens, available() always return -1


available() would return 1 if there's a read event sent for whatever 
reason (meaning the servlet must read and continue reading until 
available() returns <= 0), including a disconnect.


It's never going to be perfectly accurate, I know, there are too many 
buffers, including the native ones, and some are encoded ;) Where did 
you see -1 (it should not be returning -1, it's either 0, 1, or some 
slightly more accurate number if the buffer at the servlet layer 
contains something) ?

forget my -1, that was for reading the OS buffer.



If there are ways to properly detect disconnects (like APR apparently 
does on Unix, but not on Windows) it would be much better. There are 
hacks which could emulate it, like doing a read in CoyoteAdapter.event 
before sending the read event, and modify the event accordingly (for 
example, calling InputBuffer.realReadBytes to attempt filling the 
first buffer and see if a horrible exception occurs would detect a 
disconnect).


Rémy

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






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



DO NOT REPLY [Bug 42324] New: - Can't find any SSL implementation

2007-05-02 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42324

   Summary: Can't find any SSL implementation
   Product: Tomcat 5
   Version: 5.5.20
  Platform: All
OS/Version: Linux
Status: NEW
  Severity: critical
  Priority: P2
 Component: Unknown
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


I am trying to configure tomcat5.5.20 to run with ssl 
and i had downloaded binary from the site. But even after following all
instructions i am getting this error. I am not able to access the page 
via https://localhost:8443


NFO: Initializing Coyote HTTP/1.1 on http-8080
May 3, 2007 1:07:15 PM org.apache.coyote.http11.Http11BaseProtocol init
SEVERE: Error initializing socket factory
java.lang.ClassNotFoundException: Can't find any SSL implementation
at
org.apache.tomcat.util.net.SSLImplementation.getInstance(SSLImplementation.java:57)
at
org.apache.tomcat.util.net.SSLImplementation.getInstance(SSLImplementation.java:63)
at
org.apache.coyote.http11.Http11BaseProtocol.checkSocketFactory(Http11BaseProtocol.java:729)
at 
org.apache.coyote.http11.Http11BaseProtocol.init(Http11BaseProtocol.java:120)
at 
org.apache.catalina.connector.Connector.initialize(Connector.java:1016)
at 
org.apache.catalina.core.StandardService.initialize(StandardService.java:580)
at 
org.apache.catalina.core.StandardServer.initialize(StandardServer.java:791)
at org.apache.catalina.startup.Catalina.load(Catalina.java:503)
at org.apache.catalina.startup.Catalina.load(Catalina.java:523)
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:266)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:431)
May 3, 2007 1:07:15 PM org.apache.catalina.startup.Catalina load
SEVERE: Catalina.start
LifecycleException:  Protocol handler initialization failed:
java.lang.ClassNotFoundException: Can't find any SSL implementation
at 
org.apache.catalina.connector.Connector.initialize(Connector.java:1018)
at 
org.apache.catalina.core.StandardService.initialize(StandardService.java:580)
at 
org.apache.catalina.core.StandardServer.initialize(StandardServer.java:791)
at org.apache.catalina.startup.Catalina.load(Catalina.java:503)
at org.apache.catalina.startup.Catalina.load(Catalina.java:523)
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:266)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:431)
May 3, 2007 1:07:15 PM org.apache.catalina.startup.Catalina load


I am using jdk1.5.0_11  and   F Core 6

following is my server.xml

 
 


Please help me in this case

regards
kapil

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.

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