Building Tomcat source under Eclipse

Hallo, all
I want to study tomcat code and build Tomcat source under Eclipse IDE (Windows, JDK 142). I have readed the Guide on Tomcat web http://jakarta.apache.org/tomcat/tomcat-5.5-doc/building.html
and downloaded the build.xml and try to run ant, ant will download needed package, i got the same error all the time, seemed that i do not have a CVS client? Who can give me some idea about building tamcat under eclipse, thanx!!!
checkout:
[echo] If the checkout fails, run `cvs -d :pserver:[email protected]:/home/cvspublic login` and try again. Th
password for the anonymous CVS access is `anoncvs`
[cvs] Caught exception: CreateProcess: cvs -d:pserver:[email protected]:/home/cvspublic -q -z3 checkout -P j
karta-tomcat-5 error=2
[cvs] Caught exception: CreateProcess: cvs -d:pserver:[email protected]:/home/cvspublic -q -z3 checkout -P j
karta-tomcat-catalina error=2
[cvs] Caught exception: CreateProcess: cvs -d:pserver:[email protected]:/home/cvspublic -q -z3 checkout -P j
karta-tomcat-jasper error=2
[cvs] Caught exception: CreateProcess: cvs -d:pserver:[email protected]:/home/cvspublic -q -z3 checkout -P j
karta-tomcat-connectors error=2
[cvs] Caught exception: CreateProcess: cvs -d:pserver:[email protected]:/home/cvspublic -q -z3 checkout -P j
karta-servletapi-5 error=2

Go: Right Click on My Computer (on your desktop) -> Properties -> Advanced -> Environment Variables
You should have JAVA_HOME set to something like C:\j2sdk1.4.1_05 and CATALINA_HOME set to something like C:\jakarta-tomcat-4.1.27. You don't need to set a classpath.

