Mark-up Problem

I am not getting any mark-up tools in my Comments panel.  I have Acrobat Xpro

Wha't the problem exactly and what do you mean "mixed output"? What part of it doesn't render? And with which method, forward or include?
If you're using forward() you should know the following:
1. Any uncommitted response in the buffer will be discarded.
2. Control doesn't come back to the forwarding resource and so you can't do anything with the response after forwarding it.
3. If you forward after committing the response, there will be an IllegalStateException thrown. Your view on the browser will not indicate this since the response has already been committed but you may see incomplete output.

Similar Messages

  • Chapter Marker Image Problems

    Hi,
    I created a movie and set chapter marker. For images I moved the image slider to different locations than default. After rendering the movie chapters work fine but the images are wrong. The same image sometimes appears a two adjacent chapters and other times the image for the next chapter appears at the one before. I didn't have that problem before so I don't know if it is me doing something wrong or if the bug came with the recent 10.0.9 update.
    Anyone noticed the same?

    Problem is solved. FCPX inserts a chapter marker at movie start which caused the problem. I set that marker manually and changed the chapter image to the position I wanted it to be. Now all images correspond to the appropriate chapter markers.

  • Concurrent Mark-Sweep Problems in 1.4.2 VM?

    Can someone please tell me why the 1.4.2 JVM seems to ignore VM tuning flags as soon as the -XX:+UseConcMarkSweepGC flag is used?
    For example, please run this program (It is intentionally written to run the VM out of memory):
    ================START================================
    import java.util.*;
    public class UseMemory {
    private ArrayList m_ref = new ArrayList();
    public static void main(String args[]) {
    UseMemory um = new UseMemory();
    int times = Integer.parseInt(args[0]);
    int delay = Integer.parseInt(args[1]);
    int size = Integer.parseInt(args[2]);
    for ( int i = 0; i < times; i++ ) {
    byte[] memory = new byte[size];
    um.m_ref.add(memory);
    try {
    Thread.currentThread().sleep(delay);
    System.out.println(Runtime.getRuntime().freeMemory());
    } catch ( InterruptedException ie ) {
    ======================END============================
    First, run it under the 1.4.1 VM like this:
    /jdk1.4.1_05/bin/java -Xmx128m -Xms128m -Xnoclassgc -verbose:gc -XX:NewSize=32M -XX:MaxNewSize=32M -XX:PermSize=32M -XX:MaxPermSize=32M -XX:SurvivorRatio=4 -XX:+DisableExplicitGC -XX:+PrintGCTimeStamps -XX:+PrintGCDetails -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+PrintHeapAtGC -XX:+PrintTenuringDistribution -XX:TargetSurvivorRatio=90 -XX:MaxTenuringThreshold=90 -classpath "." UseMemory 1200 100 1024000
    The output from the heap printing follows:
    =============BEGIN HEAP PRINT====================
    Heap
    par new generation total 27328K, used 20253K [0x02a60000, 0x04a60000, 0x04a60000)
    eden space 21888K, 92% used [0x02a60000, 0x03e27408, 0x03fc0000)
    from space 5440K, 0% used [0x03fc0000, 0x03fc0000, 0x04510000)
    to space 5440K, 0% used [0x04510000, 0x04510000, 0x04a60000)
    concurrent mark-sweep generation total 98304K, used 90000K [0x04a60000, 0x0aa60000, 0x0aa60000)
    CompactibleFreeListSpace space 98304K, 91% used [0x04a60000, 0x0aa60000)
    concurrent-mark-sweep perm gen total 32768K, used 1129K [0x0aa60000, 0x0ca60000, 0x0ca60000)
    CompactibleFreeListSpace space 32768K, 3% used [0x0aa60000, 0x0ca60000)
    0.001: [ParNew: 20253K->20253K(27328K), 0.0000643 secs]0.002: [CMS0.010: [dirty card accumulation, 0.0003718 secs]0.011: [dirty card rescan, 0.0026278 secs]0.013: [remark from roots, 0.0003656 secs]0.014: [weak refs processing, 0.0000028 secs]: 90000K->90000K(98304K), 0.0153770 secs] 110253K->110253K(125632K) Heap after GC invocations=1:
    Heap
    par new generation total 27328K, used 20253K [0x02a60000, 0x04a60000, 0x04a60000)
    eden space 21888K, 92% used [0x02a60000, 0x03e27408, 0x03fc0000)
    from space 5440K, 0% used [0x03fc0000, 0x03fc0000, 0x04510000)
    to space 5440K, 0% used [0x04510000, 0x04510000, 0x04a60000)
    concurrent mark-sweep generation total 98304K, used 90000K [0x04a60000, 0x0aa60000, 0x0aa60000)
    CompactibleFreeListSpace space 98304K, 91% used [0x04a60000, 0x0aa60000)
    concurrent-mark-sweep perm gen total 32768K, used 1129K [0x0aa60000, 0x0ca60000, 0x0ca60000)
    CompactibleFreeListSpace space 32768K, 3% used [0x0aa60000, 0x0ca60000)
    } , 0.0182148 secs]
    =============END HEAP PRINT====================
    Notice that the survivor ratio (4) is being used correctly, and that the default max tenuring level (31) is set correctly.
    Now let's run this with a 1.4.2_02 VM:
    /jdk1.4.2_04/bin/java -Xmx128m -Xms128m -Xnoclassgc -verbose:gc -XX:NewSize=32M -XX:MaxNewSize=32M -XX:PermSize=32M -XX:MaxPermSize=32M -XX:SurvivorRatio=4 -XX:+DisableExplicitGC -XX:+PrintGCTimeStamps -XX:+PrintGCDetails -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:+PrintHeapAtGC -XX:+PrintTenuringDistribution -XX:TargetSurvivorRatio=90 -XX:MaxTenuringThreshold=90 -classpath "." UseMemory 1200 100 1024000
    Here is the output from a verbose GC:
    =============BEGIN HEAP PRINT====================
    0.766: [GC  {Heap before GC invocations=2:
    Heap
    par new generation   total 32704K, used 30000K [0x10010000, 0x12010000, 0x12010000)
      eden space 32640K,  91% used [0x10010000, 0x11d5c1f8, 0x11ff0000)
      from space 64K,   0% used [0x11ff0000, 0x11ff0000, 0x12000000)
      to   space 64K,   0% used [0x12000000, 0x12000000, 0x12010000)
    concurrent mark-sweep generation total 98304K, used 60089K [0x12010000, 0x18010000, 0x18010000)
    concurrent-mark-sweep perm gen total 32768K, used 1008K [0x18010000, 0x1a010000, 0x1a010000)
    0.766: [ParNew
    Desired survivor size 32768 bytes, new threshold 0 (max 0)
    : 30000K->0K(32704K), 0.0701463 secs] 90090K->90089K(131008K) Heap after GC invocations=3:
    Heap
    par new generation total 32704K, used 0K [0x10010000, 0x12010000, 0x12010000)
    eden space 32640K, 0% used [0x10010000, 0x10010000, 0x11ff0000)
    from space 64K, 0% used [0x12000000, 0x12000000, 0x12010000)
    to space 64K, 0% used [0x11ff0000, 0x11ff0000, 0x12000000)
    concurrent mark-sweep generation total 98304K, used 90089K [0x12010000, 0x18010000, 0x18010000)
    concurrent-mark-sweep perm gen total 32768K, used 1008K [0x18010000, 0x1a010000, 0x1a010000)
    } , 0.0719439 secs]
    =============END HEAP PRINT====================
    So what in Sam Hain is going on here? Why has my survivor ration been set to be 511? Why has the max tenuring threshold been set to be 0? Who made the decision that I want to run with the 'promote all' JVM GC settings for me? I don't want this. It is killing me.
    Oh, one more thing, if I take out the -XX:+UseConcMarkSweepGC flag, then the GC output looks normal with the 1.4.2_04 VM.
    Is this a known bug, am I missing something obvious here?
    Please help.
    Thanks
    Andy

    We are using
    java -version -serverjava version "1.4.2_05"
    Java(TM) 2 Runtime Environment, Standard Edition
    (build 1.4.2_05-b04)
    Java HotSpot(TM) Server VM (build 1.4.2_05-b04, mixed
    mode)
    >
    and the issue is still there
    Bug 4874782 says that it was fixed for "tiger".
    Do we have any options except upgrading to 1.5?
    Any plans to fix it for 1.4.2 ?
    As I stated earlier, we believe this is fixed in 1.4.2_05.
    [For reasons that I do not understand and which are out-of-scope
    for me,  the bug-paraed database just shows that this is
    fixed in 1.5"tiger". However, I assure you that it's been
    fixed in 1.4.2_05.)
    i also just verified that it's fixed in 1.4.2_05 using a variety of tests
    that vary the heap settings via the command-line options.
    If you believe a bug still exists in 1.4.2_<n>, n >= 5,
    or in JDK 5.0, please file a bug against HotSpot (hotspot/garbage_collector)
    via appropriate channels, including specific details (command-lines
    used, behaviour seen) for the problem you are seeing.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Marking unmarking problem with nokia 5230.

    Recently most of the college studends having Nokia 5230 or 5233 mobiles.
    In this mobile, while marking unmarking, all time we have to go to option and select mark unmark. so please update software for this issue.

    That one of few things I hate on my 5800, it is a real pain on the neck when you have many items to mark. That was never given any attention by Nokia and I doubt an update would be released to make it better.
    If a reply has solved your problem click Accept as solution button, doing it will help others know the solution. Thanks.

  • Src\Marker\Markers Problem

    My teacher has intrusted me with finding out what is wrong with the Premeire elements 7.0.
    Whenever one student puts two or more videos in the timeline, and opens the clip menu a window opens saying " premiere elements has encountered an error [..\.\Src\Marker\Marker.cpp-187]" and closes.
    I have found a similar problem twice on the Internet, but we don't use Vista, it is a Movie Clip file, and was filmed with a Sony Handycam Camcorder, and re-installing does not help!
    Any help would be apprecated. Thx

    Thank you for responding
    I forgot the pass for my past email and account
    Anyway, the computer is part of a network, when I try to find out the type of movie it just says "movie clip file".
    The computer is Windows XP.
    The student is only using video he recorded using the Sony camcorder.
    The program has been re-installed twice already, and works fine on all the other computers, and is up to date with all updates, even if the update is not necessary.
    The student is also trying to reverse the video by going to clip, and time stretch.
    That's the whole schpeel.

  • CROP MARK color problem

    Hi all
    I've got a problem in crop marks; while distilling the ps file it generates log file as crop mark is in cmyk. I've used indesign crop mark option while generate PS file. Pls help on this issue.
    thanks in advance

    Crop marks should use CMYK and any other colour like spot colours when making a full colour document for print.
    Printing is CMYK so the colour of each crop mark has to be in CMYK to be seen on every printing plate. This helps the printers print each colour on top of each other, called registration.
    Usually the crop marks created using the REGISTRATION colour in Indesign, which will use all the colours you have used in your document, including Cyan Magenta Yellow and Black and any other colour you have used in the document.
    Have you got colour images anywhere in the document?

  • Question Mark Folder Problem (Already replaced hard drive)

    On Sunday night I found my macbook pro ("13, mid 2010, refurbished) in a frozen state a few seconds after waking it from sleep. So I did a forced restart and then my macbook wouldn't boot (blinking question mark folder). I troubleshooted with the OSX Install DVD on my own before taking it to the Genius Bar (disk utility & TDM could not find the hard drive), and we both came to the conclusion that I should install a new drive. So yesterday I bought a new drive, did a fresh OSX install and managed to migrate all of my info from my presumed damaged drive to the new one. Everything went smoothly and the computer was in working order all night. That is until this morning when I shut it down before bringing it to work. On my lunch break I decided to fire up my newly upgraded macbook only to find that it once again would not boot, still with the blinking question mark folder. I also tested to see if I have faulty RAM and it doesn't look like it (unless both sticks are fried). This is becoming incredibly frustrating and I hope I don't have to replace a board or anything like that. Anybody here have suggestions? It'd be greatly appreciated.

    Could be something as simple as the hard drive cable...the hardware test won't identify this. Have an Apple store nearby? If so, make an appointment. If it's a bad cable, the fix is easy, but not free unless you have AppleCare.

  • 5D Mark III problems

    Just got my new camera and couldn't figger out how to get manual exposures to work, so I used auto settings until I had time to read the manual thouroughly. Having done that, I did not find a solution to the problem. When I'm on manual, it seems that the mirror sticks up... all of the auto settings are working fine, though, so it's not a mechanical problem. This happens with a large variety of lenses that I use with my D60.
    Another problem is that I prefer to shoot RAW but it occasionally reverts to JPG without me consciously changing it. This is just strange.

    I know 2 ways that can toggle between JPG and RAW: Press Q / then INFO. and the SET button (if the shortcut has been turned on). I think in your case, the SET button may get pressed when you put your camera down and you accidentally rotate the dial. You can try to remove this option from the SET button via custom function. Just my guess.
    Weekend Travelers Blog | Eastern Sierra Fall Color Guide

  • Batch-Processing Marker Regions Problem?

    I got a weird one here.
    Batch-Saving Marker Regions using the marker name as the file name (which I use just about every day!) is telling me that one particular group of markers already exist at the destination folder, and prompts me to over-write. First off, there are NO files by that name in the destination folder, and second, when I tried to overwrite, it started a save operation that said it was going to take 15 minutes! And this is for a 15-second mono mp3.
    I triple-checked that the proper destination folder is selected in the batch processing box.
    Any idea what is going on?
    Thanks!
    Ken
    AA3.0, XP Pro on a Core Duo processor with 1.2 TB of HD space.

    I figured it out. In case anyone is interested, Windows reserves certain file names because they are system files, like "COM1, COM2, etc." My client specified the file names for the project, which is why I tried to use "COMx." I guess even he didn't know.
    Anyway, I just changed the file name and it worked as per usual.
    Cheers!
    Ken

  • Marker update problem

    hi experts,
    i am working the IC_C03,
    first i load BX,  suppose a record like:
    plan  material   0calday              received 
    P1     M1          2009.05.04           100(Received)
    then i load BF , there are 3 records :
    plan  material   0calday              received      issue 
    P1     M1          2009.02.14           90(Received)
    P1     M1          2009.03.18                            50(Issue)
    P1     M1          2009.04.21           60(Received)
    i set BX with marker update and BF with no marker update,
    but after that, there are still 4 records in my cube, so my report get wrong result:
    plan  material   0calday              received      issue
    P1     M1          2009.05.04          100(Received)
    P1     M1          2009.02.14           90(Received)
    P1     M1          2009.03.18                            50(Issue)
    P1     M1          2009.04.21           60(Received)
    what the correct result should be after BX(no update) and BF (update)?
    i think because the 0calday is different with regard the 4 record, so the 4 record wouldn't be compressed
    into one record.
    Edited by: liu shaochang on May 4, 2009 4:47 PM

    Are you sure your record of 100 has the 0calday as 2009.05.04?
    If this record ha 0calday as something like 31.12.9999. Your reult is actually correct.
    This is a non-cumulative key-figure. The calculation of stock of a specific day is not a simple summary.
    It uses the marker value (100) + all uncompressed records ( in your case, 0) - Compressed records between the date and the current date.
    If you try to report stock beyond May 5th. The report should report 100.
    If you try to report stock of April 20th, The report should report 100 -  60 = 40.
    You might not have done in the right sequence. Immediately after you finish BX, you should do a compress. That would make the entry like the following.
    P1 M1 9999.05.04 100  (which i a marker value).

  • RequestDispacter and Mark-up problem

    Duplicate of: http://forum.java.sun.com/thread.jspa?threadID=5220415
    Hi all,
    I would like to know why RequestDispatcher's include or forward method sometimes does not able to mixed output on the same jsp page.
    For example, I am trying to render mixed output on single jsp page. The output includes,
    1. printing collection (bean properties) using struts tags,
    2. pagination (numbering like Google) using custom tags (pageContext.out()).
    The problem is it does not render all the output required...however, i could see all required output on each stage of debugging successfully.
    I would appreciate your help.
    Regards.

    Multipost: http://forum.java.sun.com/thread.jspa?threadID=5220416&tstart=0
    Please don't multipost, it's rude and wastes the time of people who might willing to help you. Please continue the thread at the link above.

  • Random Marks and Problems Showing Up

    I cleaned my screen the other day and noticed that on the left side there is gray marks that look like dust but won't go away. I think they are in the actual screen. Also, there was a small black dot in the middle and now there is a small black line as well. Is it possible that my screen is slowly breaking? It's not under warranty, AppleCare ended in March, but will Apple do anything? Thanks

    Hi,
    If you have an early MBP, and i'm assuming you do, then this sounds very much like the same issue that a number of us early MBP owners are experiencing... It would seem the for a good number of MBPs the LCD screens were not sealed correctly, poor quality or poorly manufactured, thus dust particles etc. can accumulate 'behind' or 'within' the LCD itself... NOT a good thing given the money spent on what we presumably thought would be a quality product, and given that a lot of us deal with highly graphical subjects on our MBPs.
    I don't think there's anything that a regular person can/could do, it might be possible to disassemble the unit and clean it, but that would be a risky endeavour for the untrained... not to mention time consuming.
    The same product range seemed to have a lot of issues with the GPU as well, namely those with the ATI X1600 chip... I (and many others) have been experiencing major display issues regarding the ATI GPU.
    For the dust, no easy home fix!
    For the ATI X1600, again - no easy home fix.
    Call Apple - regardless off warranty, express your dissatisfaction - they may introduce a recall policy if enough of us kick up a fuss!?! I'm talking to them at present. Will post how i get on.
    Cheers, John0

  • Editing with Canon 5D Mark II Problems

    Hello fcp experts,
    I shot a short film on 5D and I did not know that I should convert the raw files to Apple ProRes 422 in Compressor and then edit it on final cut pro.
    I already edited the raw files in fcp. and I started adding fades and outline texts. then I rendered them and exported it. That's when I realized that the color of the video changed whenever there was subtitle or fades.
    Is there any way to fix this or do I have to convert all the files to Apple ProRes 422? (I did start) Is there any short cut to this?? Please help!!!

    sorimsanim wrote:
    I followed this guideline I found online and it said to set in and out points on the raw files in Compressor.
    I've never heard of this being done in any of the conversion workflows I'm aware of, and it seems like a waste of time. The amount of drive space you'll save will be negligible - if saving space is the reasoning behind it. Reconnect to the ones without in and out points.
    +And could you tell me the exact settings after conversion? It should be Apple ProRes 422, right?+
    If that's what you converted them to, then yes.

  • 9000 mark II problems

    All of a sudden I my photos will not print in a 4 x 6 format.  The original size is an 8 x 10 and when I go to print on 4 x 6 paper, making all the correct settings, the pictures crops. 

    Hello.
    The issue may be related to a setting in your software.  You may have to use the crop tool in your software and crop the image to 4x6 in size.  Next, check to make sure that the 4x6 paper size has been specified in the printer settings as well. 
    If the issue persists, please printing the image from a different program to narrow down the cause of your issue.
    If additional assistance is needed, feel free to call us at 1-800-OKCANON.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • TS1440 Question Mark in Flashing Folder at start up problem.

    After trying to fix the flashing question mark folder problem, I took my iMac to the Apple store and, naturally and a little embarrassingly, the iMac booted up just fine and everything seem to be intact.However, when I brought it home it reverted but to same problem i.e. question mark in flashing folder. I read and tried most suggestions I could find but still cannot get the iMac to startup. I tried holding down the "C" key, then the Option key, then PRAMed it and even attached the separate back up disk I use as a Time Machine for my new iMac. IThe problem Mac is a 2008 iMac though I don't exactly know which OS came with it, in any case, I cannot find the original disk. The iMac is networked with my latest iMac. Can anyone help? Thank you.  

    Does it boot to Single User Mode, CMD+s keys at bootup, if so try...
    /sbin/fsck -fy
    Repeat until it shows no errors fixed.
    (Space between fsck AND -fy important).
    Resolve startup issues and perform disk maintenance with Disk Utility and fsck...
    http://docs.info.apple.com/article.html?artnum=106214

Maybe you are looking for