Difference between admin.jar and admin_client.jar

OC4J provide two commad-line utility: admin.jar and admin_client.jar for performing configuration tasks on OC4J. admin_client.jar can work in Oracle Application Server clustered environment as well as on a standalone OC4J server, but admin.jar only works in a standalone OC4J installation. Do they have any other difference?
If used in a standalone OC4J installation, are they the same?

The documentation on the OC4J management tools covers this to some degree:
http://download-west.oracle.com/docs/cd/B32110_01/web.1013/b28950/admin.htm#CEGHHGGB
In a nutshell
1. admin.jar is the old command line utility we kept in the release for backwards compatibility. It uses a set of internal/proprietrary APIs to work against OC4J. It works only against OC4J standalone.
2. admin_client.jar is a new command line utility that is based on JMX and its associated set of specifications to manage and deploy to a J2EE container. It can connect to and manage all variants of OC4J -- standalone, single AS instance, clustered AS instance. It has many more resource configuration options added to it. For simplicity, we maintained the "feel" of admin.jar so the command structure is very similar to what was provided in admin.jar, but the way it works is completely different under the covers.
While admin.jar still works and is supported, you should use admin_client.jar whenever you want to do command line operations with 10.1.3.x. I was considering putting a note to that effect on stdout whenever admin.jar was used, but we didn't end up doing it.
Another two nice aspects about admin_client.jar are
1. The common library it uses to perform its operations is also used by the Oracle Ant tasks -- so in effect there are two faces to it -- admin_client.jar and Ant tasks. There's a near 100% compatibility between the two meaning what you can do with admin_client.jar you can most likely do with a set of Ant tasks from a development environment.
2. We have isolated the dependencies for admin_client.jar and produced a separate, small distribution called oc4j_admin_client.zip (which is 6MB from memory) that can be unzipped onto any remote server and you have the full admin_client.jar utility -- meaning that to perform administration options against ant of the OC4J variants (standalone, single and clustered AS instance) you only need this one, very small distribution.
cheers
-steve-

