Tomcat with eclipse-jee-europa problem

i am using eclipse-jee-europa and tomcat5.0, and i load tomcat plugin into eclipse plug in,after i start the server i got this message in console
Jan 25, 2008 9:57:53 AM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on port 8080
Jan 25, 2008 9:57:53 AM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 5187 ms
Jan 25, 2008 9:57:54 AM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Jan 25, 2008 9:57:54 AM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.0.14
Jan 25, 2008 9:57:54 AM org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
Jan 25, 2008 9:57:56 AM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on port 8080
Jan 25, 2008 9:57:57 AM org.apache.jk.common.ChannelSocket init
INFO: JK2: ajp13 listening on /0.0.0.0:8009
Jan 25, 2008 9:57:57 AM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/141 config=null
Jan 25, 2008 9:57:57 AM org.apache.catalina.startup.Catalina start
INFO: Server startup in 3516 ms
Jan 25, 2008 9:58:06 AM org.apache.catalina.core.StandardHost getDeployer
INFO: Create Host deployer for direct deployment ( non-jmx )
when i start browser i did't get files in tomcat
plz help me
M.david

Hi peart!
I have not installed it either. I have tried with several compressed files:
eclipse-jee-europa-linux-gtk.tar.gz
wtp-all-in-one-sdk-R-2.0-200706260303-linux-gtk.tar.gz
eclipse-SDK-3.3-linux-gtk.tar.gz. After extracts I update and installs WTP.
All ways fails.
Too try add "-Djava.library.path=.:/home/pilli/eclipse:/usr/share/java/swt" eclipse.ini file.
I can works with jsp file with jsp editor, but when i try edit with web page editor, a jsf visual editor, eclipse breaks.
I use KDE.
Thanks!

