Re: A web based e-mail client

2005-08-14 Thread Evgeny Gesin
Robert, I wanted to hear what others recommend based on their experiences. I need opinions. Evgeny Gesin --- Robert F Hall [EMAIL PROTECTED] wrote: Evgeny, Google 'java mail server', I'm guessing yuou will find what you need. - Robert Evgeny Gesin wrote: Hi Litty Preeth

Re: A web based e-mail client

2005-08-14 Thread Evgeny Gesin
:) Evgeny Gesin --- Robert F Hall [EMAIL PROTECTED] wrote: Evgeny, Can't help you on the experience side. But asking the right question will help you get the right answers. You are looking for folks to share their experiences/opinions of java mail *servers*, right? - Robert

A web based e-mail client

2005-08-13 Thread Evgeny Gesin
I run QMail server and need a web based client written in Java. I will access that client from anywhere like Yahoo mail. There is a SquirrelMail/Courier-IMAP which use PHP, but I need a Java-based web client. Any pointers will be helpful Evgeny Gesin

Re: A web based e-mail client

2005-08-13 Thread Evgeny Gesin
Hi Litty Preeth. CraftMail looks like a standalone application. I need a web based client, like Yahoo/Hotmail, which runs on the server. I will access that web client using a regular web browser. Thanks! Evgeny Gesin --- Litty Preeth [EMAIL PROTECTED] wrote: Hi Evgeny Gesin

Re: J2SE 5.0 redirects applets to java.com

2005-02-08 Thread Evgeny Gesin
David, if you run applets under Windows, you may need to completely remove all older Java Plug-ins to clean Windows Registry and re-install latest Java Plug-in again. Than redirect to Sun web site should not occur. Evgeny Gesin http://www.javadesk.com http://www.alltelescopes.com --- David W

Re: Internationalization of characters --UTF8 encoding

2004-10-29 Thread Evgeny Gesin
.. is supposed to take japanese characters an insert them into database. Is there any setting in Tomcat4 where i should be giving the encoding option. You can specify parameters for SQL driver when you define DataSource in Tomcat's server.xml. I think most of Oracle drivers can process UTF-8,

RE: Internationalization of characters --UTF8 encoding

2004-10-29 Thread Evgeny Gesin
attention of these two parameters useUnicode=true and characterEncoding=utf8. Evgeny Javadesk / AllTelescopes --- Shilpa Nalgonda [EMAIL PROTECTED] wrote: can u point me to a resource how i can do it. -Original Message- From: Evgeny Gesin [mailto:[EMAIL PROTECTED] Sent: Friday, October

Re: which Linux Platform is best for Tomcat?

2004-10-26 Thread Evgeny Gesin
Tomcat 4.x works very well on production servers with RedHat 9 and Fedora 2. The new Java 1.5 adds better memory management. Evgeny Gesin http://www.javadesk.com http://www.alltelescopes.com __ Do you Yahoo!? Yahoo! Mail Address AutoComplete

RE: Tomcat smtp SSL transport?

2004-10-15 Thread Evgeny Gesin
Shapira http://www.yoavshapira.com -Original Message- From: Evgeny Gesin [mailto:[EMAIL PROTECTED] Sent: Thursday, October 14, 2004 6:04 PM To: Tomcat Users List Subject: Tomcat smtp SSL transport? I need to send email from Tomcat: - smtp server on localhost. - port 465

RE: Tomcat smtp SSL transport?

2004-10-15 Thread Evgeny Gesin
mail Session objects or anything like that. Yoav Shapira http://www.yoavshapira.com -Original Message- From: Evgeny Gesin [mailto:[EMAIL PROTECTED] Sent: Friday, October 15, 2004 9:46 AM To: Tomcat Users List Subject: RE: Tomcat smtp SSL transport? Hi Yoav. Tomcat and QMail

Tomcat smtp SSL transport?

2004-10-14 Thread Evgeny Gesin
I need to send email from Tomcat: - smtp server on localhost. - port 465. - smtp encrypts messages using SSL. - smtp authenticates users via CRAM-MD5. I probably need to add more parameters ResourceParams name=mail/Session parameternamemail.smtp.host/namevalue127.0.0.1/value/parameter

Re: Virtual Hosts and MySQL

2004-07-31 Thread Evgeny Gesin
Well, I solved. Tomcat loads all* web-apps under appBase when starting virtual hosts. Using different appBase for each virtual host solves the problem. Thanks for not response :)) Evgeny __ Do you Yahoo!? New and Improved Yahoo! Mail -

Re: Virtual Hosts and MySQL

