Cannot lunch Java administration lunchpad

HI i have windows 2003 SP2 and Business Object release 2 install.
I am not the one who did the installlation and i notice that i am not able to lunch Java administration lunchpad. I receive a error:
The page cannot be found
HTTP Error 404 - File or directory not found.
Internet Information Services (IIS)
I have try to lower my IE security and now i get:
Internet Explorer cannot display the webpage
Is there any way to reinstall on my part or to correct the problem. the rest of the application is working fine.
fred

I have try:
http://<Server name>:8080/businessobjects/enterprise11/admin
http:// <Server name>:8080/businessobjects/enterprise11/desktoplaunch/
And receive the same error messasge.
You receive an error because you are using XI R2 and not XI.
The correct URL for AdminLaunchpad is
http://<Server name>:8080/businessobjects/enterprise115/adminlaunch/launchpad.html as I noted in my post above.
So, the URLs for CMC and Infoview would be:
http://<Server name>:8080/businessobjects/enterprise115/admin for CMC  and
http:// <Server name>:8080/businessobjects/enterprise115/desktoplaunch/ for Infoview

Similar Messages

  • ERROR:  - Cannot export - JAVA is not the current PSE provider!

    Hello Colleagues,
    in our SAP PI 7.31 Dual-Stack system we facing following error "ERROR:  -> Cannot export - JAVA is not the current PSE provider!" under Netweaver Administrator (NWA) -- > Certificates and Keys: Key Storage, if we executing button "Export View to PSE" for view "ICM_SSL_*".
    As by default for ABAP and Dual-Stack systems, profile parameter "ssl/pse_provider" is set to ABAP.
    How we are able to solve that issue?
    Many thanks in advance!
    Regards,
    Jochen

    Hello Mr. Schertel,
    I'm facing the same error in our system.
    Did you already solve the problem?
    Best Regards,
    Alexander Beck

  • Cannot locate Java class oracle.tip.adapter.db.DBWriteInteractionSpec

    I have created a BPEL process in which i have used DB Adapter when i try to deploy the soa suite coposite i am getting the following error.
    [09:36:10 PM] Error deploying archive sca_TicketBooking_rev1.0.jar to partition "default" on server soa_server1 [http://utl-7c8735e613f:8001]
    [09:36:10 PM] HTTP error code returned [500]
    [09:36:10 PM] Error message from server:
    There was an error deploying the composite on soa_server1: [JCABinding] [TicketBooking.TicketBooking/1.0]Unable to complete unload due to: Cannot locate Java class oracle.tip.adapter.db.DBWriteInteractionSpec: Cannot locate Java class oracle.tip.adapter.db.DBWriteInteractionSpec.
    [09:36:10 PM] Check server log for more details.
    [09:36:10 PM] Error deploying archive sca_TicketBooking_rev1.0.jar to partition "default" on server soa_server1 [http://utl-7c8735e613f:8001]
    [09:36:10 PM] #### Deployment incomplete. ####
    [09:36:10 PM] Error deploying archive file:/D:/Personal/OracleWork/RnDProjects/TicketBooking/TicketBooking/deploy/sca_TicketBooking_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)
    I already created the data source and JNDI Name in the DBAdapter but still getting the error while deploying the application.
    One mistake that i think i have made after creating the data source now the DBAdapter.rar file taking the path as follows.
    Source Path:     C:\ Oracle\ Middleware\ Oracle_SOA1\ soa\ connectors\ was\ DbAdapter. rar
    Deployment Plan: C:\ Oracle\ Middleware\ Oracle_SOA1\ soa\ connectors\ was\ Plan. xml
    initially the path was as follows:
    Source Path:     C:\ Oracle\ Middleware\ Oracle_SOA1\ soa\ connectors\ DbAdapter. rar
    Deployment Plan: C:\ Oracle\ Middleware\ Oracle_SOA1\ soa\ connectors\ Plan. xml
    Please help me i have googled a lot but can't find the answer anywhere.
    Thanks in advance

    Mate ,
    Just check the health status and state of DB Adapter in the deployments of WLAdminConsole.
    If its inactive , redeploy and update it ,also make sure its targeted to the right server.

  • Cannot launch Java Report Panel

    I would like to use the 'Advanced' Web Intelligence editor.
    Unfortunately, when I attempt to edit a WI report, I get a message that reads 'This software has already been installed on your computer.  Would you like to reinstall it?'
    If I allow the installation, Java 6, Update 3 is downloaded and installed.  I restart the browser.  Attempting to edit the WI report generates the installation message.
    If I don't allow the installation, I get an error that reads 'Cannot launch Java Report Panel, please make sure you have installed a Java virtual machine.'.
    It never gets out of this installation loop.
    At one point, the Advance editor worked, then something changed.
    The Java Control Panel indicates that I have JRE versions 1.6.0_03 and 1.6.0._20 installed (in the Java Applet Runtime Settings).  In addition, versions 1.4.2_04, 1.4.2_07, 1.4.2_12, and 1.6.0_03 are listed in the JNLP Runtime settings.
    Any assistance is greatly appreciated.
    Craig Buchanan

    I am having the same problem and I don't see an answer here.  I have uninstalled every instance of java and restarted my computer, then installed the one suggested here:  Cannot launch Java Report Panel, please make sure you have installed a Java virtual machine. (the Java Virtual Machine was a link).  Restarted again, tried again, same error. On the sun page, I tested my java installation and it works fine.  I have checked that java is enabled in both IE and Firefox and I still get this error in either browser.  I am using Windows XP.
    Upon comparing my computer with my coworker's java configurations, we found that she has a certificate called "Business Objects America" and I don't have that.  Could that be the problem, and if so, where can I get that certificate?  There was no active X question as I would have expected to see asking to run active X or not.  I can't find any certificate downloads on your site at all.
    Please advise ASAP because I need to use this Web Intelligence Reporting and I cannot get in.
    Thank you.

  • Cannot cast java.io.serialiazable to int Error

    Dear Members,
    I have procedure in AM which is as follows:
    public int countRecs(String headerID)
    int count=0;
    count= integer value assigned from SQL Query*
    return count;
    I am calling this procedure from the CO of the page as follows:
    String headerID="123"
    int     count=0;
    *Serialiazable para[]={headerID};*
    count=(int)am.invokeMethod("countRecs",headerID);
    When I am compiling my CO I am getting the below error:
    Cannot cast java.io.serialiazable to int
    Kindly please help me in resolving this error.
    Many thanks in advance.
    Best Regards,
    Arun Reddy D.

    the signature of the method you are invoking is
    public Serializable invokeMethod(String methodName,
    Serializable[] methodParams)
    so the return type is also serializable. so you should change your method signature accordingly
    public int countRecs(String headerID)
    int count=0;
    count= integer value assigned from SQL Query*
    return count;
    public String countRecs(String headerID)
    //just change last statement
    return ""+count;}
    your CO call should be
    count=(int)am.invokeMethod("countRecs",headerID);count = Integer.parseInt(am.invokeMethod("countRecs",para));
    so finally your count variable will hold an integer
    you may need to keep the above statement in try catch block
    Regards
    Ravi

  • SAP Web AS Java Administration Guide

    Hi,
    Can anybody give me fundamental tutorial related to  WebAS Java Administration.I am going to take training on Duet(SAPDUT) for this the fundas of WebAS Java Administration is must
    so can anybody guide me
    Thanks in advance

    Hi,
    You can refer the following pdf.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5c95f593-0701-0010-b3a1-8776da9bd85b
    Thanks
    R.Murali

  • JSPM ERROR- cannot add JAVA patches to deploy queue via JSPM

    Hi Experts! Last two days I have deployed java patches(SP13 to SP18).......almost finished......i have to deploy 2 more components only but suddenly i got error.now i cannot add java patches to JSPM deployment queue. am getting error '/usr/sap/BWP/DVEBMGS10/j2ee/JSPM/log/log_2009_07_22_23_41_20/JSPM_MAIN_1_01.LOG.' I have checked trouble ticket log and i have followed Snote-1329945 and changed instace.properties files  as instance.runmode=normal and just restarted java via SMICM only (server reboot is not possible in my environment)
    Trouble Ticket Report----
    Java Support Package Manager for SAP NetWeaver'04s
    SID................: BWP
    Hostname...........: abcbwp02
    Install directory..: /usr/sap/BWP
    Database...........: DB2/AIX64
    Operating System...: $(/J2EE/StandardSystem/CentralInstance/J2EEEngineInstanceHost/OpSysType)
    JDK version........: 1.4.2 IBM Corporation
    JSPM version.......: 7.00.18.1.01
    System release.....: 700
    ABAP stack present.: true
    The execution ended in error.
    Cannot initialize application data.
    Error while detecting start profile for instance with ID _s.
    More information can be found in the log file /usr/sap/BWP/DVEBMGS10/j2ee/JSPM/log/log_2009_07_22_23_41_20/JSPM_MAIN_1_01.LOG.
    Use the information provided to trouble-shoot the problem. There might be an OSS note providing a solution to this problem. Search for OSS notes with the following search terms:
    com.sap.sdt.jspm.phases.PhaseTypeJSPM/com.sap.sdt.jspm.gui.JspmUiException/Cannot initialize application data/JSPM_MAIN
    JSPMPhases/Java Support Package Manager
    log_2009_07_22_23_41_20 exception:
    #1.5 #C000C0A8D28F0000000000366BD46BD400046F4D35AF2008#1248277310677#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:795)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:795)#Java###Duration: .#1#0:00:10.915#
    #1.5 #C000C0A8D28F0000000000376BD46BD400046F4D35AF2008#1248277310677#/System/Server/Upgrade/Phases/JSPM/JSPMPhases/JSPM_MAIN##com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:796)#######Thread[main,5,main]##0#0#Info#1#com.sap.sdt.ucp.phases.AbstractPhaseType.cleanup(AbstractPhaseType.java:796)#Java###Phase status is .#1#error#
    Thanks.

    Hi,
    ABAP stack present.: true
    The execution ended in error.
    Cannot initialize application data.
    Error while detecting start profile for instance with ID _s.
    Looks like the problem is above 1
    Do the following. This should resolve the issues.
    1. If your dialog instance are also having the Java stack then do one thing move your profile folder to some other name and create a new profile folder with the name "profile".
    Copy only the central instance profiles Default, Instance and start profile.
    Then give a try.
    2. If you do not have the java instance in Dialog instance still do the same thing what I have described. move the current profile folder and create the new folder with the name "profile" and copy the profiles Default, Instance and start profile.
    Chances are the JSPM is reading some other profile while starting the JSPM.
    Regards,
    Ravi

  • Java-administrator password keeps getting locked

    Hi,
    We have a portal 7.3 in which the Java-administrator password keeps getting locked. I can't see anything in the log traces in NWA. The only thing I've found is in security_audit logfile which doesn't really say much:
    #2.0 #2014 07 17 05:47:03:913#+0200#Info#/System/Security/Audit/PrincipalModification#
    #BC-JAS-SEC-UME#com.sap.security.core.sda#C000AC142D1F08D90000000000003284#52888950000000002#tc~bl~txmanager~plb#com.sap.security.core.util.SecurityAudit#Guest#0#JTA Transaction : 127261#040FAA9B0D6511E4C5A4000003270576#040faa9b0d6511e4c5a4000003270576#040faa9b0d6511e4c5a4000003270576#0#Thread[RMI/IIOP Worker [0],5,Dedicated_Application_Thread]#Plain##
    User account modified    | USERACCOUNT.MODIFY    | UACC.PRIVATE_DATASOURCE.un:Administrator    |     | SET_ATTRIBUTE: islocked=[true], SET_ATTRIBUTE: lockreason=[1]#
    Please advice,
    Thanks.

    Hi,
    there exists a trace location that should provide useful information for such cases. It is described in SAP note:
    1493272 - A user gets locked automatically
    My suggestion is add the location com.sap.security.core.userlocking as
    specified in the attachment to the note and once it is added, set that
    location to DEBUG and wait for the user to be locked again. Hopefully additional information concerning the origin of the bad credentials will be written to traces.
    Exactly how you capture the traces depends on the frequency in which
    the user becomes locked. For example if the user becomes locked every
    few minutes, after adding the location in the configtool and
    restarting the system, I suggest using the Security Troubleshooting
    Wizard to do so. Refer to note 1332726 - Troubleshooting Wizard and
    its attachments. Create a custom incident that is a copy of the
    Authentication incident and add this location
    com.sap.security.core.userlocking  to the newly created incident
    Set the wizard to use this new incident for trace collection and wait
    for the user to become locked. Then immediately stop the wizard's
    trace collection
    I
    f the locking occurs less frequently than every few minutes, it is
    preferable to use the NWA to adjust the severity of these locations
    and their sublocations to DEBUG and wait for the issue to reoccur
    com.sap.security.core.userlocking
    com.sap.engine.interfaces.security
    com.sap.engine.services.httpserver.HttpTraceRequest.traceRaw
    com.sap.engine.services.httpserver.HttpTraceResponse.traceHeaders
    com.sap.engine.services.security.authentication
    com.sap.security.core.logon
    com.sap.security.core.ticket
    com.sap.security.core.util
    com.sap.security.core.server.jaas
    See Log Configuration with SAP NetWeaver Administrator
    http://help.sap.com/saphelp_nw73/helpdata/en/47/af551efa711503e10000000a42189c/content.htm
    Don't forgot to change these back to default severity levels after the
    issue has captured in the traces
    Regards,
    David

  • Netbeans 6.9.1 'cannot start java.exe'

    Hello,
    I've installed the JDK and then Netbeans 6.9.1 (Windows 7). When I try to run a JavaFX application, it fails ( saying 'cannot start java.exe' ).
    Just found [http://www.netbeans-forum.de/viewtopic.php?f=9&t=4220|http://www.netbeans-forum.de/viewtopic.php?f=9&t=4220]
    But locating the JDK on a different place ( using a path without whitespaces ) also didn't help.
    What could be the problem?
    thanks
    Edited by: Lichti on Sep 4, 2010 1:17 PM

    You can also specify which JDK Netbeans uses (as the default JDK and thus as the JDK used by the JavaFX module) by modifying netbeans_jdkhome in C:\Program Files\NetBeans 6.9.1\etc\netbeans.conf

  • I am trying to use screens and it keeps telling me it cannot detect Java even though I have installed and updated Java?  What might be the problem?

    I am trying to use "screenr" and it keeps telling me it cannot detect Java even though I have downloaded and updated Java?  What is going on or what might I do to correct this?
    Thanks

    Firefox needs 32-bit plugins, so you'll need to install 32-bit Java for Firefox.
    No, you can't change Firefox from 32-bt to 64-bit. There is a Nightly 64-bit version (alpha) of Firefox, but it is used only to test for regressions until development is resumed.

  • Cannot run java can anyone help??

    cannot run java, it says it is loaded but when I go to Pogo.com java is booted out. Can anyone help??

    have ur java software updated.

  • Cannot uninstall java 2sdk SE v1.4.0 from NT

    Cannot uninstall java 2sdk SE v1.4.0 from NT 4
    I had a problem during installation.
    I cannot desinstall it using add remove programms.
    I cannot install it again because it says it is already installed.
    I thing I have a problem with the registry.
    Does anybody knows the properly method to desinstall it ?
    Yhanks

    ok but... how do you uninstall this? I have the same pb

  • HT1338 i cannot run java with mountain lion

    i cannot run java with mountain lion

    @jnsmth
    I see Barney-15E made suggestions regarding Chrome preferences. There's also a setting on the Mac to deal with this. Regarding the drop-down menus not seeming to scroll through (such as a list of states)--where when you place or click your cursor over the drop-down menu and it only opens to some of the options in a list, I found that you have to change the scroll bar behavior in your computer's (and not the browser's) General Preferences within your System Preferences.
    Open System Preferences, and click on "General" inside the top row of "Personal Preferences" (as it is in my system with Mountain Lion, and I think prior operating systems before that).
    Once inside General Preferences, select the radio button option for your scroll bar which you'd like to use in the "Show scroll bar:" section ("Automatically based on mouse or trackpad," "When scrolling," or "Always." If you're using a mouse and not a trackpad, you'd probably want to select "Always" as it takes swiping over the drop-down list on the trackpad to enable (make visible) the scroll bar and/or scroll the list.
    Either with the installation of Mountain Lion, or the installation of my trackpad (I'm using a desktop iMac and not a Macbook / laptop) I found that the righthand scroll bars seem to automatically disappear. When I moused over or clicked on a drop-down menu (such as the list of states) I'd see only the first few options in the list. In order to access the rest of the states (get the list to scroll) you have to either have the scroll bar setting set to show "Always" or (if you have a trackpad) use the trackpad to swipe/scroll while hovering your cursor over the list's items to get it to scroll the list, and thus then show/reveal the lefthand scroll bar (which can then be accessed with your mouse if you prefer.
    This confused me at first when my scroll bars seemed to disappear, but was an easy fix.
    Hope that helps with that part of your issue.

  • CDR-17066 RON cannot find java EWT graphics classes

    Hello,
    I am evaluating Oracle SCM. Everything's going great, except I am unable to use the Version History or Version Events. When I try, I get an error:
    "CDR-17066: RON cannot find java EWT graphics classes"
    The action it recommends is to check the registry or environment variable JVM_CLASSPATH_RON, and make sure it points to the ewt jar.
    I found a jar called ewt3.jar in my oracle/jlib directory. There was no environmental variable called JVM_CLASSPATH_RON, so I created one and set it to that jar. But I'm still getting the same error.
    Any help would be appreciated. Thank you.

    Hi,
    this error message is rather strange: I checked in our knwoledge base, but you seem to be the first one having this issue!
    I had a look to my registry and indeed I couldn't find the variable JVM_CLASSPATH_RON.
    I suspect that this variable was superseded by another one (JVM_CLASSPATH_DEFAULT_THIN_JDBC ?).
    I checked for all variables including ewt and found the following:
    . FORMS90_CLASSPATH (<Home>\jlib\ewt3.jar)
    . FORMS90_BUILDER_CLASSPATH (<Home>\jlib\ewt3.jar)
    . JVM_CLASSPATH_DEFAULT_THIN_JDBC (<Home>\jlib\ewt4.jar)
    FORMS90_... variables are not used by the Version History and Version Event Viewers, but JVM_CLASSPATH_DEFAULT_THIN_JDBC is.
    I removed the entry <Home>\jlib\ewt4.jar from JVM_CLASSPATH_DEFAULT_THIN_JDBC, and then I could reproduce your issue.
    So could you check the content of this variable JVM_CLASSPATH_DEFAULT_THIN_JDBC?
    It's located in HKEY_LOCAL_MACHINE\SOFTWARE\Oracle\HOMEx\REPADM61\DEFAULT_JVM_PARAMS_THIN_JDBC
    Could you also check that file <Home>\jlib\ewt4.jar does exist on your machine?
    Regards,
    Didier.

  • Cannot locate Java class oracle.tip.adapter.jms.outbound.JmsProduceInteract

    Hi team ,
    I am trying to developing the JMS queue in BPEL. For it, i configure JMS adapter in BPEL. compilation done sucessfully.
    But during deployement , i am getting the following error.
    [12:21:06 PM] HTTP error code returned [500]
    [12:21:06 PM] Error message from server:
    There was an error deploying the composite on soa_server1: [JCABinding] [textmessageusingqueues.enqueue/1.0]Unable to complete unload due to: Cannot locate Java class oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec: Cannot locate Java class oracle.tip.adapter.jms.outbound.JmsProduceInteractionSpec.
    So please resolve my problem.
    Regards
    Narsi p

    Mate ,
    Just check the health status and state of DB Adapter in the deployments of WLAdminConsole.
    If its inactive , redeploy and update it ,also make sure its targeted to the right server.

Maybe you are looking for

  • Problem in Creating a Business Partner Role

    Hi Frns, I am trying to create a BP Role from CAC->SAP Business Partner->Business Partner->Business partner Roles->Define BP Roles. I copied BUP003 and given my BP Role name as ZEmp. When i try to save it, it is giving an error message saying "NO STA

  • Video is not captured in Applet under redhat linux.

    Hi! uname -a Linux 2.6.9-5.EL #1 Wed Jan 5 19:22:18 EST 2005 i686 i686 i386 GNU/Linux and whenever i m running my code for start and stop the webcam, i m finding a error/exception as: javax.media.NotRealizedError: Cannot get visual component on an un

  • Rfc(Syn)- BPM- JDBC connection breaks for job in 2Hrs

    Hi All, I have a scenario Rfc(Syn)->BPM->JDBC. Problem i am facing is after 2Hr of execution of scenario. SAP & XI connectivity breaks down. But to process full data it requires 5-6Hr connectivity because store procedures taking time(for 500 records)

  • [solved] classCastException BigDecimal Oracle ADF BC

    Hi, I am using JDeveloper 10.1.3.3 and ADF BC to persist some data in an Oracle 10g database. On the db-side we are using a package to perform insert, update and delete-actions. Therefore I implemented ch26.4 from the userguide (Basing an Entity Obje

  • Log file creation using km api

    Hi, how to create log file using km api . please provide me if any sample code available. Thanks and Regards, Nari.