Similar Messages

  • Cannot make .war file using tomcat with eclipse and ant

    i have made all necesary configuration for deploying application using eclipse and ant for the tomcat server.
    when i start the server by clicking the tomcat icon on eclipse toolbar, the message is prompted that "missing application web.xml and using defaults". i have placed the web.xml file in the web/WEB-INF directory of the source project directory.
    also when i use ant by right-clicking on the build.xml file and choose Run as ant.. the process creates a desired .war file in webapps folder of the tomcat server but that war file does not works.
    where is the error i cannot figure out.
    am attaching the code of build.xml for reference.
    please help.
    build.xml:-
    <project name="BecilCTI" default="compile" basedir=".">
    <property file="build.properties"/>
    <property file="${user.home}/build.properties"/>
    <property name="app.name" value="BecilCTI"/>
    <property name="app.path" value="/${app.name}"/>
    <property name="app.version" value="0.1-dev"/>
    <property name="build.home" value="${basedir}/build"/>
    <property name="catalina.home" value="c:/Tomcat_5.5"/> <!-- UPDATE THIS! -->
    <property name="dist.home" value="${basedir}/dist"/>
    <property name="docs.home" value="${basedir}/docs"/>
    <property name="manager.url" value="http://localhost:8080/manager"/>
    <property name="src.home" value="${basedir}/src"/>
    <property name="web.home" value="${basedir}/web"/>
    <property name="compile.debug" value="true"/>
    <property name="compile.deprecation" value="false"/>
    <property name="compile.optimize" value="true"/>
    <!--<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter"/>-->
    <path id="compile.classpath">
    <!-- Include all elements that Tomcat exposes to applications -->
    <pathelement location="${catalina.home}/common/classes"/>
    <fileset dir="${catalina.home}/common/endorsed">
    <include name="*.jar"/>
    </fileset>
    <fileset dir="${catalina.home}/common/lib">
    <include name="*.jar"/>
    </fileset>
    <pathelement location="${catalina.home}/shared/classes"/>
    <fileset dir="${catalina.home}/shared/lib">
    <include name="*.jar"/>
    </fileset>
    </path>
    <target name="all" depends="clean,compile"
    description="Clean build and dist directories, then compile"/>
    <target name="clean"
    description="Delete old build and dist directories">
         <echo message="Cleaning all dirs."/>
    <delete dir="${build.home}"/>
    <delete dir="${dist.home}"/>
    </target>
    <target name="compile" depends="prepare"
    description="Compile Java sources">
    <!-- Compile Java classes as necessary -->
    <mkdir dir="${build.home}/WEB-INF/classes"/>
    <javac srcdir="${src.home}"
    destdir="${build.home}/WEB-INF/classes"
    debug="${compile.debug}"
    deprecation="${compile.deprecation}"
    optimize="${compile.optimize}">
    <classpath refid="compile.classpath"/>
    </javac>
    <!-- Copy application resources -->
    <copy todir="${build.home}/WEB-INF/classes">
    <fileset dir="${src.home}" excludes="**/*.java"/>
    </copy>
    </target>
    <target name="dist" depends="compile"
    description="Create binary distribution">
    <!-- Copy documentation subdirectories
    <mkdir dir="${dist.home}/docs"/>
    <copy todir="${dist.home}/docs">
    <fileset dir="${docs.home}"/>
    </copy> -->
    <!-- Create application JAR file -->
    <jar jarfile="${catalina.home}/webapps/${app.name}.war"
    basedir="${build.home}"/>
    <!-- Copy additional files to ${dist.home} as necessary -->
    </target>
    <target name="install" depends="compile"
    description="Install application to servlet container">
    <deploy url="${manager.url}"
    username="${manager.username}"
    password="${manager.password}"
    path="${app.path}"
    localWar="file://${build.home}"/>
    </target>
    <target name="list"
    description="List installed applications on servlet container">
    <list url="${manager.url}"
    username="${manager.username}"
    password="${manager.password}"/>
    </target>
    <target name="prepare">
    <!-- Create build directories as needed -->
    <mkdir dir="${build.home}"/>
    <mkdir dir="${build.home}/WEB-INF"/>
    <mkdir dir="${build.home}/WEB-INF/classes"/>
    <!-- Copy static content of this web application -->
    <copy todir="${build.home}">
    <fileset dir="${web.home}"/>
    </copy>
    <mkdir dir="${build.home}/WEB-INF/lib"/>
    </target>
    <target name="reload" depends="compile"
    description="Reload application on servlet container">
    <reload url="${manager.url}"
    username="${manager.username}"
    password="${manager.password}"
    path="${app.path}"/>
    </target>
    <target name="remove"
    description="Remove application on servlet container">
    <undeploy url="${manager.url}"
    username="${manager.username}"
    password="${manager.password}"
    path="${app.path}"/>
    </target>
    </project>

    So is context.xml actually overwriting the settings found in server.xml?I think so. The way I understand it is the the context.xml file saves you from having to edit server.xml. It is preferred for each web app to do its own config, rather than lumping them all together in server.xml.
    And what would be the best way to create the war file? IAt its heart, a WAR is just a zip file with its contents laid out in according to the specification of a web application directory structure.
    So the simplest way to make a war file is to zip up your directory structure with a tool like winzip, and rename it to be myApp.war.
    Regarding ant, I would recommend you take a look through [url http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/index.html
    ]this tutorial. It explains the basics of website layout, configuration and deployment.
    On [url http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/source.html] this page  in particular, it includes a link to a basic ant file that you can use as a starting point.
    Cheers,
    evnafets

  • OEPE 12.1.2.1 with Eclipse (Kepler) M2E and M2E-WTP and Seam 2 problem

    I've a JEE project with Maven 3.0.5  and JBoss Seam 2.3. I've some problems in Weblogic 12.1.2 application deployments with Eclipse.
    If I deploy the application as virtual application (split_src and .beabuild.txt), the .beabuild.txt includes the directories:
    C\:/FundeWeb/2.0/workspace/fundeweb2/web/target/m2e-wtp/web-resources = web_fundeweb2  (m2e-wtp project generated resources)
    C\:/FundeWeb/2.0/workspace/fundeweb2/web/src/main/webapp = web_fundeweb2 (project web resources)
    That's produces the next error (Multiple WEB-INF/ejb-jar.xml found):
    <01-ago-2013 14H07' CEST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID "1375358874432" for task "1". Error is: "weblogic.application.ModuleException: Multiple WEB-INF/ejb-jar.xml found. [weblogic.servlet.internal.WarSource@19d4f67, weblogic.servlet.internal.WarSource@c7fd40]"
    weblogic.application.ModuleException: Multiple WEB-INF/ejb-jar.xml found. [weblogic.servlet.internal.WarSource@19d4f67, weblogic.servlet.internal.WarSource@c7fd40]
      at weblogic.ejb.container.deployer.EjbModuleExtensionFactory.create(EjbModuleExtensionFactory.java:26)
      at weblogic.application.internal.ExtensibleModuleWrapper.createModuleExtensions(ExtensibleModuleWrapper.java:264)
      at weblogic.application.internal.ExtensibleModuleWrapper.initDrivenObjectArray(ExtensibleModuleWrapper.java:232)
      at weblogic.application.internal.ExtensibleModuleWrapper.prepare(ExtensibleModuleWrapper.java:107)
      at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:100)
      Truncated. see log file for complete stacktrace
    If I deploy the aplication in Weblogic Console with the split_src, with only the web/target/m2e-wtp/web-resources, the applications deploy succesfully.
    If I deploy de application as exploded archive, the jboss-seam.jar file isn't included in the WEB-INF/lib folder. The others jboss-seam-xxxx.jar files are included.
    In the virtual application deployments, I think that the OEPE integration with M2E and M2E-WTP, there are include only the m2e-wtp folders.

    Hi Subash,
    I tried the same installer on a 32bit machine and was able to run without any issues.
    I did however come across a few users jdeveloper users who had similar issues with the jdev installer and the following workaround seems to have solved the issue for them. coudl you try the same and let us know if that helped ?
    1. Extract "oepe-12.1.2.1-kepler-installer-win32.exe" file into C:\oepe-12.1.2.1-kepler-installer-win32
    2. In cmd go to C:\oepe-12.1.2.1-kepler-installer-win32
    3. Execute follow command:
       C:\PROGRA~1\Java\jdk1.6.0_31\bin\java.exe ( path to your JDK)  -jar install/modules/ora-launcher.jar DISKCNT=1 JRE_COMPONENT=oracle.jdk,oracle.jre
    thanks
    Raj

  • Problem with downloading maps (europe maps)

    i can't download from nokiasuite any map of europe, starts with downloading basical europe map, after few minutes it says that there is a problem with internet, check connection. There is no problem with downloading other maps, apps, video, and other

    Hi edil95, 
    Welcome to Nokia discussions board!
    In order to be able to download Europe maps without problem, I advise you to follow the simple steps below: 
    1) Uninstall the current version of Nokia Suite that you have. 
    2) Clean the registry with a registry cleaner. 
    3) On your PC, go to Start > Run and type %temp% and click on "Run". Delete all Nokia folders from the folder that opens. 
    4) Download the newest Beta version of Nokia Suite from this link: 
    http://betalabs.nokia.com/apps/nokia-suite-beta
    You will need to sign in to your Nokia account - the same credentials used to log into this forum. 
    Once the program is installed on your PC, open it, connect your device to it and go to the Maps tab and start installing the maps again.
    Let us know how you get on and feel free to post any other questions you may have.
    Regards,
    astra2025 
    Press the 'Accept Solution' icon if I have solved your problem, Kudos my post if my advice has helped you!

  • JSP problem when running Tomcat in Eclipse

    Hello,
    Eclipse newbie here.
    I just started using Eclipse and I have installed the Tomcat plugin. When I run Tomcat within Eclipse, http://localhost:8080 works fine, but when I tried to access a JSP that I've created, I'm getting this error:
    HTTP Status 404 - /JSPDemo.jsp
    type Status report
    message /JSPDemo.jsp
    description The requested resource (/JSPDemo.jsp) is not available.
    Using Eclipse version 3.1.2
    Tomcat Plugin = sysdeo 3.1
    Tomcat version 5.0.28
    JDK + JRE = 1.4.2_08
    I was just following this tutorial:
    http://plato.acadiau.ca/courses/comp/dsilver/2513/EclipseAndTomcatTutorial/
    Thanks in advance.

    why not use Web Tools Project of Eclipse, it comes with all plugins necessary for J2EE and Web development
    http://www.eclipse.org/webtools/
    it's much easier to use

  • Compilation's problems with eclipse

    hello
    in working for my thesis with eclipse I have see that the modify to source code have not effect in runt-time
    In effect I have an file .class, I modify the source file .java, I compile and i go this in run with the Eclipse command <<run>> but the behavior not change.
    I don't lie because i appnd a
    system.out
    to main of a class and in run-time the print is'nt.
    What's appened?
    I not remober about modify about Eclipse's configuration ????
    What do you think??
    thank for every feed-back
    Alessandro Puzielli

    Ehm...
    I use Eclipse over Linux.. I have runned Eclipse as
    "root" a few of day ago and Eclipse's behaviort was
    ok. After I have lanched Eclipse as normal user and
    in effect I try to overwriter the *class of root and
    it's impossible!it's normal 'cause you don't have the permissions on the project files
    I have take a few of day for the understand the
    problem with a
    $ stat name_of_file_.classThanks for the responses!so if your project is a small project, start Eclipse as normal user and rewrite your project ! otherwise, log u as root and give you all the permission on the project and it may work (chmod 777 -R project_path)
    peace
    fred

  • Problem with Eclipse  -- pls help

    hi
    When i execute the application in debug mode with one break point :
    These are the errors i get and the compiler is not stopping at the break point .
    Pls help :
    Thread [main] (Suspended (exception ClassNotFoundException))     
         ClassLoader.findBootstrapClass(String) line: not available [native method]     
         Launcher$ExtClassLoader(ClassLoader).findBootstrapClass0(String) line: not available     
         Launcher$ExtClassLoader(ClassLoader).loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader.loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClass(String) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClassInternal(String) line: not available

    If the compiler is not stopping at your breakpoint, then it probably means that the java code you're looking at and the compiled class file are out of synch. If you're getting a classnotfound, then your classfile most likely is either not there or is not where expected.
    Check the output folder in project's properties (which may or may not be the default), and see if your classfiles are actually there. Perhaps there is some error that is preventing your classfile from being generated (Eclipse sometimes won't even be able to compile), so check the problems dialog.
    Try refreshing your project, and if all else fails, restart Eclipse/delete & create the project again. That sometimes magically fixes things. Otherwise, welcome to the quirkiness of dealing with Eclipse!

  • Problem with Eclipse 3 and Lomboz 213

    Hi, I am pretty new in working with Eclipse, and i?ve been trying to create a small j2ee aplication just to try, but I?m having problems when trying to create an EJB, everything goes fine (I created a component with a method, then I added this module but when generating the interfaces.....) until I have to genrate the EJB classes. When I click in "generate EJB Classes" for my component, I get this error:
    "Error generating EJB Reason: J2EEAction.internal "
    I have no idea what it might be, if somebody knows or has any suggestion of any kind please e-mail me to [email protected]
    I don?t know if its a bug of the lomboz, if it is, please tell me what to do.
    Thanks.

    I don?t know if its a bug of the lomboz, if it is,
    please tell me what to do.It is a bug in Lomboz. It has a forum here: http://forge.objectweb.org/forum/forum.php?forum_id=360.

  • Problem with Eclipse - CVS

    I am using CVS with Eclipse. I have small problem here. If I just open any file under source control & even if I don't change anything its showing as changed [the dirty > tag comes].
    What could be the reason/setting needed ?
    Thnks.

    This is not the right forum for this question. You might have better luck at one of the Eclipse newsgroups:
    http://www.eclipse.org/newsgroups/index_all.php

  • J2ME/Eclipse Pulsar/Polish UI - problem with Eclipse integration of JPolish

    Hi guys,
    I have J2ME SDK 3.0 here with Eclipse Pulsar (with mobile tools for java) and I want to use the J2ME Polish libraries.
    I install J2ME Polish 2.1.2 and set the eclipse home directory and the "Integrate mepose with eclipse" tick or something like that.
    Anyway, when I restart everything after the installation I can't see the plugin view in my eclipse.
    I also can't manage to manually download the plugin from Help>Install new Software>add url : ww.j2mepolish.org/mepose
    Any ideas ? I'm new to J2ME at all.
    Thank you in advance

    Likewize .. the Polish UI dont show in prefs. Tried with both win/mac but same result.
    Its seems like j2mepolish-2.1.2 and pulsar dont want to play ,(
    Why?
    cheers/k.

  • Problems with Eclipse 3/JMechanic profile

    Hi
    Anybody has tryed to use JMechanic profiling tool with Eclipse???? I have not succedded at all!!!
    I am using Eclipse 3.0, JMechanics 0.5.5 an SDK 1.4.2.
    I am trying to run "JMechanics" to do profiling on a simple program with two classes.
    In Eclipse, I use the Debug to start the JMechanics on my main class. The program executes all right however I get a lof of error messages from JMechanics.
    Does anybody have any ideas why JMechanics/profiling is failling???
    Output from jMechanics:
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR : got a NULL trace in class_load
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to map JVMPI obj ID to hprof obj ID in globalref_alloc
    HPROF ERROR: unable to map JVMPI obj ID to hprof obj ID in globalref_alloc
    HPROF ERROR: class ID already in use
    Dumping Java heap ... allocation sites ... CPU usage by sampling running threads ... done.

    You might try J2SE/SDK 1.5.0, the hprof in it is new. But I have no idea if Eclipse works with 1.5.0.

  • Windows Azure deployment with Eclipse plugin

    Hi everybody!
    I want to deploy a windows azure deployment project.
    Here is my problem:
    When i create the project there is no samples folder, so i can't edit my startup.cmd to make it run. I don't know how to edit the startup.cmd by my own. I am using tomcat 7.0.34. I would need a sample how to write the startup.cmd to make my project run.
    It would be great if you could show me an example of a startup.cmd for tomcat and explain what's going on there.
    Another thing i want to ask is if i have to join the zipped jdk folder to the approot folder or the jre folder. I have seen both ways in different tutorials and this confuses me.
    I hope you can help me!

    Hi,
    Seems you have some issue in deploy windows azure project to Windows Azure, I didn't very familiar with java, hope the following links give some help.
    #http://msdn.microsoft.com/en-us/windowsazure/ee941631.aspx
    #http://java.interoperabilitybridges.com/articles/deploying-a-java-application-to-windows-azure-with-command-line-ant
    #http://java.interopbridges.com/articles/deploying-a-java-application-to-windows-azure-with-eclipse
    Best Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can we use RoboHelp with Eclipse as version control?

    Im am using RoboHelp 7 in the Tech Comm Suite in a Windows XP environment.
    I see a lot of information on using RoboSource as versionn control, but I'm not seeing a lot of information on other third-pary version control software.  I did see one posting that suggested that if you are planning to use third-party software, you should uninstall RoboSource first.  I can't seem to figure out the following:
    How do you determine if your version control (Eclipse) supports Microsoft SCC API?
    How do you get RH to recognize Eclipse? Even though I uninstalled RoboSource Control 3, it still shows up in the Select Version Control Provider
    Are there step-by-step instructions anywhere that show how to get RoboHelp to recognize third-party software?
    As always, thanks for your assistance.

    Colum,
    Thanks for recommending that I visit Peter's web site.  It has a great page on Eclipse.  Wish I had read it before I was shoved kicking and screaming into using it.  However, it did stop short of providing me with information to troubleshoot the problems I'm having with Eclipse and RH 7.  I sent him an e-mail from the site and hope that he will be able to answer it.

  • Error with eclipse

    hi,
    i know this is not a web app forum,but as my question is with eclipse i am posting my question here
    i am trying to debug my application through eclipse. i have added source and jars to eclipse debug environment. when i dubug i am getting follwoing error,where its working with tomcat deployment . any suggestion?
    SEVERE: IOException while loading persisted sessions: java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: org.apache.log4j.Logger
    java.io.WriteAbortedException: writing aborted; java.io.NotSerializableException: org.apache.log4j.Logger

    Crosspost: http://forum.java.sun.com/thread.jspa?threadID=5228948&tstart=0
    You've been told before also. Is it difficult to comprehend?

  • Flex Builder 3 under Eclipse - project .settings problem

    I've been experiencing some odd problems with a project using FlexBuilder 3 plug-in with Eclipse.
    The first problem I've noticed is that a file under the .settings dir has a red 'x' beside it. The offending
    file is org.eclipse.jst.common.project.facet.core.prefs. I've left the file as is until I understand how it became corrupt.
    The second problem is that .as and .mxml files are no longer being opened in the Flex Builder editor -
    the are being opened in TextPad, which it the default editor outside of Flex Builder. I've tried all of the available
    editors and none of them work under Flex Builder.
    The third problem is that when I try to create a new Flex Builder project from New->Project-> there is no
    option for a FlexBuilder project.
    The Flex Development perspective is visible in the top right hand corner as usual. When I select Open Perspective
    there is no Flex perspective.
    Should I just reinstall the FlexBuilder plugin?
    Thanks!

    Hi Peter,
    It has not been fully tested yet but a few of us are using
    it. If you see any issues in Eclipse 3.3RC4 with FB3 Plugin, please
    file a bug in our new public bug system:
    http://bugs.adobe.com/flex.
    thanks,
    Sharon

Maybe you are looking for

  • How to stop the standard navigation to view from NavBar?

    Hi Folks, My solution is in CRM IC 5.0. My application is a Z one. I have a custom button in the "Followupdetails" view Initially the "Identify Customer(BupaDetail)" view loads up as soon as we log onto IC. Navigation to any other view selected from

  • Mac mini:  Will not reboot

    I have a late 2005 Mac Mini (not intel). The other day I disconnected my ipod accidently while it was updating and ever since I'm having issues. Mini froze up and then wouldn't boot. Finally go it to boot up once then screen froze. Then wouldn't boot

  • Post a mail on a particular date

    We have developed a site for a greeting shop.. Here we have few sanple cards to be send on an occassion. The problem here is, we need to send a mail on some other day(day selected by him - greater than today) automatically. like in greetings.yahoo.co

  • Enhancement-Point in ECC6 Issue

    Hi all, We recently did an Technical Upgrade from ECC5 to ECC6. After the Upgrade, during the Syntax Check in one of the custome reports we developed, we are getting an error "The statements ENHANCEMENT-SECTION and ENHANCEMENT-POINT (without the STAT

  • Stuck in Software Update Loop

    So When I try to do a software update for ¨Mac Pro EFI Firmware Update Version 1.2¨and ¨Security Update 2007-009 (universal) version 1.1¨it asks me to restart. I do. Then it says I need to shut down. After turning on the computer again, I find that t