2004-07-31 Thread Evgeny Gesin
Do you meant deployOnStartup (loadOnStartup)? It is not available in 4.1.xx (my case). I found easer to manage multiple contexts in separate directories of virtual hosts, than limit use of deployment parameters. Thanks for reply! :) Evgeny On Sat, Jul 31, 2004 at 12:45:50PM -0700, Evgeny

Virtual Hosts and MySQL

2004-07-30 Thread Evgeny Gesin
I want to test a virtual host on my local machine (lo IP), before I add new host to real web server (eth0 IP). So, I added 127.0.0.2 to local machine and now 'ifconfig' returns two IP addresses loLink encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 lo:0 Link

Re: Precompiling JSP How To

2004-07-16 Thread Evgeny Gesin
Hi, when I run that code I get this error No public no-arg constructor in class org.apache.jasper.JspC, probably in taskdef What could be wrong? Evgeny --- Tim Funk [EMAIL PROTECTED] wrote: Use this in your build.xml ... target name=jsp-compile depends=compile description=prcompile the

tomcat-user@jakarta.apache.org

2004-06-25 Thread Evgeny Gesin
I just tried a similar 'jspc' command and it generates all jsp.java under the same output directory - there is no original jsp.jsp hierarchy. How to tell jspc to generate/compile files according to JSP directory hierarchy? Evgeny Javadesk Hi. In addition to sacing resources on the webserver

RE: jspc

2004-06-25 Thread Evgeny Gesin
Hi, when I run jspc from command line ${tomcat_home}/bin/jspc.sh -s -l -uriroot ${tomcat_home}/webapps/myapp -d ${tomcat_home}/work it generates .class files according to hierarchy* of JSP files and that what I expected. When I run this And task target name=jspc depends=compile jspc

Re: Bad Cookie Name when NOT using cookies?

2004-05-11 Thread Evgeny Gesin
Of course, I not disabled cookies in Tomcat and my program invokes session.getAttribute() and session.setAttribute(), but the program not creates/reads cookies. So, I will think about (2), if another appl on my server might be setting cookies in the root path... By the way how I can check that?

Re: Bad Cookie Name when NOT using cookies?

2004-05-11 Thread Evgeny Gesin
about what the name of the cookie is... unless that is what Value is showing. Does myapplName ring a bell? Evgeny Gesin wrote: Of course, I not disabled cookies in Tomcat and my program invokes session.getAttribute() and session.setAttribute(), but the program not creates/reads cookies. So, I

Bad Cookie Name when NOT using cookies?

2004-05-10 Thread Evgeny Gesin
I not remember, if I asked this before, but it happened again. I DON'T USE cookies in my application. But sometimes I see the following error messages in catalina log files. Can you comment and how to solve that? Evgeny Javadesk 2004-05-09 23:57:53 CoyoteAdapter Bad Cookie Name: Path /Value:

Re: good webhosting

2004-04-18 Thread Evgeny Gesin
You need to answer at least these questions: - what monthly traffic do you need? - what OS and server software do you need? - what security do you need? - can you manage the server or need an admin? - what is your budget? Just a quick note: For personal use any shared j2ee hosting will serve your

RE: Yoav --RE: TC 5 production use

2004-04-09 Thread Evgeny Gesin
Yoav, I use Apache in front of Tomcat a long ago and see no problems? BTW, Apache executes all static content, such as image files. Why you don't recommend Apache? -- Evgeny Javadesk --- Shapira, Yoav [EMAIL PROTECTED] wrote: Hi, What are you thoughts on a JBoss 4 setup? Do you still

RE: Yoav --RE: TC 5 production use

2004-04-09 Thread Evgeny Gesin
Hi, --- Shapira, Yoav [EMAIL PROTECTED] wrote: Again, that's not what I said. You just have to evaluate your requirements carefully. Various factors like the content mix (%static vs. %dynamic), scalability requirements, SSL load, and others all figure into this decision. Apache is web

Re: What is the the maximum characters that Tomcat can handle in a Se rvlet URL (doGet request) ?

2004-03-31 Thread Evgeny Gesin
I think that limitation is by HTTP protocol and not directly specified. Practically I seen the GET limit sending about 3000-3500 characters Evgeny Gesin Javadesk --- [EMAIL PROTECTED] wrote: Hi, What is Tomcat's limitation in getting requests through the URL - to use the doGet method

RE: Internationalization problem

2004-03-02 Thread Evgeny Gesin
Some sources say to set in catalina.sh JAVA_OPTS=-Dfile.encoding=UTF8 What is relation of that parameter and Web/JSP/i18n ? Evgeny Gesin Javadesk --- STOCKHOLM, Raymond [EMAIL PROTECTED] wrote: é is é in UTF-8. It means that your browser is returning UTF-8, and your servlet/JSP

