[code] does not work correctly, cannot post code example.

Hi, I tried to do a code example, but HTML tags inside java quoted strings were intereperted. Like the <IMG> tag and the <H1> tag..
How do I prevent this????
Re: How to post an audio file in JSP or servlet

OK, it was the IMG and H1 tags....
Looks like I can embed an image though <img src="http://www.oracle.com/admin/images/ocom/oralogo_small.gif">

Similar Messages

  • Dreamweaver codes does not show correctly

    Hi, i have a problem with dreamweaver.
    İ use last version Adobe CC. When i use dreamweaver for my job, codes does not show correct.
    look ss please. letters cut of middle. look letter "g" "j" "y "   Look MysQl letter. you see "y" is cut of
    Thank you for help.

    Are you using frames?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "David Powers" <[email protected]> wrote in message
    news:f9hns3$soa$[email protected]..
    > FlashRenaissance wrote:
    >> When I try to preview my .html pages in Dreamweaver
    8 it does not know
    >> the page. The only thing that shows up is a page
    that "Cannot be found"
    >> with a strange extension (TMPztriqmk5y3.htm).
    >
    > See the TMP at the beginning? It stands for temporary.
    >
    >> Any suggestions on how I can get the pages to show
    up again in preview
    >> mode? Maybe something went wrong in the preferences?
    >
    > Go to Preferences, select Preview in Browser, and
    deselect the option to
    > preview using temporary files.
    >
    > --
    > David Powers, Adobe Community Expert
    > Author, "The Essential Guide to Dreamweaver CS3"
    (friends of ED)
    > Author, "PHP Solutions" (friends of ED)
    >
    http://foundationphp.com/

  • Redemption code from Photoshop Elements 12 purchased from Best Buy does not work 'Oops! This code doesn't seem to be active. Please contact the retailer you purchased the card from, or use a different code.'   I have an invoice and the pickup notice from

    Redemption code from Photoshop Elements 12 purchased from Best Buy does not work 'Oops! This code doesn't seem to be active. Please contact the retailer you purchased the card from, or use a different code.'   I have an invoice and the pickup notice from Best Buy.   What other information does Best Buy need?   What will they do?   Will I get a new box?   What happened to the days of just typing in a simple s/n?   

    Redemption Code Help
    http://helpx.adobe.com/x-productkb/global/redemption-code-help.html

  • Redemption Code does not work

    I am trying to install CS6 from the email I was sent from Adobe. The redemption code does not work. Is there a phone number I could call for support. I bought my Adobe Creative Suite 6 from Ivy Tech Community College in Indianapolis, IN. I have recently moved to Bodfish California and need help to install this.
    Thank You
    Cathy Talbott

    Hi Sunshine2014,
    You can try the options in obtaining serial number from
    http://helpx.adobe.com/x-productkb/global/redemption-code-help.html
    http://helpx.adobe.com/x-productkb/global/redemption-code-help.html
    You canalso contact Adobe regarding this, they can assist you better.
    Regards,
    Rajshree

  • Hello, I purchased design premium 4.0 German Windows  (LIZ 390232 from 22.02.2010) from my friend and wanted to installation it. However, the key code does not work. He has the PC is no longer, so he can not  disable the product key. He loaded it, but onl

    Hello, I purchased design premium 4.0 German Windows  (LIZ 390232 from 22.02.2010) from my friend and wanted to installation it. However, the key code does not work. He has the PC is no longer, so he can not  disable the product key. He loaded it, but only in Englisch (trial version?) Please help me for the next step. I have the license agreement in my hand.

    Moving this discussion to the Downloading, Installing, Setting Up forum.
    Jakobh53157856 before you begin the installation process please complete the transfer of license process to transfer the Adobe Creative software license you wish to utilize to your possession,  You can find details regarding the transfer process at Transfer an Adobe product license.

  • I purchased design premium 4.0 German Windows  from my friend and wanted to installation it. However, the key code does not work.

    I purchased design premium 4.0 German Windows  from my friend and wanted to installation it. However, the key code does not work. He has the PC is no longer, so he can not  disable the product key. He loaded it, but only in Englisch (trial version?) Please help me for the next step. I have the license agreement in my hand.

    Nobody here can help you with this. You'll need to contact Adobe directly.
    Did your friend fill out and send in the license transfer form?
    Transfer an Adobe product license

  • Threads does not work correctly

    The follow program working with threads. We have two classses : Producer and Customer which working with the same object (which type is class Q). Producer produces data. Customer should capture the data. The Q class must be synchronized. But code does not work (compile under NetBeans 6.0)
    class Q {
    int number = 0;
    boolean filled = false;
    void put (int n) {
    while (filled){
    try {
    wait();
    catch(InterruptedException e) {
    System.out.println("Interrupted");
    number = n;
    System.out.println("Put : " + number);
    filled = true;
    notify();
    void get () {
    while (!filled) {
    try {
    wait();
    catch(InterruptedException e) {
    System.out.println("Interrupted");
    System.out.println("Got : " + number);
    filled = false;
    notify();
    class Producer implements Runnable {
    Q obj_link;
    Thread t;
    Producer (Q obj_link) {
    this.obj_link = obj_link;
    t = new Thread(this, "Producer");
    t.start();
    public void run () {
    int i = 0;
    while (true) {           
    obj_link.put(i++);
    class Customer implements Runnable {
    Q obj_link;
    Thread t;
    Customer (Q obj_link) {
    this.obj_link = obj_link;
    t = new Thread(this, "Customer");
    t.start();
    public void run () {
    while (true) {
    obj_link.get();
    public class Main {
    public static void main(String[] args) {
    Q common_obj = new Q();
    Producer pr = new Producer (common_obj);
    Customer cs = new Customer (common_obj);
    try{
    pr.t.join();
    cs.t.join();
    catch(InterruptedException e) {
    System.out.println("Interrupted");
    System.out.println("Program Over");
    }

    The follow program working with threads. We have two classses : Producer and Customer which working with the same object (which type is class Q). Producer produces data. Customer should capture the data. The Q class must be synchronized. But code does not work (compile under NetBeans 6.0).
    I.e. i am waiting for the follow result:
    1. pr thread starts with common_obj object
    2. cs thread starts with common_obj object
    3. pr thread tries call common_obj.put(i++) in infinite cycle:
    3.1 these lines does not work because filled now is set to false
            while (filled){
                try {
                    wait();
                catch(InterruptedException e) {
                    System.out.println("Interrupted");       
            }3.2 the follow code will be implemented:
            number = n;    // put value to number
            System.out.println("Put : " + number); // output result to console
            filled = true; // value was put. It can be got.
            notify(); // notify another thread (cs) that it should not waiting anymore.4. pr thread tries call common_obj.get() in infinite cycle:
    4.1 the following code will not be implemented anymore:
            while (!filled) {
                try {
                    wait();
                catch(InterruptedException e) {
                    System.out.println("Interrupted");       
            } since another thread notify current.
    4.2 the follow code will be implemented:
            System.out.println("Got : " + number);
            filled = false;
            notify();So the result of running this program should be:
    Put : 0
    Got: 0
    Put : 1
    Got: 1
    Put : 2
    Got: 2
    Put : 3
    Got: 3
    Put : 4
    Got: 4
    class Q {
        int number = 0;
        boolean filled = false;
        void put (int n) {
            while (filled){
                try {
                    wait();
                catch(InterruptedException e) {
                    System.out.println("Interrupted");       
            number = n;
            System.out.println("Put : " + number);
            filled = true;
            notify();
        void get () {
            while (!filled) {
                try {
                    wait();
                catch(InterruptedException e) {
                    System.out.println("Interrupted");       
            System.out.println("Got : " + number);
            filled = false;
            notify();
    class Producer implements Runnable {
        Q obj_link;
        Thread t;
        Producer (Q obj_link) {
           this.obj_link = obj_link;
           t = new Thread(this, "Producer");     
           t.start();
        public void run () {
            int i = 0;
            while (true) {           
                obj_link.put(i++);
    class Customer implements Runnable {
        Q obj_link;
        Thread t;
        Customer (Q obj_link) {
           this.obj_link = obj_link;
           t = new Thread(this, "Customer");     
           t.start();
        public void run () {
            while (true) {
                obj_link.get();
    public class Main {
        public static void main(String[] args) {
            Q common_obj = new Q();
            Producer pr = new Producer (common_obj);
            Customer cs = new Customer (common_obj);
            try{
                pr.t.join();
                cs.t.join();
            catch(InterruptedException e) {
                System.out.println("Interrupted");
            System.out.println("Program Over");
    }the follow result of implementation I found:
    run:
    Put : 0
    Exception in thread "Producer" java.lang.IllegalMonitorStateException
    Got : 0
    at java.lang.Object.notify(Native Method)
    at threadstudy2.Q.put(Main.java:19)
    Program Over
    at threadstudy2.Producer.run(Main.java:50)
    at java.lang.Thread.run(Thread.java:619)
    Exception in thread "Customer" java.lang.IllegalMonitorStateException
    at java.lang.Object.notify(Native Method)
    at threadstudy2.Q.get(Main.java:33)
    at threadstudy2.Customer.run(Main.java:68)
    at java.lang.Thread.run(Thread.java:619)
    BUILD SUCCESSFUL (total time: 1 second)

  • I have a manual that contains headings and index entries that contain less than and greater than characters, and . The Publish to Responsive HTML5 function escapes these correctly in the main body of the text but does not work correctly in either the C

    I have a manual that contains headings and index entries that contain less than and greater than characters, < and >. The Publish to Responsive HTML5 function escapes these correctly in the main body of the text but does not work correctly in either the Contents or the Index of the generated HTML. In the Contents the words are completely missing and in the index entries the '\' characters that are required in the markers remain in the entry but the leading less than symbol and the first character of the word is deleted; hence what should appear as <dataseries> appears as \ataseries\>. I believe this is a FMv12 bug. Has anyone else experienced this? Is the FM team aware and working on a fix. Any suggestions for a workaround?

    The Index issue is more complicated since in order to get the < and > into the index requires the entry itself to be escaped. So, in order to index '<x2settings>' you have to key '\<x2settings\>'. Looking at the generated index entry in the .js file we see '<key name=\"\\2settings\\&gt;\">. This is a bit of a mess and produces an index entry of '\2settings\>'. This ought to be '<key name=\"&amp;lt;x2settings&amp;gt;\" >'. I have tested this fix and it works - but the worst of it is that the first character of the index entry has been stripped out. Consequently I cannot fix this with a few global changes - and I have a lot of index entries of this type. I'm looking forward to a response to this since I cannot publish this document in its current state.  

  • Focus under Win2k does not work correctly

    Hi,
    we've found out that the focus does not work correctly under Windows 2000 in
    Seamless Mode (App is a Windows Application running on Windows Terminal Server
    2003), the same application has no problems under Windows XP, Apple Macintosh
    and Linux.
    Example: The application has a button which pop's up a small calendar window
    giving that window focus. In Tarantella under Win2k however you just see the
    window popping up shortly and then going in the background. As the window is in
    the background and you can't get the window back and you also cannot work
    further in that application as the rest is inactive.
    Only way is to do a right-click on the application in the taskbar, which brings
    the window in the foreground again. What makes this problem even harder to
    analyze is, that it sometimes even works correctly (around 3 of 10 times).
    We've mostly recognized this with modal windows. The native client does not have
    this problem, however as far as I know it does not support seamless mode.
    2. The second problem we got is, that if you click with the mouse into the
    initializing Window while the application starts up after you have clicked on an
    application Link in SGD (I mean the Pre-Login window of Windows which shortly
    shows up just before the Login Process begins),
    the application is not started seamlessly but is started within that window and
    you have no chance but closing an restarting the application to get it in
    seamless mode. This is seen on all Client Operating Systems by us and not only
    Windows 2000.
    The Client runs:
    Windows 2000 SP4 all updates installed
    Java: 1.5.0-5
    Browser: IE6.0 and Firefox 1.0.7
    Server: Windows 2003 Terminal Server (all updates installed)
    Tarantella: 4.20.909
    I hope that someone has at least a workaround.
    Regards
    Carsten

    I have organized some testcases attached are 3 Test Programs which work
    nice natively but got these problems under Tarantella under every Windows
    Operating System (the error is not Windows 2000 as I previously mentioned but
    also occurs on Windows XP).
    The interesting thing is that the Test Program made with .NET does not show this
    problem.
    Could someone please test these and tell if this error is reproducible on your
    systems as well ?
    Run these Testprograms natively, they show no misbehavior.
    Execute this from a SGD Webtop Session in Seamless Mode, see that
    the Modal window is not modal but shifts into the background on every 2 -3 click.
    Regards
    Carsten
    [ModalTestPrgs.zip]

  • Since I upgraded to Yosemite, my CS5 does not work correctly.

    Since I upgraded to Yosemite in October, my photoshop CS5 does not work correctly. When right clicking to change a brush size, the adjuster when moving to the right or left, either sticks or moves radically. As I set the size of the brush and move my cursor back to the image, the adjuster moves with the cursor.
    Help!

    sharonfrombury wrote:
    Is there no contribution from Apple support community for this question yet?  I know there have been teething problems upgrading to Yosemite, but this loss of functionality is adding administrative workload that I can ill afford.  Come on Apple, some ray of light please.
    If you read the Terms of Use  you agreed to you would realize Apple does not read or participate in these user forums. All posts and responses are end users just like yourself. If you have feedback for Apple please  post it at www.apple.com/feedback. Please do not expect to hear back from Apple, they read the feedback but do not reply.
    Also, the feature the feature of combining multiple PDF's into one document using the Preview app works perfectly.

  • "Track Shipment" is iOS4 does not work for Canada Post tracking numbers

    Not 100% sure this is the best forum to post this but couldn't find an iOS specific forum.
    When an email arrives with a shipment tracking number embedded in it, iOS4 is smart enough to recognize it and turn it into a link. You click the link, select "Track Shipment" and in theory you get sent off to the appropriate shipment tracking website.
    Problem is that this does not work for Canada Post tracking numbers, I get sent to the USPS tracking site instead of the Canada Post one. I assume that the number format is similar but there must be a way to distinguish between CPC tracking numbers and USPS tracking numbers (by range ?).

    This has since become working in 4.0 and higher.
    I noticed I now get a notes folder for each of my email accounts (ie. in my case; MobileMe gets one, Gmail gets another, and Virgin Media a yet another). And all three since accordingly correctly between Notes mailbox on iPhone 4 and it's counterpart Notes mailbox in the mac mail app under Reminders section.
    Additionally, just like other main mailboxes (inbox, drafts, sent, trash, junk), they also have a "unified" box at the top in both mac and iphone, in order to view notes in all email accounts at the same time.
    Hooray Apple, shame it took so long, but at least it's here now

  • SB Titanium Fatal1ty Champ - Frontpanel does not work correctly

    ?SB Titanium Fatalty Champ - Frontpanel does not work correctly? good morning,
    i use the fatalty with the - champ - frontpanel. Unfortunately this panel does not work correctly. that means is have sound at the headphones and can use the mic but i cannot change the volume (HP and Mic)and cannot change?game mode, cmss-3d and crystalizer.
    i?tested this card on two operating systems (one of the totally new) but the frontpanel does not work.
    I try the driver from CD, the newest which will be found by creatives autoupdate driver search and i check youp pak but none of them will help.
    Internal Soundcard of my mainboard is deactivated.
    The hardware is not damaged - i try two different titanium cards with two frontpanels...
    here my system:
    [color="#0000ff" face="Book Antiqua">MSI DKA790GX Platinum , Cooler Master CM 690
    AMD Phenom X4 9950BE @ 3,2GHZ, Logitech Z-4e
    4GB Kingston HyperX DIMM 2 GB DDR2-800 Kit
    MSI N260GTX-T2D896-OC @707MHZ
    Xilence RedWing Gaming Edition Modular - 750 Watt
    Creative X-Fi Titanium Fatalty Champion Series
    Windows Vista Ultimate 32-Bit; Samsung T260
    so...what can i do now? i have no idea what to test now?
    brgds
    stefan

    So nobody actually has any idea what the problem is? I'm not the thread-bumping type, but this is a very annoying issue and if anyone has any useful information I would greatly apprecaite it.

  • Why can I not import pictures any more? Lightroom says "Your Lightroom 5 64-bit does not work correctly"

    Why can I not import pictures any more?
    Lightroom says "Your Lightroom 5 64-bit does not work correctly"
    Technical informations:
    PC with Windows 7 64-bit, Lightroom 5.7.1 64-bit installed.
    What I have done:
    I downloaded the newest LR 5.71 and installed it again - mode repair; without success
    I checked my PC with Norton 360: full scanning and optimizing registry
    I restarted the PC and than I installed the LR 5.7 again - repair
    Trouble 1:
    Two days ago I could work with my LR 5 and to import pictures from a SD was no problem. Now I can start LR 5 and I can watch/modify pictures, but as soon as I try to import new pictures LR 5 stops and gives the message "your LR 5 64-bit does not work correctly - searching for solution". I have not changed anything in my computer since lasttime LR 5 worked properly, only the registry was optimized by Norton 360.
    Trouble 2:
    I live in Switzerland and my language ist German. I dit not find a place where I can present my problem in German, e.g. a phone number oder email-address oder german-chat. My English is to week for a discussion for computer problems and do understand it.
    Help:
    I would very appreciate if anybody can help me, either to trouble 1 or to trouble 2. Thanks.

    Sehen Sie diesen Beitrag:
    Photoshop CS4 & Lightroom 2.6 X64 funktionieren nicht mehr
    Wacom Tablet-Treiber-Problem?

  • Satellite M645-S4050: built in camera does not work correctly

    My built in camera does not work correctly.
    It does not have any kind of effect on and it captures pictures and videos as if some kind of thermal camera was on.
    Also some videos I load up on youtube look like this.
    I have been researching for an answer but can't find it, please help me.

    All you can do is to test it with latest webcam driver.
    Remove preinstalled camera software and install latest version offered on Toshiba download page.
    If the same happen again visit nearest Toshiba service and show them how it looks like. Maybe the cam must be exchanged.
    In the past I have used several Toshiba laptops with built in cam but I have never saw something lke this.

  • Remote does not work correctly after update

    Hello,
    the subject explain it already:
    After upgrading to 2.3 the apple remote does not work correctly anymore:
    I need to push the buttons twice, and than atv is only reacting sometimes.
    Any ideas?
    BR
    Frank

    Same problem here. First, I thought it was the Apple remote's battery. I replaced that and the problem persisted. I then used my digital video camera to verify that the remote was actually transmitting infrared, it was. In frustration, I tapped the buttons rapidly while pointing at the Apple TV. The Apple TV responded. The next button press it failed to respond. I tapped rapidly again and it finally responded. After many many rapid presses, while pointing directly at the Apple TV, it finally began responding to all presses. Once I'd regained control (I thought) I unpaired and re-paired the remote. Everything continued to work. At that time I also saw that I could "learn" another remote. So, I set up my Samsung TV remote. Sweet. Until the Apple TV went into screensaver mode again and I had to go through the same rapid button press sequence... with either the Apple remote or my learned Samsung remote. Conclusion, since the Apple TV will become fully responsive after the rapid button press sequence, it is certainly a software related problem.

Maybe you are looking for