Problem in installing app on Tomcat 6 at linux ?

Hi
I developed a web application, I deployed it on Tomcat 6 at windows, it worked fine. It also run successfully on eclipse also.
But when I installed it on Tomcat 6 at linux server, I got following error
org.apache.jasper.JasperException: An exception occurred processing JSP page /index.jsp at line 14
11: <%@ page import="java.util.List"%>
12: <%@ page import="domain.model.Connections"%>
13: <%@ page contentType = "text/html; charset=UTF-8" pageEncoding="UTF-8"  %>
14: <html:html>
15:
16:
17: <head>
Stacktrace:
     org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:505)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:398)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
     sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
     sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
     java.lang.reflect.Method.invoke(Method.java:616)
     org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
     java.security.AccessController.doPrivileged(Native Method)
     javax.security.auth.Subject.doAsPrivileged(Subject.java:537)
     org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
     org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
root cause
javax.servlet.ServletException: java.lang.NoClassDefFoundError: Could not initialize class org.apache.struts.taglib.html.HtmlTag
     org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:852)
     org.apache.jasper.runtime.PageContextImpl.access$1100(PageContextImpl.java:71)
     org.apache.jasper.runtime.PageContextImpl$12.run(PageContextImpl.java:768)
     java.security.AccessController.doPrivileged(Native Method)
     org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:766)
     org.apache.jsp.index_jsp._jspService(index_jsp.java:96)
     org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
     sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
     sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
     java.lang.reflect.Method.invoke(Method.java:616)
     org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
     java.security.AccessController.doPrivileged(Native Method)
     javax.security.auth.Subject.doAsPrivileged(Subject.java:537)
     org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
     org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
Edited by: sspbond007 on Jan 2, 2009 5:31 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

