Error when trying to compile HTML help

I'm using RoboHelp 7.0 on Windows XP. All of the sudden, last
week, I start getting the following error when I try to compile
"Fatal Error: Unexpected error from Microsoft HTML compiler." I've
read the other posts regarding this error and deleted the .CPD file
multiple times and tried to compile again still with no success.
I've uninstalled and reinstalled multiple times and not had any
better results. The other author in my office can check the project
out of RoboSource and compile it fine. I have it on my local drive
when trying to compile.
I'd appreciate any ideas. It doesn't make sense that is
something in the project since my other author can compile it fine.
Thanks,
Nita

Hi, Nita,
Do you have any other RoboHelp projects that you can try
compiling? This may help to determine whether there's something
slightly askew about this particular project — sounds
unlikely if your colleague can compile without error — or
whether the problem lies in your RoboHelp installation.
I'd also recommend that you run MJ's Help Diagnostics,
available from the address below. This will verify that all the
HTML Help viewer and compiler components are properly installed and
registered on your machine.
http://helpware.net/downloads/index.htm#MJs
Pete

Similar Messages

  • "500 internal server error" when trying to use F4 help in the variable sele

    Hi Experts,
    I am getting "500 internal server error" when trying to use F4 help in the variable selection screen (in WAD).
    How could this be resolved?
    Quick reply would be very helpfull.
    Thanks in advance !!

    It seems you are using wrong client ID. Make sure your logon pad has right details. You should verify this with your basis team.
    If the problem persists then try re-installing. But before you do that you can execute sapbexc.xla which is in the c:\program files\sap\bw. Type c:\ in cell c3 and click "start button". Any red flag means you have wrong version dll/ocx on your local drive, in that case you should reinstall with right patches.
    if this solution helps u then pls assign points

  • Suffering an complie error when trying to compile java class in EBS11i

    Hi,
    When I trying to compile java classes with which imported the HttpServletResponse class, will get the follow error message:
    package javax.servlet does not exist
    cannot resolve symbol
    symbol : class HttpServletResponse
    It seems the javax.servlet package is not included in the classpath. But I checked the $CLASSPATH, it seems no problem.
    echo $CLASSPATH
    /u02/applvis/viscomn/util/java/1.4/j2sdk1.4.2_04/lib/tools.jar:/u02/applvis/viscomn/util/java/1.4/j2sdk1.4.2_04/lib/dt.jar:/u02/applvis/viscomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/charsets.jar:/u02/applvis/viscomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/rt.jar:/u02/applvis/viscomn/java/appsborg2.zip:/u02/applvis/visora/8.0.6/forms60/java:/u02/applvis/viscomn/java
    Does anyone know the reason?
    environment: ebs 11i
    Thanks&Regards,
    Xiaofeng

    resolved this issue.
    1. Edit $APPL_TOP/admin/adovars.env file -
    Add the following jar files to the AF_CLASSPATH line -
    Full path of /...../iAS/Apache/Jsdk/lib/jsdk.jar
    Full path of /...../iAS/Apache/Jserv/libexec/ApacheJServ.jar
    2. Bounce the concurrent manager in order to have the changes take effect.

  • I get this error when trying to compile a plain C++ project

    Tool:0: Couldn't run '/usr/bin/gcc-3.3' because it does not refer to an accessible executable.
    I get this error when I try to compile/build a normal C++ project.
    I make a new project. C++ tool. Call it "test"
    It automatically makes a main.cpp file which should output "hello world" but instead I get that error above. Not sure what is going on.

    I'm not sure where the "verbose" icon is, but I did get this, if it helps
    Native Build of Target "Test" using Build Style "Development"
    CompileC build/Test.build/Test.build/Objects-normal/ppc/main.o main.cpp normal ppc c++ com.apple.compilers.gcc.3_3
    cd /Users/Eric/Documents/Test
    /usr/bin/gcc-3.3 -x c++ -arch ppc -pipe -Wno-trigraphs -fpascal-strings -fasm-blocks -g -O0 -Wreturn-type -Wunused-variable -fmessage-length=0 -ffix-and-continue -mtune=G5 -Wp,-header-mapfile,/Users/Eric/Documents/Test/build/Test.build/Test.build/Test .hmap -F/Users/Eric/Documents/Test/build -I/Users/Eric/Documents/Test/build/include -I/Users/Eric/Documents/Test/build/Test.build/Test.build/DerivedSources -c /Users/Eric/Documents/Test/main.cpp -o /Users/Eric/Documents/Test/build/Test.build/Test.build/Objects-normal/ppc/main. o
    And my version of Xcode and such is..
    Xcode 2.0
    Xcode IDE 514.0
    Xcode Core 515.0
    ToolSupport 514.0
    Not sure about the SDK.
    iBook G4 and iPod Mini Mac OS X (10.4.5)

  • 1010 error when trying to debug, need help

    i get this error when i go to debug my site.
    TypeError: Error #1010: A term is undefined and has no properties.
         at Index_fla::MainTimeline/frame1()[Index_fla.MainTimeline::frame1:11]
    This is the action script
    // Startup.
    stop();
    mainMenu_mc.stop();
    // Event Setup.
    mainMenu_mc.backward_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.forward_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.logo_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.home_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.goals_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.statements_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.outcomes_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.resume_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    mainMenu_mc.statements_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
    // Event Handlers.
    function navigationClicked(Event:MouseEvent):void
         //We'll use this to store the Frame Label's name.
         var frmLabel:String = '';
         //Determine what Frame Label to use based on which
         //button was clicked.
         switch (Event.target)
              case mainMenu_mc.backward_btn :
                   frmLabel = this.getSequencedFrame(false);
                   break;
              case mainMenu_mc.forward_btn :
                   frmLabel = this.getSequencedFrame(true);
                   break;               
              case mainMenu_mc.logo_btn :
                   frmLabel = "home_frm";
                   break;
              case mainMenu_mc.home_btn :
                   frmLabel = "home_frm";
                   break;
            case mainMenu_mc.goals_btn :
                frmLabel = "goals_frm";
                break;
            case mainMenu_mc.statements_btn :
                frmLabel = "statement_frm";
                break;
            case mainMenu_mc.outcomes_btn :
                frmLabel = "outcomes_frm";
                break;
            case mainMenu_mc.resume_btn :
                frmLabel = "resume_frm";
                break;
            case mainMenu_mc.letters_btn :
                frmLabel = "letters_frm";
                break;
         //Find the frame number based on our Frame Label.
         var frmGoto:Number = this.getFrame(frmLabel);
         //Don't do anything if we are already on the requested page.
         if (currentFrame != frmGoto)
              //Get and remember the Home page's frame number.
              var frmHome:Number = this.getFrame("home_frm");
              //If our requested page is the Home page, the flying menu
              //needs to go home.
              if(frmGoto == frmHome)
                   mainMenu_mc.goHome();
              //Else, if we are on the Home page and are leaving, then
              //leave home.
              else if(currentFrame == frmHome)
                   mainMenu_mc.leaveHome();
              //Go to the requested page.
             gotoAndPlay(frmGoto);
    // Helper Functions.
    function getFrame(frameName:String):Number
         var frame:Number = 1;
         //Loop through all Frame Labels to find our requested frame.
         for (var i = 0; i < currentLabels.length; i++)
              if (currentLabels[i].name == frameName)
                   frame = currentLabels[i].frame;
                   break;
         return frame;
    function getFrameLabel(frame:Number):String
         var frmLabel:String = '';
         //Loop through all Frame Labels to find the requested Frame Label.
         for (var i = 0; i < currentLabels.length; i++)
              if (currentLabels[i].frame == frame)
                   frmLabel = currentLabels[i].name;
                   break;
         return frmLabel;
    function getSequencedFrame(forward:Boolean):String
         //Used to remember the Frame Label of our page.
         var frmSequence:String = '';
         //If we're looking for the next page in sequence...
         if(forward)
              //If our current page is that last page...
              if(currentFrame == this.getFrame("letters_frm"))
                   //...then, we need to go Home.
                   frmSequence = "home_frm";
              else          
                   //...else, we just need to go to the next frame.
                   frmSequence = this.getFrameLabel((currentFrame + 1));
         //...else, we're looking for the previous page in sequence.
         else
              //If we're on the first page (remember, we skipped our Start page)...
              if(currentFrame == this.getFrame("home_frm") ||
                 currentFrame == this.getFrame("start_frm"))
                   //...then, we need to go to the last page.
                   frmSequence = "letters_frm";
              else          
                   //...else, we just need to go to the the previous frame.
                   frmSequence = this.getFrameLabel((currentFrame - 1));
         return frmSequence;
    Can any oen tell me why i am getting this error? using flash cs4 in ac3.

    you're trying to reference something that doesn't exist when your code executes.  if line 11, is:
    mainMenu_mc.logo_btn.addEventListener(...
    then
    mainMenu_mc.logo_btn
    doesn't exist.

  • "Symbol Undefined" error when trying to compile GPIB examples

    I'm trying to compile the examples written in C that are given in the folder \VXIPNP\WinNT\NIvisa\Examples\C\Gpib. Using a standard ANSI C compiler, I get the following error messages:
    AsyncIO.obj(AsyncIO)
    Error 42: Symbol Undefined _viClose@4
    AsyncIO.obj(AsyncIO)
    Error 42: Symbol Undefined _viTerminate@12
    AsyncIO.obj(AsyncIO)
    Error 42: Symbol Undefined _viReadAsync@16
    AsyncIO.obj(AsyncIO)
    Error 42: Symbol Undefined _viWrite@16
    AsyncIO.obj(AsyncIO)
    Error 42: Symbol Undefined _viEnableEvent@16
    AsyncIO.obj(AsyncIO)
    Error 42: Symbol Undefined _viInstallHandler@16
    AsyncIO.obj(AsyncIO)
    Error 42: Symbol Undefined _viOpen@20
    AsyncIO.obj(AsyncIO)
    Error 42: Symbol Undefined _viOpenDefaultRM@
    4
    AsyncIO.obj(AsyncIO)
    Error 42: Symbol Undefined _viGetAttribute@12
    --- errorlevel 9
    Any help is appreciated.

    Hi esi_stents,
    The compiler is complaining here because it can't find the correct library file to link to. Therefore, each of the above errors are function calls that the compiler does not have a prototype for.
    The library file you want to make sure to link to is visa32.lib. The path for this library file differs slightly based on what compiler you are using:
    Borland: C:\VXIPNP\WinNT\lib\bc
    Microsoft: C:\VXIPNP\WinNT\lib\msc
    Then follow the instructions for your compiler on how to set up links to a library.
    Now the compiler should stop complaining at you and you're good to go! Have fun!
    Kileen Cheng
    Applications Engineer
    National Instruments

  • Getting error when trying to compile a servlet

    hai every one ,
    when i placed my servlet in the classes directory of the tomcat server and trying to compile it i am getting the following error
    javac :invalid flag:C:Program
    usage:javac <options><source files>
    where possible options include
    -g Generate all debugging info
    -g:none Generate no debugging info
    -g:(lines, vars ,source) Generate only some debugging info
    -nowarn Generate no warnigs
    etc
    i have specified the classpath of the application in the environment variables

    " Hi friend,
    Wat you can do is ???
    you gonna change your classpath to %tomcathome%=C: or D: or etc/Programfiles/Apache Tomcat 4.0/lib/etc/servlet.jar.
    or else try locating servlet.jar file in the tomcat folder and place that in
    C:\j2sdk1.4.0_01\lib folder and try compiling your code.
    I guess it will work.
    Regards,
    RAHUL"
    NO, if that was the problem it would have said
    package javax.servlet dosen't exist

  • [SOLVED] crt1.o error when trying to compile

    Hi everybody,
    I'm trying to compile a simple rtnetlink example written in c using gcc [ver 4.7.2] but I get this error :
    /usr/lib/gcc/x86_64-unknown-linux-gnu/4.7.2/../../../../lib/crt1.o: In function `_start':
    (.text+0x20): undefined reference to `main'
    collect2: error: ld returned 1 exit status
    and here is the include parts of example :
    #include <sys/socket.h>
    #include <stdlib.h>
    #include <stdio.h>
    #include <string.h>
    #include <linux/netlink.h>
    #include <linux/rtnetlink.h>
    #include <arpa/inet.h>
    #include <unistd.h>
    Should I add a specific library or something ?! (I tried netlink and pthreads libraries and it didn't work)
    thanks in advance
    Last edited by bahramwhh (2012-10-09 09:34:56)

    @lunar oh, I'm sorry, my problem solved. my file didn't have the main function !
    Last edited by bahramwhh (2012-10-09 09:35:29)

  • Forms Error when trying to compile a 6i Form in 9i

    I have a form which is created in forms 6.
    Im trying to compile that form in 9 but it gives me a warning like below
    FRM-30457 Warning:Maximum length ignored for character datatype subordinate mirror item :ctl.descr
    What should i do to correct this?

    Check all the properties of :ctl.descr item. It should be varchar2.

  • Error when trying to compile with cos.jar

    When compiling on linux/tomcat machine I put the path to cos.jar in my javac command and get the following error:
    .../cos.jar: cannot execute binary file
    I can compile servlets that do not require this jar file but cannot compile servlets that need it.
    Does anyone know how to resolve this?

    Then your command is wrong. The error message tells you that you're trying to execute the cos.jar instead of specifying it in the classpath.

  • Permissions error when trying to compile PDF on client Windows 7 PCs with Acrobat

    Most of our clients using Windows 7 and Adobe Acrobat to make PDF documents have suddenly started running into an error.
    "Unable to open the document:
    \\server\area\user\Documents\abc.docx
    Please check to see if you have read permission for the above file"
    Yes, we use folder redirection, and I've already tried to apply the solutions in this thread (Unable to open document. Please check to see if you have read permission for the above file.) without success.
    I get the same issues when I try with my regular domain user with redirected home folders.
    Checked the permissions on both Adobe Acrobat and the Document folder itself, and everything seems to be alright.
    When you in Windows Explorer click the "Work offline" button, it suddenly works (duh, it's opening a local version of the file then). I've currently told the clients to use this as a temporary workaround, but it's not a solution that should really be used in the long run.
    This issue is happening with both Acrobat 10 and 11...
    PS: Most of the clients that use Acrobat use the Public 360 Case and Document Handling system. I do not believe it has anything to do with that, since I don't have it on my computer.

    Thank you for the response, but I am not scripting anything.  I just have the url in the "URL for the link." set to "mailto: (email address)."

  • Intermittant server error when trying to compile jsp.

              Hi,
              I'm testing my jsp on different browser versions, and on different connection
              speeds, and I'm finding a consistent problem with using weblogic v6.1sp1 and slower
              connections. (about 56k)
              In IE 5/5.5/6, a 'This page cannot be displayed' error shows up. There is no error
              in the webserver log and if you enter the url again, it will usually work, or
              it might need to be entered twice.
              This appears to be a jsp compilation issue, and I'm not sure if it can be resolved.
              Any help would be greatly appreciated.
              Thanks,
              Maeve
              

    Are you using an error page? I've seen IE do some strange things with error
              pages with content less than 255 chars long!
              "Maeve Loughnane" <[email protected]> wrote in message
              news:3c626843$[email protected]..
              >
              > Hi,
              >
              > I'm testing my jsp on different browser versions, and on different
              connection
              > speeds, and I'm finding a consistent problem with using weblogic v6.1sp1
              and slower
              > connections. (about 56k)
              >
              > In IE 5/5.5/6, a 'This page cannot be displayed' error shows up. There is
              no error
              > in the webserver log and if you enter the url again, it will usually work,
              or
              > it might need to be entered twice.
              >
              > This appears to be a jsp compilation issue, and I'm not sure if it can be
              resolved.
              >
              > Any help would be greatly appreciated.
              > Thanks,
              > Maeve
              

  • Basic C function ends up with error when trying to compile + example

    Hello Guys,
    Gotta problem here with normal function in c:
    My configuration:
    OS 10.8
    Xcode 5.0.2
    Code:
    void  printMessage (void) {
    NSLog(@"Test");
    printMessage();
    Note that this ends up with error:
    ProcessPCH /Users/cistyprofil/Library/Developer/Xcode/DerivedData/test-butpvmdeqxfberfqrxz fkcygoghf/Build/Intermediates/PrecompiledHeaders/test-Prefix-bjoindrfwbhakucgefd kktxqsafj/test-Prefix.pch.pch test/test-Prefix.pch normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler
        cd /Users/cistyprofil/Documents/CA/test
        setenv LANG en_US.US-ASCII
        /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/ usr/bin/clang -x objective-c-header -arch i386 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -Wno-trigraphs -fpascal-strings -O0 -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-receiver-is-weak -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/ SDKs/MacOSX10.8.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mmacosx-version-min=10.8 -g -Wno-sign-conversion -iquote /Users/cistyprofil/Library/Developer/Xcode/DerivedData/test-butpvmdeqxfberfqrxz fkcygoghf/Build/Intermediates/test.build/Debug/test.build/test-generated-files.h map -I/Users/cistyprofil/Library/Developer/Xcode/DerivedData/test-butpvmdeqxfberfqr xzfkcygoghf/Build/Intermediates/test.build/Debug/test.build/test-own-target-head ers.hmap -I/Users/cistyprofil/Library/Developer/Xcode/DerivedData/test-butpvmdeqxfberfqr xzfkcygoghf/Build/Intermediates/test.build/Debug/test.build/test-all-target-head ers.hmap -iquote /Users/cistyprofil/Library/Developer/Xcode/DerivedData/test-butpvmdeqxfberfqrxz fkcygoghf/Build/Intermediates/test.build/Debug/test.build/test-project-headers.h map -I/Users/cistyprofil/Library/Developer/Xcode/DerivedData/test-butpvmdeqxfberfqr xzfkcygoghf/Build/Products/Debug/include -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchai n/usr/include -I/Users/cistyprofil/Library/Developer/Xcode/DerivedData/test-butpvmdeqxfberfqr xzfkcygoghf/Build/Intermediates/test.build/Debug/test.build/DerivedSources/i386 -I/Users/cistyprofil/Library/Developer/Xcode/DerivedData/test-butpvmdeqxfberfqr xzfkcygoghf/Build/Intermediates/test.build/Debug/test.build/DerivedSources -F/Users/cistyprofil/Library/Developer/Xcode/DerivedData/test-butpvmdeqxfberfqr xzfkcygoghf/Build/Products/Debug --serialize-diagnostics /Users/cistyprofil/Library/Developer/Xcode/DerivedData/test-butpvmdeqxfberfqrxz fkcygoghf/Build/Intermediates/PrecompiledHeaders/test-Prefix-bjoindrfwbhakucgefd kktxqsafj/test-Prefix.pch.dia -MMD -MT dependencies -MF /Users/cistyprofil/Library/Developer/Xcode/DerivedData/test-butpvmdeqxfberfqrxz fkcygoghf/Build/Intermediates/PrecompiledHeaders/test-Prefix-bjoindrfwbhakucgefd kktxqsafj/test-Prefix.pch.d -c /Users/cistyprofil/Documents/CA/test/test/test-Prefix.pch -o /Users/cistyprofil/Library/Developer/Xcode/DerivedData/test-butpvmdeqxfberfqrxz fkcygoghf/Build/Intermediates/PrecompiledHeaders/test-Prefix-bjoindrfwbhakucgefd kktxqsafj/test-Prefix.pch.pch
    error: -fobjc-arc is not supported on platforms using the legacy runtime
    Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/ usr/bin/clang failed with exit code 1
    Please advise.

    Try this to start with:
    #include <stdio.h>
    int main(int argc, const char * argv[])
    // insert code here...
    printf("Hello, World!\n");
        return 0;
    This is the default source code you see when you create a command line tool using XCode.

  • [SOLVED] Xmonad error when trying to compile the default xmonad.hs

    Hey,
    if I copy the configuration file in /usr/share/xmonad-0.11/man/xmonad.hs,
    I get the following error
    Error detected while loading xmonad configuration file: /home/me/.xmonad/xmonad.hs
    xmonad.hs:132:64: Not in scope: `help'
    Please check the file for errors.
    xmonad: xmessage: executeFile: does not exist (No such file or directory)
    The offending line is
    -- Run xmessage with a summary of the default keybindings (useful for beginners)
    , ((modMask .|. shiftMask, xK_slash ), spawn ("echo \"" ++ help ++ "\" | xmessage -file -"))
    I don't really need that particular keybinding but nevertheless I would like to know what's happening here.
    Last edited by Aton (2013-04-10 11:33:51)

    as for what's happening: help is just not defined.
    judging from the code you are trying to use, it is supposed to be a string. and indeed http://xmonad.org/xmonad-docs/xmonad/sr … Config.htm
    defines
    help :: String
    help = unlines ["The default modifier key is 'alt'. Default keybindings:",
    "-- launching and killing programs",
    "mod-Shift-Enter Launch xterminal",
    "mod-p Launch dmenu",
    "mod-Shift-p Launch gmrun",
    "mod-Shift-c Close/kill the focused window",
    "mod-Space Rotate through the available layout algorithms",
    "mod-Shift-Space Reset the layouts on the current workSpace to default",
    "mod-n Resize/refresh viewed windows to the correct size",
    "-- move focus up or down the window stack",
    "mod-Tab Move focus to the next window",
    "mod-Shift-Tab Move focus to the previous window",
    "mod-j Move focus to the next window",
    "mod-k Move focus to the previous window",
    "mod-m Move focus to the master window",
    "-- modifying the window order",
    "mod-Return Swap the focused window and the master window",
    "mod-Shift-j Swap the focused window with the next window",
    "mod-Shift-k Swap the focused window with the previous window",
    "-- resizing the master/slave ratio",
    "mod-h Shrink the master area",
    "mod-l Expand the master area",
    "-- floating layer support",
    "mod-t Push window back into tiling; unfloat and re-tile it",
    "-- increase or decrease number of windows in the master area",
    "mod-comma (mod-,) Increment the number of windows in the master area",
    "mod-period (mod-.) Deincrement the number of windows in the master area",
    "-- quit, or restart",
    "mod-Shift-q Quit xmonad",
    "mod-q Restart xmonad",
    "mod-[1..9] Switch to workSpace N",
    "-- Workspaces & screens",
    "mod-Shift-[1..9] Move client to workspace N",
    "mod-{w,e,r} Switch to physical/Xinerama screens 1, 2, or 3",
    "mod-Shift-{w,e,r} Move client to screen 1, 2, or 3",
    "-- Mouse bindings: default actions bound to mouse events",
    "mod-button1 Set the window to floating mode and move by dragging",
    "mod-button2 Raise the window to the top of the stack",
    "mod-button3 Set the window to floating mode and resize by dragging"]

  • Compilation error when trying to compile simple page

    Hello Everyone,
    I have written a simple jsp which I intend on using as an include file. However when I try to compile the file I get the following error message (I am using Tomcat Version 4.1.30).
    java.lang.NoClassDefFoundError: org/apache/jasper/
    The code looks like so:
    <%
      String prefValue;
      HttpSession session = request.getSession(true);
      Boolean prefValueExists = (Boolean)session.getAttribute("cookieExists");
      boolean flag = prefValueExists.booleanValue();
      if(flag == true)
        prefValue = (String)session.getAttribute("preferenceValue");
      else
      if(flag == false)
        prefValue = "0";
    %>I am only just starting out so I am relatively sure that I have made a simple oversite, it would be fantastic if somebody could be so kind as to let me know what I am not doing correctly. Thanks for your time.
    Kind Regards
    Davo

    You're using quite a lot of different classes inside your JSP. Are you sure that you've done the necessary import statements of all these classes ?
    An import in JSP should be written like this :
    <%@ page import = "java.util.Iterator" %>
    <%@ page import = "org.gertcuppens.cluif.Film" %>

Maybe you are looking for

  • How to see battery status while playing a game

    Some games seem to close off menu bars and everything else. My daughter plays the sims 3 and sometimes uses battery power, but she always panics that the mac will just shut down due to lack of battery power. How does she see what the power is at whil

  • How do I eliminate multiple pages when compiling as PDF?

    I'm new at this, working with a one page .ifd. I've added several "No print" fields to be used for data mapping to my database. Then use Presentment Targets and compile as .pdf. When I open the form in Acrobat Pro 8 the doc repeats my one page 7 to 1

  • MTRR support

    I'v been using arch for over a year but I'm still a newbie with alot of the techy linux stuff, so posting this in the newbie catagory seemed apropriate. I found alot of info on the web for setting up MTRR but not much info on the specific mem address

  • HT1981 So that means my iMac 27", Mid 2011 bought from Singapore can be used in California?

    So my iMac 27", Mid 2011 model is bought from Singapore. I'm moving to California for school and plan to use my iMac there via shipping. Do I have to worry about the voltage? Also is there anything I should/need to buy?

  • Oracle Portal Or Webcenter

    Hello All, We have Oracle Portal 10.1.4 implemented for our intranet and it works fine. we have been using for last 2 years.Now we like to have the web2.0 apps like forums,wiki, voip to improve our employees interaction. The suggestion s below from t