Similar Messages

  • What is the difference between admin.jar and admin_client.jar

    Oc4j provide two jar for admin purpose: admin.jar and admin_client.jar. what are the differnce between them?

    I'm sure I've provided an answer for this before -- try searching this forum and see if its there.
    In short: admin.jar is old and uses a bunch of internal APIs.
    admin_client.jar is a new implementation in 10.1.3.x and it uses JMX/JSR77/JSR88 APIs as its basis. It supports config/deployment operations against ALL the OC4J variants -- standalone, OracleAS single instance or OracleAS groups. We've tried to ensure that admin_client.jar has all the necessary coverage from admin.jar -- the syntax is very similar and all the relevant commands are carried forward.
    If you are making a choice, choose admin_client.jar.
    -steve-

  • WCS difference between "admin status" and "oper status"

    Can anyone explain what the difference is between admin status and oper status within the WCS GUI. It appears that disbaling either on effectively disables the radio...is that correct?

    I think I got it figured out...thanks for lookin....

  • Difference between admin directory and patch directory ?

    What the difference between $<PRODUCT_TOP>/admin/sql and $<PRODUCT_TOP>/patch/115/sql
    I have looked at a number of packages on my system and they appear to be built from its *.pls located in my $<PRODUCT_TOP>/patch/115/sql directory
    However there normally is also a file of the same name in $<PRODUCT_TOP>/admin/sql, though usually it has a different version number ( in my case I have found some files in her that have a version number that is greater than what is in the patch/115/sql directory )
    thanks,
    Jim

    My understanding is that the Product admin directory is used by Auto Upgrade as part of an upgrade ?Correct.
    Q. Since Auto Upgrade is involved, I presume this means an upgrade say from 11i to R12 ( formerly what was called a migration ) rather than what would be a Release Update Pack ( i.e. formerly a Maintenance Release ) eg 11.5.10.2 ?I would say it is applicable for all the patches that update APPL_TOP, so it is applicable to RUP and Maintenance Pack patches but not an upgrade from 11i to R12 as a new APPL_TOP is created in this case (unless you are referring to the new APPL_TOP).
    Q. Does the product_top patch directory hold the files transferred in by adpatch ? Yes.
    If so does it only hold the latest version supplied by the various patches applied to this product top ?Yes.
    Q. Why would the product_top admin directory hold files with version numbers higher than what is in the product_top patch ?Can you give an example for this?
    Thanks,
    Hussein

  • Difference between Admin Groups and Analytics Web Groups

    Hi All,
    Can anyone tell me what is the difference between the user Groups we can define in Siebel Analytic Administration Tools -RPD and Siebel Analytics Web Groups?
    Also what is the relationships between them? In my environment I'm getting sharp difference between these groups.
    Thanks for reading.
    Sudipta

    Hi Sudipta,
    Please find the below link,
    Security in OBIEE
    Thanks,
    Vino

  • Difference between aqapi.jar and aqapi13.jar??

    Hi - Can anybody please tell me what is the difference in using aqapi.jar and aqapi13.jar. Is there any compatibility issue. I'm using Oracle database 10g R2.
    I posted the same messgae in AQ section but there was no response. Now I'm posting it here hope no body minds.
    Thanks,
    Sanju.

    An Application Client is written according to the rules of the Application Client component defined by
    the Java EE specification -- just like the Servlet spec defines how to write servlets and the EJB spec
    defines how to write EJB components. An Application Client can have an associated application-client.xml deployment descriptor. It is also packaged into an application client.jar, just like EJBs are packaged into an ejb-jar, and can be placed within an .ear as well. An Application Client can use Java EE environment annotations and injection. The Application Client container automatically performs authentication on behalf of the client. An Application Client is executed by running it within an Application Client container.
    None of these steps apply to stand-alone java clients, but the tradeoff is that the Application Client is
    portable and the stand-alone client is not. You can see the difference between the two approaches
    in this simple Hello, World EJB 3.0 program :
    https://glassfish.dev.java.net/javaee5/ejb/examples/Sless.html

  • Difference j2ee.jar and javaee.jar

    Hi, it is not clear for me why exist 2 files j2ee.jar and javaee.jar. I have look manifest file for j2ee.jar and found that only contains path to javaee.jar. But
    If I add as library only j2ee.jar to my project - doesn't found e.g. import javax.mail.Folder.
    Problem will be resolved if I add only javaee.jar. But why we need j2ee.jar?

    j2ee.jar has the interface definitions for Java EE v1.4 specification whereas javaee.jar has the interface definitions for Java EE v1.5 (the name has been simplified to Java EE v5). So when you are developing an application that uses JEE v1.4 then you will need j2ee.jar on your classpath when compiling (do not need to package it in the module when deploying). And when you are developing an application that uses JEE v5 then you will need javaee.jar on your classpath when compiling (do not need to package it in the module when deploying).
    The next two questions that might come to your mind are:
    1. How do you know which JEE version you are using for development?
    The j2ee.jar and javaee.jar files are just API deifinitions (interfaces, and abstract classes) for the corresponding Java EE versions (i.e. 1.4 and 5 respectively). These APIs were designed by SUN and specify a contract between a Java EE container and the applications that will be deployed on the container. The implementation of this contract is provided by the various application server vendors. For example, Glassfish v2ur2 implements BOTH versions, however it requires you to specify, in the deployment descriptions, the JEE version which is to be used for the application that you are deploying.
    So in short the version of JEE you are using is specified in the deployment descriptor for the application.
    2. Why do we need these jars only during compilation and do not need to add it to the war (or jar) when deploying our module to the app server?
    The reason is that it will already be available in the app server that you are deploying you application to. This seems quite obvious as if i provide implementation of an interface, i will need to give you the interface as well as you will actually be using my implementation via the interface and not by directly calling my implementation classes. If you directly call my implementation classes then it will beat the whole purpose of defining a standard interface that everyone can use.
    I hope that clears out a few things.
    Regards,
    Jawad.

  • Difference between config toll and visual admin

    HI all,
      Please let me know all Difference between config toll and visual admin.
    and Purpose and how to start.
    Thanks & Regards,
    satish k

    Hi Satish,
    SAP J2EE Engine 6.20 provides three basic tools for administration u2013
    Visual Administrator,
    Console Administrator, and
    Config Tool (both Visual and Console).
    There are some other tools namely DBTool, Library Tool, RMIC Tool, Shutdown Tool, and User Tool also used.
    First part
    Difference between config toll and visual admin:-Visual Administrator is a graphical user interface (GUI) that enables administration of the whole cluster, of the cluster nodes, and all modules running on them.On the other hand with the help of Config Tool you are able to add and configure SAP J2EE Engine 6.20 cluster elements.Again Config Tool can be used without a running SAP J2EE Engine 6.20. The only requirement is to have the server installed on the local machine.
    Visual Administrator is written in the Java programming language and can be run in any environment where a Java Virtual Machine is available.On the other hand Config Tool is XML-based, which enables third-party visualizations to be developed or integrated as part of a more complicated configuration system.
    Visual Administrator enables remote monitoring and management of the cluster, and for each cluster element, and enables the system administrator to monitor all managers and services working on each node in a single GUI & its online.cofig tool on the otherhand offline.
    Second part Purpose
    "Visual Administrator":-with the help of this tool you can able to login & logout from the server.It gives you all the details regarding different services running in your SAP server.As already mentioned that with the help of VA we enables administration of the whole cluster, of the cluster nodes, and all modules running on them.
    "Config Tool":-Config Tool enables you to run the server in remote debug mode.
    Again Config Tool enables you to add dispatcher and server nodes to the SAP J2EE Engine 6.20 Cluster.With the help of config tool we are enable to modification of service or manager module properties.
    Third part Start procedure
    "Visual Administrator" check the below link
    http://help.sap.com/saphelp_nw70/helpdata/EN/23/fa1f1e5f6841cf92c64dc19d79f290/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/EN/e8/f48b33f9a3423c9e688dfa56330e79/frameset.htm
    For more Info
    http://docs.sun.com/app/docs/doc/819-0698/installconfig-53?a=view
    http://help.sap.com/saphelp_nwce10/helpdata/en/6f/258b2ef17d45a4afa45a00309a6a33/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/EN/e8/f48b33f9a3423c9e688dfa56330e79/frameset.htm

  • Difference between roles Administrator and Super admin

    Dear Portal Gurus,
    Pls let me know the difference between
    roles Administrator and Super admin
    Thanks.
    Jack

    Hi Jack,
    The Administrator is the role that has all the rights that includes J2ee engine rights too but an superadmin is the one that has the role to the three admin roles that are
    Content Admin
    User Admin
    System Admin
    THIS IS THE BASIC DIFFERENCE BETWEEN SUPERADMIN AND ADMINISTRATOR.
    PS:Reward Point Please
    Regards,
    Naveen Gupta

  • Look & Feel difference between admin consoles of WL 8.1, 9.2 and 10.3

    1. We understand from WL documents that there is a big difference between 8.1 and 9.2. The question is whether the L&F of WL 9.2 and 10.3 admin console same?
    2. If there is difference, are the differences minor or major?

    1. We understand from WL documents that there is a big difference between 8.1 and 9.2. The question is whether the L&F of WL 9.2 and 10.3 admin console same?
    2. If there is difference, are the differences minor or major?

  • Classes12.jar and Classes111.jar

    Can anyone please update me Classes12.jar and Classes111.jar are which JDBC driver types?
    What's the difference between Classes12.jar and Classes111.jar?

    Oracle provides 2 major drivers, the "thin" and "thick"(or "oci" )
    As the name implies, the "thin" drivers is light weight (1.9 MB) and 100% written in java. Wheareas the "thick" driver is written in native language such as C. You need a Oracle Client or Database installtion to use the thick driver.
    "Thin" driver is packaged as classes12.jar (for use with JDK 1.2 or 1.3) [use classes111.jar for JDK 1.1] and is placed in ORACLE_HOME/jdbc/lib directory.
    So classes111 and classes12 each contain a thick OCI(type2) and thin(type4) driver.
    I've also heard it said that if your connecting to Oracle9 then you should use
    classes12 (along with jdk1.2/1.3), but I've seen it work with classes111 and jdk1.1.

  • Difference between the archive and cache_archive in object tag

    hello,
    I am trying to find the difference between the archive and cache_archive for the object tag to use for applet.
    I was going through this link which discusses the applet caching :
    http://java.sun.com/javase/6/docs/technotes/guides/plugin/developer_guide/applet_caching.html
    Especially : A sticky applet is placed in a disk cache created and
    controlled by Java Plug-in which the browser cannot overwrite.How do i find what is the disk cache on my machine, and how different it is from the normal cache.
    Currently i am using the normal archive parameter in object tag, and when i go to the java plugin control panel, i see all the downloaded jars.
    But wanted to know how will it be different from using the cache_archive parameter.
    Please advise,
    Edited by: duskandawn on Jun 10, 2009 11:07 AM

    Hi Juraj!
    I feel the same too - Except the fact that SessionFacade is used to access EJBs while the VO are built as response objects (i.e. assembled) and unassembled by different web requests.
    rnats

  • 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

  • Difference between New Archieve and New Patch

    Hi,
    I am going through import and export topics of LCA files (http://help.adobe.com/en_US/livecycle/9.0/workbenchHelp/help.htm?content=000276.html ). I understood how we can create new Archieves and import it to another environments. But I am not able to understand about patches.
    In both the cases, I am doing the same thing. I am creating archieve of the application. I am sure, there would be difference between "new archive" and "Patch" but not able to figure out.
    Can anyone let me know if I create new archieve and Patch, then what is the visual differences i can look in both the archieves??????
    Regards
    Sunil

    patching is related to component of LiveCycle.
    these are  basically jar files updated with new one. For more please look here.
    http://help.adobe.com/en_US/livecycle/9.0/workbenchHelp/help.htm?content=000960.html
    LCA files are simply archive file of the processes/application that you create in workbench. These archive files can be import to other environment  at later stage.
    -Vijay

  • Differences between B2B IPCUI and CU50 IPCUI?

    Dear all.
    We have SAP ERP 6.0 installed with integrated IPC in VMC running. On another box we have NW 7 with E-Commerce 5.0 and TREX 7.0 and MS ISS 7.5 running.
    We have two scenarios:
    Scenario 1: http://host:port/b2b/b2b/init.do
    After a logon a shop list appears. After going into a shop, navigating through the catalog and choosing a configurable product, the IPC UI gets displayed.
    Scenario 2: SAP Gui transaction CU50
    After choosing the same configurable material as in scenario 1 and running it through the IPC, the IPC UI gets displayed.
    The IPC UI via CU50 shows correctly status ligths as configured through XCM parameter appearance.showstatuslights=T.
    But the IPC UI in the B2B does not show the status lights, but the texts.
    My assumption is that both scenarios are using the same IPC UI.
    Or is there maybe a difference?
    What I also do not understand is:
    Why do I have XCM configuration for IPC two times?
    One "Internet pricing and configurator" in ../ipc/admin/xcm and another "IPC" in ../b2b/admin/xcm
    Maybe this is a silly question, but I haven´t found any solution nor answers to these issues and questions after long investigations.
    Thanks and regards
    Stefan

    Your Scenario 1: uses IPC-SCE (Configuration Engine) for runtime configuration of a configurable product. This uses the IPC as the runtime engine for configuring the product. The IPC UI (along with appropriate Java application) helps you render the design and get your input.
    Your Scenario 2: SAP Gui transaction CU50  uses the classical Variant Configuration LO-VC module of the SAP R/3 (ECC 6.0) system. The SAPGUI Variant configuration screens don't use IPC at any instance.
    The IPC UI via CU50 shows correctly status ligths as configured through XCM parameter appearance.showstatuslights=T. But the IPC UI in the B2B does not show the status lights, but the texts.
    It is very likely that you are seeing the default behavior of CU50 set elsewhere. Try changing the XCM setting and see if CU50 display property changes.
    My assumption is that both scenarios are using the same IPC UI.
    Not correct.
    See more detailed functional differences between IPC-SCE and LO-VC at this link Comparison of SCE and R/3 Variant Configuration.
    Why do I have XCM configuration for IPC two times?
    One "Internet pricing and configurator" in ../ipc/admin/xcm and another "IPC" in ../b2b/admin/xcm
    Technically they are  two different applications for use in different contexts. ../ipc/ for both design time and runtime of product configuration. This is what actually controls the IPC UI appearance in the web. The ipc component in the ../b2b/ application is for picking up the right configuration type that is defined in XCM of the _ipc application _.
    Maybe this is a silly question, but I haven´t found any solution nor answers to these issues and questions after long investigations.
    Probably, this was "intuitive" by SAP standards, so they don't have any documentation for developers who don't work in SAP.....
    (1) Define a custom configurations for application configuration  isab2b and isacatalog in ipc/XCM.
    (2) After making changes to ipc application (XCM) for UI settings, you have to restart the ipc application.
    (3) Define custom component for application component ipcdefaul in b2b/XCM
    (4) In the place of isab2b and isacatalog, input the names of the custom configurations you defined in ipc/XCM
    (5) Restart the b2b application.
    Hope this helps...
    Easwar Ram
    http://www.parxlns.com

Maybe you are looking for

  • How to create a Folder using a SQL Query?

    Hi How can I create a Folder (eg. C:\MyNewFolder) using SQL Query?

  • Best app for send sms via email?

    Anyone got any idea what the best app is to download to send sms via email? I downloaded text-free yesterday, but doesnt work and the message keeps bouncing back to my email in box as a failed mail delivery!! I am in the UK in case that makes a diffe

  • Resetting JApplet Content Pane

    I have an applet which needs to wait on another applet in the page being loaded before the GUI components can be rendered on the screen. My plugin appears to load the applets in the order that the HTML tags appear on the page, which is exactly the wr

  • Import from excel

    Hi, I have a excel spread sheet. The sheet contains operating times of vehicles for the whole year. (which is planned at the beginning of the year) At the moment the administrator is using the application to update a comment field within the applicat

  • Itunes 10.5.2 download errors...any fixes?

    I am trying to download Itunes 10.5.2 for my Iphone 4s.  I have done all of the following including pulling my hair out:  I deleted all of the Itunes and like stuff (Bonjour, Apple, etc.), rebooted, re-installed, regedit, rebooted, windows update, in