Is there a admin_client.jar et all. for OC4J9.0.4.x.x, OC4J10.1.2.x.x ?

I want to deploy a WAR file onto these oldies in one swoop, as is possible with admin_client.jar from the command line.

There's no way to do that with releases prior to 10.1.3.
There is the j2ee\home\admin.jar utility, but it only deploys ear files.
I've seen it done by the wrapping into an ear file with ant then calling admin.jar to deploy it.
-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-

  • Admin_client jar - add "remove-inherited" for oracle.jdbc shared library

    Guys,
    I am using admin_client.jar utility which comes oracle 10.1.3 to deploy our web-application on the oc4j server, everythings is working fine, except for this small issue, where i want to avoid having the shared library "oracle.jdbc" inherited by web-module (which is by default inherited by all apps apparently), since i want to use the oracle-jdbc driver bundled with the war. Now i do that the solution is to introduce a "remove-inherited" tag (for the oracle.jdbc library) under the "inherited-shared-libraries" element in the orion-application.xml file (generated on deployment by oc4j), but what i want to know is how to automate this process of adding this entry, since we dont want to have any manual intervention on deployment.
    Though admin_client.jar so far has provided all the functionality required for deployment but it apprarently doesnt any way where we can specify the shared-libraries not to be inherited by the deployed war..
    Any comments/suggestions ?
    Thanks and Regards,
    Message was edited by:
    user632496
    Message was edited by:
    user632496

    Alright that makes sense.
    Yes, spot on. The suggestion I made was contingent on having an EAR file -- even though we accept a WAR file from you, we ultimately produce an EAR file from it during the deployment phase. If you don't want to produce an EAR file then its not viable for you.
    Another possible solution is one that you are sort of suggesting here -- each application can be specified as a child of a parent application -- from which it will inherit various libraries and configuration settings.
    What you could do is to deploy a single, dedicated application on which you configure the shared-library import to the JDBC driver you want -- and then you simply choose that application as the parent, whereupon the child application will pick up the shared-library setting.
    There current, visible parent of all deployed applications is the "default" application. What you could do is to tweak the configuration of the default applicaiton so it uses a different JDBC library to the one it inherits from its actual parent (the system application). The configuration for the default application is contained within the j2ee/home/config/application.xml file -- which if you look at it, is actually an "orion-application.xml" file. So if you make the change there, it will apply to all the applications that are deployed to the container.
    Just found it in the doc:
    http://download.oracle.com/docs/cd/B32110_01/web.1013/b28952/classload.htm#CIHFFBCA
    Even easier, what you evaluate is a simpler approach where you install and publish the Oracle JDBC driver you wish to use, with the name "oracle.jdbc" and set it with a higher version (which I assume you are doing) than the deafault one -- whereby from how the config in the application.xml is set and where the oracle.jdbc driver is imported, it should pick up the higher version -- so that way you don't even need to change the config file -- simply publish the later versioned library using the name oracle.jdbc and it should be picked up.
    Currently the version in 10.1.3.3 is:
    <shared-library name="oracle.jdbc" parent="api" version="10.1.0_2">
    So if you published the jdbc driver you want to use with the name oracle.jdbc and a higher version, then the import of oracle.jdbc will default to the latest version, which should pick up your library.
    Thus all you need to do is a one-off publishing operation of a new shared-library (oracle.jdbc: 10.1.2.3 for example) and it then should be picked up implicitly by all deployed applications.
    Worth testing my theory though ... ;-)
    -steve-

  • Developer access for admin_client.jar in 10.1.3.1

    I would like our developers to be able to deploy their applications to OAS 10.1.3.1 on Solaris via command line. They already have an administrator login for OAS.
    It appears that the default permissions for admin_client.jar is 750 meaning that only those in the dba group have read/execute access to this jar by default.
    So my question is: What is the typical supported method for allowing developers to deploy their applications via command line?
    Do you simply open permissions on the jar and that's fine?
    Do you install the remote client administration tool and open permissions on that?
    I know that they can deploy very easily in JDeveloper, but many developers here are using eclipse instead, and we may also want to automate the deployment into our build scripts, so I'd like to know how to open the access up to do this via OAS CLI utilities.
    Let me know what you all are doing out there for your developers and how this is intended to be used by those that are not DBAs.
    Thanks!
    Tony

    OK, in case anyone else had the same issues, here is what I ended up doing to resolve the issue:
    Basically I created a new unix group for those I wished to have access to admin_client.jar util and layed down the oc4j remote administration zip with that user.
    In our env the steps looked like this:
    1. Create Group oc4jadm
    2. Create User oc4jinst (group oc4jadm)
    3. Add all users that will deploy apps to the oc4jadm group
    4. Unzip the remote client with oc4jinst user
    5. All files are now accessible by the oc4jadm group
    6. Test admin_client.jar with normal user in the oc4jadm group
    7. Everything works great.
    This way I could install OAS 10.1.3.1 with the oracle user and dba group like normal and not have to dig around and haphazardly grant access to the various dirs and files required by the admin_client.jar. Everything required is bundled up in the remote admin client zip and it may be installed with a user other than oracle without issue. Plus it has the added bonus of working remote servers in case you don't want your developers accessing the server on which the OAS itself resides.
    HTH,
    Tony

  • Admin_client.jar 10.1.3.1.0 and changing JVM settings for OC4J in opmn.xml

    Just now briefly looked at admin_client.jar 10.1.3.1.0. It appears that there is new functionality to create/alter and interrogate (J2EE) resources in this utility. This partially answers my other question, as stated in Jython support in Oracle Application Server 10g R3 (10.1.3)
    (Would be nice to get a definitive answer on scripting though)
    Anyway...
    As a follow-up question. Will there also be functionality (or is there already functionality) which lets me change JVM settings of OC4J components as they are declared in the opmn.xml, using only command line (and/or scripting) tools?
    Thanks

    Jan -- there is no out of the box command line utility that can amend the JVM settings for an OC4J instance.
    As Deepak alluded to, it is possible to do this using JMX because all the OPMN configuration elements are all reachable from JMX. This means you can create whatever Java JMX client you desire to modify the settings, or use a scripting environment which provides nice support for JMX (for example Groovy with its GroovyMBean) to access and use the OpmnConfig MBean set to change the OPMN configuration values.
    Asanka -- the 10.1.3.1 release has lots of capability in ASC to manage the OPMN settings from a browser -- including modifying all the JVM settings (things like heap, System properties, etc.) as well as OC4J switches (-userThreads, etc.)
    cheers
    -steve-

  • Libraries for admin_client.jar

    I'm trying to run admin_client.jar on RHES (Linux) using the command in the OC4J config guide but using gij -jar instead of java -jar. I am getting NoClassDefFoundError for oracle.oc4j.admin.deploy.cmdline.Oc4jAdminCmdline
    I've tried setting my CLASSPATH and JAVA_PATH to include all the directories for jar files that were listed for the remote client download (see below). Any other ideas?
    paths (actual path listing includes the OAS home as well):
    /j2ee, /j2ee/home, /j2ee/home/lib, /lib, /opmn, /jlib

    Not sure what you are trying to do and why you would use gij, as only specific JDKs are certified for use:
    http://www.oracle.com/technology/software/products/ias/files/oracle_soa_certification_101310.html
    In my case this syntax works:
    java -jar /u03/app/oracle/product/as1013/j2ee/home/admin_client.jar deployer:oc4j:opmn://osupport:6003/Ourapplication oc4jadmin pa55w0rd -redeploy -file /home/osupport/tmp/Ourapplication.ear -deploymentName Ourapplication -bindAllWebApps-bindAllWebApps default-web-site

  • Is there any way to tell which formulas a particular cell is in, reverse look-up style? That is, is there a way to search somehow for which formulas in a sheet contain a particular cell in them without opening all of them up? If not, it would be nice

    Is there any way to tell which formulas a particular cell is in, reverse look-up style? That is, is there a way to search somehow for which formulas in a sheet contain a particular cell in them without opening all of them up? If not, it would be nice.
    I'm fixing a Numbers document that I use in business daily that's become overly complicated, but while I want to clear/delete a number of cells in it to clean it up, I'm not sure if those cells are being used as source for other formulas on the page. I don't have to open all my formulas one by one to see if that cell is in there, do I?! That'd be a huge amount of work if I wanted to eliminate say 10 cells to search each formula on the page to see if it is in there or watch all the cells when I delete that cell to see if the numbers change! There's got to be an easier way! Right click doesn't seem to be any help.
    I don't want to damage my daily tool to make it cleaner and reorganize it. Is there really no way to do a reverse look-up of which formulas a particular cell is in?! Any time I click on a formula it highlights all the CELLS in that formula. Why can't I (or can I?) do the reverse and see all the FORMULAS that contain a particular cell?
    As a Numbers document ages or gets used frequently, you can sometimes forget which cells are tied to which formulas. You just look for the results of your formulas. Would be a nice thing to be able to do. Thoughts? Work-arounds? Answers?

    Answer would be no unless application provided such feature. Numbers does not as far as I know.
    Note that even if you have complete list of formulae used in a table, identifying formulae referencing any given cell is not simple.
    E.g., cell T20 is referenced not only in
    =T20+1
    but also in
    =SUM(T)
    =SUM(20:20)
    =SUM(S19:U22)
    =OFFSET(S1,19,1,1,1)
    =INDIRECT("T"&(10*2))
    In order to identify such formula, we have to actually evaluate it to see if it references the given cell. Especially such formula as OFFSET() and INDIRECT() may not be found by static parser because their parameters can be dynamic.
    Sorry to be the bearer of bad tidings.
    H

  • Is there a way to delete ALL of my music off of my iTunes/computer EXCEPT for the music that's on my iPod touch?

    I have old music that I have deleted from my iPod that I no longer wish to have on there, but it reappeared in my iTunes.
    All of the music on my iPod I want to keep, and one other CD I've gotten since then. Is there any way to delete everything (for good, this time) except for what's already on my iPod (and another CD, too, if possible?)

    I sounds like you restored the iPod to factory defaults/new iPod.  In iTunes on yur computer go to iTunes Preferences. click on he Ddvices tab.  If the date of the backup file indicate that it it has the history you can restore from that backup.

  • Is there a way I can 'select all' for downloading purchase files via family sharing instead of selecting each file or folder one at a time?

    Is there a way I can 'select all' for downloading purchase files via family sharing instead of selecting each file or folder one at a time?

    or home sharing

  • I can't get to download the app store after all the updates. I have version 10.6.8 and there are no more available updates for my operating system.

    I can't get to download the app store after all the updates. I have version 10.6.8 and there are no more available updates for my operating system.

    Look in the HD/Applications folder.

  • Where can I find Firefox 7.0 to install? Is there a link maintained where all the firefox releases are available for users

    Hello Team,
    Is there a link maintained where all the firefox release and its patch are available for users to download & install

    You can get Firefox 7 here
    * http://releases.mozilla.org/pub/mozilla.org/firefox/releases/7.0.1/
    buit its reccomend to use Firefox 8

  • Thanks all for the great advice.  Another question.  If I use Entourage on my desktop Mac to access an email address I use on there, is it possible to be able to access my email on that same email address on my iPad either with or without Entourage?

    Thanks all for the great advice.  Another question.  If I use Entourage on my Mac desktop to access my mail using an email address I have on there, is it possible to access my emails on that same email address on my iPad, either with or without using Entourage.  Is there an Entourage app, or something I could use?  Thanks...

    Simply add the email account to Mail, no need for Entourage.
    One word of warning, though, iPads tend to become community property (meaning anyone who uses your iPad can access your email). That is why I have zero email accounts on my iPad.
    I use Entourage on my desktop as well, so going back and forth between Entourage and Mail (whether on your iPad or iPhone) is no problem.

  • Please tell me how can I put Bookmarks for all pages opened in Firefox.There was an option ("bookmark all pages") which vanished.

    Please tell me how can I put Bookmarks for all pages opened in Firefox.There was an option ("bookmark all pages") which vanished.

    It moved to tab contextual menu :
    Right-click on any tab -> Mark all tabs (or something close, my FF is not in english).

  • I have downloaded an update for my ipod 4th, and after that all my songs, pictures and apps have been erased, Is there some way to recover all my information without have done a security copy?

    I have downloaded an update for my ipod 4th, and after that all my songs, pictures and apps have been erased, Is there some way to recover all my information without have done a security copy?

    I supsect you did the update on other than your syncing computer. If yu did the app, music and synced photo will not be on the iPod after the update since those items are not in the backup that iTunes makes. See:
    iOS 5: Updating your device to iOS 5
    The above applies to all updates performedvia USB on a computer. To get stuff back, restore from backup on the syncing computer.
    The above in my educated guess since you provided litle information about how you did the update.
    You can redownload many iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • There used to be a extension for Safari called "close all tabs". It is no longer on the extension list. Does anybody know why it was removed?

    There used to be a extension for Safari called "close all tabs". It is no longer on the extension list. Does anybody know why it was removed?

    Mr. Davis answer is essentially what that extension did.  I thank Mr. Davis for this answer as I was not aware of this method.  I only brought this up becasue in Lion there is a nasty habit of Safari opening all previous tabs that where not closed when shuting down the computer.  This can cause a long delay in opening Safari becasue of all the tabs opening up.  The "close all tabs" exstension stopped all this opening process.  I have to assume that Apple replaced the extension with the process that Mr. Davis describes, however, the extension was a lot faster. By the way, I have this extension still and I still use it. I just wanted to pass it on to some other users, but guess I will have to give up on that idea.

Maybe you are looking for

  • Is there a Lightning to thunderbolt adapter?

    Is there a Lightning to thunderbolt adapter?

  • Getting file name in ESB process

    Hi all, I have a simple requirement of transferring files from FTP location to SOA Server location i.e Reading it and writing it to the specified SOA directory. To acheive this, we are using Oracle ESB. (SOA Suite 10.1.3.4). This is working perfectly

  • Song is not available in Russian iTunes Store

    Why this song is not available in Russian iTunes Store?  https://itunes.apple.com/us/album/michael-jackson-beat-goes/id550164893

  • LaCie DVR compatible with Digital Audio?

    I'm looking for a FW DVD/CD burner that will be compatible with my G4 Digital Audio, 466 MHz. Requirements for the LaCie d2 DVD FW dual layer with LightScribe state 500 MHz. Will the drive work even though my speed is slightly slower? I would also li

  • F-22 Automatic Payment Transaction ( Payment Method )

    Hi we are not using Automatic payment transaction ( from customer ).  and not want to use it. Only for reporting purpose we are intended to use field (Lov)  Payment Method ( like cash, bank , DD etc ).  field. in transaction Incoming payment ( F-22)