Re: Mathematical Editor for textarea in JSP page.

2007-08-05 Thread Adrian Sutton
Hi Girish, The company I work for creates a product called EditLive! which can do this: http://www.ephox.com/products/editlive/ You can either use it's standard symbol support or the integrated MathML editor. There are a range of options to configure exactly what gets submitted back to the

Mathematical Editor for textarea in JSP page.

2007-08-05 Thread Girish Havaldar
Hi all, in my application i have one textarea in which mathematical symbols like infinity, limit, proportional, not equal to, square root of, sum over … from … to … of, etc., needs to be used, is there any editor that can do above work and which can be embedded in JSP page. -GS- On 2

Re: APR Library with JBoss/Tomcat

2007-08-05 Thread Ron Wheeler
Could someone post a bug against this. The error message does not describe the problem appropriately and the documentation does not clearly link to this "required" library. This gets everyone the first time that Tomcat is installed and it takes a long time to find the library required. It ne

RE: Apache Tomcat 5.5 install issues.

2007-08-05 Thread William Rui
Hi, Kristian Thanks for your help, >>(a) You don't have a JDK installed but just a JRE which [CODE] [EMAIL PROTECTED] apache-tomcat-5.5.23> ls -a .. . apache-tomcat-5.5.23 jdk1.5.0_12 jre1.5.0_12 .. apache-tomcat-5.5.23.tar.gz jdk-1_5_0_12-linux-i586.bin jre-1_5_0_12-

Re: APR Library with JBoss/Tomcat

2007-08-05 Thread Len Popp
On 8/5/07, Len Popp <[EMAIL PROTECTED]> wrote: > tcnative-1.dll goes in the Tomcat bin subdirectory. ... except I see that you're running JBoss, so maybe that's not correct for you. Sorry again. :-) I guess you'll have to check the JBoss documentation to see where it likes to keep DLLs. As a last

Re: APR Library with JBoss/Tomcat

2007-08-05 Thread Len Popp
tcnative-1.dll goes in the Tomcat bin subdirectory. (Sorry for the misunderstanding. I thought you meant you'd built a static APR lib rather than the DLL.) -- Len On 8/5/07, Sam Klin <[EMAIL PROTECTED]> wrote: > I saw all that but again it doesn't say where those dlls get deployed...? I > was abl

Re: APR Library with JBoss/Tomcat

2007-08-05 Thread Sam Klin
I saw all that but again it doesn't say where those dlls get deployed...? I was able to build everything myself from the source code that the APR project provides but there's no document that talks about deployment. If you can point me towards a link that talks about the deployment I would be grate

Re: APR Library with JBoss/Tomcat

2007-08-05 Thread Len Popp
As the log message says, what you need is the Apache Tomcat Native library. (The APR is one part of that.) The Tomcat docs have a page about this - for example, http://tomcat.apache.org/tomcat-5.5-doc/apr.html for version 5.5. That page points to a download page that has both source and compiled bi

APR Library with JBoss/Tomcat

2007-08-05 Thread Sam Klin
I notice my new version of JBoss (4.2.1GA) gives the following message in the server logs: 2007-08-05 15:41:32,650 INFO [org.apache.catalina.core.AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.pat

Tomcat Installtion issue

2007-08-05 Thread Partha Goswami
Hi, I am going to install/start Tomcat 6x version in solaris 10. Now, I did, # mkdir < path of tomcat dir > log # JAVA_HOME=/usrjava #export JAVA_HOME then # CATALINA_HOME=path of tomcat dir # export CATALINA_HOME then, # cd path of tomcat dir /bin #./startup.sh But I am getting follwing er

Re: Per Thread Class Loader... what do you think?

2007-08-05 Thread Leon Rosenberg
could you elaborate a bit more why do you need the classloader to be per thread? In case that you really really need your own classloader for _some_ objects, why don't you create a global classloader and load only those classes from it? why replace thread-classloader back and forth? regards Leon

Per Thread Class Loader... what do you think?

2007-08-05 Thread Johnny Kewl
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //===new DoServiceClass().doService(request, response) ClassLoader origClassLoader = Thread.currentThread().getContextClassLoader(); Ex