Using SDK (SSOToken) with Agent 2.1 on Application Server 8.1

My environment:
Access Manager from JES 2005Q1 unpatched running on Application Server 8.1_02 build b10_fcs
An application � protected by agent 2.1 - running on Application Server 8.1_02 build b10_fcs. The application is also using the API for creating a SSOToken like the code below
SSOTokenManager manager = SSOTokenManager.getInstance();
SSOToken token = manager.createSSOToken(request);At first I always got an SSOException: Data is not Base64 encoded.
Afterwards I changed in AMConfig.properties on the Access Manager the property com.iplanet.am.cookie.encode from true to false. Now I was able to sometimes call the above API code. But sometimes I even did not get access to the application with an �java.lang.RuntimeException: Data is not Base64 encoded. � Exception showing in amSSOProvider debug file on the Agent.
For reference I attach the server debug files and the agent debug files.
Thanks
Felix

Yes there is a MDK 2.1 that you can run in eclipse.
MDK 2.1 was delivered with MI2.1 and was downloadable untill 2.5 was released I believe.
Running MDK2.5 with 2.1 will probably not work. There have been some changes in the sync layer. We've tried without success.
Hope this helps.
Cheers,
Jelle Bloemsma

Similar Messages

  • Problem with pdf display downloaded from application server

    Hi all,
    I have a problem with displaying pdf downloaded from application server (saved in BINARY MODE).
    I am getting the pdf output of adobe form in FPFORMOUTPUT-PDF as rawstring back to my program and then converting that rawstring into binary form using the function module SCMS_BINARY_TO_STRING.
    Now, when I export the data to presentation server directly using cl_gui_frontend_services=>gui_download, the pdf is downloaded properly.
    However, when I save the data to application server file by looping at the internal table obtained from SCMS_XSTRING_TO_BINARY and using TRANSFER, and subsequently downloading the file in "unconverted format" from AL11 to my desktop, I am getting a "blank" pdf file (with the same number of pages as the one downloaded using gui_download).
    I have tried different encodings during download but in those cases i get corrupted pdf message. only the default option of INTIAL value seems to work.
    I am forced to believe that there is a problem in my code which saves the data to app server but I cant find any solution that is logical. Any solution to this would be greatly appreciated.
    Regards,
    Sasi
    Edited by: Sasi Upadrasta on Sep 29, 2010 7:55 PM

    used a program to read the file from appl server and then downloading it to desktop.

  • Is there any way to upload Tariff Code (with multiple XML files) from application server?

    Hi All,
    Is there any way to upload Tariff Code (with multiple XML files) from application server?. Its urgent.
    Regards,
    Jatin

    Hi Jatin,
    Yes, of course you can upload multiple files for tariff codes.
    This can be done by the below path:-
    SAP GTS Cockpit(tcode-/sapsll/menu_legal)-->Customs Management-->Classification-->Classification Master Data-->Upload Tariff Code Numbers from XML file(tocde- /SAPSLL/LLNS_UPL101).
    In the above area after browsing and choosing the first file, please select multiple check box to choose more files as well. Then you can further select your application server and upload all those files in one go.
    PS:- Although, we have an option to upload multiple such files but actually we should avoid multiple file uploads due to various reasons. Hence, please take utmost care during such procedure.
    Regards,
    Aman

  • Issue with uploading XML file from application server into internal table

    i Need to fetch the XML file from the application server and place into internal table and i am getting error message while using the functional module   SMUM_XML_PARSE and the error message is "line   1 col   1-unexpected symbol; expected '<', '</', entity reference, character data, CDATA section, processing instruction or comment" and could you please let me know how to resolve this issue?  
        TYPES: BEGIN OF T_XML,
                 raw(2000) TYPE C,
               END OF T_XML.
    DATA:GW_XML_TAB TYPE  T_XML.
    DATA:  GI_XML_TAB TYPE TABLE OF T_XML INITIAL SIZE 0.
    DATA:GI_STR TYPE STRING.
    data:  GV_XML_STRING TYPE XSTRING.
    DATA: GI_XML_DATA TYPE  TABLE OF SMUM_XMLTB INITIAL SIZE 0.
    data:GI_RETURN TYPE STANDARD TABLE OF BAPIRET2.
        OPEN DATASET LV_FILE1 FOR INPUT IN TEXT MODE ENCODING DEFAULT.
        IF SY-SUBRC NE 0.
          MESSAGE 'File does not exist' TYPE 'E'.
        ELSE.
          DO.
    * Transfer the contents from the file to the work area of the internal table
            READ DATASET LV_FILE1 INTO GW_XML_TAB.
            IF SY-SUBRC EQ 0.
              CONDENSE GW_XML_TAB.
    *       Append the contents of the work area to the internal table
              APPEND GW_XML_TAB TO GI_XML_TAB.
            ELSE.
              EXIT.
            ENDIF.
          ENDDO.
        ENDIF.
    * Close the file after reading the data
        CLOSE DATASET LV_FILE1.
        IF NOT GI_XML_TAB IS INITIAL.
          CONCATENATE LINES OF GI_XML_TAB INTO GI_STR SEPARATED BY SPACE.
        ENDIF.
    * The function module is used to convert string to xstring
        CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
          EXPORTING
            TEXT   = GI_STR
          IMPORTING
            BUFFER = GV_XML_STRING
          EXCEPTIONS
            FAILED = 1
            OTHERS = 2.
        IF SY-SUBRC <> 0.
          MESSAGE 'Error in the XML file' TYPE 'E'.
        ENDIF.
      ENDIF.
      IF GV_SUBRC = 0.
    * Convert XML to internal table
        CALL FUNCTION 'SMUM_XML_PARSE'
          EXPORTING
            XML_INPUT = GV_XML_STRING
          TABLES
            XML_TABLE = GI_XML_DATA
            RETURN    = GI_RETURN.
      ENDIF.
      READ TABLE GI_RETURN TRANSPORTING NO FIELDS WITH KEY TYPE = 'E'.
      IF SY-SUBRC EQ 0.
        MESSAGE 'Error converting the input XML file' TYPE 'E'.
      ELSE.
        DELETE GI_XML_DATA WHERE TYPE <> 'V'.
        REFRESH GI_RETURN.
      ENDIF.

    Could you please tel me  why the first 8 lines were removed, till <Soap:Body and also added the line <?xml version="1.0" encoding="UTF-8"?> in the beggining .
    Becuase there will be lot of  XML files will be coming from the Vendor daily and that should be uploaded in the application server and should update in the SAP tables based on the data in the XML file.
    what information i need to give to vendor that do not add the first 8 lines in the XML file and add the line in the beggining <?xml version="1.0" encoding="UTF-8"?>   ??????
    Is there any other way we can do with out removing the lines?

  • Issue with reading XLSX with multiple sheets file in application Server

    Hi,
    We're currently implementing SAP CRM 7.40.
    In one requirement we have to process an XLSX file and load its information to a set of Z tables.
    The file has 6 sheets of data to process, each sheet with distinct number of columns and types (each sheet will be upload to a different Z table).
    We're able to process the XLSX using the Desktop Office integration for local files.
    However, we must also be able to process files on the application server.
    We tried the following approaches without success
    - The DOI library doesn't seem to support remote files processing:
    - OPEN DATASET. with the dataset we're able to read a remote file, however since the file format is XLSX, the information we read in the dataset comes in an unreadable format
    - FTP. we tried to use FTP to download the remote file to a local folder so that we could then use the DOI library to process the file. However, the client only allows SFTP connections and SAPFTP doesn't provide SFTP
    There's another approache we're considering to try which is to have a perl script on the application server to split the Excel file into CSV files (one for each tab) and then use OPEN DATASET to read the contents of each file and work from there. This approach seems quite cumbersom
    The approach with DOI would be the best one but either we're missing a key configuration or it truly can't be used for files. Are there any special requirements that we should take into account for this option?
    We'd like to know if you have any other approach that proves successfull or if any of the above can work but with some aditional adjustments.
    Thanks in advance.
    Best regards.

    Hello Ricardo,
    Go through below link.
    to read Excel file from the application server in a BACKGROUND process
    You can try below approach if it is feasible for you.
    Turning ".XLSX" into XML & read XML file through application.
    XLSX Upload - a Unified Approach - SCN - SAP.com
    Thanks!
    Sameer

  • Problems with the deployment to Oracle Application Server 9.0.2

    I am having a problem to deploy a simple JSC application to Oracle Application Server 9.0.2.
    I am getting an error:
    500 Internal Server Error
    java.lang.NullPointerException
         at javax.faces.webapp.FacesServlet.init(FacesServlet.java:144)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpApplication.loadServlet(HttpApplication.java:1687)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpApplication.findServlet(HttpApplication.java:4020)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2218)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:585)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    However i don't have any problems to deploy my applications to new release of Oracle AS 10g (9.0.4).
    Unfortunately we still work with the old version (9.0.2)of the Oracle AS.
    Any help will be greatly appriciated
    Thanks
    Yuriy

    I try it but cant deploy in less than 10g.
    AFAIR is an JRE version issue.
    I lost at least 2 days trying.
    Regards.

  • How to start with ORACLE APPS and ORACLE APPLICATION SERVER?

    Hi !!
    I am a little known with oracle database. But recently i have been asked to update my skills with oracle apps and oracl e application server. I do not have any prior experience with these products of oracle and I really have 0 knowledge of it.
    Can anybody help me find a start with oracle apps and oracle as?
    Thanks.

    Welcome
    http://www.oracle.com/technology/documentation/applications.html
    You can download from here.
    Regards
    Asif Kabir
    -- If helpful mark the post as correct/helpful, also close the thread as answered.

  • Help with connection pool at system application server admin console 9.0

    Hi,
    I am trying to create a pool of oracle connections in system application server admin console, but when I ping to the server, it shows me the error: invalid oracle URL: OracleDataSource.makeURL.
    I have the jar file of the driver referenced in the classpath suffix field of the path settings.
    I have added all kind of combinations of additional properties, like
    serverName: 172.16.9.162
    databaseName: oradex07
    portNumber: 1521
    username: usr
    password: pwd
    or
    url: jdbc:oracle:thin:@172.16.9.162:1521:oradex07
    but it still showing me the same error

    Hey, I use this code to lookup session bean deployed in glassfish.
    Based on the glassfish EJB FAQ.
    Properties props = new Properties();
    props.setProperty("java.naming.factory.initial", "com.sun.enterprise.naming.SerialInitContextFactory");
    props.setProperty("java.naming.factory.url.pkgs", "com.sun.enterprise.naming");
    props.setProperty("java.naming.factory.state", "com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl");
    props.setProperty("org.omg.CORBA.ORBInitialHost", "localhost");
    props.setProperty("org.omg.CORBA.ORBInitialPort", "3700");
    InitialContext initialContext = new InitialContext(props);
    SessionBean bean = initialContext.lookup(ejbName);Cheers.

  • Problem with OID when Installing Oracle Application server

    Hi Gurus,
    When we are trying to install the IAS10R2P2 on a linux box choosing the application server Infrastructure option, the installation part completed with out any problem after running the root.sh file OUI started configuring all the installed components when it is configuring OID it throwed follwing exceptions. Please suggest us a solution to solve this we even tryes reinstalling but facing the same problem.
    Wed Sep 06 16:53:16 IST 2006 OID CA started.
    oracle.ldap.oidinstall.backend.OIDCAException: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.ldap.oidinstall.backend.OIDConfigWrapper.configOID(OIDConfigWrapper.java:247)
         at oracle.ldap.oidinstall.OIDCA.doSilent(OIDCA.java:507)
         at oracle.ldap.oidinstall.OIDCA.run(OIDCA.java:818)
         at oracle.ldap.oidinstall.OIDCA.main(OIDCA.java:957)
    Wed Sep 06 16:53:34 IST 2006 OID CA started.
    oracle.ldap.oidinstall.backend.OIDCAException: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.ldap.oidinstall.backend.OIDConfigWrapper.configOID(OIDConfigWrapper.java:247)
         at oracle.ldap.oidinstall.OIDCA.doSilent(OIDCA.java:507)
         at oracle.ldap.oidinstall.OIDCA.run(OIDCA.java:818)
         at oracle.ldap.oidinstall.OIDCA.main(OIDCA.java:957)
    Wed Sep 06 16:53:43 IST 2006 OID CA started.
    oracle.ldap.oidinstall.backend.OIDCAException: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.ldap.oidinstall.backend.OIDConfigWrapper.configOID(OIDConfigWrapper.java:247)
         at oracle.ldap.oidinstall.OIDCA.doSilent(OIDCA.java:507)
         at oracle.ldap.oidinstall.OIDCA.run(OIDCA.java:818)
         at oracle.ldap.oidinstall.OIDCA.main(OIDCA.java:957)
    Wed Sep 06 16:55:46 IST 2006 OID CA started.
    oracle.ldap.oidinstall.backend.OIDCAException: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.ldap.oidinstall.backend.OIDConfigWrapper.configOID(OIDConfigWrapper.java:247)
         at oracle.ldap.oidinstall.OIDCA.doSilent(OIDCA.java:507)
         at oracle.ldap.oidinstall.OIDCA.run(OIDCA.java:818)
         at oracle.ldap.oidinstall.OIDCA.main(OIDCA.java:957)
    Wed Sep 06 17:07:58 IST 2006 OID CA started.
    oracle.ldap.oidinstall.backend.OIDCAException: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.ldap.oidinstall.backend.OIDConfigWrapper.configOID(OIDConfigWrapper.java:247)
         at oracle.ldap.oidinstall.OIDCA.doSilent(OIDCA.java:507)
         at oracle.ldap.oidinstall.OIDCA.run(OIDCA.java:818)
         at oracle.ldap.oidinstall.OIDCA.main(OIDCA.java:957)
    Wed Sep 06 17:08:09 IST 2006 OID CA started.
    oracle.ldap.oidinstall.backend.OIDCAException: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.ldap.oidinstall.backend.OIDConfigWrapper.configOID(OIDConfigWrapper.java:247)
         at oracle.ldap.oidinstall.OIDCA.doSilent(OIDCA.java:507)
         at oracle.ldap.oidinstall.OIDCA.run(OIDCA.java:818)
         at oracle.ldap.oidinstall.OIDCA.main(OIDCA.java:957)
    Ashok CHava

    Hi,
    This is a 10.1.2 IM (Identity Management) installation performed against a 9.0.4 MR (Metadata Repository) created with RepCA. 10.1.2 IM install against 9.0.4 MR is not supported.This error is seen when installing 10.1.2 IM against 9.0.4 MR .
    Solution
    1) Install a 10.1.2 MR with repCA or with the 10.1.2 AS installer
    2) Install 10.1.2 IM against the 10.1.2 MR
    Rgds,
    S.Jai
    Shanthi Gears (LTD)

  • Using Toplink with Servlets in a Clustered application server

    I am having some problems with Toplink.
    Basically, I have a collection of HttpServlets that manipulate a domain object and its various collections of objects. The general technique is to place the domain object in the HttpSession, and have each Servlet modify this object by retrieving it, modifying it, and storing it when necessary. The problem is that since this application is running in a clustered environment, the object in the session may or may not be the same object returned from Toplink. It may be a serialized clone of the object from another server on the cluster.
    This has caused several problems. First, if I am using indirction for the collections, when the domain object is deserializaed, it throws an exception when it tries to instantiate the indirection. Next, when trying to store the object, it is not registered with a unit of work, and I am not sure how to properly account for this. Third, there is a many to many relationship. The user may pick one such object, and add it to the domain object being manipulated. This seems to cause problems when the object is read from Toplink, and added to the domain object that is a serialized clone.
    Anyway, my question is, what is the general pattern for handling an object being manipulated on a HttpSession in a clustered environment, where this object(s) may or may not be the actual objects returned from Toplink? My goal is to have a factory return one DatabaseSession per cluster server, and be able to load, store, and manipulate these objects in the HttpSession.
    Here is an attempt at code:
    import java.io.*;
    import java.util.*;
    import oracle.toplink.expressions.*;
    import oracle.toplink.sessions.*;
    public class DataAccess
    private static Project project = new MyToplinkProject();
    private static DatabaseSession session;
    private UnitOfWork unit;
    public DataAccess()
    unit = getDatabaseSession().acquireUnitOfWork();
    public ArrayList getAllCustomers()
    Vector v = (Vector) session.readAllObjects(Customer.class);
    return new ArrayList(v);
    public Customer getCustomerForUpdate(Customer c)
    Customer custCopy = (Customer) unit.readObject(c);
    return (Customer) unit.registerObject(c);
    public Form getCustomer(String id)
    ExpressionBuilder builder = new ExpressionBuilder();
    Expression exp = builder.get("id").equal(id);
    return (Customer) session.readObject(Customer.class, exp);
    public void saveCustomer(Customer cust)
    unit.deepMergeClone(cust);
    unit.commitAndResume();
    private synchronized DatabaseSession getDatabaseSession()
    if (session == null)
    session = project.createDatabaseSession();
    session.login();
    session.setLog(new PrintWriter(System.out));
    session.logMessages();
    return session;
    public void destruct()
    release();
    public void release()
    unit.release();
    session.release();
    Anyway, from this code I hope you can see what I am trying to do. The basic idea is that a Customer object provided for store and update may or may not be a serialized copy. Also, the object returned from a read may be serialized before the indirction is attempted.
    Thanks for any help,
    Jason Wilson

    Hi Jason
    A single static DatabaseSession and a single static UnitOfWork is not the recommended way of working with TopLink from a servlet. Our recommendation is that you create a single ServerSession object and that every time a servlet needs to interact with a TopLink Session, the servlet first acquires a ClientSession from this ServerSession object and possibly acquires UnitOfWork from the ClientSession. A UnitOfWork is not intended to be shared by servlets, or by different clients.
    Basically, what you're attempting to do with the DatabaseSession is something we would recommend that you do instead with a ServerSession/ClientSessions combination.
    As for working with persistent objects that you store in an HttpSession, I will try to give you some relevant background. First off, the UnitOfWork is intended to be used to manage the changes to a set of objects in a SINGLE TRANSACTION. It is always much easier to manage if these transactions are short-lived (ie if there is one transaction per ServletRequest.
    However, the fact that you are talking about storing objects in the HttpSession makes me think that you are also considering long-running transactions that are may be spread out over several ServletRequests. You should definately consider this decision very carefully. If you want to continually edit an object that is stored in the HttpSession, then we need to consider how to manage when the object's changes should be committed to the database and how to manage concurrency when two users have the same object in their respective HttpSession objects.
    One idea is not to store the actual object in the HttpSession but instead to store the "id" of the object (something that you can use to find the correct object when the same user makes another request). So servlets always:
    -acquireClientSession
    -find the object that they are working with (based on information in the HttpSession)
    -if the object is to be edited then a UnitOfWork provides clones of the object (this isolates you from changes that some other user makes to the same object)
    -at the end, commit the changes to the object.
    When the user makes another request, the object they read will have their changes. So, functionally, this is the same as storing the actual object in the HttpSession, except TopLink can provide proper ACID behavior for any updates that you decide to make. And don't worry about the added "expense" of having to query at the beginning of each servlet request; if you are storing the "id" of the object in your HttpSession, then you a simple cache hit is all that is required to get back the correct object. You don't have to go the database at all.
    JIM

  • SVG Security Error when using a swf with svg in a web application

    Anymap works fine when generating the swf, it's great !
    But when i try to use the swf in a web aplication, i have this error : SVG Security Error, check the web server cross-domain policy file allows access.
    I copied the .jpg and .svg at the good repertories.
    But i had this crossdomain:xml <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM
    "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <allow-http-request-headers-from domain="" headers="" secure="false" />
    <allow-access-from domain="*" secure="false" />
    </cross-domain-policy>
    Thanks in advance and sorry for my poor english.

    You might also want to turn on [Adobe Flash policy file logging|http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security_05.html#_Using_Logging].
    We recommend uninstalling the Flash Player before installing the Debug Flash Player.
    Uninstall Flash Player using the following link:
    [http://download.macromedia.com/pub/flashplayer/current/uninstall_flash_player.exe|http://download.macromedia.com/pub/flashplayer/current/uninstall_flash_player.exe]
    Regards,
    Matt

  • CAD Problem: Lost connection with the cisco unified ccx application server

    I have two locations in our help desk area that consistantly loose connection. I checked the network and we ran new cables. Still having the same issue. They have connectivity to everything else when they loose connection to CAD so I believe there is something going on with the program itself. I have attached the logs from both. There is nothing else that lives on their subnet.
    There are 2 servers, the primary 172.29.0.22 and the secondary 172.29.0.23. The Primary is the active server so it is in the same building as the agents.
    Can anyone please advise? any help would truly be appreciated!

    Hello DJ,
    Thank you for replying. No nothing else lives on their subnet.
    There are 2 servers, the primary 172.29.0.22 and the secondary 172.29.0.23. The Primary is the active server so it is in the same building as the agents.
    I am completely stumped. I have no Idea why this is occuring.

  • PROBLEM connect oracle 9i with JBOSS 3.2.3  application server

    i want to connect my web app to oracle9i by jboss3.2.3 .
    The database is on server machine in my domain and the application is on my local machine.
    Please help me is urgent
    Thanks

    To configure JBoss with Oracle dataabse.
    1. Copy Oracle's JDBC driver .zip file /jdbc/lib/classes12.zip to the server/default/lib directory.
    2. Copy /docs/examples/jca/oracle-ds.xml , to /server/default/deploy dir.
    3. In the oracle-ds.xml file set the <driver-class/> and <connection-url/> settings
    Class: oracle.jdbc.driver.OracleDriver
    URL: jdbc:oracle:thin:@<host>:<port>:<database>
    In the Connection URL setting, <host> is the HOST value specified in the /network/ADMIN/tnsnames.ora file, and <port> is the PORT value specified in the tnsnames.ora file, and <database> is the database name.
    4.
    Modify the standardjbosscmp-jdbc.xml configuration file, setting the <datasource> and <datasource-mapping> elements to use Oracle:
    <jbosscmp-jdbc>
    <defaults>
    <datasource>java:/OracleDS</datasource>
    <datasource-mapping>Oracle9i</datasource-mapping>
    </defaults>
    </jbosscmp-jdbc>
    5.
    Modify login-config.xml to use Oracle. Add the following <application-policy> element to login-config.xml:
    <application-policy name = "OracleDbRealm">
    <authentication>
    <login-module code =
    "org.jboss.resource.security.ConfiguredIdentityLoginModule"
    flag = "required">
    <module-option name = "principal">sa</module-option>
    <module-option name = "userName">sa</module-option>
    <module-option name = "password"></module-option>
    <module-option name ="managedConnectionFactoryName">
    jboss.jca:service=LocalTxCM,name=OracleDS
    </module-option>
    </login-module>
    </authentication>
    </application-policy>
    5.

  • What to do with libraries when deploying to Application server?

    Hi,
    When i build applications in JDeveloper and run them in the build-in OC4J instance, all works fine. When i deploy the applications i update the WEB-INF/lib entry in the deployment profile to contain the used libraries. This creates very big archives and with more applications in one instance that use the same libraries it should be more efficient to share them?
    The only way i figured out to do it is by copying them onto the server and reference them with a library path entry. Is this the way it should be done? Should i deploy all JDev libraries to all OC4J instances? Can i add the library paths to my project in JDeveloper instead of creating them afterwards in EM? Can anybody point me to some more information on this (aside from the help function in JDev)?
    Thank you and regards,
    Andre

    Well the question of does it matter is a toss up. Adobe has things set in place so that when you install v1 of lightroom and open up your beta library the program updates the library to the shipping version changes. This of course is ideal if you have done a lot of work in lightroom beta that is not stored in the xmp sidecar or the xmp embedded in a dng file. Versions and Histories are such items that will NOT keep if you delete you old database and start fresh as they are not stored inside the xmp file. Also some people seemed to have had some trouble upgrading their old beta databases as well.
    If you did what I did and use the lightroom beta as just a beta and didn't invest much of your work into it then I would suggest starting fresh and importing your files (if you made changes to a file in ACR or lightroom beta and have the xmp in the folder with it) lightroom will read those changes so you don't have to do it again in lightroom. Again things like histories will NOT follow along.
    If you have a lot invested by way of work inside lightroom beta then I would just do an update of your database when you get v1 of the program.
    Best of luck.
    Andrew

  • Installing Demantra 7.2.0.2 with IBM Websphere as the application server

    Can anybody share the documentation / insight into installing Demantra 7.2.0.2 using IBM Websphere 6.1 (OS-Windows) ?
    Can we install the Demantra on the same machine on which Websphere is installed or we need another box.
    Which steps we need to follow ? Any setting on the Websphere for this ?
    Suppose Websphere is installed on http://webmac.xxx.com (machine name) - is this the web address we need to specify even if we are installing on the same machine.
    Thx for your help.
    Pankaj

    Hi Pankaj,
    If the other users are on the same network as the machine on which Tomcat is running, they can access demantra web applications directly. Only measure to be taken is that the url should contain either IP address or the network m/c name of the server machine alongwith the port no.
    e.g.
    http://10.32.142.123:8080/....
    http://mymachine:8080/....
    If the other users are on some different network and wanted to access Demantra web applications through Internet, then you will have to ask your networking team to open the port no (e.g. 8080) of the Tomcat server machine through the firewall of your environment. This will allow the users outside of your environment to access the application running on your specific machine through the specific port only.
    And the users who want to access these applications might also have to put host entries as suggested by Shekhar depending on the internet access policies of their organization.
    Milind...

Maybe you are looking for

  • Can you use other mp3 players with itunes?

    I was wondering if you could use the Windows Zune with itunes...   Windows XP  

  • Object selection 2

    When you send a selection to the back does it become a Master item? Some of my objects are no longer selectable. Kurt

  • ERROR IN IDOC WITH STATUS 51

    Hello Experts, I am facing a connectivity issue B/w Dev server i am getting data into BI dev from ECC dev. but when i am running the infopack the IDOC error status appearing in ECC dev with status 51  with error message text Incomplete control parame

  • IMac is slow

    Hello, I have a iMac I believe it is from 2008 or so? (I can't find this info in the "about this mac" tab.) It has the 2.4 GHz Intel Core 2 Duo processor. I am running snow leopard OS X version 10.6.8. (As I am already having issues I am afraid to in

  • Sales Order Information - VA05

    Hi Guys, I am a MM/PP consultant, but have a problem with the VA05 list. I want to add some new columns to the list and take out few out of the existing list, I know how to do this, but I am not able to save it as a variant or a layout. So, every tim