Editing bugged jsp with sed.

I have a problem with my jsp pages, because after moving them, addresses are not resolved correct anymore. There are lots of tags such as:
<img src"/*"
which need to be rewritten into something like this:
<img src"<html:rewrite page="/*" />"
i tried doing this with sed:
sed -e 's/<[^>]img src="/*"/<img src="<html:rewrite page="&"/>"/g filename
but it doesnt work. It wouldnt even work with tags inserted in tags (in same <img src tags are <% %> tags). Could someone keen on all this line editors and regular expressions help me?

It nearly works:
sed -e 's]<img src="/.\([^"]*\)"]<img src="<html:rewrite page="/\1"/>"]g'
could someone tell me, how to make this aware of <% %> tags?

Similar Messages

  • Text editing bug: conflict with Facebook widget

    And just when I thought this program couldn't be MORE frustrating. The simplest of text editing features flatly refused to cooperate. Double click, triple click, with the direct selection tool selected. Nope won't select a goddam thing. Turned out to be a conflict with a Facebook widget I had applied on a master page.
    ATTN: bug department!

    Thank you so much for replying.
    Yes I have removed and reinstalled WMP.
    I had good results with the PD6 application installed on the default path onto the C: drive with the one exception that if the application was launched by accident and the user data path was not available, the PD6 application would blow away my custom user path registry settings. Now that I know what they are I have made a .reg file to repair my registry to my desired user data paths.
    Installing the application on the removable drive appeared to help prevent me from launching the application by accident and overwriting my registry with default user paths.
    So which is the less of the two evils?
    If the application directory is not available, windows media player still tries to launch the .msi for installing PD6.
    If I install the application to the C: drive but the user data to the removable drive, launching the PD6 application without the user data drive will still corrupt my registry settings for a user data path.
    Both these issues seem like a logical (if not easy) fix that should be done in the PD6 application and installation package. I mean really, cannot anyone tell me why windows media player is checking the PD6 application directory? Why in PD4 did we have an option control for setting the user data path from the PD4 application? Why is this option not in the PD6 application, just the installer?
    I am given a choice during installation to move the user data to another non default location. Why else would this be provided if not to accommodate my kind of request to store the user data into an alternate location other than “My Document”. Certainly Palm is not trying to force the users on how to protect and store their personal data?
    Post relates to: Centro (Verizon)

  • Issue with JSPs with inner classes (bug)

    FYI:
    Turning on Versioning in the registry (Disable=0) JSPs with inner classes causes the following IllegalAccessException...
    This has been confirmed with SP3 and SP4 with our testing...
    14/Jan/2002 13:26:24:4] error: Exception: SERVLET-run_failed: Failed in running template: /NASApp/fortune/foo.jsp, java
    lang.IllegalAccessError: try to access class jsp.APPS.fortune.foo$foobar from class jsp.APPS.fortune.foo
    xception Stack Trace:
    ava.lang.IllegalAccessError: try to access class jsp.APPS.fortune.foo$foobar from class jsp.APPS.fortune.foo
    at jsp.APPS.fortune.foo._jspService(foo.java:78)
    at org.apache.jasper.runtime.HttpJspBase.service(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown Source)
    at com.netscape.server.servlet.servletrunner.ServletRunner.callJSP(Unknown Source)
    at com.netscape.server.servlet.platformhttp.PlatformHttpServletResponse.callJspCompiler(Unknown Source)
    at com.netscape.server.servlet.platformhttp.PlatformHttpServletResponse.callUri(Unknown Source)
    at com.netscape.server.servlet.platformhttp.PlatformHttpServletResponse.callUriRestrictOutput(Unknown Source)
    at com.netscape.server.servlet.platformhttp.PlatformRequestDispatcher.forward(Unknown Source)
    at com.netscape.server.servlet.jsp.JSPRunner.service(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown Source)
    at com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Looking for work around....
    Cheers,
    Martin Gee

    I do not see why you would use two sorts.
    And what is the issue exactly by the way? Errors?
    So, the records before the Merge Join need to come sorted, to achieve this simply tick:
    Arthur My Blog

  • Bug in WITH clause (subquery factoring clause) in Oracle 11?

    I'm using WITH to perform a set comparison in order to qualify a given query as correct or incorrect regarding an existing solution. However, the query does not give the expected result - an empty set - when comparing the solution to itself in Oracle 11 whereas it does in Oracle 10. A minimal example os posted below as script. There are also some observations about changes to the tables or the query that make Oracle 11 returning correct results but in my opinion these changes must not change the semantics of the queries.
    Is this a bug or am I getting something wrong? The Oracle versions are mentioned in the script.
    -- Bug in WITH clause (subquery factoring clause)
    -- in Oracle Database 11g Enterprise Edition 11.2.0.1.0?
    DROP TABLE B PURGE;
    DROP TABLE K PURGE;
    DROP TABLE S PURGE;
    CREATE TABLE S (
         m     number NOT NULL,
         x     varchar2(30) NOT NULL
    CREATE TABLE K (
         k char(2) NOT NULL,
         x varchar2(50) NOT NULL
    CREATE TABLE B (
         m     number NOT NULL ,
         k char(2) NOT NULL ,
         n     number
    INSERT INTO S VALUES(1, 'h');
    INSERT INTO S VALUES(2, 'l');
    INSERT INTO S VALUES(3, 'm');
    INSERT INTO K VALUES('k1', 'd');
    INSERT INTO K VALUES('k2', 'i');
    INSERT INTO K VALUES('k3', 'm');
    INSERT INTO K VALUES('k4', 't');
    INSERT INTO K VALUES('k5', 't');
    INSERT INTO K VALUES('k6', 's');
    INSERT INTO B VALUES(1, 'k1', 40);
    INSERT INTO B VALUES(1, 'k2', 30);
    INSERT INTO B VALUES(1, 'k4', 50);
    INSERT INTO B VALUES(3, 'k1', 10);
    INSERT INTO B VALUES(3, 'k2', 20);
    INSERT INTO B VALUES(3, 'k1', 30);
    INSERT INTO B VALUES(3, 'k6', 90);
    COMMIT;
    ALTER TABLE S ADD CONSTRAINT S_pk PRIMARY KEY (m);
    ALTER TABLE K ADD CONSTRAINT K_pk PRIMARY KEY (k);
    ALTER TABLE B ADD CONSTRAINT B_S_fk
    FOREIGN KEY (m) REFERENCES S(m) ON DELETE CASCADE;
    CREATE OR REPLACE VIEW v AS
    SELECT S.m, B.n
    FROM S JOIN B ON S.m=B.m JOIN K ON B.k=K.k
    WHERE K.x='d'
    ORDER BY B.n DESC;
    -- Query 1: Result should be 0
    WITH q AS
    SELECT S.m, B.n
    FROM S JOIN B ON S.m=B.m JOIN K ON B.k=K.k
    WHERE K.x='d'
    ORDER BY B.n DESC
    SELECT COUNT(*)
    FROM
    SELECT * FROM q
    MINUS
    SELECT * FROM v
    UNION ALL
    SELECT * FROM v
    MINUS
    SELECT * FROM q
    -- COUNT(*)
    -- 6
    -- 1 rows selected
    -- Query 2: Result set should be empty (Query 1 without counting)
    WITH q AS
    SELECT S.m, B.n
    FROM S JOIN B ON S.m=B.m JOIN K ON B.k=K.k
    WHERE K.x='d'
    ORDER BY B.n DESC
    SELECT *
    FROM
    SELECT * FROM q
    MINUS
    SELECT * FROM v
    UNION ALL
    SELECT * FROM v
    MINUS
    SELECT * FROM q
    -- M N
    -- null 10
    -- null 30
    -- null 40
    -- 1 40
    -- 3 10
    -- 3 30
    -- 6 rows selected
    -- Observations:
    -- Incorrect results in Oracle Database 11g Enterprise Edition 11.2.0.1.0:
    -- Query 1 returns 6, Query 2 returns six rows.
    -- Correct in Oracle Database 10g Enterprise Edition 10.2.0.1.0.
    -- Correct without the foreign key.
    -- Correct if attribute x is renamed in S or K.
    -- Correct if attribute x is left out in S.
    -- Correct without the ORDER BY clause in the definition of q.
    -- Only two results if the primary key on K is left out.
    -- Correct without any change if not using WITH but subqueries (see below).
    -- Fixed queries
    -- Query 1b: Result should be 0
    SELECT COUNT(*)
    FROM
    SELECT * FROM
    SELECT S.m, B.n
    FROM S JOIN B ON S.m=B.m JOIN K ON B.k=K.k
    WHERE K.x='d'
    ORDER BY B.n DESC
    MINUS
    SELECT * FROM v
    UNION ALL
    SELECT * FROM v
    MINUS
    SELECT * FROM
    SELECT S.m, B.n
    FROM S JOIN B ON S.m=B.m JOIN K ON B.k=K.k
    WHERE K.x='d'
    ORDER BY B.n DESC
    -- COUNT(*)
    -- 0
    -- 1 rows selected
    -- Query 2b: Result set shoud be empty (Query 1b without counting)
    SELECT *
    FROM
    SELECT * FROM
    SELECT S.m, B.n
    FROM S JOIN B ON S.m=B.m JOIN K ON B.k=K.k
    WHERE K.x='d'
    ORDER BY B.n DESC
    MINUS
    SELECT * FROM v
    UNION ALL
    SELECT * FROM v
    MINUS
    SELECT * FROM
    SELECT S.m, B.n
    FROM S JOIN B ON S.m=B.m JOIN K ON B.k=K.k
    WHERE K.x='d'
    ORDER BY B.n DESC
    -- M N
    -- 0 rows selected

    You're all gonna love this one.....
    The WITH clause works. But not easily.
    Go ahead, build the query, (as noted in a recent thread, I, too, always use views), set the grants and make sure DISCOVERER and EULOWNER have SELECT privs.
    1. Log into Disco Admin as EULOWNER. Trust me.
    2. Add the view as a folder to the business area.
    3. Log into Disco Desktop as EULOWNER. Don't laugh. It gets better.
    4. Build the workbook and the worksheet (or just the worksheet if apropos)
    5. Set the appropriate "sharing" roles and such
    6. Save the workbook to the database.
    7. Save the workbook to your computer.
    8. Log out of Desktop.
    9. Log back into Desktop as whatever, whoever you usually are to work.
    10. elect "open existing workbook"
    11. Select icon for "open from my computer". See? I told you it would get better!
    12. Open the save .dis file from your computer.
    13. Save it to the database.
    14. Open a web browser and from there, you're on your own.
    Fortran in VMS. Much easier and faster. I'm convinced the proliferation of the web is a detriment to the world at large...On the other hand, I'm also waiting for the Dodgers to return to Brooklyn.

  • Facing problem in integrating my custom jsp with the workflow engine

    Hi,
    I am using Jdeveloper 11.1.1.6.0 for BPM 11g implementation on my Application.I have Weblogic Server 10.3 Installed and configured the domain. Also the server is up and running.
    I am trying to create workflow and wants to integrate it with my custom jsp but i am facing problem in integrating my custom jsp with the workflow engine.Can you please answer the following questions:
    1)how to link BPM human task with my custom jsp (Requester jsp).
    2)how my custom jsp data(Requester data) will be stored in workflow engine and how the same data will be visible to the next custom jsp(Reviewer jsp).
    This is urgent .Any early reply will be great help.
    Thanks in advance.
    Edited by: 990133 on Mar 24, 2013 5:31 AM

    you forgot to add the usage dependency in the DC metadata section in your DC, you have to add the XSS~utils and fpm as a used DC's as part of your DC, try to add those, if you already done that, so check where missed the adding of used webdynpro components in any of the VAC's or FC's,
    Cheer,
    Appa

  • How to edit generated JSPs

    Hi:
    I have created the BC4J components and have generated the JSPs.
    Questions:
    1. How can I edit the generated JSP to change the look and feel of UI. Where is it stored. Is it HTML or it is dynamically generated?. For example I want to hide
    Primary Key form fields from user view.
    2. How do I add List of Values (LOV) functionality to a field in the JSP screen.
    Thanks.
    Ravi

    Hi.
    The wizard generates a JSP with a very basic layout. You can customize the fields that appear on screen by calling methods on the bean that is used (i.e. RowSetBrowser, ViewCurrentRecord).
    For the first question, there usually is a method called setDisplayAttributes().
    regarding the second question, the EditCurrentRecord bean has some method to define the kind of control that is used to display the field (they start with use..., ie useLovField or something like that).
    You should take a look at the documentation for the webbean classes.
    null

  • LR3 - Cannot edit in Photoshop CS4 ("Edit a Copy with Lightroom Adjustments")

    Having just purchased LR3, it seems that when I select "Edit a copy with Lightroom Adjustments", that the LR adjustments aren't being carried across into CS4. I am only given the original file in PS.
    Is this a known bug?

    So what do you think might be the problem, Dorin?
    I don't know. I haven't seen a bug (assuming it is indeed a bug, and not an operator error) like this is mentioned here in the forums.
    This issue is going to affect my business in a major way.
    If this is so critical to your business, you can use a workaround meanwhile.
    Use the regular export command with the following options:
    File type: PSD/TIFF; other relevant filetype options.
    Location: same as original photo.
    Add to this catalog: checked. Stack with original: as needed.
    Post-processing: open in Photoshop.
    Save this as an Export presets and invoke it from the File->Export with Preset from the menu.
    The end result is the same as Edit in Photoshop.

  • Help with sed in a PKGBUILD

    Basically, I need to make a few modifications to a conf file but I am no good with sed.  Here is a portion of the original conf file:
    our %HTTP_LOG = ("Linux-RHFC" => "/var/log/httpd/access_log",
    "Linux-Debian" => "/var/log/apache2/access.log",
    "Linux-Gentoo" => "/var/log/apache2/access_log",
    "Linux-Slack" => "/var/log/httpd/access.log",
    "Linux-SuSE" => "/var/log/apache2/access_log",
    "Linux-Generic" => "/var/log/httpd/access_log",
    "FreeBSD" => "/var/log/httpd-access.log");
    our %BASE_WWW = ("Linux-RHFC" => "/var/www/html",
    "Linux-Debian" => "/var/www",
    "Linux-Gentoo" => "/var/www/localhost/htdocs",
    "Linux-Slack" => "/var/www/htdocs",
    "Linux-SuSE" => "/srv/www/htdocs",
    "Linux-Generic" => "/usr/local/www",
    "FreeBSD" => "/usr/local/www/apache22/data");
    I need to make two changes:
    1) change the .log to _log in the following:
    "Linux-Slack"   => "/var/log/httpd/access.log",
    2) change the path from "/var/www/htdocs" to "/srv/http" in the following:
    "Linux-Slack"   => "/var/www/htdocs",
    Here is a model line with sed making another needed change that res wrote into the PKGBUILD:
    sed '/^our $OSTYPE = "Linux-RHFC"/ s,RHFC,Slack,' < $pkgname.conf \
    > $pkgdir/etc/$pkgname.conf
    Basically, I can't adapt his line to do what I need.  Anyone willing to help me out?  BTW, this is for the monitorix PKGBUILD in the AUR: http://aur.archlinux.org/packages.php?ID=33911
    Last edited by graysky (2010-01-26 21:35:28)

    CommandLine: (Combined)
    sed '/ *"Linux-Slack"/{ s=/var/www=/srv/http=; s=log=_log= }' < infile > outfile
    Output:
    our %HTTP_LOG = ("Linux-RHFC"   => "/var/log/httpd/access_log",
                    "Linux-Debian"  => "/var/log/apache2/access.log",
                    "Linux-Gentoo"  => "/var/log/apache2/access_log",
                    "Linux-Slack"   => "/var/_log/httpd/access.log",
                    "Linux-SuSE"    => "/var/log/apache2/access_log",
                    "Linux-Generic" => "/var/log/httpd/access_log",
                    "FreeBSD"       => "/var/log/httpd-access.log");
    our %BASE_WWW = ("Linux-RHFC"   => "/var/www/html",
                    "Linux-Debian"  => "/var/www",
                    "Linux-Gentoo"  => "/var/www/localhost/htdocs",
                    "Linux-Slack"   => "/srv/http/htdocs",
                    "Linux-SuSE"    => "/srv/www/htdocs",
                    "Linux-Generic" => "/usr/local/www",
                    "FreeBSD"       => "/usr/local/www/apache22/data");
    Don't try to write to the original file using this approach as it will clobber your original file. Use "sed -i" to save to the original file instead. The "< infile > outfile" save the output to another file obviously.
    Sed Script: ( Invoked as sed -f whatever_you_call_the_script file )
    / *"Linux-Slack"/{
    s=/var/www=/srv/http=
    s=log=_log=
    sed '/^our $OSTYPE = "Linux-RHFC"/ s,RHFC,Slack,' < $pkgname.conf \
                                                        > $pkgdir/etc/$pkgname.conf
    This means find this regex pattern ^our $OSTYPE = "Linux-RHFC" and whatever it matches change RHFC to Slack. Take $pkgname.conf as the infile and send the output of sed to $pkgdir/etc/$pkgname.conf
    Notice he used s,RHFC,Slack, and I used s=log=_log=. This is typically done if you have a lot of "/" in a file. Sed's typical replacement pattern is this s/original/changed/ but as I mentioned it becomes hard to figure out if you have something like this s/\/mnt\/usb\/somefile/\/mnt\/usb\/somename/. Sed allows you to substitute any character (except a few special ones) in place of "/" in it's replacement pattern as long as you follow through the whole command like that. So in essence these are equivalent s,RHFC,Slack,, s=RHFC=Slack=, s/RHFC/Slack/
    You did say you wanted to know. Hope this is what you were looking for or at least a step in the right direction. Sorry if I bored you with the school lession.

  • Digital editions bug

    Digital editions provides you with an ability to move back and forth between pages by using the CTRL+G and CTRL+SHIFT+G key combinations. Unfortunatly, this combination doesn't work, instead it provides you with same functionality as if I pressed CTRL+F, i.e. Find.
    When I click Next/Previous in the Reading menu, it works just fine, its the key combinations that doesn't work.
    Anyone seen this issue? Have a solution?
    Thanks.

    Ctrl-G and Ctrl-Shift-G should move you back and forward on a find (Ctrl-G is Find Next/Ctrl-Shfit-G is previous), but as Ric noted this a known bug (currently fixed internally). There are two other ways to do this. One as you noted is through Previous and Next on the Reading Menu. The other is to use the two buttons next to the right of of the Find control of the toolbar.
    However if all you want is just keyboard navigation through the text there are quite a few other key combinations documented on our
    help page. One of the more useful set for reading is scrolling up or down by a page, which can be down with the right and left arrow keys respectively.
    Jim Lester
    Adobe Systems

  • Editing question, preferably with "do shell script"

    I would like to edit an expression
    from: blah blah /Paragraphs/one two three
    to: blah blah /Paragraphs/one-two-three
    where "/Paragraphs/" is always present
    but "one" might be anything
    Using sed with regexp seems like a way to go, but I don't know how to designate "one," which will vary. Viz.:
    set T to "blah blah /Paragraphs/one two three"
    set T1 to do shell script "echo " & quoted form of T & " | sed 's/\\/Paragraphs\\/{anything}/\\/Paragraphs\\/{anything}(change all subsequent spaces to "-")/g'"

    Hi,
    Can't believe I did it with sed! My test.txt file looks like this:
    blah blah #one here's some text
    blah blah #two more text
    blah blah #three and even more text
    #four number begins this line
    Here's the sed part:
    sed 's/#/\
    #/' < test.txt | sed '/#/ s/ /-/g' | sed '
    N
    s/\n#/#/
    Here I used "#" instead of "/Paragraphs/". Now, you translate this into a do shell script. If you need help with that, then write back. I now understand the N command for working with multiple line processing. Here's the tutorial I used:
    http://www.grymoire.com/Unix/Sed.html
    Edited: and here's the output
    blah blah #one-here's-some-text
    blah blah #two-more-text
    blah blah #three-and-even-more-text
    #four-number-begins-this-line
    gl,

  • Edited/Recompiled JSP not reflected in OC4J instance

    After starting OC4J to run my JSP project, if I edit and make/build a jsp, I won't get the updated version if I go to the page without first stopping the process and restarting OC4J. Am I missing something to get it to deploy on the fly if I edit it? It's a bit cumbersome to have to stop and start OC4J everytime I tweak a JSP page a little.
    Andrew

    Doing the right-click-run option will not work for me as I'm using a Model 2 pattern for my JSP development. The JSP has to have been served by a controller servlet before being valid. And I definitely know it's not a cache issue, I can see a log being generated everytime I refresh the page, but no matter how many times I make/rebuild/make, the changes don't show up. And besides, I thought the right-click-run option essentially starts a new OC4J instance, not continuing the previous version, isn't that right? I'd like to maintain state of the current session and not have to end up logging back in to my app everytime I tweak a character on a JSP page.
    I know other, much simpler, JSP containers are able to do this, like Tomcat running in JBuilder 6. There, if I edit a JSP page, recompile it, and access it from a browser, it will show up with the changes. Perhaps someone at the JDeveloper team can clarify this for me?
    Andrew

  • Error while running JSP with custom tag

    I am trying to run a jsp with a tag and I am getting the following error when I run the jsp:
    "Unable to open taglibrary /WEB-INF/jsp/mytaglib.tld : Parse Error in the tag library descriptor: External parameter entity "%(DOCTYPE);" has characters after markup."
    I have no idea what this is, can anyone help me here?
    tx
    -AB

    Its difficult to tell without looking at your TLD file i.e. mytaglib.tld
    However, a guess is that you may be refering to an invalid or otherwise corrupted DTD from your TLD.
    Check that out.
    The official DTD for TLDs in JSP 1.1 is http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd
    and the official DTD for TLDs in JSP 1.2 is http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd

  • How can I edit multiple clips with different frame rates on the same timeline

    how can I edit multiple clips with different frame rates on the same timeline

    You do not want to edit material from different frame rates on one timeline. You CAN do this, but it is a very bad idea - and this is why.
    Once you establish the sequence frame rate - lets say it is PAL material at 25fps, any material that you drop into the sequence other than 25 fps will have to be changed to play at 25 fps. If the material you add is NTSC (29.97), FCP will DROP 5 frames per sec to bring the frame rate down to 25 fps. Which 5 get thrown away? Every 6th one. This yields a funky cadence that becomes even more complex as as there are also interlaced fields (DV/NTSC is an interlaced format). Oh, and by the way, the image sizes are different as well. DV/PAL has 576 lines of resolution and DV/NTSC has 480. FCP has to scale up the NTSC to fit the PAL frame.
    You do not want FCP adjusting these things on the fly. You want to do a thoughtful (and time consuming) conversion so that you end up with all your material in one format with the best possible image from the conversion process. Compressor can do an adequate job with Frame Controls turned on. The Natress Standards Conversion FCP plugin is another way to go. A third option is to find a post house that can do the conversion for you using a hardware based process.
    The good news is, once everything is in the same format, editing it will be painless and the output process very quick.
    Whatever frame rate/ image size you select, I'd suggest using ProRes for the codec. It is 4:2:2 color and will withstand color correction and composting with much more grace than any variant of DV based codecs.
    Have fun.
    x

  • I Have a Mac 10.9.5 I have Photoshop CS 5.. Also have Photoshop CC. As of last month was able to edit any image with either program,as of today I can't edit images in either program. I can't see and editing I've done ,but when close the image both program

    I Have a Mac 10.9.5 I have Photoshop CS 5.. Also have Photoshop CC. As of last month was able to edit any image with either program,as of today I can't edit images in either program. I can't see and editing I've done ,but when close the image both program ask (do you want to save changes) I look at the image I don't see any changes to save. Please help Thanks for time in advance

    Please describe the steps involved in the issue exactly (with screenshots maybe).
    What have you done for trouble-shooting so far?
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html

  • Apex 2.2.1- error in editing a report withIE 6: ORA-20001- Checksum error

    Hi all,
    I'am getting an Error when I try to edit a report with Internet Explorer 6: ORA-20001-...- Checksum error.
    With Firefox it works fine.
    Customer is using IE as standard browser and Firefox is not available here.
    Any Ideas?
    Kazim

    I had to apply Patch 4554072, provided with APEX.
    This patch is available in the directory patch\bug4554072.
    Kazim

Maybe you are looking for

  • Bind Variable

    Is the bind variable syntax supported in procedure? The following produces error: VARIABLE salary number CREATE OR REPLACE PROCEDURE bindvar is eid employees.employee_id%type; BEGIN SELECT employee_id INTO eid FROM EMPLOYEES WHERE employee_id > :sala

  • Unclosed Database Connections

    Hi, We have deployed XMII 12.0 on NW 7.1 version. we are accesing Oracle DB from XMII applets from web pages. While loading the page, Java applets are not displaying. In netweaver administrator, we saw the error as some of the connections might not b

  • How do I transfer my iTunes TV shows to a flash drive?

    I am wanting to move a couple of TV series to one of my flash drives.  I've tried just copying the files over, but that doesn't work.  Any help and explainations would be appreciated.  Thank you.

  • X31 Disapear at Start-up IMB Thinkpad Logo

    hello, My IMB Thinkpad X31 got problem below: When i press power botton, it stopped me at start-up IMB Thinkpad Logo. Please help me to get it works. Thanks and sorry for my bad english.

  • EDIT: PC//Desktop App:Download/Login Issues

    Have tried to install the Creative Cloud app on my PC (that runs Windows 7 Home Premium) multiple times with no success. When the application is done downloading, it completely freezes my computer and I have to restart it. Once I reboot, I sign into