Is mx4j-admb.jar required if using another JMX implementation?

In Appendix F, the documentation states that neither mx4j-jmx.jar nor
mx4j-tools.jar are required if using another JMX implementation. However,
I'm wondering if mx4j-admb.jar also is not required if using another JMX
implementation. Could someone clarify this?
Thanks.
;ted

Hi Ted,
It depends on what version of Kodo you're using. Older versions (pre
Kodo 3.2.0) do still require the mx4j-admb.jar. Newer than 3.2.0 do not
require any mx4j-* jars to work with other JMX implementations.
Thanks,
Greg
Ted M. Young wrote:
In Appendix F, the documentation states that neither mx4j-jmx.jar nor
mx4j-tools.jar are required if using another JMX implementation. However,
I'm wondering if mx4j-admb.jar also is not required if using another JMX
implementation. Could someone clarify this?
Thanks.
;ted

Similar Messages

  • Firefox is currently my default browser, but my work requires I use another. How can I change the pref?

    My work situation requires that I change my default setting so Firefox is not the default browser. Is this possible, via a preferences file, e.g., or do I need to uninstall Firefox (which I want to use for other things)? I have been through every help file available here.

    Every browser has the ability to make itself the default. For example, if you have IE8 and want to make IE8 the default, here are the steps: http://windows.microsoft.com/en-us/windows-vista/change-internet-explorer-programs-settings (ignore the Vista in the URL)

  • How to determine the JDK version required to use a jar?

    Hi all.
    I am using a hosted server that uses JDK 1.4.2 and I cannot upgrade the VM. I have been finding it extremely difficult to install web applications on this server since I find that after installing the app, the web server complains the bytecode used in the jar is newer than the VM can understand (or it complains that the app uses JEE servlet or JSP methods it cannot find).
    To compound the problem, only about 25% of the sites I've visited that provide jars for download mention the minumum JDK version required to use them. (Some do not mention any system requirements at all besides 'requires Java and a Java application server').
    Do any of you know of any tools that can analyze a jar and determine the bytecode version it uses?
    (Another helpful tool would be one that can determine the minimum JEE APIs required to run a web app..., but that's probably wishful thinking :)).
    Thanks for your help.
    Michael N. Christoff

    The major/minor version of the class file is the way to go.
    Also, it's not necessary to write a separate program to get to those. javap prints them out when being passed the -v flag.
    Note, however that "JDK version" is not a correct term, as I can create 1.4-compatible class files with a Java 6 JDK (by passing the -target flag to javac). Those won't look any different than .class files written with a 1.4 JDK.

  • How to use another java program to stop this running prpgram???

    Dear Sir:
    I have following code and I run it success,
    import java.util.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.*;
    public class CertainAndRepeatTime{
      public static void main(String[] args) throws IOException{
        int delay = 1;
        Timer timer = new Timer();
        ActionListener actionListener = new ActionListener() {
            public void actionPerformed(ActionEvent actionEvent) {
              System.out.println("Hello World Timer");
        System.out.println("What do you want (Certain time or Repeat time)?");
        System.out.print("Please enter \'C\' or \'R\' for that: ");
        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
        String ans = in.readLine();
        System.out.print("Please enter  ans=" + ans  + " IsTrue=  " + (ans.equals("R") || ans.equals("r")) +"\n");
        if (ans.equals("C") || ans.equals("c")){
          //System.out.println("This line is printed only once start...");
          timer.schedule(new TimerTask(){
            public void run(){
              System.out.println("This line is printed only once.");
          },delay,1);
        else if(ans.equals("r") || ans.equals("R")){
            timer.scheduleAtFixedRate(new TimerTask(){
              public void run(){
                System.out.println("This line is printed repeatedly.");
            },delay, 1000);
          while(true){
               //System.out.println("Charles print This line is printed repeatedly.");          
          } //This will make your main thread hang.
        else{
          System.out.println("Invalid Entry.");
          System.exit(0);
        System.exit(0);
    }But I hope to use another java program to stop it when it is running instead of pressing CRTL + C to stop it.
    How to do it??
    Any example??
    Thanks a lot!!

    Sorry, I think i did not express cearly. It is my fault.
    I re-write my requirements again:
    I have
    Class AAA1.java,
    Class AAA2.java,
    Class AAA3.java,
    Class AAA20.java...
    etc
    they all look like the program I posted first time,, once executed, they will run for ever, and they will be stopped until I press CRTL + C;
    Now I hope to use another java class StopProgram.java to stop them 1 by 1 or at once instead of pressing CRTL + C;
    In this case, how to code this StopProgram.java ??
    Thanks

  • Can I buy final pro using a Mac in one State and then install it in other State using another Mac?

    Can I buy final cut pro x , using  my mac and then install it in other State using another Mac?

    Yes, as long as both Macs meet the system requirements for it.
    (112783)

  • What Jars are being used

    I have a big problem with the number of jars currently being used within my application.
    Is there a way of working out what jars are needed and which are not??
    Regards
    Jai

    I am interested in this as well. I have "jpa.jar" which I removed from my Eclipse build path and no errors. But it may have interfaces/classes that are referenced from other JARs in my WAR. How do I determine if any types in jpa.jar are being currently used so I can determine if it needs to be included in the WAR build or not?
    I tried [http://depfind.sourceforge.net/|http://depfind.sourceforge.net/] but it finds which JAR the type is in. I need to find references to a class from another class and tell me which JAR that's referenced. thx.

  • How to solve error c1190 : MFC requires to use Winsock2.h ?

    in the name of allah
    hi everyone
    i work with visual C++ 2008 and i'm a project that contains the c and c++ code together.
    the project worked correctly but when i add a .cpp and a .h file to the project, the project
    errors the c1189 : MFC requires to use winsock2.h
    look the codes in the .cpp and .h files are correctly because when i add these files to another mfc project will work,
    but when add to my project this error will happen.
    can you tell me what the problem is?
    first part of the my .h file is like below :
    #pragma once
    #ifdef _WINDOWS_
    #undef _WINDOWS_
    #endif
    #include <Afx.h>
    #include <afxwin.h>
    #include <atlimage.h>
    #include <math.h>
    in addition i need to use the CWnd and CString and CImage ,... Classes in my project, because of this include the afxwin.h(for CWnd) and atlimage.h(for CImage) and ....
    so i have to do these, don't i?
    remaining part of .h file is :
    class Object{
    public:
        CImage Image;
        short int x,y;
    class Theme : public CWnd{
    private:
    protected:
        virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
    public:
        CWnd  *Parent;
        CPoint cursor;
        bool drag;
        CString path,imagepath;
        char DialogMove;//0==top to center - 1==center to top - 2==center to down - 3==down to center
        char code,sb;//code = 0=main page - sb=show button=1=ascedung,-1=desceding;
        short int iimage,bstart,bend,//i = index of images-b = index of buttons
        ib;//ib=index of button for clicking and do code
        short int w, h,D;
        float ani_p, ani_max;
        bool ani,mousec;
        CRect WRect,rdesktop;
        CDC *cdc;
        short int lani;
        HWND hwndani;
        Object *Image;
        CRect *Rect;
        bool *BEnable;//enable of buttons-1 = enable
        unsigned char ButtonCount,ImageCount,SysButtonCount;
        bool Transparent;
        int EndMsg;//0=WM_CLOSE        1=PostMessage(IDOK)
        void GotoPage(unsigned char PageNo,unsigned char BStart,unsigned char BEnd);
        void ClearRect(short i,short j,COLORREF color);
        bool IsIn(CPoint point,CRect rect);
        bool IsInRect(CPoint point,CRect rect,CRect Rectangle);
        void Center2Top(int);
        void Top2Center();
        void Down2Center();
        void Center2Down();
        bool AddImage(unsigned char Index,CString ImagePath,unsigned short int X,short int Y);
        void AddButton(unsigned char Index,CRect rectangle,bool enable);
        void DrawImages(unsigned char alpha,int IImage);
        //Theme(unsigned char imagecount,unsigned char buttoncount,unsigned char sysbuttoncount);
        void Init(unsigned char imagecount,unsigned char buttoncount,unsigned char sysbuttoncount);
        ~Theme(void);
        bool CreateTheme(CRect rect,CWnd *parent,unsigned short int W,unsigned short int H,bool transparent);
        afx_msg void OnPaint();
        afx_msg void OnTimer(UINT_PTR nIDEvent);
        afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
        afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
        DECLARE_MESSAGE_MAP()
    after that
    in my .cpp file i wrote the body of functions.
    so where the problem is?
    thanks alot
    thanks

    How did you created your solution is it a MFC app or Win32 App . make sure that From Project Properties Use of MFC is set to Use MFC in a Shared Dll.
    Thanks
    Rupesh Shukla

  • Scp works when logging with my user id but fails when using another one

    Hello all:
    I wrote a script that uses scp to transfer specific local files to a server. The script takes the user id and password and pass them as scp's parameters for authentication.
    Everything works fine when I uses my own user id to test the script but it fails when I used another id (with ligitimate password) to do the same thing.
    I suspect it's a privilege issue. Both ids belong to the same group. Where should I look to fingure this out?
    Thanks,
    John

    SCP is part of SSH. SSH requires the exchange of authorization keys to prevent man-in-the-middle attacks.
    When you log in the first time you may see a prompt like:
    RSA key fingerprint is 98:2e:d7:e0:de:9f:ac:67:28:d2:42:2e:37:16:58:45.
    Are you sure you want to continue connecting (yes/no)?
    This might be where your script fails. Since it prompts only the first time, you may just have to do one interactive SSH login to create an entry in ~/.ssh/known_hosts
    Or setup User equivalence to omit the exchange of passwords.
    You may find the following interesting:
    Oracle Linux 5 Howto: Installing and using cURL with support for SCP and SFTP
    OL5 Howto: Installing and using cURL with support for SCP and SFTP
    see 3) Set up SSH user equivalence for SCP and SFTP

  • Jars Required for UDF creation in Eclipse?

    HI @,
    What are all the jars required to create UDF in eclipse and how to test this external to the XI
    Regards

    Hi,
    Use the NWDS to create the UDF and import it. By this u need not worry about the jar files because every jar files is available in NWDS.
    Steps:
    --> Create an Java class using IDE and archive the file
    --> Upload the archived file into XI in IMPORTEDARCHIEVES of Integeration Repository
    --> These uploaded functions can be used in the Mapping Editor as UDF.
    Regards
    Santhosh
    Remember to set the thread to solved when you have received a solution

  • Jar file downloaded using FTP gets damaged

    Hi people, Am working on a solution that implements an auto update of an application developed using Java. I am using Apache commons package for downloading the updated JAR file from an FTP site. Once I have the new JAR file on my local machine, I double click it and I get the following error. Invalid or corrupt jarfile C:\FIDS\FIDS.jar When I use a different FTP client to download my JAR file, the file works well when double clicked. What could be happening on my JAR file. Thanks and regards.

    tdulce_aboo wrote:
    I know that FTP is not the best solution, however, sometimes we are bound by what the client has in place.I know, it wasn't trying to attack you, it was just a general rant. FTP is so common and when it's the only thing available you obviously have to use it. I just don't understand those who actively enable it on their server and suggest (or even require) its use.
    What is your suggestion,that I use http? or ?That depends on what it's used for.
    My normal one-stop replacement would be SFTP: based on SSH, secure, authenticated, tunnelable, uses a single connection, doesn't do stupid "translations" of the transfered data, ...

  • Thank you for your service.   I was most disappointed to find, however, that the letters I really wanted (Adobe Garamond Alternate Caps) is not in this collection and indeed, one now has to use another fancy designing program to construct those letters. I

    Thank you for your service.
    I was most disappointed to find, however, that the letters I really wanted (Adobe Garamond Alternate Caps) is not in this collection and indeed, one now has to use another fancy designing program to construct those letters. I can’t afford to buy Photoshop just to construct two special capital letters. I’ve used the B and M in my logo for Balquhidder Music for years - but from jpgs - and I was hoping to have more flexibility in the future. I spent $169 to make sure I am in compliance. But I didn’t get anything of use to me.
    I can’t understand why those Alternate Caps are not part of this - or any other package. I thought Adobe was capable of amazing things.
    I assume I am whistling in the dark. So have a nice day.

    Actually, when Adobe moved from Type 1 fonts to OpenType CFF fonts, all the so-called “expert typefaces” were consolidated into the base fonts. In other words Adobe Garamond Pro Regular not only has the Western Latin characters of the original Type 1 version of Adobe Garamond, but also has alternate Latin capitals (with titling, titling floating accents, and stylistic alternates), alternate Latin lowercase (swash and superiors), Latin small capitals (alphabetic and floating accents), ligatures, multiple numeric forms (including lining tabular, lining proportional, oldstyle tabular, oldstyle proportional, superscripts, scientific inferior, numerator, denominator forms, fractions, mathematical operators, etc.) plus a raft of other special symbols.
    OpenType fonts are Unicode-based and allow for more than the 256 characters in Type 1 fonts which required multiple typefaces all with mappings to a standard keyboard to accommodate all these glyphs.
    Thus, hopefully your disappointment will turn to joy.
    To assist you in understanding OpenType fonts and to show you what is in the current Adobe Garamond fonts, I have attached a few PDF files for your perusal.
    Let us know if you have any questions.
               - Dov

  • IPhone 4 does not notify me of a text message while I am using another app

    What gives?? I have not changed any settings on my iPhone but I recently noticed that when I am actively using another app (any app from social networking to games, etc.) my phone does not vibrate/ring/otherwise notify me that I have received a text. The only way I can tell if I have received a text is if I exit an app, then scroll over to my messages and see if there is an icon to show that I have a new message. How can I fix this? When I am not using my iPhone for anything else, my text message notifications work fine. Thanks for your help!

    Nope, text messages are set to alert style, none of these settings has changed. Like I said, it's only an intermittent problem that happens while I am using another app or mail or Safari or whatever. Strangely enough, when I am using a music app (Pandora, etc.) that does not require me to actively use it (for example, I am listening to music but the lock screen is on, and when I unlock I'm just on my home screen... I do get text alerts. This is so weird and such a pain!

  • Use Another Tray Configuration Options

    Hello, I have a M775z configured to use another tray, so if one A4 tray is empty, the printer will take paper from another A4 tray. Is there an option to specify which trays this applies to? Say I have A4 paper with the company logo in Tray 2 and white A4 paper in Tray 3 and Tray 4. Is there the option to specify that the printer should only autoselect from Tray 3 and 4 for A4 jobs and don't consider Tray 2? Thanks Florian

    Print requests usually select the required tray using a combination of Paper Size and Paper Type (with tray selection set to Printer Auto-Select), rather than selecting a specific tray via its identifier. Configure the printer so that it knows there are different Paper Types in the different 'sets' of trays. For example, type = Letterhead for tray 2, and type = Plain for trays 3 and 4.  

  • Jar doesn't recognize another jar

    Hi I packed my java class and additional files into a jar file, using the eclipse.
    The class I packed uses another jar file. it works fine.
    the problem is with my new jar that I created, since it doesn't recognize the other jar that the class uses and can't use it,
    Although I included the other jar in my class path in the eclipse.
    i don't know how to make that the new jar will know the other jar.
    thanks.

    gimbal2 wrote:
    ...Jar files have their own classpath that you cannot override. ...Since you have provided the correct strategy to pursue in this instance, I will simply point out (OP please stop reading ..now!) that it is possible to side step the default behaviour of the -jar option by not including that option when starting an app.
    E.G.
    prompt:java -jar main.jar
    NoClassDefFoundError Other.class
    prompt:java -cp main.jar;other.jar com.our.main
    Other.class processing..

  • Could i use another database

    Im wondering if i can use another database for the workflow engine. I mean it comes with a database managment by default i want to know if a can use another one (SQL server)

    Hi,
    We have been using jtds driver , which is free and the fastest and without any bugs until now, we have been using it for 4 months now.
    The part below explain how to set up your mssql server with jtds driver.
    create a db lets call is bpel
    then run these queries on it. basically to create the tables, these files are
    domain_sqlserver.ddl
    server_sqlserver.ddl
    workflow_sqlserver.sql
    sensor_sqlserver.sql
    located at
    /OraBPELPM_1/integration/orabpel/system/database/scripts
    After that download the jtds driver for sql server.
    We do not use the microsofts jdbc driver for mssql, although we have tried it.
    It doesnt work properly, with the bpel process manager, basically it has some problem with select image and blob types from DB.
    Anyways, the best one we found was for jtds, it works great and is the fastest I beleive.
    We used data direct's jdbc driver but its not free and after doing some benchmark tests we found jtds was the fastest.
    mkdir -p jdbc/jTDS/unzip
    cd jdbc/jTDS/unzip
    download the jtds-1.2-dist.zip from
    wget http://surfnet.dl.sourceforge.net/sourceforge/jtds/jtds-1.2-dist.zip
    unzip jtds-1.2-dist.zip
    cd unzip
    cp jtds-1.2.jar OraHome_1/integration/orabpel/system/appserver/oc4j/j2ee/home/applib/
    You will now have to configure MsSQL in your data-sources.xml file.
    Microsoft SQL Server Database Configuration
    Oracle Bpel now needs to be configured to use Microsoft SQL Server, using the JDBC drivers.
    cd OraHome_1/integration/orabpel/system/appserver/oc4j/j2ee/home/config/
    vi data-sources.xml
    You must then place the following xml within the file:
    <data-source class="net.sourceforge.jtds.jdbcx.JtdsDataSource"
    name="BPELServerDataSource"
    location="jdbc/BPELServerDataSourceWorkflow"
    xa-location="BPELServerDataSource"
    ejb-location="jdbc/BPELServerDataSource"
    connection-driver="net.sourceforge.jtds.jdbc.Driver"
    username="BPEL_user"
    password="bpeluser!">
    <property name="serverName" value="server_name"/>
    <property name="databaseName" value="database_name"/>
    <property name="portNumber" value="1433"/>
    </data-source>
    <data-source class="net.sourceforge.jtds.jdbcx.JtdsDataSource"
    name="AdminConsoleDateSource"
    location="jdbc/AdminConsoleDateSource"
    xa-location="AdminConsoleDateSource"
    ejb-location="jdbc/AdminConsoleDateSource"
    connection-driver="net.sourceforge.jtds.jdbc.Driver"
    username="user_name"
    password="password">
    <property name="serverName" value="server_name"/>
    <property name="databaseName" value="database_name"/>
    <property name="portNumber" value="1433"/>
    </data-source>
    <data-source class="net.sourceforge.jtds.jdbcx.JtdsDataSource"
    name="BPELSamplesDataSource"
    location="jdbc/BPELSamplesDataSource"
    xa-location="BPELSamplesDataSource"
    ejb-location="jdbc/BPELSamplesDataSource"
    connection-driver="net.sourceforge.jtds.jdbc.Driver"
    username="user_name"
    password="password">
    <property name="serverName" value="server_name"/>
    <property name="databaseName" value="database_name"/>
    <property name="portNumber" value="1433"/>
    </data-source>
    Run the BPEL server and everything should work fine.

Maybe you are looking for