Re: OT: special characters in property files

2005-04-07 Thread Markus Schnhaber
Am Donnerstag, 7. April 2005 20:13 schrieb Robert Harper:
 I need to retrieve a value from a property file with a ‘$’ as part of the
 data. How do I decorate this character so that the value will be loaded
 when I call ResourceBundle.getString() ? I am not having much success
 googling for it.

I seem to remember that you can use the Unicode-escape for the $-character in 
the resource-file, i. e. \u0024.

Regards
mks

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



Re: Source of tomcat.exe

2005-04-05 Thread Markus Schnhaber
Am Dienstag, 5. April 2005 11:37 schrieb :CI75-Support Technologies 
collaboratives:
 We use tomcat (4.1 and 5.5) on windows as services.

 Is someone knows where we can find the source in C of these executables ?

Commons Daemon homepage:
http://jakarta.apache.org/commons/daemon/

Download page:
http://jakarta.apache.org/site/downloads/downloads_commons-daemon.cgi

Regards
mks

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



Re: Latest Stable Release of tomcat 5.0 ?

2005-04-04 Thread Markus Schnhaber
Am Montag, 4. April 2005 14:06 schrieb Narayan, Satya:
 Hi all,
Could somebody please tell me the latest stable release of
 tomcat 5.0  ?
 Is it 5.0.28 or 5.0.29 or 5.0.30 ?

I guess you can consider the version of Tomcat 5.0.x stable that is listed on 
the download-page
http://jakarta.apache.org/site/downloads/downloads_tomcat-5.cgi
and does not contain an appendix like -beta, -alpha or similar.

Regards
mks

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



Re: JSP being interpreted?

2005-03-19 Thread Markus Schnhaber
Am Samstag, 19. Mrz 2005 12:36 schrieb Robert Mark Bram:
 ==
 %@ taglib uri=/WEB-INF/tld/c.tld prefix=c %
 html
 body bgcolor=white
   c:set var=message value=Hi there!/
   c:out value=6. ${message}/br/
   c:out value=7. ${'message'}/br/
   bParameter values passed to this page for each parameter: /b
   c:forEach var=current items=${param}
   bc:out value=${current.key} //b
   c:forEach var=aVal items=${paramValues[current.key]}
   c:out value=${aVal} /
   /c:forEach
   /c:forEach
 /body
 /html
 ==

 But the result is this:

 ==
 6. ${message}
 7. ${'message'}
 Parameter values passed to this page for each parameter:
 ${current.key}${aVal}
 ==

 Is it possible that my jsp code is not being interpreted?

Does the deployment descriptor of yout web-app declare conformance to the 
Servlet-API spec 2.4 - i. e. does it contain something like

web-app xmlns=http://java.sun.com/xml/ns/j2ee;
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
xsi:schemaLocation=http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd;
version=2.4
?

Regards
mks

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



Re: web.xml

2005-03-17 Thread Markus Schnhaber
Am Donnerstag, 17. März 2005 13:05 schrieb [EMAIL PROTECTED]:
 I am requesting the following url
 _http://localhost:8081/webReg.jsp_ (http://localhost:8081/webReg.jsp)  
 which exists and dsiplays fine.  However, i want to be able to request
 _http://localhost:8081/webReg_ (http://localhost:8081/webReg)  and for 
 tomcat to display _http://localhost:8081/webReg.jsp_
 (http://localhost:8081/webReg.jsp) .


 What do i need to add in web.xml?

Add
welcome-filewebReg.jsp/welcome-file
to the
welcome-file-list-Element of web.xml.

Regards
mks

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