can not unsubscribe - HELP

2001-08-01 Thread Oren Deri, Nice-Eye

Hi,

I tried to unsubscribe from the list from the web site by clicing on the
link for the tomcat dev list and still getting mails, HELP

Oren Deri
___
 <> 

 Oren Deri (E-mail).vcf


3.2.1 vs 3.2.2 versions - Oren

2001-06-19 Thread Oren Deri, Nice-Eye


Which is better and what the differences.
should I expect problem by moving from 1 to 2.s
Oren Deri
___
 <> 

 Oren Deri (E-mail).vcf


Decode problems

2001-05-13 Thread Oren Deri, Nice-Eye

Hi,
when putting the sign % on the url, I get "lang.IllegalArgumentException:
Decode error"
what can I do to avoid that
10x

Oren Deri
___
 <> 

 Oren Deri (E-mail).vcf


2 web app

2001-03-26 Thread Oren Deri, Nice-Eye

Hi,
I put 2 web apps on the same tomcat(under apache).
App1 is defualt and App2 isn't.
when tring reference App2 from App1 the page not fount.
in App1 I write: http//:App2IP/App2Name/test.jsp
and get the error - page not found.
-
Oren Deri
Cellular: 972-53-79
Mail: [EMAIL PROTECTED]
--




Problem with JspWriterImpl

2001-03-08 Thread Oren Deri, Nice-Eye


Hi,

when printing in jsp some String that is null (String str = null;)
the output html is the string "null". 
Look at the code of JspWriterImpl.print(String s) 

public void print(String s) throws IOException {
if (s == null) {
s = "null";
}
write(s);
}

why did you return "null"? I changed it to "" insted of "null" and it works
just fine.
:

public void print(String s) throws IOException {
if (s == null) {
s = "";
}
write(s);
}
 
My questions:

Is my change can hurt the tomcat operation?
Why did you return "null" and not "" 
(the original software is on weblogic but we moved it to tomcat which have
better performance,  in weblogic they return "" and not "null") ?


10x 

Oren, Israel



-
Oren Deri
Cellular: 972-53-79
Mail: [EMAIL PROTECTED]
--


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