And this is my jsp page
<%@ page language="java" %>
<%@ taglib uri="/tags/struts-html"     prefix="html" %>
<%@ taglib uri="/tags/struts-logic" prefix="logic" %>
<%@ taglib uri="/tags/struts-bean" prefix="bean"%>
<%@ taglib uri="/tags/struts-html-el" prefix="htmlel" %>
<%@ taglib uri="/tags/jstl-core" prefix="c" %>
<%@ taglib uri="/tags/corelib-html"     prefix="corelibhtml" %>
<%@ taglib uri="/tags/display" prefix="display"%>
<%@ taglib uri="/tags/displayel" prefix="display-el"%>
<%@ page import="java.util.List"%>
<%@ page import="domain.model.Connections"%>
<%@ page contentType = "text/html; charset=UTF-8" pageEncoding="UTF-8"  %>
<html:html>
<head>
<script language="javascript">
     function doUpload(){
          document.connectionsActionForm.action="connectionsAction.do?eventName=imageUpload&entityName=connections&image=testingPurpose&imageName=test.png";     
          document.connectionsActionForm.submit();
     function doInsert(){
          document.connectionsActionForm.action="connectionsAction.do?eventName=create&entityName=connections&xmlData=";     
          document.connectionsActionForm.submit();
     function doGenerateMap(){
          document.connectionsActionForm.action="connectionsAction.do?eventName=map&entityName=connections&lat=28.6&longt=72.6&zoom=8";     
          document.connectionsActionForm.submit();
</script>                    
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="expires" content="0">
<title>Test</title>
<link rel="StyleSheet" href="img/newswadmin.css" type="text/css">
</head>
<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
          <html:form action="/connectionsAction.do">
          <!-- <input type="button" value="imageUpload" onclick="doUpload();"/>
          <input type="button" value="adds" onclick="doInsert();"/> -->
          <input type="button" value="map" onclick="doGenerateMap();"/>
</html:form>
</body>
</html:html>Please help me

Similar Messages

  • Guys, good evenning! What is the most recently (or the best) iOS for the iphone 3G? Nowadays, i am using the 4.2.1 but i am having some problems to install apps from Apple Store because this iOS is not compatible with the apps. Thank You...

    Guys, good evening!
    What is the most recently (or the best) iOS for the iphone 3G?
    Nowadays, I'm using the 4.2.1, but I'm having some problems to install apps from Apple Store because this iOS is not compatible with the apps.
    Thank you very much...

    Thank You Niel!
    And if I install another version (eg 4.3), can I damage my iphone?
    This is the version required by the Apple Store when I try to install apps.
    For you understand better my problem, I'm not able to install simple apps like facebook and skype
    What do you advise me to do?
    Best regards,
    Jocemar

  • Getting problem in install apps

    getting problem in install apps creative cloud

    Creative Cloud Learn & Support
    http://helpx.adobe.com/creative-cloud.html
    Creative Cloud / Common Questions
    http://helpx.adobe.com/creative-cloud/faq.html
    Creative Cloud Help / Sign out, Sign in | Creative Cloud desktop app
    http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    Creative Cloud Help / Install, update, or uninstall apps
    http://helpx.adobe.com/creative-cloud/help/install-apps.html
    Installing Creative Cloud Apps
    http://tv.adobe.com/watch/cs6-creative-cloud-feature-tour-for-video/installing-desktop-app s-from-creative-cloud/

  • What is the problem in installing 8.1.7 on Linux

    Hi
    I have seen a lot of posts discussing about
    problem in installing 8.1.7 on rh Linux 7.
    Can anyone tell me what is the actual problem, and do I need to download any patches to resolve it ?
    pam

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by pam:
    Hi
    I have seen a lot of posts discussing about
    problem in installing 8.1.7 on rh Linux 7.
    Can anyone tell me what is the actual problem, and do I need to download any patches to resolve it ?
    pam<HR></BLOCKQUOTE>
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>I hava a problem in ORACLE_SID variable during installation<HR></BLOCKQUOTE>
    null

  • JVM problem in installing oracle9i on Red Hat Linux ver 4.18

    Hi ,
    I am facing problem in installing oracle 9i on Red Hat Linux ver 4.18
    Error are
    " Initializing Java Virtual Machine from /tmp/OraInstall2007-06-10_12-11-22AM/jre/bin/java. Please wait...
    Error occurred during initialization of VM
    Unable to load native library: /tmp/OraInstall2007-06-10_12-11-22AM/jre/lib/i386/libjava.so: symbol __libc_wait, version GLIBC_2.0 not defined in file libc.so.6 with link time reference"
    can anybody help me?

    Hi,
    You should consider installing Oracle patch 4198954.
    You can obtain it from Oracle Support (Metalink).
    Regs,
    Olivier Guyot

  • N8 problem when installing apps from Nokia Store

    Hey guys! I have problem with my Nokia N8. Most of the time, when I try to install app on it using Nokia Suite on my PC, Suite says that app has just been installed correctly, but on the phone says "Downloading error" and the app doesn't exist. Same thing happened today when I tried to install Viber. Help please

    I would suggest you try and update to the latest Ovi Store, now called Nokia Store.
    With your phone's browser go to the following address:
    http://lr.ovi.mobi/store/new-symbian-3
    you should then get the option to install the latest Nokia Store client, and this should include new QT files. Corrupt QT files are usually the problem when installations from the Nokia/Ovi Store fails.

  • Problems to install apps

    Hello!
    I have a problem with 3 apps in particular:
    - Bridge CC
    - Dreamweaver CC
    - Photoshop CC
    I want to install them on my Mac, but Creative Cloud tells me they are already installed and updated. They are not!!
    I checked my mac up and down to find them, unistall them and re-install them again, but they just don't exist!
    I can't install them, because Creative Cloud has them updated and I can't unistall them, because I don't have them.
    What should I do?
    (If it helps : those 3 apps, were the ones I had as a 30-days-test-version before buying the Adobe suite)
    Please help!!!

    Run the cleaner tool and try again.
    http://www.adobe.com/support/contact/cscleanertool.html
    Mylenium

  • Problem in Installing oracle 11g in enterprise linux

    Hello all,
    Iam new to linux and oracle .... I had downloaded enterprise linux from oraclewebsite, My question is i was not able to install oracle 11g in enterprise linux...
    And when i am trying to install ./runInstaller
    iam getting error message (permission denied).
    is that necessary to install oracle vm server or manager .. if so how to do it .. Please give me clear idea how and where to start..

    Hi,
    The error message which iam getting is
    [root@Karthik database]# ls -la
    total 48
    drwxr-xr-x 8 root root 4096 Sep 10 15:42 .
    drwxr-xr-x 3 root root 4096 Sep 10 15:40 ..
    drwxr-xr-x 12 root root 4096 Sep 10 15:42 doc
    drwxr-xr-x 4 root root 4096 Sep 10 15:42 install
    drwxr-xr-x 2 root root 4096 Sep 10 15:42 response
    drwxr-xr-x 2 root root 4096 Sep 10 15:42 rpm
    -rwxrwxrwx 1 root root 4352 Aug 13 23:56 runInstaller
    drwxr-xr-x 2 root root 4096 Sep 10 15:42 sshsetup
    drwxr-xr-x 14 root root 4096 Sep 10 15:46 stage
    -rw-r--r-- 1 root root 5400 Aug 17 12:25 welcome.html
    [root@Karthik database]# ./runInstaller
    ./runInstaller: line 137: /root/Desktop/linux_11gR2_database_1of2/database/install/.oui: Permission denied
    The command
    bash ./runInstaller.sh didnt helped. again got the error of bash: ./runInstaller.sh: No such file or directory
    Thanks,
    karthik

  • Problem when installing app "tomtom europe"

    Hi,
    I'm trying to install app "tomtom europe" on my iphone but I get the error "download failed - not enough memmory".
    But the sysmtem showns me 4.4 GB free memory and the Tomtom app requires something about 1,7 GB ???

    TomTom Europe is huge. Apps traditionally require between two and three times the publicised memory to get through the loading process. Even your 4.4GB might not be quite enough. Try temporarily dumping even more video/music/photos.

  • Problem on installing app too

    Now more worst I also having problem downloading other app?  Showing picture with dim
    light and word "waiting" after the downloading the app but no progress.

    Now more worst I also having problem downloading other app?  Showing picture with dim
    light and word "waiting" after the downloading the app but no progress.

  • Problem with installed apps

    I recently updated to ios 6 but now all of my installed apps say this instead on installed 
    http://i825.photobucket.com/albums/zz180/Poopdude123/637FAC67-7D13-4357-A9E0-075 368050C8E-142-0000000347EFA473_zps922ebf79.jpg
    -Also, whenver i touch that thing that replaces installed, the app just starts to redownload.

    Well, if for some reason you need to re-download the app, you'll have to pay for it again.  If that download happens to fail (like in my situation), you have to pay AGAIN to try and get it. If it fails a third time, you'll have to pay again and so on.
    I downloaded RoadSync (10 Euro) and my phone had to be re-installed.  I re-installed my phone, and Ovi wanted me to rebuy RoadSync.  I tried emailing support (fail) and with no reponse, re bought it.  It then failed mid download, and It wants me to buy a third time.
    Ovi support has yet to get back to me, Nokia Care told me to jump off a cliff and contact the vendor.  Vendor says contact ovi.  
    Thank you from Ovi  
    Lumia 920/N9
    Previous Life: N8, N95, 8600, 8800 Sapphire Arte, N97, N97-Mini, 5800 and a few older ones

  • Problem re/installing apps

    Hi my name is Jessica. I am trying to re/install apps on my macbook version 10.6.8 because I reinstall the operative system a couple days ago. When I click on download the app it says that the app no longer supports my operative system. But again, I reinstall the same operative system I had before and I was using illustrator, photoshop just fine with it. Why it doesn't let me do it again? I have a student membership and I am paying for this every month and I need to keep using this programs.
    Thank you.

    The Creative Cloud (CC 2014) versions of the two programs you mention require Mac OS version 10.7 or higher.  It might be a case where you had older versions running on the machine before you reinstalled the system and updates to newer versions never happened since your OS was older than required.  You should still be able to download and install the version you had earlier, such as CS6.  I see that the older CC version of Illustrator does allow for 10.6.8, but Photoshop of that version does not.
    If you continue to have an issue you should contact Adobe Support and have them help you thru this.  Start Here  If after selecting relevant responses you are unable to find a solution, choose "Still need help? Contact us." and the chat contact option.

  • Problems when installing apps

    Since I installed Mountain Lion, I cannot install certain apps and I have configured my Imac to let install apps from everywhere in Gatekeeper. Is does not launch them and futhermore some of them keep bouncing in the dock but never launch.
    I have repaired permissions, reinstalled software and i do not know what else can I do.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Click the Clear Display icon in the toolbar. Try the action that you're having trouble with again. Post any messages that appear in the Console window – the text, please, not a screenshot.
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into a message.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

  • Problem with installing Oracle 10g on Suse Linux

    Hi everybody!
    I downloaded Oracle 10g Express from this url:
    http://www.oracle.com/technology/software/products/database/xe/htdocs/102xelinsoft.html
    it is free version for developers.
    I copied it into computer where was installed Suse Linux Enterprise Edition.
    But when I run it shows this kind of error:
    error: rpmReadSignature failed: region failed: BAD, tag 15872 type 2047 offset 20480 count 4096
    error: oracle-xe-univ-10.2.0.1-1.i386.rpm cannot be installed
    It was downloaded without any problem. But checksum is different from that shown on website. I think this is the problem.
    What is the problem? Does anybody know answer?
    Regards,
    Seti's fiction

    Yes, you appear to have a bad copy.
    I have not had a problem when the check sum matched. Therefore I encourage you to download again.

  • Problem with install oracle on OEL5.3 linux

    Hello,
    Have some strange problem with oracle enterpise linux 5.3 32 bit, during install Oracle 10gR2 got link errors,
    after founded what is problem with linking oracle executables:
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib
    relink oracle
    /usr/bin/ld: cannot find -lskgxn2
    all depended rpms and parameters are set, looks like missing some library, but cannot recognise with one.
    Have somebody spoted souch error ?

    The zipfile on technet has a checksum:
    Oracle Database 11g Release 1 (11.1.0.6.0) for Linux x86
              linux_11gR1_database_1013.zip (1,844,527,800 bytes) (cksum - 1044354138)
    When the zipfile is downloaded, you can check the zipfile on linux with the cksum command, it should be exactly the same as listed on technet, otherwise the zipfile is corrupted.

Maybe you are looking for