BO XI R2 Java Admin - how to accss this

I don't find "All Programs  ->  Business Objects  XI R2 -> Business Objects Enterprise -> Business Objects Enterprise Java Admin".
I suspect some how it got removed.
Could you tell me how to access this? the full URL
http://<servername>/.....
I don't see see "Java admin"

http://yourservernamehere:8080/businessobjects/enterprise115/adminlaunch/launchpad.html

Similar Messages

  • Java applet - how to do this?

    I am translating a Midlet project to JApplet project. Microedition, UDPDatagramConnection, not available and lots more. How can tune this for JavaSE?
    // code..........
    package sip;
    import javax.swing.JApplet;
    import javax.microedition.io.*;
    //import javax.microedition.midlet.*;
    //import javax.microedition.lcdui.*;
    import java.io.*;
    import net.*;
    import iax.audio.*;
    //import iax.audio.gsm.*;
    //import rtp.*;
    public class InviteMIDlet extends JApplet implements CommandListener, SIPProviderListener {
    // Vaiables to assign
    private Display display;
    public Form form;
    private TextField To;
    private Command sendCmd;
    private Command exitCmd;
    private Command hangupCmd;
    public int sdpPort = 0;
    private UDPDatagramConnection rtpCon = null;
    private boolean incall = false;
    // Sip Digest parameters
    private String UserName = "";
    private String passwd = "123";
    private String SipServerIP = "212.";
    private int SipServerPort = 5060;
    // Sip parameters
    private SIPProvider provider;
    private String MediaIP = null;
    private int MediaPort = 0;
    // Thread assign
    private UDPSend udpSend;
    private UDPReceive udpReceive;
    private AudioCapture audioCapture;
    private AudioPlayer audioPlayer;
    // End of Thread assign
    // Main midlet parameters
    public InviteMIDlet() {
    form = new Form("SIP Dialer");
    try {
    display = Display.getDisplay(this);
    To = new TextField("To:", "0012127773456", 40, TextField.LAYOUT_LEFT);
    form.append(To);
    sendCmd = new Command("Call", Command.ITEM, 1);
    form.addCommand(sendCmd);
    hangupCmd = new Command("Hangup", Command.ITEM, 2);
    form.addCommand(hangupCmd);
    exitCmd = new Command("Exit", Command.EXIT, 3);
    form.addCommand(exitCmd);
    form.setCommandListener(this);
    rtpCon = (*UDPDatagramConnection*) Connector.open("datagram://:");
    sdpPort = rtpCon.getLocalPort();
    provider = new SIPProvider(UserName,passwd,SipServerIP, SipServerPort, 1225);
    provider.start();
    provider.addSIPProviderListener(this);
    } catch (Exception ex1) {
    ex1.printStackTrace();
    }

    shamuntoha wrote:
    UDPDatagramConnection is available under MIDP/Midlet. But after migration to j2se, it shows microedition does not exist. What is that mean?.. None of the J2ME (or JME - I forget what they're calling it this instant) classes are available in J2SE ((J)Applets, (J)Frames etc.).
    Usually there is a J2SE equivalent. The JavaDocs for J2SE are available for download, or for web browsing at [http://java.sun.com/javase/6/docs/api/index.html]. I say usually since I can find no letter for letter equivalent of UDPDatagramConnection in the J2SE. There are a variety of classes that mention Datagram. Perhaps if you start there, you will figure how to do what J2ME does.
    ..i want to switch the same code, concept, in to j2se.
    rtpCon = (UDPDatagramConnection) Connector.open("datagram://:");
    sdpPort = rtpCon.getLocalPort();BTW - the advice to use code tags still stands. Most people will not so much as glance at code that is not formatted. After all, which is easier to read, this..
    rtpCon = (UDPDatagramConnection) Connector.open("datagram://:");
    sdpPort = rtpCon.getLocalPort();
    ..or this?
    rtpCon = (UDPDatagramConnection) Connector.open("datagram://:");
    sdpPort = rtpCon.getLocalPort();

  • Error message: "Java Script turned off, Enable Java Script" How to do this? I have gone into "Tools--then Options--Then checked Java Script--Then the "OK/Save" Button but this has not helped. What is the right course of action?

    Java Script is disabled on my HP laptop. I have done the obvious things. It still will not enable Java Script. What do I try next?

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Creating Web Service from Java Class-How to eliminate nillable="true"

    Does anyone know how to eliminate the attribute, nillable="true", from the element tags which describe the parameters in the WSDL created when creating a web service from a Java Class? It does this only for the string types. Is there something I need to set when creating the web service or before creating the web service? Or the only way is to modify this WSDL then recreate the web service from the WSDL.
    example part of wsdl:
    this is in the <types> tag:
    <complexType name="getData">
    <sequence>
    <element name="schema" type="string" nillable="true"/>
    <element name="table_or_view_name" type="string" nillable="true"/>
    </sequence>
    </complexType>
    <complexType name="getDataResponse">
    <sequence>
    <element name="result" type="string" nillable="true"/>
    </sequence>
    </complexType>

    I did do this and I got the following error when deploying to the Stand-alone OC4j:
    Operation failed with error:
    Error compiling
    :D:\h\cots\Oracle\JDeveloper10g10.1.3\j2ee\home\applications\DBOperationsWSApp-DBData-WS\WebServices: Error instantiating compiler: webservice artifact generation failed :oracle.j2ee.ws.common.tools.api.ValidationException : Exception declaration mismatch between Implementation: dbdatapackage.DBDataOperations and Interface: dbdatapackage.DBDataWS. Impl class Method: getData declares exceptions not declared by the interface (java.lang.Exception)
    I am quite sure what it is saying. It generated the code for the Interface: dbdatapackage.DVDataWS. Impl class. Why would it not do it right? What expection is it complaining about? java.lang.Exception?

  • How to solve this error java.util.MissingResourceException

    Hi Friends,
    I had developed one web dynpro application by using  Internationalization - I18N of WebDynPro (Java)  Application (Blog)   but I got one error that is
    <b>java.util.MissingResourceException: Can't find bundle for base name com.sap.example.language.lang, locale en_US</b> 
    Actually i created two properties file
    1. lang_en.properties
    2. lang_ta.properties
    I stored this two properties file in this package com.sap.example.language
    and this my code in DOInit()
    sessionLocale =  WDClientUser.getCurrentUser().getLocale();
    resourceHandler = ResourceBundle.getBundle("com.sap.example.language.lang",sessionLocale);
         catch (WDUMException e)
         e.printStackTrace();
         wdContext.currentContextElement().setUsername_label(resourceHandler.getString("testview.username"));
         wdContext.currentContextElement().setPassword_label(resourceHandler.getString("testview.password"));
    How to solve this error?
    Guide me.
    Advance Thanks,
    Balaji

    Hi Friends,
    I had developed one web dynpro application by using Internationalization - I18N of WebDynPro -Java Application (Blog) but I got one error that is
    <b>java.util.MissingResourceException: Can't find bundle for base name com.sap.example.language.lang, locale en_US</b>
    Actually i created two properties file
    1. lang_en.properties
    2. lang_ta.properties
    I stored this two properties file in this package com.sap.example.language
    and this my code in DOInit()
    sessionLocale = WDClientUser.getCurrentUser().getLocale();
    resourceHandler = ResourceBundle.getBundle("com.sap.example.language.lang",sessionLocale);
    catch (WDUMException e)
    e.printStackTrace();
    wdContext.currentContextElement().setUsername_label(resourceHandler.getString("testview.username"));
    wdContext.currentContextElement().setPassword_label(resourceHandler.getString("testview.password"));
    How to solve this error?
    Guide me.
    Advance Thanks,
    Balaji

  • Simple Java Question - How to Overwrite Set

    After working so much in Java, wondering how do i overwrite java.util.Set
    My pojo is Set of associated object. For example
    class Parent
    private Set child = new HashSet(0);
    public Set getChild() {
    return this.child;
    I wanna overwrite set of child objects in pojo with the set passed from UI tier
    Any pointers/suggestions will be highly appreciated
    Regards
    Bansi

    public void setChild(Set child) { this.child = child; }or if you need more control over the Set instance:
    public void setChild(Set child)
        this.child.clear();
        this.child.addAll(child);
    }

  • A Java application how to pass Microsoft OEM Ready program?

    Hello,
    I have a Java application that needs to pass OEM Ready program, but it fails on AppVerifier item. The error messages are:
    "Freeing memory block inside current thread's stack address range."
    "First chance access violation for current stack trace."
    These errors are occurred by JVM. Anybody understands a Java application how to pass AppVerifier? Thanks in
    advance.
    p.s. The Java application is only a simple "Hello World" program.
    p.s. I also test many popular Java applications (such as JBuilder/NetBeans), they
    also cannot pass AppVerifier.
    p.s. The OEM Ready Program web site: http://msdn.microsoft.com/en-us/windowsvista/cc315067.aspx

    One small update. These errors are reported by AppVerifier tool. But the origin of the errors seems to be coming from JNI Calls. Basically AppVerifier is a runtime verification tool and helps in monitoring an application's interaction with OS, the registry, the file system,heap, handles, locks, and more and reports the errors found.
    And when I check my application ( which interacts with few .jar files using JNI calls ) with AppVerifier, it is reporting the errors, upon debugging I found the source of the errors to be the JNI calls. Any idea about the reasons and fix for these errors.
    I thank you in advance.

  • What is the use vss in java and how to use it?

    can i know what is vss in java and how to use it and also can you tell me related vss like svs?
    and what are tools for configuration in real we will use?
    am i student i want to know these all?

    jduprez wrote:
    You do not need to know them all, but one for sure, since it is a must for multi-developer team.8o( ?????
    It is a must. Period.
    OK, let's tone down: it is a must for any job related to software production. Not only development.That begsl the question, What does it mean to "know" one of these systems? I would expect Product Management, Documentation, QA, and Support staff to be conversant with the fundamentals of such a tool--check in, check out, version/revision numbers--but not much more than that. Developers, on the other hand, I would generally expect "know" the system with a much higher level of expertise--query language, branching, merging, and so on.

  • We have a requirement to print the w2 forms for employees using java application, how can i implement this. Please give some suggestion.

    We have a requirement to print the w2 forms for employees using java application, how can i implement this. Please give some suggestion.

    Anyone any ideas to help please?

  • Monitoring windows services from JavaI Know how to

    I know how to start and stop services in java, but how can I see if a process is already stared or is starting?
    Thx

    You'll need to make a call to a suitable Windows program using Runtime or ProcessBuilder methods, or use JNI (Java Native Interface.) From Wikipedia:
    (JNI) is a programming framework that allows Java code running in the Java virtual machine (JVM)
    to call and be called[1] by native applications (programs specific to a hardware and operating system
    platform) and libraries written in other languages, such as C, C++ and assembly.

  • Through a java prog how to execute a unix script ?

    Hi !! I am a Java Developer . I have to work in Unix and Java in combination. Can you plz suggest me a solution for the below queries --
    1. Through a java prog how to execute a unix script.
    2. How to send the o/p of the script to a java prog so that it can be used in the java program to the prupose of display etc..

    Try this
    Process process = Runtime.getRuntime().exec("ps -ef");//write Your command here
                   InputStream in = process.getInputStream();
                   BufferedReader bufReader = new BufferedReader(new InputStreamReader(in));
                   String data=null;
                   while((data = bufReader.readLine())!=null)
                        System.out.println(data);   //do whatever you want to do with the output

  • STILL NOT SOLVED. So...What Is Going On With Java And How Do I Update It?

    So...I checked my plugins this morning, and it said both my Java platform and my Java Deployment Toolkit needed updating. However, I click Update, and the link does not lead me to a download page. Plus, when I try to verify my Java version on the Java page, it says that I have the recommended Java installed (and so do other sites that run on Java). How do I update these things so that everything is up to date?
    Screenshots for further info:
    http://oi50.tinypic.com/15d87ly.jpg (the plugin checker status)
    http://oi47.tinypic.com/35jk0ub.jpg (What the "Update" link leads to)
    http://oi46.tinypic.com/34yz7kk.jpg (The verification)

    '''ponyparty''',
    <s>The x86 package is for 32-bit Windows - WinXP, Vista, and Win7.</s> <br />
    <s>The x64 is for 64-bit versions of Windows - XP, Vista, and Win7.</s>
    <sub>'''EDIT:''' You need the x86 package (32-bit version of Java) on both 32-bit and 64-bit Windows to use the Java plugin for Firefox, which is a 32-bit browser. The X64 64-bit Java is only needed for 64-bit browsers, if you use one. Ref: http://kb.mozillazine.org/Java#Java_downloads aw</sub>
    The JDK version is for Developers, you want the '''JRE''' version. The Development Toolkit plugin comes with both versions, but that plugin is really only needed by people developing for Java.
    As far as '''if''' you should update right now, my answer is '''NO'''. From what I am reading the U10 version is messed up and is not installing the Firefox required U10 plugin. Not sure if Oracle didn't update it for Firefox, or if some users are missing the registry key needed for Firefox to locate the new plugin.

  • Failed on Java CI add-in installation with Java Admin Account Create

    I've installed an ABAP stack and it works smoothly. Java Central Instance Service(add-in) and Java Database Instance(add-in) are both installed successfully. When I install Java Central Instance(Add-in), I get an error when system asks me to input passwords of Java admin accounts. I use same password for all sap account, eg. james123, but in this step, I input same password, the screen does not change to the next.
    I paste error info below for reference.
    =====================
    =======sapinst.log======
    =====================
    WARNING 2008-08-06 20:08:01
    Execution of the command "/tmp/sapinst_instdir/ERP/LM/AS-JAVA/ADDIN/DB6/DISTRIBUTED/CI/install/jlaunch UserCheck.jlaunch com.sap.security.tools.UserCheck /tmp/sapinst_instdir/ERP/LM/AS-JAVA/ADDIN/DB6/DISTRIBUTED/CI/install/lib:/tmp/sapinst_instdir/ERP/LM/AS-JAVA/ADDIN/DB6/DISTRIBUTED/CI/install/sharedlib:/tmp/sapinst_instdir/ERP/LM/AS-JAVA/ADDIN/DB6/DISTRIBUTED/CI/install -c sysnr=00 -c ashost=eccdev -c client=001 -c user=DDIC -c XXXXXX -a checkBeforeCreate -u J2EE_ADMIN -p XXXXXX -r SAP_J2EE_ADMIN -message_file UserCheck.message" finished with return code 2. Output:
    java.lang.ClassNotFoundException: com.sap.security.tools.UserCheck
         at com.sap.engine.offline.FileClassLoader.findClass(FileClassLoader.java:691)
         at com.sap.engine.offline.FileClassLoader.loadClass(FileClassLoader.java:600)
         at com.sap.engine.offline.FileClassLoader.loadClass(FileClassLoader.java:578)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:79)
    Please advise. Thanks so much.
    James

    Hi
    I still got the problem.
    Here is some more details
    1. "Central Instance Java Add-in" installation.
    2. The step is "ABAP UME" (Enter the J2EE engine user passwords). System ask user to enter password of administrator user, password of communication user, and password for SDM.
    I enter a password like james123, it does not go to next screen. then I try to input other passwords, it does not go to next screen either.  Does password cause the problem? What's the rule of password? And what's the return code 2 in below log file?
    Here is the information which I can find out in file sapinst_dev.log.
    ==================sapinst_dev.log=====================
    WARNING    2008-08-07 07:13:10
               CJSlibModule::writeWarning_impl()
    Execution of the command "/tmp/sapinst_instdir/ERP/LM/AS-JAVA/ADDIN/DB6/DISTRIBUTED/CI/install/jlaunch UserCheck.jlaunch com.sap.security.tools.UserCheck /tmp/sapinst_instdir/ERP/LM/AS-JAVA/ADDIN/DB6/DISTRIBUTED/CI/install/lib:/tmp/sapinst_instdir/ERP/LM/AS-JAVA/ADDIN/DB6/DISTRIBUTED/CI/install/sharedlib:/tmp/sapinst_instdir/ERP/LM/AS-JAVA/ADDIN/DB6/DISTRIBUTED/CI/install -c sysnr=00 -c ashost=eccdev -c client=001 -c user=DDIC -c XXXXXX -a checkBeforeCreate -u J2EE_ADMIN -p XXXXXX -r SAP_J2EE_ADMIN -message_file UserCheck.message" finished with return code 2. Output:
    java.lang.ClassNotFoundException: com.sap.security.tools.UserCheck
         at com.sap.engine.offline.FileClassLoader.findClass(FileClassLoader.java:691)
         at com.sap.engine.offline.FileClassLoader.loadClass(FileClassLoader.java:600)
         at com.sap.engine.offline.FileClassLoader.loadClass(FileClassLoader.java:578)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:79)
    Please advise. thanks so much
    James

  • Java class how to load a JavaFX class?

    I want to start a JavaFX application from a Java class,how can implement it?
    Thank you so much!

    I want to start a JavaFX application from a Java class,how can implement it?
    Thank you so much!

  • Java.lang.illegalaaccesserror  : How to resolve this error?

    Hi All,
    Following is the stack trace i'm getting when I'm running the application.
    <i>java.lang.IllegalAccessError: tried to access method com.bp.ngl.cust.bwmodel.BWModel.wdGetStaticMetadataCache()Lcom/sap/tc/webdynpro/modelimpl/dynamicrfc/DynamicRFCModel$MetadataCache; from class com.bp.ngl.cust.bwmodel.Zy_Search_Supp_Reports_Bw_Input
    </i>
    Well can someone tell me how is that this error is getting generated? What it means by accessing method ?
    Well Here i'm using the mentioned BAPI and for that i've created input of type.
    Zy_Search_Supp_Reports_Bw_Input  input = new Zy_Search_Supp_Reports_Bw_Input ();
    And stack trace indicates this line also.
    Can somebody help me with this?
    Thanks in advance
    Srikant

    Hi Patrick
    The interface is not changed and also the note no. as suggested by the Nagarajan is also not helpful. I would like to know what kind of illegal access i'm trying to do as nothing it is specifying in the Stack trace.
    Following is the stack trace:
    <i>
    java.lang.IllegalAccessError: tried to access method com.bp.ngl.cust.bwmodel.BWModel.wdGetStaticMetadataCache()Lcom/sap/tc/webdynpro/modelimpl/dynamicrfc/DynamicRFCModel$MetadataCache; from class com.bp.ngl.cust.bwmodel.Zy_Search_Supp_Reports_Bw_Input
        at com.bp.ngl.cust.bwmodel.Zy_Search_Supp_Reports_Bw_Input.<init>(Zy_Search_Supp_Reports_Bw_Input.java:51)
        at com.bp.ngl.custsupp.FindReportComp.<init>(FindReportComp.java:433)
        at com.bp.ngl.custsupp.wdp.InternalFindReportComp.<init>(InternalFindReportComp.java:447)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    </i>
    Thanks
    Srikant

Maybe you are looking for

  • Cannot send email on LTE with IPhone 6  and IOS 8.1

    Since I got my iPhone 6+ and upgraded the operating system to IOS 8.2, I have been unable to send email unless I am on WIFI. If I am on AT&T LTE 4G, when I hit the "SEND" button, I get this pop-up box: "Unable to Send Email / A copy has been placed i

  • How can I change the "Ask to join new networks" option using a terminal command?

    We are currently switching to a new wireless network throughout our school district and I have pushed commands to connect to the new and remove the old. However, any Macs that have "Ask to join new networks" enabled are jumping over to our unsecure g

  • How to split a string into alfa-numerics and numerics ?

    Thru I/O Assistant.vi I queried a GPIB frequency synthesizer and get a string " FRq99999.999999Hz " ( this is a micro Herz synthesizer and the query shows the correct value ). The "9"'s are alfanumerics as well as the " FRq " and the " Hz ". Thru a s

  • Saml ecp, azure ad IDP supports?

    does the azure AD IDP support SAML ECP?

  • Scroll to the bottom

    Hey im writing simple chat app for school and I have such problem I have a list that displays messages and I would like to make it scroll to bottom every time someone sends msg. also im using flex 4 thanks in addition