RE: Internationalization problem [2]

2004-03-02 Thread Evgeny Gesin
Some sources say to set in catalina.sh JAVA_OPTS=-Dfile.encoding=UTF8 What is relation of that parameter and Web/JSP/i18n ? Evgeny Gesin Javadesk __ Do you Yahoo!? Yahoo! Search - Find what you’re looking for faster http://search.yahoo.com

RE: Internationalization problem

2004-03-02 Thread Evgeny Gesin
I see, so this JAVA_OPTS=-Dfile.encoding=UTF8 is important to generate correct chars from hardcoded strings if written directly in java files. Thanks Evgeny Gesin Javadesk --- Ralph Einfeldt [EMAIL PROTECTED] wrote: You have to consider 3 different topics: - encoding of generated java

Re: using jar files in place of class files

2004-02-25 Thread Evgeny Gesin
That's was exactly the problem, jar-s start work in $CATALINA_HOME/webapps/app/WEB-INF/lib after setting write permission (770) for $CATALINA_TMPDIR, and not for the 'lib'. Thank you. Evgeny Gesin Javadesk --- Jon Wingfield [EMAIL PROTECTED] wrote: Also make sure that the user running tomcat

RE: Tomcat error-page not working (was: RE: Tomcat and checked vs. unchecked exceptions)

2004-02-25 Thread Evgeny Gesin
at run-time, to deploy the same JSP in all applications. Evgeny Gesin Javadesk __ Do you Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. http://antispam.yahoo.com/tools

jsp:plugin and codebase

2004-02-25 Thread Evgeny Gesin
at run-time, to deploy the same JSP in all applications. Evgeny Gesin Javadesk __ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online. http://taxes.yahoo.com/filing.html

Re: jsp:plugin and codebase

2004-02-25 Thread Evgeny Gesin
This will not work because of applet's security restrictions. Waiting for more replies. Evgeny Gesin Javadesk --- BAO RuiXian [EMAIL PROTECTED] wrote: Evgeny Gesin wrote: [snip...] jsp:plugin type=applet code=com.package.Applet.class codebase=/application1/applets/ width=50 height

RE: using jar files in place of class files

2004-02-23 Thread Evgeny Gesin
I set ownership tomcatUser:tomcatUser and permission 770 to the entire path $CATALINA_HOME/webapps/app/WEB-INF/lib, including jar files under 'lib', and then got that exception again. More advice? Evgeny Gesin Javadesk --- Filip Hanik (lists) [EMAIL PROTECTED] wrote: - Root Cause

Re: using jar files in place of class files

2004-02-22 Thread Evgeny Gesin
When I add any JAR in the WEB-INF/lib I got the following exception. Any advice? Evgeny Gesin Javadesk 2004-02-22 18:38:09 WebappLoader[/myapp]: Deploying class repositories to work directory /usr/java/tomcat/work/Catalina/127.0.0.1:80/myapp 2004-02-22 18:38:09 WebappLoader[/myapp]: Deploy JAR

Bad Cookie Name ?

2004-02-15 Thread Evgeny Gesin
) at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:615) at org.apache.jk.common.SocketConnection.runIt(ChannelSocket.java:786) at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:666) at java.lang.Thread.run(Thread.java:534) Evgeny Gesin Javadesk

Re: [OFF-TOPIC] Workflow Engines

2004-02-12 Thread Evgeny Gesin
I worked with IBM MQ Series Workflow and it is great commercial software. Could you please list Open Source workflow systems. Evgeny Gesin Javadesk --- Ryan Lissack [EMAIL PROTECTED] wrote: Hi, I was wondering whether anyone on the list has experience with any workflow engines

Re: TC 5 production use -- iptables to make it work without root

2004-02-09 Thread Evgeny Gesin
I'm curious, why don't you use Apache and JK connector? Evgeny Gesin --- David Wall [EMAIL PROTECTED] wrote: You are absolutely correct. In fact, I've abandoned JSVC precisely because I can do this. This is great because not only do you need the extra JSVC, but you don't need to start

Re: TC 5 production use

2004-02-07 Thread Evgeny Gesin
I tryed today current release TC5 and seen errors: 1. I have the following lines which run under 4.1.29 but not in TC5 (locale exists in the HttpSession !) jsp:useBean id=locale scope=session class=java.util.Locale / fmt:setLocale value=%= locale % / I got [javac] symbol : constructor Locale