Similar Messages

  • How can I build and Debug Tomcat 5.5 under Eclipse?

    http://jakarta.apache.org/tomcat/tomcat-5.5-doc/building.html
    I am doing some rearch on Tomcat and want to build and debug Tomcat5.5 under Eclipse. Originally tomcat is built with ANT, it downloads all components from different CVS and build them together.
    I'd like to import Tomcat Source code (only the core components, such as catalina and Coyota, Jasper) and build them with Eclipse Bilder, so I can debug it as a normal JAVA program under DEGUB-View.
    Who has such experience and help me? I havd built Jetty under Eclipse, but Tomcat is much more complex.

    Help

  • RH10 variable and build tag source file names

    I'm using RH10 and outputting to WebHelp. My company requires that I archive project source files to our CVS via Eclipse. I am not using RoboSource_Control and must use the company's development resources for archiving.
    Since archiving the initial project, I have been uploading only source files with modified dates.
    However, I have discovered that the files I thought were storing user variables and build tags are not the correct files to archive. Since I am uploading all files with a newer date and that's not working, I need to know the user variable source file name and the build tag source file name that stores the currently defined variables and build tags.
    I have already tried the WebHelp forum and was directed to this forum to pose the question because I'm looking for source file information instead of output file information.
    Thanks for your help!
    karen

    Yes, Eclipse does work that way. However, we do not use our development directory as the local Eclipse repository. I need to move changed files to the local repository (stores all source files in the project) so that Eclipse can upload changes to the server. Yes, this is planned redundancy.
    That said, it is not acceptable to spend the time copying all files in the large projects from the work folder to the local repository. I simply need to know which individual files to copy that include the currently defined variables and build tags. Note, we do not copy the SSL folder output files to our local source file repository, or other associated reference files that are not actually project source files.
    Can you find someone who knows which files I need?
    Thanks,
    karen

  • Compiling JDK 1.4.2 from source, under win32

    Hi,
    Here is how I compiled JDK 1.4.2 from source-code under win32. I hope this helps the many others who are interested in doing the same.
    1) Download the sources from here: http://wwws.sun.com/software/communitysource/j2se/java2/download.html
    Be sure to download all packages (SCSL source, SCSL binaries, mozilla binaries)
    2) Download gnu make from here: http://ftp.gnu.org/pub/gnu/make/
    3) Download Info-zip "zip" and "unzip" packages: http://www.info-zip.org/pub/infozip/UnZip.html and http://www.info-zip.org/pub/infozip/Zip.html
    4) Request and evaluation copy of MKS Toolkit: http://www.mkssoftware.com/eval/
    The key point here is that MKS Toolkit is a commercial product and even once you request an evaluation copy, it'll take a day or two for one of their salespeople to contact and harass you. Tell him whatever you must to get an evaluation copy out of him ("I might buy a copy in 3 months, honest!")... I personally wish Sun would move away from this commercial product and replace it with cygwin or something. It was very annoying getting past this stage.
    5) Download the DirectX 9.0 SDK from here: http://www.microsoft.com/downloads/details.aspx?FamilyID=124552ff-8363-47fd-8f3b-36c226e04c85&displaylang=en
    Sun actually requires DirectX 7.0 SDK but I couldn't find a copy anywhere so we have no choice but use a newer copy. This is another issue Sun should really address.
    6) Install DirectX SDK, MKS Toolkit, Info-zip zip and unzip
    7) Unpack gnu make into a directory and build it using the special steps for the MKS Toolkit shell. If you're trying to build make 3.80 be sure to fix this bug before you proceed or else it won't build: https://savannah.gnu.org/bugs/index.php?func=detailitem&item_id=1687
    8) Set your build environment variables. Here are my personal settings:
    call "C:\Program Files\Microsoft Visual Studio\VC98\Bin\vcvars32.bat"
    set ALT_UNIXCOMMAND_PATH=c:\mksnt
    set ALT_MSVCRT_DLL_PATH=c:\windows\system32
    set ALT_BOOTDIR=c:\j2sdk1.4.2_04
    set ALT_DEVTOOLS_PATH=c:\j2sdk1.4.2_04\source\utils
    set path=C:\make-3.80\WinRel;%path%
    set include=%include%;c:\program files\microsoft sdk\include
    set JAVA_HOME=
    9) You must build against Visual C++ 6.0 (Visual C++ .NET won't work because its missing non-standard header files used by Sun, such as iostream.h)
    10) "cd <jdk source dir>\control\make"
    11) Edit <jdk source dir>\j2me\make\common\Sanity.gmk line 1135. Replace:
    ifeq ($(PLATFORM), windows)
    with
    ifeq ($(PLATFORM), windows_skip)
    This will cause the build process to ignore the fact that you have DirectX 9.0 when it requires version 7.0
    12) Start the build process: "make scsl"
    13) If the build process dies because you have a different service-pack of Visual C++ 6.0 than it expects, edit <jdk source dir>\j2me\make\common\Sanity.gmk lines 71-72 and modify the expected version numbers to the ones you have.
    14) If you see a "'c:\program' not found" error while compiling. Be sure that the paths set by VCVARS32.BAT use short-names not long-names, because make gets confused by paths with spaces.
    15) If you see an error "No rule to make target `/usr/src/j2sdk-1_4_2-src-scsl/control/build/linux-i586/lib/fonts/LucidaTypewriterRegular.ttf'" it means you forgot to extract the "SCSL binaries" package into the source-code directory
    I will post solutions to further compiler errors as I encounter them, I encourage you to do the same.

    hey
    i m trying to install JDK 1.5 from source under win XP
    dev-sanity pass so i suppose i have all installed correctly
    the problem is when i run the command "make scsl" to compile all
    i got an error which is into "link.exe" at the begin of the compilation :
    cd generated && NMAKE /NOLOGO /f C:\cygwin\Sources\hotspot\build\windows
    \makefiles\generated.make DIR=.\generated BUILD_FLAVOR=product
    link.exe kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib ad
    vapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib Wsock32.lib winmm.lib /n
    ologo /machine:I386 /opt:REF /opt:ICF,8 /map /debug /subsystem:console /out:adl
    c.exe main.obj adlparse.obj archDesc.obj arena.obj dfa.obj dict2.obj filebuff.ob
    j forms.obj formsopt.obj formssel.obj opcodes.obj output_c.obj output_h.obj
    link: too many arguments
    Try `link --help' for more information.
    NMAKE : fatal error U1077: 'link.exe' : return code '0x1'
    Stop.
    NMAKE : fatal error U1077: 'cd' : return code '0x2'
    Stop.
    NMAKE : fatal error U1077: '"c:\Program Files\Microsoft Visual Studio\VC98\bin\n
    make.exe"' : return code '0x2'
    Stop.
    make[3]: *** [generic_build2] Error 2
    make[3]: Leaving directory `/Sources/hotspot/make'
    make[2]: *** [product] Error 2
    make[2]: Leaving directory `/Sources/hotspot/make'
    make[1]: *** [hotspot-build] Error 2
    make[1]: Leaving directory `/Sources/control/make'
    make: *** [scsl-build] Error 2
    i installed visual studio professional 6 sp3 as required ine the "build-windows-i586.html" file ! is the file link.exe incorrect in the pack 3??
    Thanks

  • Problemas con Flash builder 4 plugin para eclipse

    Hola,
    He instalado el plugin para eclipse de flash player 4 en un ordenador con Windows 2000 y me da el siguiente error:
    java.lang.UnsatisfiedLinkError: C:\Archivos de programa\Adobe\Adobe Flash Builder 4 Plug-in\eclipse\plugins\com.adobe.flexbuilder.utils.osnative_4.0.1.277662\os\win32\x86\JN IToNativeBridge.dll: No se encontró el proceso especificado
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(Unknown Source)
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.loadLibrary0(Unknown Source)
    at java.lang.System.loadLibrary(Unknown Source)
    at com.adobe.flexbuilder.utils.osnative.OSNative.<clinit>(OSNative.java:40)
    at com.adobe.flexbuilder.utils.osnative.NativeControl.getFlashPlayerTrustDirectory(NativeCon trol.java:184)
    at com.adobe.flexbuilder.project.internal.PlayerTrustStore.getUserFlashPlayerTrustFolder(Pla yerTrustStore.java:198)
    at com.adobe.flexbuilder.project.internal.PlayerTrustStore.<init>(PlayerTrustStore.java:81)
    at com.adobe.flexbuilder.project.internal.PlayerTrustStore.getInstance(PlayerTrustStore.java :71)
    at com.adobe.flexbuilder.project.internal.FlexProjectCore$4.run(FlexProjectCore.java:391)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    Alguien sabe el motivo por el que me puede estar dando este error?
    Gracias.

    Sin entrar en detalle en tu pregunta que no puedo responder, leo que Flash Builder 4 (anteriormente Flex Builder) una potente herramienta de desarrollo, requiere:
    Microsoft® Windows® XP con Service Pack 3,
    Windows Vista® Ultimate o Enterprise (32 o 64 bits ejecutándose en el modo de 32 bits),
    Windows Server® 2008 (32 bits), o
    Windows 7 (32 o 64 bits ejecutándose en el modo de 32 bits)
    Si estás usando (todavía) Windows 2000 quizás ese sea el problema

  • Java error while building tomcat

    Platform :I have Debian on SPARC Blade 150
    trying to build tomcat-5.5.10 usning ant 1.6 and jdk 1.4.1_01-b01
    tomcat needed javamail and JAVABEANS(tm) ACTIVATION FRAMEWORK 1.0.2 , i have installed them and set CLASSPATH for them
    this looks like some runtime error
    "An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : 11 occurred at PC=0x7DB3E608
    Function=[Unknown.]
    Library=(N/A)
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    Dynamic libraries:
    00010000-00018000 r-xp 00000000 03:04 1766526 /usr/local/j2sdk1.4.1/bin/java
    00026000-00028000 rwxp 00006000 03:04 1766526 /usr/local/j2sdk1.4.1/bin/java
    70000000-7001a000 r-xp 00000000 03:02 225355 /lib/ld-2.3.2.so
    70028000-7002a000 rwxp 00018000 03:02 225355 /lib/ld-2.3.2.so
    7002c000-70038000 r-xp 00000000 03:02 225374 /lib/libpthread-0.10.so
    70038000-7003c000 ---p 0000c000 03:02 225374 /lib/libpthread-0.10.so
    7003c000-7004a000 rwxp 00000000 03:02 225374 /lib/libpthread-0.10.so
    7008c000-70090000 r-xp 00000000 03:02 225363 /lib/libdl-2.3.2.so
    70090000-7009c000 ---p 00004000 03:02 225363 /lib/libdl-2.3.2.so
    7009c000-700a0000 rwxp 00000000 03:02 225363 /lib/libdl-2.3.2.so
    700a0000-701d4000 r-xp 00000000 03:02 225361 /lib/libc-2.3.2.so
    701d4000-701e0000 ---p 00134000 03:02 225361 /lib/libc-2.3.2.so
    701e0000-701ec000 rwxp 00130000 03:02 225361 /lib/libc-2.3.2.so
    701f0000-705fa000 r-xp 00000000 03:04 1750657 /usr/local/j2sdk1.4.1/jre/lib/sparc/client/libjvm.so
    705fa000-70600000 ---p 0040a000 03:04 1750657 /usr/local/j2sdk1.4.1/jre/lib/sparc/client/libjvm.so
    70600000-70628000 rwxp 00400000 03:04 1750657 /usr/local/j2sdk1.4.1/jre/lib/sparc/client/libjvm.so
    70644000-70656000 r-xp 00000000 03:02 225366 /lib/libnsl-2.3.2.so
    70656000-70664000 ---p 00012000 03:02 225366 /lib/libnsl-2.3.2.so
    70664000-70666000 rwxp 00010000 03:02 225366 /lib/libnsl-2.3.2.so
    70668000-70706000 r-xp 00000000 03:04 1341104 /usr/lib/libstdc++.so.5.0.7
    70706000-70708000 ---p 0009e000 03:04 1341104 /usr/lib/libstdc++.so.5.0.7
    70708000-7072a000 rwxp 00090000 03:04 1341104 /usr/lib/libstdc++.so.5.0.7
    70730000-707ae000 r-xp 00000000 03:02 225364 /lib/libm-2.3.2.so
    707ae000-707b0000 ---p 0007e000 03:02 225364 /lib/libm-2.3.2.so
    707b0000-707c2000 rwxp 00070000 03:02 225364 /lib/libm-2.3.2.so
    707c4000-707d0000 r-xp 00000000 03:02 225403 /lib/libgcc_s.so.1
    707d0000-707d4000 ---p 0000c000 03:02 225403 /lib/libgcc_s.so.1
    707d4000-707e0000 rwxp 00000000 03:02 225403 /lib/libgcc_s.so.1
    707e0000-707ea000 r-xp 00000000 03:04 1750651 /usr/local/j2sdk1.4.1/jre/lib/sparc/native_threads/libhpi.so
    707ea000-707f0000 ---p 0000a000 03:04 1750651 /usr/local/j2sdk1.4.1/jre/lib/sparc/native_threads/libhpi.so
    707f0000-707fc000 rwxp 00000000 03:04 1750651 /usr/local/j2sdk1.4.1/jre/lib/sparc/native_threads/libhpi.so
    707fc000-7080e000 r-xp 00000000 03:04 1750661 /usr/local/j2sdk1.4.1/jre/lib/sparc/libverify.so
    7080e000-7081c000 ---p 00012000 03:04 1750661 /usr/local/j2sdk1.4.1/jre/lib/sparc/libverify.so
    7081c000-7081e000 rwxp 00010000 03:04 1750661 /usr/local/j2sdk1.4.1/jre/lib/sparc/libverify.so
    70820000-70842000 r-xp 00000000 03:04 1750662 /usr/local/j2sdk1.4.1/jre/lib/sparc/libjava.so
    70842000-70850000 ---p 00022000 03:04 1750662 /usr/local/j2sdk1.4.1/jre/lib/sparc/libjava.so
    70850000-70854000 rwxp 00020000 03:04 1750662 /usr/local/j2sdk1.4.1/jre/lib/sparc/libjava.so
    70854000-70866000 r-xp 00000000 03:04 1750664 /usr/local/j2sdk1.4.1/jre/lib/sparc/libzip.so
    70866000-70874000 ---p 00012000 03:04 1750664 /usr/local/j2sdk1.4.1/jre/lib/sparc/libzip.so
    70874000-70878000 rwxp 00010000 03:04 1750664 /usr/local/j2sdk1.4.1/jre/lib/sparc/libzip.so
    70878000-71f46000 r--s 00000000 03:04 1750706 /usr/local/j2sdk1.4.1/jre/lib/rt.jar
    71f8c000-71fa4000 r--s 00000000 03:04 1750686 /usr/local/j2sdk1.4.1/jre/lib/sunrsasign.jar
    71fa4000-72016000 r--s 00000000 03:04 1750688 /usr/local/j2sdk1.4.1/jre/lib/jsse.jar
    72018000-7202c000 r--s 00000000 03:04 1750687 /usr/local/j2sdk1.4.1/jre/lib/jce.jar
    7202c000-722e8000 r--s 00000000 03:04 1750704 /usr/local/j2sdk1.4.1/jre/lib/charsets.jar
    7c718000-7c760000 r--p 00000000 03:04 1341415 /usr/lib/locale/locale-archive
    7c760000-7c764000 r--s 00000000 03:04 1766019 /usr/local/j2sdk1.4.1/jre/lib/ext/dnsns.jar
    7c764000-7c766000 r--s 00000000 03:04 84955 /usr/local/ant/lib/ant-stylebook.jar
    7c768000-7c76a000 r--s 00000000 03:04 84956 /usr/local/ant/lib/ant-swing.jar
    7c76c000-7c774000 r-xp 00000000 03:02 225367 /lib/libnss_compat-2.3.2.so
    7c774000-7c77c000 ---p 00008000 03:02 225367 /lib/libnss_compat-2.3.2.so
    7c77c000-7c784000 rwxp 00000000 03:02 225367 /lib/libnss_compat-2.3.2.so
    7c784000-7c78c000 r-xp 00000000 03:02 225371 /lib/libnss_nis-2.3.2.so
    7c78c000-7c794000 ---p 00008000 03:02 225371 /lib/libnss_nis-2.3.2.so
    7c794000-7c79e000 rwxp 00000000 03:02 225371 /lib/libnss_nis-2.3.2.so
    7c7a0000-7c7aa000 r-xp 00000000 03:02 225369 /lib/libnss_files-2.3.2.so
    7c7aa000-7c7b0000 ---p 0000a000 03:02 225369 /lib/libnss_files-2.3.2.so
    7c7b0000-7c7ba000 rwxp 00000000 03:02 225369 /lib/libnss_files-2.3.2.so
    7cbc4000-7cbe2000 r--s 00000000 03:04 1766018 /usr/local/j2sdk1.4.1/jre/lib/ext/sunjce_provider.jar
    7cbe4000-7cc84000 r--s 00000000 03:04 1766020 /usr/local/j2sdk1.4.1/jre/lib/ext/localedata.jar
    7cc84000-7cc92000 r--s 00000000 03:04 1766021 /usr/local/j2sdk1.4.1/jre/lib/ext/ldapsec.jar
    7cc94000-7cc98000 r--s 00000000 03:04 84951 /usr/local/ant/lib/ant-launcher.jar
    7cc98000-7ccf0000 r--s 00000000 03:04 1784271 /usr/local/j2sdk1.4.1/lib/mail.jar
    7ccf0000-7ccfe000 r--s 00000000 03:04 1767921 /usr/local/j2sdk1.4.1/lib/activation.jar
    7cd00000-7cd02000 r--s 00000000 03:04 84935 /usr/local/ant/lib/ant-antlr.jar
    7cd04000-7cd08000 r--s 00000000 03:04 84936 /usr/local/ant/lib/ant-apache-bcel.jar
    7cd08000-7cd0c000 r--s 00000000 03:04 84937 /usr/local/ant/lib/ant-apache-bsf.jar
    7cd0c000-7cd0e000 r--s 00000000 03:04 84938 /usr/local/ant/lib/ant-apache-log4j.jar
    7cd10000-7cd1c000 r--s 00000000 03:04 84939 /usr/local/ant/lib/ant-apache-oro.jar
    7cd1c000-7cd1e000 r--s 00000000 03:04 84940 /usr/local/ant/lib/ant-apache-regexp.jar
    7cd20000-7cd22000 r--s 00000000 03:04 84941 /usr/local/ant/lib/ant-apache-resolver.jar
    7cd24000-7cd26000 r--s 00000000 03:04 84942 /usr/local/ant/lib/ant-commons-logging.jar
    7cd28000-7cd32000 r--s 00000000 03:04 84943 /usr/local/ant/lib/ant-commons-net.jar
    7cd34000-7cd38000 r--s 00000000 03:04 84944 /usr/local/ant/lib/ant-icontract.jar
    7cd38000-7cd3e000 r--s 00000000 03:04 84945 /usr/local/ant/lib/ant-jai.jar
    7cd40000-7cd42000 r--s 00000000 03:04 84946 /usr/local/ant/lib/ant-javamail.jar
    7cd44000-7cd46000 r--s 00000000 03:04 84947 /usr/local/ant/lib/ant-jdepend.jar
    7cd48000-7cd4a000 r--s 00000000 03:04 84948 /usr/local/ant/lib/ant-jmf.jar
    7cd4c000-7cd52000 r--s 00000000 03:04 84949 /usr/local/ant/lib/ant-jsch.jar
    7cd54000-7cd68000 r--s 00000000 03:04 84950 /usr/local/ant/lib/ant-junit.jar
    7cd68000-7cd6c000 r--s 00000000 03:04 84952 /usr/local/ant/lib/ant-netrexx.jar
    7cd6c000-7cdd4000 r--s 00000000 03:04 84953 /usr/local/ant/lib/ant-nodeps.jar
    7cdd4000-7cdde000 r--s 00000000 03:04 84954 /usr/local/ant/lib/ant-starteam.jar
    7cde0000-7cdf2000 r--s 00000000 03:04 84957 /usr/local/ant/lib/ant-trax.jar
    7cdf4000-7ce02000 r--s 00000000 03:04 84958 /usr/local/ant/lib/ant-vaj.jar
    7ce04000-7ce08000 r--s 00000000 03:04 84959 /usr/local/ant/lib/ant-weblogic.jar
    7ce08000-7ce0a000 r--s 00000000 03:04 84960 /usr/local/ant/lib/ant-xalan1.jar
    7ce0c000-7ce0e000 r--s 00000000 03:04 84961 /usr/local/ant/lib/ant-xslp.jar
    7ce10000-7cf0e000 r--s 00000000 03:04 84962 /usr/local/ant/lib/ant.jar
    7cf10000-7d008000 r--s 00000000 03:04 84963 /usr/local/ant/lib/xercesImpl.jar
    7d008000-7d028000 r--s 00000000 03:04 84964 /usr/local/ant/lib/xml-apis.jar
    7d028000-7d4dc000 r--s 00000000 03:04 1766521 /usr/local/j2sdk1.4.1/lib/tools.jar
    7d4dc000-7d4e6000 r--s 00000000 03:04 168561 /usr/share/java/commons-logging-1.0.4/commons-logging.jar
    7d4e8000-7d4ee000 r--s 00000000 03:05 453459 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/catalina-ant-jmx.jar
    7d4f0000-7d4f8000 r--s 00000000 03:05 453458 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/catalina-ant.jar
    7d4f8000-7d52a000 r--s 00000000 03:05 453469 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/catalina-cluster.jar
    7d52c000-7d54a000 r--s 00000000 03:05 453457 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/catalina-optional.jar
    7d54c000-7d55c000 r--s 00000000 03:05 453470 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/catalina-storeconfig.jar
    7d55c000-7d5fa000 r--s 00000000 03:05 453456 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/catalina.jar
    7d5fc000-7d618000 r--s 00000000 03:05 452070 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/commons-modeler.jar
    7d618000-7d61e000 r--s 00000000 03:05 453463 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/servlets-default.jar
    7d620000-7d622000 r--s 00000000 03:05 453464 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/servlets-invoker.jar
    7d624000-7d62a000 r--s 00000000 03:05 453466 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/servlets-webdav.jar
    7d62c000-7d656000 r--s 00000000 03:05 453486 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/tomcat-ajp.jar
    7d658000-7d65e000 r--s 00000000 03:05 452111 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/tomcat-apr.jar
    7d660000-7d666000 r--s 00000000 03:05 452699 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/tomcat-coyote.jar
    7d668000-7d67e000 r--s 00000000 03:05 453488 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/tomcat-http.jar
    7d680000-7d6c0000 r--s 00000000 03:05 452669 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/lib/tomcat-util.jar
    7d6c0000-7d6dc000 r--s 00000000 03:05 452067 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/common/lib/commons-el.jar
    7d6dc000-7d804000 r--s 00000000 03:05 452073 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/common/lib/jasper-compiler-jdt.jar
    7d804000-7d862000 r--s 00000000 03:05 453492 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/common/lib/jasper-compiler.jar
    7d864000-7d878000 r--s 00000000 03:05 453493 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/common/lib/jasper-runtime.jar
    7d878000-7d886000 r--s 00000000 03:05 452065 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/common/lib/jsp-api.jar
    7d888000-7d8ae000 r--s 00000000 03:05 452734 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/common/lib/naming-factory-dbcp.jar
    7d8b0000-7d8ba000 r--s 00000000 03:05 453460 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/common/lib/naming-factory.jar
    7d8bc000-7d8c8000 r--s 00000000 03:05 453461 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/common/lib/naming-resources.jar
    7d8c8000-7d8e0000 r--s 00000000 03:05 452066 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/common/lib/servlet-api.jar
    7d8e0000-7d928000 r--s 00000000 03:05 468143 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/webapps/jsp-examples/WEB-INF/lib/standard.jar
    7d928000-7d92e000 r--s 00000000 03:05 468185 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/webapps/jsp-examples/WEB-INF/lib/jstl.jar
    7d930000-7d9b2000 r--s 00000000 03:05 468607 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/webapps/admin/WEB-INF/lib/struts.jar
    7d9b4000-7d9e4000 r--s 00000000 03:05 468608 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/webapps/admin/WEB-INF/lib/commons-beanutils.jar
    7d9e4000-7da6e000 r--s 00000000 03:05 468609 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/webapps/admin/WEB-INF/lib/commons-collections.jar
    7da70000-7da9a000 r--s 00000000 03:05 468610 /opt/download/jakarta-tomcat-5.5.10-src/jakarta-tomcat-5/build/server/webapps/admin/WEB-INF/lib/commons-digester.jar
    Local Time = Thu Aug 4 10:37:34 2005
    Elapsed Time = 586
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (Blackdown-1.4.1-01 mixed mode)
    # An error report file has been saved as hs_err_pid29273.log.
    # Please refer to the file for further information.
    Aborted"

    Hi,
    This forum is exclusively for the Sun Java Studio Creator related discussions.
    Please post your question at: http://forum.java.sun.com/forum.jspa?forumID=38
    Thanks,
    Creator Team.

  • Can't install Flex Builder 2 plugin in Eclipse 3.3/Europa

    [I hope Adobe reads these forums. I tried to submit this as a
    customer service request, but the customer service request form
    kept telling my I had to enter my First Name, Last Name, and Email
    address, even though I _had_ entered them!]
    I can't seem to install the Flex Builder 2 plugin in Eclipse
    3.3/Europa. I had it installed fine in 3.2/Callisto. I uninstalled
    it from there, installed Europa, then tried to install the plugin.
    After I selected the Eclipse folder, I got the error:
    "Please choose an existing Eclipse folder (3.1 or greater) to
    be updated. This folder must contain eclipse.exe and the standard
    folder named "configuration"."
    All three conditions (3.1 or greater, eclipse.exe and
    configuration) hold in my case, so I don't know what the real
    problem is.

    Actually it's quite simple. But you have to be warned. This
    doesn't guarantee a bug free Eclipse setup and it isn't supported
    by Adobe in any way. It is how-ever your only shot at getting
    Eclipse with Flex Builder 2 AND php-development support, as Zend
    has stopped deploying the php-development-requirement for Eclipse
    3.2 (or at least I haven't found it in their archives.)
    Flex Builder 2 simply checks for some files to see if the
    directory you want to install to exist, so it recognizes the
    directory as an Eclipse 3.1+ directory. Eclipse 3.3 however misses
    the file startup.jar. If you simply copy startup.jar from an
    Eclipse 3.2 directory into the 3.3 directory, Flex Builder 2 will
    install in the 3.3 directory.
    Again. This is not supported in any way by Adobe.
    For more info, Google on: eclipse-3.3 Flex-builder-2
    startup.jar
    http://www.google.com/search?hl=en&q=eclipse-3.3+Flex-builder-2+startup.jar
    Kind regards.
    PS. I would still like to have an Adobe Representative answer
    the simple question: Is Adobe or is Adobe not working on getting
    Flex Builder 2 to work on Eclipse 3.3? A simple yes or no will
    suffice.

  • A question about reading tomcat source code

    Hi, everyone!
    I just saw the tomcat source code, there is a method named "await" in StandardServer class. The comment of this method decribe that this method will wait util a proper shutdown command is received.
    I'm confused about it after read this method.
    In my opinion, this method create a server socket on port 8005 by default, and wait for "SHUTDOWN" string to only close the server socket which is listening on port 8005.
    But I think this method is supposed to close all the server sockets which are listenning for client's request and belong to this server when port 8005 received "SHUTDOWN" string.
    Thank you in advance.
    Edited by: Garrett.Li on Oct 17, 2007 9:18 AM

    about reading tomcat source code i cant get you man,

  • Tomcat Project in Eclipse

    hello,
    I want to start an Tomcat project under Eclipse3.0
    to execute the Application http://localhost:8080/MyApp/index.jsp
    I have set the var
    JAVA_HOME C:\SDKHOME
    PATH = C:\SDKHOME\bin
    CLASSPATH = c:\MyApp\WEB-INF
    Error
    Unable to find a javac compiler;
    com.sun.tools.javac.Main is not on the classpath.
    Perhaps JAVA_HOME does not point to the JDK
         org.apache.tools.ant.taskdefs.compilers.CompilerAdapterFactory.getCompiler(CompilerAdapterFactory.java:106)
         org.apache.tools.ant.taskdefs.Javac.compile(Javac.java:935)
         org.apache.tools.ant.taskdefs.Javac.execute(Javac.java:764)
         org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:382)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:472)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    what is to do ????
    thanks

    Go: Right Click on My Computer (on your desktop) -> Properties -> Advanced -> Environment Variables
    You should have JAVA_HOME set to something like C:\j2sdk1.4.1_05 and CATALINA_HOME set to something like C:\jakarta-tomcat-4.1.27. You don't need to set a classpath.

  • [svn:osmf:] 15952: Attempting to fix server build ( missing source path to sample plug-in), take 2.

    Revision: 15952
    Revision: 15952
    Author:   [email protected]
    Date:     2010-05-07 10:07:24 -0700 (Fri, 07 May 2010)
    Log Message:
    Attempting to fix server build (missing source path to sample plug-in), take 2.
    Modified Paths:
        osmf/trunk/apps/samples/framework/OSMFPlayer/OSMFPlayer-build-config.xml

    Joey,
    Try removing the com.apple.iCal.plist file from your Macintosh HD/Users/yourusername/Library/Preferences Folder. To find that Library folder, use Finder>Go Menu>Depress the "Option" key>Library. Drag the .plist file to your desktop.
    Next, go to your Macintosh HD/Users/yourusername/Library/Calendars Folder and remove any files with "Cache" as a part of the file name. Use the same method as described above to get to the correct Library Folder.
    Restart using a Safe Boot, and after the Safe Boot is complete startup normally and test Calendar for functionality.

  • [svn:osmf:] 15951: Attempting to fix server build ( missing source path to sample plug-in).

    Revision: 15951
    Revision: 15951
    Author:   [email protected]
    Date:     2010-05-07 09:57:57 -0700 (Fri, 07 May 2010)
    Log Message:
    Attempting to fix server build (missing source path to sample plug-in).
    Modified Paths:
        osmf/trunk/apps/samples/framework/OSMFPlayer/OSMFPlayer-build-config.xml

    Joey,
    Try removing the com.apple.iCal.plist file from your Macintosh HD/Users/yourusername/Library/Preferences Folder. To find that Library folder, use Finder>Go Menu>Depress the "Option" key>Library. Drag the .plist file to your desktop.
    Next, go to your Macintosh HD/Users/yourusername/Library/Calendars Folder and remove any files with "Cache" as a part of the file name. Use the same method as described above to get to the correct Library Folder.
    Restart using a Safe Boot, and after the Safe Boot is complete startup normally and test Calendar for functionality.

  • Flash builder 4 plugin for eclipse on win7 64-bit problams

    where can i find a version to download of flash builder 4 plugin for eclipse on win7 64-bit?

    Hi,
    I'm not an eclipse user but at the moment the recommended version of eclipse for the plugin is 3.4
    http://labs.adobe.com/wiki/index.php/Flash_Builder_4:Release_Notes
    The stand alone version of Flashbuilder works fine on Win7 X64 (FB is x32 not x64 both standalone and plugin)and I assume using the specified eclipse ide and FB plugin would be the same.
    David.

  • Flash Builder 4 plugin with eclipse 3.6

    Hi all,
    Previously I have used the flash builder 4 plugin with Zend Studio 7.2 (eclipse 3.4) and it worked flawlessly.
    I have now upgraded to Zend Studio 8.0 (eclipse 3.6) and the Flash Builder installer complains that the 'dropins' folder does not exist. I force the installation to continue, and as expected, Flash Builder did not integrate with Zend Studio.
    Does anyone have any tips as to how I can get Flash Builder 4 working in eclipse 3.6?
    Thank you!

    I experimented with the latest Zend Studio 8 trials on both platforms yesterday, and it looks a little different depending on which platform you're using:
    On OS X, because Zend Studio is now contained entirely within the app bundle, it's tricky navigating to the proper eclipse folder with our Plug-in Utility. As it turns out, the Zend dropins folder does exist if you look down low enough:
    /Applications/Zend Studio.app/Contents/Resources/Java/dropins
    When I typed that path into the Burrito Plug-in Utility manually, it found the dropins folder, and proceeded to install the link without complaint. However, the Zend dropins folder is not working properly on OS X either, as already found on Win, so it's not using the link.
    On Win, Zend Studio 8 doesn't include the dropins folder in the first place, as noted earlier. Apparently, Zend doesn't have its dropins folder enabled on either Mac or Win.
    To see if this problem is specific to dropin links, I downloaded the latest Orbit plugins from eclipse.org and tried adding those directly to the Zend dropins folder, instead of using a link. Zend doesn’t appear to recognize them either.
    I'll check with our contact at Zend to see what happened.
    -Chris

  • Flash Builder 4 Plugin for Eclipse

    Flash Builder 4 is now shipping....
    How about "Flash Builder 4 Plugin for Eclipse"?
    Anybody know it is released or not? Thanks.

    Oh, thanks.
    Is it only has download version?
    I wanna buy a boxset version, but cannnot find it in the store...
    And do the serial key of "standalone" and "plug-in" version the same?
    https://store3.adobe.com/cfusion/store/index.cfm?&store=OLS-AP&view=ols_prod&category=/App lications/FlashBuilderPremium&distributionMethod=FULL&nr=0#view=ols_prod&category=/Applica tions/FlashBuilderPremium&store=OLS-AP&loc=en_xap

  • Programed in Eclipse, runs under Eclipse doesn't run from command line

    Hi,
    have created a small Java program under Eclipse. When I right click on the package and select Run As: Java Application from the IDE the program starts fine.
    On the other hand if go from the command line ( I'm under WinXP ) and I type java ProgramName under the directory which contains the .class and .java file I get an exception message saying: Exception in thread "main" java.lang.NoClassDefFoundError: ProgramName ( wrong name: ProgramName/ProgramName ) followed by a stack trace type thing.
    If I do java ProgramName.class or java ProgramName.java I get a shorter but similar message saying:
    Exception in thread "main" java.lang.NoClassDefFoundError: ProgramName/Class
    I don't know what could be wrong, at first I thought about the PATH variable but it doesn't seem to be the case.

    Hi Sarah
    Thanks for replying and sorry for the delay - been on holiday :-)
    I am not running any security additions, just a vanilla Fedora 5 Linux installation.
    Does anyone have any suggestions as to where I may look to solve this problem as I am at a loss at the moment.

Maybe you are looking for

  • Firefox won't recognize FF account username on a new install on new computer.

    I know I have the right username, email, and password, because I am looking at them on my existing laptop. But on installing FF 28 on my new laptop and trying to start the Sync process, I keep getting the message "unknown account." I am getting this

  • Purchase Order Text data

    I have a request to add specific plant quality requirements text data to the Material master Purchase order text tab to print the text output on all Purchase Orders for the material.  Can someone tell me how many characters the Material Master Purcha

  • Newbie question: Question using BPEL as websevice

    Hi I have a few questions related to the usage of BPEL process and Web Services. The requirement is to build a BPEL Process, which can be configured to switch the web service call based on the customer requirement. Customer could either call our web

  • Inbound for idoc INVOIC

    Hi Can anyone tell me, what inbound function module should be given for Idoc type INVOIC. Thanks

  • Forte and Oracle Trace

    Hi, Has anybody out there used Oracle Trace to monitor the performance of Forte service objects that access data from Rdb databases. We have been trying to do this and Trace does not seem to see the Forte servers. Could you please e-mail me your expe