Corba - differences between WLS 7.02 / WLS 8.1

In WLS 7.02 the following piece of code works, but in WLS 8.1 I get an exception
on the last line (see the log below). Would someone have a clue why it’s not working
with WLS 8.1
Note: if you want to send me an email, remove the NOSPAM
TIA !
public OimSessionInstance openSession() throws EomSessionException {
Properties props = new Properties();
props.put("org.omg.CORBA.ORBInitialPort", (new Short(corbaPortNumber)).toString());
props.put("org.omg.CORBA.ORBInitialHost", serverHost);
try {
orb = ORB.init((String[]) null, props);
String[] services = orb.list_initial_services();
// setting up the CORBA stuff
org.omg.CORBA.Object objRef = orb.resolve_initial_references("NameService");
EomSessionException: class EomSession, method corbaConnection to OIM : exception
: org.omg.CORBA.MARSHAL: Exception waiting for response; nested exception is:
java.io.EOFException: GIOP protocol error vmcid: 0x0 minor code: 0
completed: No
at EomDefaultConnection.openSession(EomDefaultConnection.java:114)
at EomSession.<init>(EomSession.java:78)

"Alain Pigeon" <[email protected]> wrote:
>
In WLS 7.02 the following piece of code works, but in WLS 8.1 I get an
exception
on the last line (see the log below). Would someone have a clue why it’s
not working
with WLS 8.1
Note: if you want to send me an email, remove the NOSPAM
TIA !
public OimSessionInstance openSession() throws EomSessionException {
Properties props = new Properties();
props.put("org.omg.CORBA.ORBInitialPort", (new Short(corbaPortNumber)).toString());
props.put("org.omg.CORBA.ORBInitialHost", serverHost);
try {
orb = ORB.init((String[]) null, props);
String[] services = orb.list_initial_services();
// setting up the CORBA stuff
org.omg.CORBA.Object objRef = orb.resolve_initial_references("NameService");
EomSessionException: class EomSession, method corbaConnection to OIM
: exception
: org.omg.CORBA.MARSHAL: Exception waiting for response; nested exception
is:
java.io.EOFException: GIOP protocol error vmcid: 0x0 minor
code: 0
completed: No
at EomDefaultConnection.openSession(EomDefaultConnection.java:114)
at EomSession.<init>(EomSession.java:78)Found a solution:
In WLS7.0 the code automatically returned the SUN ORB found in the rt.jar. But
in WLS8.1 you have to force it to the SUN ORB by specifying it in the properties
file used to instantiate the ORB.
Example:
public OimSessionInstance openSession() throws EomSessionException {
String ORBClassName = "com.sun.corba.se.internal.iiop.ORB";
String ORBSingletonClassName = "com.sun.corba.se.internal.corba.ORBSingleton";
Properties props = new Properties();
props.put("org.omg.CORBA.ORBClass" , ORBClassName);
props.put("org.omg.CORBA.ORBSingletonClass" , ORBSingletonClassName);
props.put("org.omg.CORBA.ORBInitialPort", (new Short(corbaPortNumber)).toString());
props.put("org.omg.CORBA.ORBInitialHost", serverHost);
try {
orb = ORB.init((String[]) null, props);
String[] services = orb.list_initial_services();
// setting up the CORBA stuff
org.omg.CORBA.Object objRef = orb.resolve_initial_references("NameService");

Similar Messages

  • Difference between WLS 6.0 & 6.1 (SP1)?

    I'm looking for a document that will tell me the differences between WLS 6.0
    and 6.1 (SP1). If there is such a document, would someone please send it to
    me? Please forward that to: mailto:[email protected]
    If there is no such document, I need to find out the best way I can get this
    data.
    Thank you.
    Daniel Hinojosa

    Daniel,
    There is a migration document at
    http://edocs.bea.com/wls/docs61/notes/migrate60to61.html#999118
    daniel hinojosa wrote:
    I'm looking for a document that will tell me the differences between WLS 6.0
    and 6.1 (SP1). If there is such a document, would someone please send it to
    me? Please forward that to: mailto:[email protected]
    If there is no such document, I need to find out the best way I can get this
    data.
    Thank you.
    Daniel Hinojosa--
    Developer Relations Engineer
    BEA Support

  • Differences between WLS and WLE

    Can anyone enumerate the differences between weblogic server, and
    weblogic enterprise?
    It appears to be a much smaller platform support, and corba/ tuxedo
    stuff. Is that
    all?
    Just trying to nail down some questions as I wait for weblogic sales
    department/person
    to call back. ;)
    Thanks,
    Kenneth Topp

    I suggest starting with the marketing materials on our external website:
    http://www.BEA.com
    Thanks,
    Michael
    Michael Girdley
    Product Manager, WebLogic Server & Express
    BEA Systems Inc
    "Kenneth Topp" <[email protected]> wrote in message
    news:[email protected]..
    Can anyone enumerate the differences between weblogic server, and
    weblogic enterprise?
    It appears to be a much smaller platform support, and corba/ tuxedo
    stuff. Is that
    all?
    Just trying to nail down some questions as I wait for weblogic sales
    department/person
    to call back. ;)
    Thanks,
    Kenneth Topp

  • Difference between RMI-IIOP and CORBA-IIOP

    Hello,
    What is the difference between RMI-IIOP and CORBA-IIOP?
    Thanks
    Larry

    Lawrence Manickam <[email protected]> writes:
    What is the difference between RMI-IIOP and CORBA-IIOP? RMI-IIOP is the protocol represented by the mapping of Java RMI
    artifacts to IDL, i.e. you start with Java and use the RMI programming
    model. CORBA / IIOP is really just the protocol used for IDL sourced
    objects, i.e. you start with IDL and use the CORBA programming model.
    andy

  • The difference between connectors and adapters?

    Could someone give me a "dummies guide" to the differences between an adapter and
    a connector. Aren't they really just one in the same?

    hi
    you can get more information at
    http://e-docs.bea.com/wls/docs70/jconnector/connect.html#1232143
    Regards
    Prasanna Yalam

  • Differences Between JDev BC4J/JClient Versions

    Hi,
    I'm finding key differences between library versions of my BC4J and JClient libraries which are introducing bugs into my application. What once ran properly no longer runs properly in JDev 10.1.2. What makes this particularly interesting is that the Application Server has the older libraries (which work) while JDeveloper 10.1.2 has the new libraries (which have the issues). I was wondering if anyone could point me to a document of all the changes in BC4J and JClient between releases.
    Here are two of the differences I'm seeing...
    1. In the older BC4J lib (deployed by default with the 10g app server) using a ViewCriteria to select a ROW with a CHAR[7] using a string with less than 7 characters works fine. It simply does a standard CHAR[7] comparision, treating the missing characters as spaces, and finds a match. ie "select * from MY_TABLE where KEY='AA' finds the key with 'AA ' and it shows up in my results as I desire.
    In the newer BC4J lib, while the same select statement runs (and finds the row) the BC4J libraries seem to be doing a post processing in the ViewCriteria which HIDES this row from me. I have to manually PAD my input string in Java before putting it into the ViewCriteria to get it to work. (And no, the database can't be changed to a VARCHAR for other reasons.)
    2. The JFACE library's ScrollablePanel has no trouble creating a scrollable panel with a table for my ViewObject in the old version of the JFACE library. However, the new version of the JFace library has a problem where scrolling the panel shows many blank rows, until I actually click on a row, at which point the internal ViewObject cursor moves forward and loads that data (and hides the earlier data).
    This is annoying as I really would prefer to be able to upgrade to new libraries when they come out. But instead I'm having to download the older libraries and put them into JDeveloper instead.
    a. Can anyone point me to a document listing all changes between BC4J and JFace library versions?
    b. Does anyone know of a better way to work around the issues I'm seeing above? They're really annoying.
    Thanks,
    Doug

    Hi,
    I use weblogic 10.3.4 with Application Development Runtime (11.1.1.2.0) and JDev 11.1.1.4.i assume you are using standalone wls 10.3.4 with Application Development Runtime (11.1.1.2.0).
    But jdeveloper 11.1.1.4 has ADR 11.1.1.4.0 .. It would create some incompatabilities.
    Betw:
    you can install ADR from jdeveloper setup also, just uncheck the jdev and wls studio installation when installing ADR from jdev, It will also prompt for the wls home.
    Regards,
    Santosh.
    Edited by: Santosh Vaza on Apr 23, 2011 4:52 PM

  • A CONFUSION:The difference between cluster and multi-IP--DNS mapping??

              I have a test about simplest cluster,admin and managed server all told me "start
              cluster service"!the two IP address use ONE DomainName,If one down,when I send
              request with dn,It first look up admin server,no found and then go dns to search
              another server,about one minute then the server send response to me!
              But when I do not config a cluster,only start two admin server and give them the
              same dns,the same appearance as cluster!
              I don't understand the difference between cluster and multi-IP--DNS mapping??
              

              <[email protected]> wrote in message news:3b16f1db$[email protected]..
              |
              | I have a test about simplest cluster,admin and managed server all told me
              "start
              | cluster service"!the two IP address use ONE DomainName,If one down,when I
              send
              | request with dn,It first look up admin server,no found and then go dns to
              search
              | another server,about one minute then the server send response to me!
              |
              This is DNS fail-over.
              | But when I do not config a cluster,only start two admin server and give
              them the
              | same dns,the same appearance as cluster!
              | I don't understand the difference between cluster and multi-IP--DNS
              mapping??
              It is totally different. regarding the last failover example you've given,
              of course the 2 servers can have identical files maintained under
              public_html. DNS will failover requests to "foo.html" to the other one if
              the first server is down, but if you have something saved in a session, say
              shopping cart example, it's totally lost, but with WLS clustering, the
              session is replicated to the other server in the cluster, you may just
              check-out, don't have to order again.
              This is just a simple example of WLS cluster session-replication. WLS
              supports EJB, RMI Objects, JMS (6.0) clustering.. check the doc at
              http://www.weblogic.com/docs50/cluster/index.html
              

  • (261680070) Q WWO-13 What are the difference between WLS6.1 and WLS7.0 web services?

    Q<WWO-13> What are the difference between WLS6.1 and WLS7.0 web services?
    A<WWO-13> The differences are huge, so different in fact that 6.1 web services cannot
    be deployed in 7.0. WLS7.0 and Workshop have much greater functionality than the
    limited stateless session (RPC-style) and JMS destination (MSG-style) approach of
    6.1. Workshop web services can interact with any type of EJB, any JMS destination
    as well as other web services and directly accessing databases. The framework for
    building the web service is better and more adaptable and Workshop provides a fully
    integrated develop, deploy, test and debug environment. Additionally, WLS7.0 have
    the capacity to be much better at performance since due to XML parser enhancements
    and the addition of XML maps.

    If you want to take existing WLS6.1 web services and convert them to WLS7.0 you can
    do so quite easily. The WLS7.0 Ant still supports wsgen so you do not need to even
    change your build.xml file. The generated web service however will be implemented
    is a manner compliant with the WLS7.0 environment. More details are at:
    http://e-docs.bea.com/wls/docs70/webServices/anttasks.html#1070576
    "Adam FitzGerald" <[email protected]> wrote:
    >
    Q<WWO-13> What are the difference between WLS6.1 and WLS7.0 web services?
    A<WWO-13> The differences are huge, so different in fact that 6.1 web services
    cannot
    be deployed in 7.0. WLS7.0 and Workshop have much greater functionality
    than the
    limited stateless session (RPC-style) and JMS destination (MSG-style) approach
    of
    6.1. Workshop web services can interact with any type of EJB, any JMS destination
    as well as other web services and directly accessing databases. The framework
    for
    building the web service is better and more adaptable and Workshop provides
    a fully
    integrated develop, deploy, test and debug environment. Additionally, WLS7.0
    have
    the capacity to be much better at performance since due to XML parser enhancements
    and the addition of XML maps.

  • Difference between app-jazn and system- jazn files

    Hi ,
    Im working in JDEV 11g. Can anyone explain me the difference between appjazn and systemjazn files.
    Thanks in advance.

    Hi,
    system-jazn is used at runtime in WLS. app-jazn is used to store the ADF Security permissions at design time
    Frank

  • What's the difference between the notion of virtual hostname and of host name

              Hi everybody,
              Sorry for this stupid question, but I don't see the real difference between the
              notion of virtual host managed by WLS and the notion of host names managed by
              a DNS. With the admin console of WLS, I can create a virtual host, e.g. www.toto.com
              , and associate it with a WLS cluster for example. But with the DNS, I must also
              bind 'www.toto.com' to the list of WLS servers contained in the cluster above
              in order to be sure that WLS can make load-balancing. (See WLS clusters documentation).
              Can somebody show me an example of the use of virtual hosts and hostnames, which
              can help me to understand the differnece between?
              Thanks for your help
              Vincent
              

              HI
              Basically Name Based Virtual Hosts are helpful to give multiple names to be tied
              to a single IP Address rather than IP Based Virtual Hosting. In your case if your
              virtual host name www.toto.com which basically served by the weblogic cluster
              instances need to be configured by DNS server so that using this technique many
              different hosts can share the same IP address. We need to configure DNS server
              to map each host name to the correct IP address.
              regards
              Sasikanth
              "Vincent Ducret" <[email protected]> wrote:
              >
              >Hi everybody,
              >
              >Sorry for this stupid question, but I don't see the real difference between
              >the
              >notion of virtual host managed by WLS and the notion of host names managed
              >by
              >a DNS. With the admin console of WLS, I can create a virtual host, e.g.
              >www.toto.com
              >, and associate it with a WLS cluster for example. But with the DNS,
              >I must also
              >bind 'www.toto.com' to the list of WLS servers contained in the cluster
              >above
              >in order to be sure that WLS can make load-balancing. (See WLS clusters
              >documentation).
              >
              >Can somebody show me an example of the use of virtual hosts and hostnames,
              >which
              >can help me to understand the differnece between?
              >
              >Thanks for your help
              >Vincent
              

  • What is the difference between WebLogic Server users and Portal users

    Hi All
    What is the difference between users created in the WebLogic server and those
    created from the webLogic Portal Admin console.
    - leo

    Hi Leo,
    The WebLogic server console allows you to create users in the File realm (
    http://e-docs.bea.com/wls/docs61/adminguide/cnfgsec.html#1057106 , "Defining
    Users" ).
    The WebLogic Portal Admin console creates Portal users in the alternate security
    realm that was written to store user/password in the Portal schema. This realm is
    com.bea.p13n.security.realm.RDBMSRealm. See the javadoc for RDBMSRealm at (
    http://edocs.bea.com/wlp/docs40/javadoc/wlp/com/bea/p13n/security/realm/RDBMSRealm.html
    For information on alternate security realms see
    http://e-docs.bea.com/wls/docs61/security/prog.html#1041025 , "Writing a Custom
    Security Realm".
    For information on the File realm see
    http://e-docs.bea.com/wls/docs61/ConsoleHelp/security.html , "Security" and also
    search the WLS 6.1 docs for "File realm" for lots of other references.
    Leo wrote:
    Hi All
    What is the difference between users created in the WebLogic server and those
    created from the webLogic Portal Admin console.
    - leo--
    Ture Hoefner
    BEA Systems, Inc.
    2590 Pearl St.
    Suite 110
    Boulder, CO 80302
    www.bea.com

  • Is there any difference between sun solaris 8 and windows for Garb.Collecti

    Hi All,
    is there any difference between refreshing the java virtual memory between sun solaris 8 and windows.i am fetching 25 records for every search action.in windows usage of java virual memory is 5 mb after every search it refreshes the memory.while using the same code in sun solaris 8 it throws heap out of memory error and for every search it wont refresh the memory.

    Some other related links
    http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html
    http://e-docs.bea.com/wls/docs81/perform/JVMTuning.html

  • Difference between prefer-application-packages in weblogic.xml and weblogic-application.xml?

    Hi!
    When deploying a WAR to WebLogic 10.3.5, what is the difference between the prefer-application-packages element in the files weblogic.xml and weblogic-application.xml?
    In my WARs WEB-INF/lib/ I have a JAR that contains classes that are already provided by the container (but older versions).
    If I do not use prefer-application-packages then my app gets the classes provided by the container.
    If I use prefer-application-packages in weblogic.xml then I get the classes from WAR/WEB-INF/lib which is expected.
    But if I use prefer-application-packages in weblogic-application.xml then I get the container versions. Why?
    Is there a difference between those two options?
    The exact data I use is:
    (foo.bar.* is the conflicting package; I add or remove the linex marked with XXXX)
    WEB-INF/weblogic.xml :
    <?xml version="1.0" encoding="UTF-8"?>
    <wls:weblogic-web-app
        xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-web-app"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd http://xmlns.oracle.com/weblogic/weblogic-web-app http://xmlns.oracle.com/weblogic/weblogic-web-app/1.2/weblogic-web-app.xsd">
        <wls:container-descriptor>
            <wls:show-archived-real-path-enabled>true</wls:show-archived-real-path-enabled>
            <wls:prefer-application-packages> <!-- XXXX -->
                <wls:package-name>foo.bar.*</wls:package-name> <!-- XXXX -->
            </wls:prefer-application-packages> <!-- XXXX -->
            <wls:prefer-application-resources>
                <wls:resource-name>META-INF/services/some....</wls:resource-name>
                <wls:resource-name>META-INF/services/unrelated...</wls:resource-name>
                <wls:resource-name>META-INF/services/stuff...</wls:resource-name>
            </wls:prefer-application-resources>
        </wls:container-descriptor>
        <wls:jsp-descriptor>
            <wls:page-check-seconds>-1</wls:page-check-seconds>
            <wls:precompile>true</wls:precompile>
            <wls:precompile-continue>true</wls:precompile-continue>
            <wls:keepgenerated>true</wls:keepgenerated>
        </wls:jsp-descriptor>
        <wls:session-descriptor>
            <wls:persistent-store-type>replicated_if_clustered</wls:persistent-store-type>
        </wls:session-descriptor>
    </wls:weblogic-web-app>
    META-INF/weblogic-application.xml :
    <?xml version="1.0" encoding="UTF-8"?>
    <weblogic-application
        xmlns="http://xmlns.oracle.com/weblogic/weblogic-application"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/javaee_5.xsd http://xmlns.oracle.com/weblogic/weblogic-application http://xmlns.oracle.com/weblogic/weblogic-application/1.2/weblogic-application.xsd">
        <application-param>
            <param-name>webapp.encoding.default</param-name>
            <param-value>UTF-8</param-value>
        </application-param>
        <xml>
            <parser-factory>
                <saxparser-factory>
                    org.apache.xerces.jaxp.SAXParserFactoryImpl
                </saxparser-factory>
                <document-builder-factory>
                    org.apache.xerces.jaxp.DocumentBuilderFactoryImpl
                </document-builder-factory>
                <transformer-factory>
                    org.apache.xalan.processor.TransformerFactoryImpl
                </transformer-factory>
            </parser-factory>
        </xml>
        <prefer-application-packages>
            <package-name>foo.bar.*</package-name> <!-- XXXX -->
            <package-name>javax.jws.*</package-name>
            <package-name>javax.xml.ws.*</package-name>
            <package-name>org.apache.cxf.*</package-name>
            <package-name>antlr.*</package-name>
            <package-name>org.xmlsoap.schemas.wsdl.*</package-name>
        </prefer-application-packages>
    </weblogic-application>

    weblogic-application.xml has no meaning in WARs, it is only used in EARs.

  • Difference between DataSource & JDBC Data Source Factory

    Hi,
    Can anyone tell me what the difference between a 'DataSource' and 'JDBC Data Source
    Factory' is ? I see both these on the Weblogic admin console. I have reviewed
    the documentation but it is not clear to me what the difference between the two
    is and what situations each on is appropriate for.
    Thanks,
    Raju

    Hi Sree,
    I have read literally ALL the online documents related to JDBC Data Source Factories
    including the one you provided below, but I still do not understand what they
    are for. I have also searched in Google but to no avail.
    I will try to be more specific as to where my confusion lies.
    1)Why would anyone ever choose a JDBCData Source Factory instead of a Tx Data
    Source or plain vanilla (not XA) Data Source? EJBs connect just fine with the
    latter 2.
    2)What should go inside the properties box?
    a) http://e-docs.bea.com/wls/docs70/ejb/EJB_environment.html#resourcefact states
    that connection properties should go in here
    b)Then, the document goes on to describe a syntax for binding a Connection Pool
    to a JNDI name, all in the properties box. I have never been able to successfully
    create a data resource factory with a JNDI name. I get no errors, but it appears
    no where in the JNDI tree
    c)If this mysterious syntax associates a resource factory with an existing Connection
    Pool, then why go through all the fuss of redefining the Driver Class Name, URL,
    etc., when those are already defined on the Connection Pool?
    When you setup either a Data Source or a TX Data Source, WebLogic does not require
    that information since it was all setup in the pool. Why is it needed here?
    Thanks in advance for you help.
    "Sree Bodapati" <[email protected]> wrote:
    Hi Raju,
    Please see,
    http://e-docs.bea.com/wls/docs70/ConsoleHelp/domain_jdbcdatasourcefactorytable.html
    sree

  • Difference between pack/unpack and T2P (copyConfig/copyBinary)

    Hi Experts,
    I have a requirement to clone WLS 10.3.3 running SOA and OHS. I am facing some issues (encountering NPE on running copyBinary.sh and extractMovePlan.sh file is missing) while doing T2P for OHS. I see pack.sh and unpack.sh can be used to make WLS domain templates and create new domains on different machines/hosts.
    Please let me know what is the difference between the two approaches T2P and pack.sh/unpack.sh. Also please suggest which is the recommended approach.
    Note: I am new to WLS, so please don't mind if my question is trivial or doesn't make sense.
    Thanks
    Rathnam

    Below is the Stack Trace for NPE:
    =======================================================================================
    Null Point Exception Error:
    bash-3.2$ /than8o/fmw/product/111/oracle_common/bin/copyConfig.sh -javaHome /than8o/fmw/jrmc-4.0.0-1.6.0 -al /ptsadmin/FMW_clone/config/OHS_CopyConfig.jar -sourceInstanceHomeLoc /than8o/fmw/product/111/ohs_instances -sourceComponentName ohs1
    Log File: "/tmp/CLONE2012-09-19_03-56-21PM-LOG/CLONE2012-09-19_03-56-21PM.log".
    Error File: "/tmp/CLONE2012-09-19_03-56-21PM-LOG/CLONE2012-09-19_03-56-21PM.error".
    To proceed, type "yes":yes
    INFO : Sep 19, 2012 3:19:23 PM - CLONE-21095 Create archive for instance1@ohs1 started ...
    java.lang.NullPointerException
    at oracle.as.clone.classloader.CloningFrameworkClassLoader.getClonableEntityTypes(CloningFrameworkClassLoader.java:162)
    at oracle.as.clone.classloader.CloningFrameworkClassLoader.<init>(CloningFrameworkClassLoader.java:254)
    at oracle.as.clone.classloader.CloningFrameworkClassLoader.getInstance(CloningFrameworkClassLoader.java:222)
    at oracle.as.clone.cloner.component.ComponentCreateCloner.doClone(ComponentCreateCloner.java:66)
    at oracle.as.clone.cloner.Cloner.doFinalClone(Cloner.java:56)
    at oracle.as.clone.request.CreateGenericArchive.doGenericArchive(CreateGenericArchive.java:128)
    at oracle.as.clone.request.CreateCloneRequest._clone(CreateCloneRequest.java:69)
    at oracle.as.clone.process.CloningExecutionProcess.execute(CloningExecutionProcess.java:145)
    at oracle.as.clone.process.CloningExecutionProcess.execute(CloningExecutionProcess.java:128)
    at oracle.as.clone.client.CloningClient.executeCloneCommand(CloningClient.java:123)
    at oracle.as.clone.client.CloningClient.main(CloningClient.java:83)
    oracle.as.clone.exception.FMWCloningException: java.lang.NullPointerException
    at oracle.as.clone.classloader.CloningFrameworkClassLoader.getInstance(CloningFrameworkClassLoader.java:227)
    at oracle.as.clone.cloner.component.ComponentCreateCloner.doClone(ComponentCreateCloner.java:66)
    at oracle.as.clone.cloner.Cloner.doFinalClone(Cloner.java:56)
    at oracle.as.clone.request.CreateGenericArchive.doGenericArchive(CreateGenericArchive.java:128)
    at oracle.as.clone.request.CreateCloneRequest._clone(CreateCloneRequest.java:69)
    at oracle.as.clone.process.CloningExecutionProcess.execute(CloningExecutionProcess.java:145)
    at oracle.as.clone.process.CloningExecutionProcess.execute(CloningExecutionProcess.java:128)
    at oracle.as.clone.client.CloningClient.executeCloneCommand(CloningClient.java:123)
    at oracle.as.clone.client.CloningClient.main(CloningClient.java:84)
    Caused by: java.lang.NullPointerException
    =======================================================================================
    Basically I am looking at knowing the difference between pack/unpack and T2P using copyConfig/copyBinary/extractMovePlan.
    Thanks
    Rathnam

Maybe you are looking for

  • Suppressing the fields in Sales document like sales order(VBAK)

    Hi ABAP friends, Iam SD consultant, i was asked by my client to do suppress/not to show some fields in sales order document(table is VBAK),transaction is VA01/VA02/VA03. can it possible....what is the method to do it....please give some idea on it. L

  • BI Publisher report giving FX ERROR on server

    Hi, I am getting FX error on server when i am modifying the RTF file and add a new xml field to it. A blank RTF works fine, but the moment i add any filed in the RTF from xml, it goes in error. On my local machine the RTF file is working absolutely f

  • Get FI Documet number from BKPF table using CO document number in COVP tabl

    Hi, In  datasource 0CO_OM_CCA_9 , we have written a code in CMOD to get the FI Document Number from CO document Number. The flow of code is: 1) From the CO document number, get reference document number  (REFBNfield) from, COVP table 2) Pass this REF

  • Problem in opening the Out look with attachment.

    Hi All    I have  requirement in WEb Dynpro that need to open MicroSoft OUTLOOK with attachment.   Can you please help me in this. Thanks Rama

  • UDA's in Hyperion Reports?

    <p>Hello,</p><p> </p><p>I have 3 level of hierarchies in my outline for which i have 3reports(one for each) . The reports have the same layout andthe only difference is that the users can see data according to thelevel of their access.</p><p> </p><p>