DO NOT REPLY [Bug 5532] - underscore is wrong

2002-02-26 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5532.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5532

underscore is wrong

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2002-02-27 00:17 ---
The AutoWebApp module now (current nightly and will appear in 3.3.1-rc1)
supports hostChar, hostDotChar, and pathSlashChar attributes which allow
you to specify the special characters used in converting the directory name
to a virtual host name and path for the context.

Note that because the AutoWebApp ... / try in server.xml specifies
host=DEFAULT, the hostChar and hostDotChar handling is disabled by default.
To disable the default use of '_' for pathSlashChar, add pathSlashChar= to
AutoWebApp ... /.  The directory name will be used as the context path as is.

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




DO NOT REPLY [Bug 5532] - underscore is wrong

2002-01-02 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5532.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5532

underscore is wrong

[EMAIL PROTECTED] changed:

   What|Removed |Added

   Severity|Critical|Normal
 OS/Version|Linux   |Windows NT/2K
   Priority|High|Other
   Platform|PC  |Other
Version|3.2.3 Final |3.3 Final



--- Additional Comments From [EMAIL PROTECTED]  2002-01-02 08:17 ---
Restoring prior bug settings.

Alessandro,

Please enter a new bug report rather than modifying this existing one. Thanks.

Larry

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




DO NOT REPLY [Bug 5532] - underscore is wrong

2001-12-28 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5532.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5532

underscore is wrong

[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]
   ||.br
   Severity|Normal  |Critical
 OS/Version|Windows NT/2K   |Linux
   Priority|Other   |High
   Platform|Other   |PC
Version|3.3 Final   |3.2.3 Final



--- Additional Comments From [EMAIL PROTECTED]  2001-12-28 06:47 
---
i have an application work with tomcat 3.2.3 + JBoss and want tu use XPathAPI 
to get a node value and i receive the msg :
Root cause: 
java.lang.NoSuchMethodError
at org.apache.xpath.axes.AxesWalker.getNextNode(AxesWalker.java:1051)
at org.apache.xpath.axes.AxesWalker.nextNode(AxesWalker.java:1137)
(...)
and verify my jar library and have such method.The error ocurre on line 1051. 
Follow the src above.

protected Node getNextNode()
  {

if (m_isFresh)
  m_isFresh = false;

Node current = this.getCurrentNode();

#line 1051
-if (current.isSupported(FEATURE_NODETESTFILTER, 1.0))
  ((NodeTestFilter) current).setNodeTest(this);

Node next = this.firstChild();

while (null == next)
{
  next = this.nextSibling();

  if (null == next)
  {
Node p = this.parentNode();

if (null == p)
  break;
  }
}

if (null == next)
  this.m_isDone = true;

return next;
  }

I like your help, thankĀ“s.

Alessandro Salvado.

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




DO NOT REPLY [Bug 5532] - underscore is wrong

2001-12-20 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5532.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5532

underscore is wrong

[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]



--- Additional Comments From [EMAIL PROTECTED]  2001-12-20 11:17 ---
*** Bug 5463 has been marked as a duplicate of this bug. ***

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




DO NOT REPLY [Bug 5532] - underscore is wrong

2001-12-20 Thread bugzilla

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5532.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=5532

underscore is wrong





--- Additional Comments From [EMAIL PROTECTED]  2001-12-20 11:43 ---
This is a not yet documented (sorry) feature of the AutoWebApp module so that
you can have auto-served contexts with a path that is more than one level
deep, such as /myapp/subapp .  It uses the '_' character as an
substitute for '/'.  Thus, directory named myapp_subapp would be auto-served
with a context path of /myapp/subapp.  To serve a context with the path
that contains a '_' character (or an '@' which denotes a virtual host name),
you will need to use an apps*.xml file to manually define the context.

I will add something to the documentation and make these characters
configurable in Tomcat 3.3.1.

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