Upgrade to v2.0 from version 1.67 using oracle appserver 10g

Looking over the release notes and install guide for version 2.0, I noticed that there are configuration changes for the marvel.conf file. However, there is no mention in the Appserver 10g section of these guides about the dads.conf file. Should our changes be going into the dads.conf file or should we create a marvel.conf file and apply changes there or should changes be in both files?? Also what file should the MIMe (xbl htc) changes be applied to ?

Clifford,
You can put all your changes, including mime types, in dads.conf. Make sure you place the AddType directives outside the Location tags.
Sergio

Similar Messages

  • HT201407 Hi, I upgraded my Iphone 3gs from version 4.1 to 6.0.1 but upon restarting, the sim card is no longer recognized, i cant restore with itune nothing at all!! i'm so confused and ****** off... please provide any help

    Hi, I upgraded my Iphone 3gs from version 4.1 to 6.0.1 but upon restarting, the sim card is no longer recognized, i cant restore with itune nothing at all!! i'm so confused and ****** off... please provide any help

    Is the SIM from the carrier the device is locked to?
    Has the device ever been hacked or jailbroken?
    Have you tried simply removing and re-installing the SIM?  What about replacing the SIM?

  • Upgrade the Essbase Client from Version 11.1.2.1 to 11.1.2.2 on LINUX 64 BI

    Hi All,
    Can any one please let me know the process to upgrade the Essbase Client from Version 11.1.2.1 to 11.1.2.2 on LINUX 64 BIT Server. Is it possible to upgrade the essbase client alone or do we need to upgrade the Essbase Server as a whole? Also, does Essbase upgrade is possible from 11.1.2.1 to 11.1.2.2 on LINUX ?
    If Essbase client upgrade is not possible, can you please tell the list of Files that need to be download to Install Essbase server V 11.1.2.2 on LINUX.
    Thanks
    Reddy

    Have a read of the following doc in Oracle Support - "How to Install the Essbase Client Tools MaxL and ESSCMD on a Planning Server Installed on Unix Server [ID 1477705.1]"
    I know the title of the doc is not exactly the same as the question but it gives you an idea of the process based on 11.1.2.2, the easiest solution is probably to apply the maintenance release to upgrade from 11.1.2.1 to 11.1.2.2
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Need to read Email from Lotusnotes and Outlook using Oracle

    Dear All,
    My database version Oracle 10.2
    I need to read Email from Lotusnotes and Outlook using Oracle.
    I have tried with below link
    http://sourceforge.net/projects/plsqlmailclient/The problem is i am getting some java error.
    Can anyone suggest me to proceed further.
    Cheers,
    San

    I am using the another function to read an email from pop3 server
    create or replace
    FUNCTION pop3 (
       username   VARCHAR2,
       PASSWORD   VARCHAR2,
       msgnum     NUMBER
       RETURN tstrings PIPELINED
    IS
       --POP3_SERVER             constant varchar2(19) := '127.0.0.1';
       pop3_server   CONSTANT VARCHAR2 (100)     := 'xxxxxx';
       pop3_port     CONSTANT NUMBER             := 110;
       --POP3_TIMEOUT            constant number := 10;
       pop3_ok       CONSTANT VARCHAR2 (10)      := '+OK';
       e_pop3_error           EXCEPTION;
       --E_READ_TIMEOUT  exception;
       --pragma exception_init( E_READ_TIMEOUT, -29276 );
       socket                 UTL_TCP.connection;
       line                   VARCHAR2 (30000);
       BYTES                  INTEGER;
       -- send a POP3 command
       -- (we expect each command to respond with a +OK)
       FUNCTION writetopop (command VARCHAR2)
          RETURN VARCHAR2
       IS
          len    INTEGER;
          resp   VARCHAR2 (30000);
       BEGIN
          len := UTL_TCP.write_line (socket, command);
          UTL_TCP.FLUSH (socket);
          -- using a hack to check the popd response
          len := UTL_TCP.read_line (socket, resp);
          IF SUBSTR (resp, 1, 3) != pop3_ok
         THEN
           RAISE e_pop3_error;
          END IF;
          RETURN (resp);
       END;
    BEGIN
    --UTL_TCP.CLOSE_CONNECTION (SOCKET);
       PIPE ROW ('pop3:' || pop3_server || ' port:' || pop3_port);
       -- Just to make sure there are no previously opened connections
       UTL_TCP.close_all_connections;
       -- open a socket connection to the POP3 server
       socket :=
          UTL_TCP.open_connection (remote_host      => pop3_server,
                                   remote_port      => pop3_port,
                                   --tx_timeout => POP3_TIMEOUT,
                                   CHARSET          => 'US7ASCII'
       -- read the server banner/response from the pop3 daemon
       PIPE ROW (UTL_TCP.get_line (socket));
       -- authenticate with the POP3 server using the USER and PASS commands
       PIPE ROW ('USER ' || username);
       PIPE ROW (writetopop ('USER ' || username));
       PIPE ROW ('PASS ' || PASSWORD);
       PIPE ROW (writetopop ('PASS ' || PASSWORD));
       -- retrieve the specific message
       PIPE ROW ('RETR ' || msgnum);
       PIPE ROW (writetopop ('RETR ' || msgnum));
       --PIPE ROW( 'LIST '||msgNum ); PIPE ROW( WriteToPop('LIST '||msgNum) );
       PIPE ROW ('*** START OF INTERNET MESSAGE BODY ***');
       LOOP
       dbms_output.put_line('entering');
          BYTES := UTL_TCP.available (socket);
         IF BYTES > 0
          THEN
             BYTES := UTL_TCP.read_line (socket, line);
             line := REPLACE (line, CHR (13) || CHR (10), '');
             -- WILL HAVE TO USE PLSQL FUNCTIONS (HAVE BOOKMARKED) TO GET THE MAIL
             -- IN THE PREFERRED FORMAT. CAN USE "REPLACE()"
             IF LENGTH (line) = 1 AND line = '.'
             THEN
                PIPE ROW ('*** END OF INTERNET MESSAGE BODY ***');
             ELSE
                PIPE ROW (line);
             end if;
         END IF;
          EXIT when length (LINE) = 1 and LINE = '.';
          -- PIPE ROW (line);
       END LOOP;
       --PIPE ROW( '*** END OF INTERNET MESSAGE BODY ***' );
       -- close connection
       PIPE ROW ('QUIT');
       PIPE ROW (writetopop ('QUIT'));
       UTL_TCP.CLOSE_CONNECTION (SOCKET);
    EXCEPTION
       WHEN e_pop3_error
       THEN
          PIPE ROW ('There are no mails !');
    END;I am getting the below output .
    21     pop3:sbssld1 port:110
    75     "+OK Lotus Notes POP3 server version Release 8.0.1 ready on SBSSLD1/SBPSS.
    47     USER [email protected]
    69     "+OK [email protected], your papers please.
    13     PASS password
    63     "+OK [email protected] has 1 message.
    6     RETR 1
    17     "+OK 1546 octets
    38     *** START OF INTERNET MESSAGE BODY ***
    9     Subject:
    48     X-KeepSent: A231D6D0:8485FE4B-65257AB1:0022E60F;
    23      type=4; name=$KeepSent
    46     To: [email protected]
    53     X-Mailer: Lotus Notes Release 8.0.1 February 07, 2008
    95     Message-ID: <[email protected]mbnpparibasfs.in>
    48     From: [email protected]
    36     Date: Fri, 9 Nov 2012 11:51:14 +0530
    90     X-MIMETrack: Serialize by POP3 Server on SBSSLD1/SBPSS(Release 8.0.1|February 07, 2008) at
    23      11/09/2012 11:51:21 AM
    17     MIME-Version: 1.0
    37     Content-type: multipart/alternative;
    68     "     Boundary="0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6""
    27     Content-Disposition: inline
    (null)     (null)
    58     --0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6
    39     Content-type: text/plain; charset=UTF-8
    33     Content-transfer-encoding: base64
    (null)     (null)
    (null)     (null)
    76     DQoNCg0KUmVnYXJkcywNClNoYW5tdWdhbSBOYXRhcmFqYW4uDQpNb2IgOiA5NjI5MjUyNDI1DQpP
    76     ZmYgOiAwNDQgMjI1MDQ3MDAgRXh0biA0Nzc5DQoNCiB+SWYgdGhlIGZhY3RzIGRvbuKAmXQgZml0
    68     IHRoZSB0aGVvcnksIGNoYW5nZSB0aGUgZmFjdHMu4oCdIC0gQWxiZXJ0IEVpbnN0ZWlu
    (null)     (null)
    58     --0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6
    38     Content-type: text/html; charset=UTF-8
    27     Content-Disposition: inline
    33     Content-transfer-encoding: base64
    (null)     (null)
    76     PGh0bWw+PGJvZHk+DQo8cD5SZWdhcmRzLDxicj4NClNoYW5tdWdhbSBOYXRhcmFqYW4uPGJyPg0K
    76     TW9iIDogOTYyOTI1MjQyNTxicj4NCk9mZiA6IDA0NCAyMjUwNDcwMCBFeHRuIDQ3Nzk8YnI+DQo8
    76     YnI+DQogfklmIHRoZSBmYWN0cyBkb27igJl0IGZpdCB0aGUgdGhlb3J5LCBjaGFuZ2UgdGhlIGZh
    60     Y3RzLuKAnSAtIEFsYmVydCBFaW5zdGVpbjxicj4NCjwvYm9keT48L2h0bWw+
    (null)     (null)
    60     --0__=EABBF022DFB16ED68f9e8a93df938690918cEABBF022DFB16ED6--
    (null)     (null)
    36     *** END OF INTERNET MESSAGE BODY ***
    4     QUIT
    42     "+OK Lotus Notes POP3 server signing off.
    "Now pls suggest me how can i store the sender mail id, receiver mail id, subject and body of the mail in a table.
    So that i can display the saved data in the above table as a mail in my separate application.
    Thanks in advance.
    Cheers,
    San

  • Should I upgrade my NVIDIA drivers from version 301.42 to 314.07 on my Mid-2010 MacBook Pro (6,2)?

    Hello,
    I was wondering if it would be wise for me to upgrade my MacBook Pro nvidia drivers from version 301.42 to the current version 314.07? Reason, I am asking this is because my MacBook Pro has the nvidia GeForce GT 330m processor with 256mb of video memory and I haven't updated my Windows 7 64bit Home Premium display drivers for about 7 months. At the time I installed the 301.42 driver it was the latest WHQL release, and back then I did the upgrade after installing the Bootcamp 4.0 drivers (from the Bootcamp Assistant which had the 26X.XX driver version), Windows 7 SP1, and all Windows Updates. I used a clean install on those drivers. So far, I haven't had any problems with the 301.42 driver which makes me sometimes double think whether I should upgrade the drivers or not to the 314.07 version. As a result this is why I go to these forums and ask what could be the best course of action in my case?
    Thanks in advance!

    Yes you should by all means update to the latest Nvidia drivers on the windows side of things. I presume you are using bootcamp (since thats really the only place this is relevant).
    But yes! you should

  • I can't upgrade my iPod touch (from version 1.1.5)

    Hello there,
    Sorry for my english if it's bad.
    I have a problem with my very old ipod touch (i got about 2 years ago).
    Yesterday i decided that i wanted to download some games and applications to use on my Ipod touch, but after downloading one for free on the app store, i couldn't synch it on my ipod.
    I was told that i needed to upgrade my iPod. It had the 1.1.4 version.
    So i upgraded it, and it only upgraded it to the 1.1.5 version, which seems to be a very old version.
    I do have the latest version of iTunes (version 9.2) but next to the upgrade button, my iTunes tells me that the 1.1.5 version is the latest version, and that it will search for new versions only on the 18.07.2010.
    I would very much like to upgrade my ipod touch so that i can use some applications on it, but i just can't, apparently.
    Thank you so much for your help, i'm pretty bad with this stuff.
    ps: i have a macbook pro that i bought one year ago, so my computer isn't very old either...

    iPod Touch 2nd gen 32GB Mac OS 10.6.4
    Since I have upgraded to iOS4, I have run into the following problems:
    1: Safari crashes on many of my previously favorite websites. They start to load and whamo a back screen and then my home screen returns.
    2: Very slow to open most apps. Takes many times as long as previously.
    3: Slow wifi. I'm practically sitting on top of my modem and I am getting only one little rainbow bar showing. This happens at other wifi locations too, so it's not a modem incompatibility.
    I have erased all of my coockies, history and cache to little avail.
    I have restored my iPod from my Mac.
    I have erased and re bookmarked my sites.
    I'm only using up half of the RAM so its not that.
    What else can I do. I love the folders, but this isn't worth it.
    Thank you in advance.

  • Install/upgrade HFM 11.1 from version 4

    How do we have to go about it? Is upgrading first to 9.3 version necessary or can we upgrade to 11.1 straight away? Does anybody have documentation or willing to quickly walk through the general procedure? We need to install HFM 11.1 and FDM. Thanks.

    Hi,
    I would like to get in touch with anyone that has performed this direct upgrade from HFM version 4 to version 11, as I am about to start going down this same path. I am especially interested to know more about the ease (or, if appropriate, the pain!) of which existing applications (rules, forms, and reports) can be converted from one to the other.
    adi26, have you started your upgrade project already?
    is anyone else interested in sharing some experiences?
    Thanks in advance!

  • Migeration of Portlets from Plumtree 5.0 to Oracle WebCenter 10g

    Hello
    We need to migrate portlets in “Oracle WebCenter 10g RC3” from “Plumtree 5.0”. Till now we are using “Plumtree 5.0” and “.Net 1.1” for development of portlets.
    My question is:
    is it possible to run all existing portlets directly (Without any change) on “Oracle WebCenter 10g RC3” or should we have to made some changes in code of all existing portlets (“Plumtree 5.0”) to run on “WebCenter 10g RC3”
    I will appreciate any kind help/information in this regard.
    Thanks in advance
    Mohit
    Edited by: user10880353 on Feb 2, 2009 10:00 PM
    Edited by: user10880353 on Feb 2, 2009 10:01 PM

    It is not possible to migrate portal objects from 5.0 to 10g3 or for that matter, any different versions. While migrating, the source and target installation versions should be the same. This is a PREREQUISITE.
    I guess what you are trying to do is to upgrade your Plumtree 5.0 to Oracle WebCenter Interaction 10gR3. This is not directly possible. You will have to do at least 4 intermediate upgrades: 5.0 to 6.0 to 6.1 to 6.5 to 10gR3 (This is not accurate. Please go to edocs.bea.com/alui and go through the upgrade guides for the different versions)
    Please do not confuse between Oracle WebCenter and Oracle WebCenter Interaction. The new name of the Plumtree portal / AquaLogic User Interaction is Oracle WebCenter INTERACTION and this product has been included in the Oracle WebCenter family. There were other member products pre-existing in Oracle WebCenter Product suite and as of now, applications referred to as Oracle WebCenter applications do not actually include OWC Interaction applications. Going forward, these technologies will converge/made interoperable and more combatible.
    I guess you must have realized by now why your question had not evoked much interest here: Wrong Forum :D Please post your queries in Forum Home >> User Interaction and Content Management >> WebCenter Interaction and not in WebCenter Suite - Framework.

  • Problem upgrading Apex 2.1 to 3.2.1 in Oracle Database 10g Express Edition

    G'Day Apex gurus,
    I installed Oracle Database 10g Express edition in my Windows XP PC which comes with Apex 2.1 with no problems. Then I wanted to upgrade Apex 2.1 to 3.2.1 (Currently Apex download in OTN) following the document below:
    http://www.oracle.com/technology/products/database/application_express/html/3.1_and_xe.html
    I went to the steps:
    @apexins SYSAUX SYSAUX TEMP /i/
    Then to change the password for the admin account run apxchpwd.sql and when prompted enter a password for the ADMIN account.
    @apxchpwd
    with not problems
    Then I connected to SQL*Plus as SYS by:
    sqlplus /nolog
    CONNECT SYS as SYSDBA
    Enter password: xxxxxxxxxxx
    but when I tried to run:
    @APEX_HOME/apex/apxldimg.sql APEX_HOME
    where APEX_HOME is Apex3.2.1 in my case
    SQL> @Apex3.2.1/apex/apxldimg.sql Apex3.2.1 (I get the messages below)
    PL/SQL procedure successfully completed.
    old   1: create directory APEX_IMAGES as '&1/apex/images'
    new   1: create directory APEX_IMAGES as 'Apex3.2.1/apex/images'
    Directory created.
    declare
    *+
    ERROR at line 1:
    ORA-22288: file or LOB operation FILEOPEN failed
    The system cannot find the path specified.
    ORA-06512: at "SYS.DBMS_LOB", line 523
    ORA-06512: at "SYS.XMLTYPE", line 287
    ORA-06512: at line 15
    PL/SQL procedure successfully completed.
    PL/SQL procedure successfully completed.
    Commit complete.
    timing for: Load Images
    Elapsed: 00:00:00.17
    Directory dropped.
    Can anyone help me in how to trouble shout this?
    I tried to continue by following the steps document
    @APEX_HOME/apex/apxxepwd.sql password
    (where password is the password of the Application Express internal ADMIN account)
    but when I tried to login in:
    http://localhost:8080/apex/f?p=4550:1
    when I type the credentials
    system
    system
    systempassword
    nothing happens
    or even If I try:
    http://localhost:8080/apex/f?p=4550:10
    admin
    adminpassword
    nothing happens here too.
    I appreciate any help
    Kind regards
    Carlos

    My database version is 10.2.0.1.0 Oracle express.
    Operating system is Windows Vista.
    I started installing using the following commands.
    @ C:\temp\apex\apexins.sql
    it prompts me for the values of sysaux sysaux temp and c:\temp\apex\images\
    If I supply the value for images the sqlplus window closes after scrolling a lot of info.
    Enroute it also prompts me for a value for 9:
    I don't know what the input shall be.
    Then it again stops at enter value for version:
    I used 3.2.1.0
    The window scrols a while and closes.
    later I changed the password and ran the command.
    @c:\temp\apex\apxldimg.sql c:\temp
    but no success with installation.
    the output is as following.
    SQL*Plus: Release 10.2.0.1.0 - Production on Fri Nov 27 18:13:43 2009
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    SQL> connect system/sairam as sysdba;
    Connected.
    SQL> @ c:\temp\apex\apxchpwd
    Enter a value below for the password for the Application Express ADMIN user.
    Enter a password for the ADMIN user []
    Session altered.
    ...changing password for ADMIN
    wwv_flow_security.g_security_group_id := 10;
    ERROR at line 3:
    ORA-06550: line 3, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_SECURITY_GROUP_ID' must be declared
    ORA-06550: line 3, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 4, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_USER' must be declared
    ORA-06550: line 4, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 5, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_IMPORT_IN_PROGRESS' must be declared
    ORA-06550: line 5, column 5:
    PL/SQL: Statement ignored
    ORA-06550: line 8, column 23:
    PL/SQL: ORA-00942: table or view does not exist
    ORA-06550: line 7, column 15:
    PL/SQL: SQL Statement ignored
    ORA-06550: line 13, column 32:
    PLS-00364: loop index variable 'C1' use is invalid
    ORA-06550: line 12, column 9:
    PL/SQL: Statement ignored
    ORA-06550: line 19, column 5:
    PLS-00201: identifier 'WWV_FLOW_SECURITY.G_IMPORT_IN_PROGRESS' must be declared
    ORA-06550: line 19, column 5:
    PL/SQL: Statement ignored
    Commit complete.
    SQL> @c:\temp\apex\apxldimg.sql c:\temp
    PL/SQL procedure successfully completed.
    Directory created.
    if wwv_flow_utilities.db_version_is_at_least('11') then
    ERROR at line 32:
    ORA-06550: line 32, column 25:
    PLS-00302: component 'DB_VERSION_IS_AT_LEAST' must be declared
    ORA-06550: line 32, column 3:
    PL/SQL: Statement ignored
    PL/SQL procedure successfully completed.
    if wwv_flow_utilities.db_version_is_at_least('11') then --11g only
    ERROR at line 16:
    ORA-06550: line 16, column 25:
    PLS-00302: component 'DB_VERSION_IS_AT_LEAST' must be declared
    ORA-06550: line 16, column 3:
    PL/SQL: Statement ignored
    Commit complete.
    timing for: Load Images
    Elapsed: 00:00:00.32
    Directory dropped.
    SQL>
    Does this require XE 11 or anything else.
    This will happen even if I supply as following(closing of sqlplus in the begining).
    @ C:\temp\apex\apexins.sql sysaux sysaux temp c:\temp\apex\images\
    Any help.

  • Can I use Oracle Reports 10g with Apps 11.5.10 version?

    Apps Version is 11.5.10
    Oracle Reports 10g is compatible with 11.5.10 or not?
    If Oracle Reports 6i is the only compatible version with 11.5.10 , from where I can download Oracle Reports 6i?
    Thanks in advance.

    Hi;
    As you said 6i should come with ebs, If they are not able to find it can we raise an SR to get/download oracle reports 6i?I still cant get what is reason of you need to install 6i spreatly? Anyway it comes by default installation. Its mean you have it already,if you havent you cant work wiht ebs nomore.
    In addition to EBSDBA post,Please see below great link which is posted by Hussein Sawwan
    rapidwiz options *<< Posted by Hussein Sawwan*
    Regard
    Helios

  • Loading image from jars only once in oracle forms 10g

    Hi,
    I have an oracle forms 10g application which loads image from a jar. Every time i click on a button "A" that loads the image "image" on another button "B" in the same screen, a message is displayed in the java console "Loaded image: jar:https://+IP+/forms/java/+myjar+.jar!/image.gif". So after 10 clicks, i get the same message displayed 10 times. In the form, i've called:
    SET_CUSTOM_PROPERTY(p_object_name, 1, 'IMAGE_NAME_ON', '/'||p_image_name);My question is the following:
    - is there a way to load this image once and use it later without having to load it every time i clik on "A"? if yes, how?
    P.S.: if this thread shouldn't be posted in this forum, please redirect me to the right one.
    Thanks in advance

    Ah okay.
    I'm using the rolloverbutton.jar (RollOver Button PJC) [RolloverButton.java -> authors: Steve Button, Duncan Mills].
    Here is the part concerning the IMAGE_NAME_ON function:
    // make sure we are in rollover mode
    enableRollover();
    log("setProperty - IMAGE_NAME_ON value=" + value.toString());
    // load the requested image
    m_imageNameOn = (String) value;
    loadImage(ON,m_imageNameOn);
    // reset the currrently drawn image if needed
    setImage(ON,m_state);
    return true;where loadImage function is:
        URL imageURL = null;
        boolean loadSuccess = false;
        //JAR
        log("Searching JAR for " + imageName);
        imageURL = getClass().getResource(imageName);
        if (imageURL != null)
          log("URL: " + imageURL.toString());
          try
            m_images[which] = Toolkit.getDefaultToolkit().getImage(imageURL);
            loadSuccess = true;
            log("Image found: " + imageURL.toString());
          catch (Exception ilex)
            log("Error loading image from JAR: " + ilex.toString());
        else
          log("Unable to find " + imageName + " in JAR");
        //DOCBASE
        if (loadSuccess == false)
          log("Searching docbase for " + imageName);
          try
            if (imageName.toLowerCase().startsWith("http://")||imageName.toLowerCase().startsWith("https://"))
              imageURL = new URL(imageName);
            else
              imageURL = new URL(m_codeBase.getProtocol() + "://" + m_codeBase.getHost() + ":" + m_codeBase.getPort() + imageName);
            log("Constructed URL: " + imageURL.toString());
            try
              m_images[which] = createImage((java.awt.image.ImageProducer) imageURL.getContent());
              loadSuccess = true;
              log("Image found: " + imageURL.toString());
            catch (Exception ilex)
              log("Error reading image - " + ilex.toString());
          catch (java.net.MalformedURLException urlex)
            log("Error creating URL - " + urlex.toString());
        //CODEBASE
        if (loadSuccess == false)
          log("Searching codebase for " + imageName);
          try
            imageURL = new URL(m_codeBase, imageName);
            log("Constructed URL: " + imageURL.toString());
            try
              m_images[which] = createImage((java.awt.image.ImageProducer) imageURL.getContent());
              loadSuccess = true;
              log("Image found: " + imageURL.toString());
            catch (Exception ilex)
                    log("Error reading image - " + ilex.toString());
          catch (java.net.MalformedURLException urlex)
            log("Error creating URL - " + urlex.toString());
        if (loadSuccess == false)
          log("Error image " + imageName + " could not be located");In this case, what shall i modify?
    Thanks in advance

  • Upgrading SAP-EP(Java) from version 7.0 to 7.1/7.2

    Hi Experts,
    We have an Application currently working on SAP EP(JAVA) 7.0.
    We are looking forward to upgrade our EP from 7.0 to higher version (CE 7.1 or CE 7.2).
    Kindly advise us about issues in this upgrade.
    Also suggest if upgrade would be better option or simply updating the support packages (like EHP1 or EHP2) for EP7.0 would be better.
    Also let me know the steps involved in performing upgrade/update.
    Hope to get answers from you.
    regards,
    Rajeev Parmar

    Hello Rajeev,
    In release 7.1 there has been a big change in the java architecture (there is no dispatcher anymore and the ICM is taking over the role).
    I would suggest to have a look at the following documentation. There you can find a complete summary of changes in that release:
    http://help.sap.com/saphelp_nwce711core/helpdata/en/44/d958673ef05f4de10000000a11466f/frameset.htm
    If you apply EHP1 to 7.0, you will obtain 7.01, which is the same release (no architectural changes). The enhancement package will provide some news in specific applications, but it is not an upgrade to a higher release.
    Regards,
    Désiré

  • Upgrade of Crystal Reports from version 7 to 2011.

    I have a LIMS system that uses Crystal 7 to generate Certificates of Analysis (COAs) for products that my company produces.  The LIMS  app resides on a terminal server and user connect to the terminal server via citrix.  The app has been around since 2000 and is running on Windows Server 2000.  The crystal 7 is apparently a runtime version.
    I have been tasks with upgrading the terminal server to Windows 2008 64 bit server.  I have installed the app on the server and the app performs as it should except for printing the COAs.  I downloaded a trial version of Crystal Reports 2011.  I can open and print COAs from with the Crystal 2011 application.
    The App Devloper states that the existing system uses a call to crpe32.dll to print the reports.  When I try generate a COA I get the following errors.
    Crystal Reports error:525
    Function: PEOpenPrintJob has reported an error.
    There is something wrong with the report you are trying to open.
    Crystal Reports error:512
    Function: GeneralPrint has reported an error.
    The print engine must be open for the call to be sucessful.  Your code is lacking a PEOpenEngine call.
    The crpe32.dll file is in the application root directory, in the c:windows\system32 directory, and the c:\prgram files(x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0/win32_x86 directory.
    This may be more information that needed.  Anyway, any Idea how to get my app to print from Crystal Reports 2011.

    Hi Deano,
    Using Crystal 7 runtimes on Windows Server 2008 is really not a good idea.
    Please take a look at
    Crystal Reports Developer Solutions - Flexible Options for Developers
    Crystal Reports Legacy SDKs Upgrade Options
    Blog by Ludek on CR2011 can be useful here.
    Do look at it.
    So, what's up with CR 2011 and .NET SDK - actually, any SDK?
    Thanks,
    Saurabh

  • I need to upgrade from version 2 to use certain websites. I can download version 3.6 or but once opened I dont know what to do next, I just seem to geta big list and can't get the programme to run?? Can anyone help????

    My netbook is about 2 years old and came with firefox and linux. It has only been used for internet browsing and has been great......but now firefox version2 is out of date and sites such as facebook are not useable. It suggests i update to a newer version of firefox. I can find version 3.6 or 4 easily, download it but when I go to open it theres no run or prompts of how to install. I am not very computer literate to cant understand things that come of when I google for an answer!! Can anyone help me in easy to understand terms please??? thank you in advance

    I did that :
    Open Terminal
    1 - wget http://rpms.famillecollet.com/remi-release-8.rpm
    2 - sudo rpm -Uvh remi-release-8.rpm
    3 - sudo mousepad /etc/yum.repos.d/remi.repo
    Make sur that in remi section enabled value = 1 and in test section enabled value= 0
    4 - sudo rpm -e --nodeps firefox
    5 - sudo yum install firefox
    It was successful for me after many hours to look for the right answer

  • Downloaded adobe exchange in CS6, I was prompted to upgrade the Extension Manager from version 6.0.0.412 to 6.0.8 . I keep getting error code: U44M1P7 - any suggestions? tks

    can anyone help me with the error code U44M1P7? thanks

    Please delete the EM CS6 installation folder manually, then download and install the EM 6.0.8 from Adobe - Exchange : Download the Adobe Extension Manager

Maybe you are looking for