Urgent! http listener not started with services

Hi,
I installed oracle 9i on my win2k, and it runs fine when I started manually with the ${ORA_HOME}\j2ee\Oracle9iDS\startinst.bat.
I then try to registrate it as services with this command: rwserver -install rep_mypcname autostart=yes
It registrated successfully and I save it is started automatically, I also saw an icon (smart agent) on my right hand bottom taskbar.
But when I tested it via http://localhost:8888/reports/
It can't find the server, and obviously no http listener is up.
All my config are default, here is my rwservlet.properties:
SERVER_IN_PROCESS=YES
Also there is no log files generated in ${ORA_HOME}\j2ee\Oracle9iDS\log\ when it is started as service, but if it is started from command line by using "startinst.bat", some log files are generated.
Am I missing some steps?
Thanks.
David

David,
Script startinst.bat starts the OC4J instance, not the Reports Server. When you send request to http://<server>:<port>/reports/rwservlet, it will startup an in-process Reports Server if it has not been started.
The command you run:
rwserver -install rep_mypcname autostart=yes
only install Reports Server as a service. It has nothing to do with OC4J instance, which you will still need to startup yourself. That's why http server is not up.
The difference is that if the Reports Server is up, after you start up OC4J, the in-process server will no longer need to be started.
-Jeff

Similar Messages

  • After BI install SIA and Tomcat could not start with service account.

    Hi BO Gurus,
    I want to install BO child node (Expand the parent install)
    Client IT prepared a system with MS Server 2012 with Windows 8 as OS, and assigned a Service Account for me.
    I gave service account following permissions -
    Act as a part of operating system
    log on as a batch
    log on as a service
    After this I rebooted the system and logged in with Service Account credentials. Started the installer, performed custom/expand install.
    the install was successful.
    When I opened CCM, both Tomcat and SIA are running under 'localsystem' account.
    I want them to run under service account --> i sopped SIA and changed credentials in 'Log on as' box under SIA properties.--> Click on 'apply' and 'OK'
    When I go on and start SIA I get following error -
    ' The Service did not start due to log on failure'.
    The same service account runs services on 3 other BO boxes including parent node of the above install and 2 other DS boxes and everything apart from this machine works exactly fine.
    Please help!
    Thanks,
    Maitreyee

    Maitreyee,
          BI 4.x Platform will NOT work on Desktop OS like Windows 7 / 8.x / 8.1, it required 64bit Server Operating system.   See attached screenshot.
    Regards,
    Ajay

  • Error: response does not start with HTTP

    hi,
    i am using a MIDP class to send a string to a java servlet which then returns a .gif image. the string is being successfully to the servlet, but an exception is being thrown when the image is being sent back.
    java.io.IOException: response does not start with HTTP it starts with: GIF89aï4
    at com.sun.midp.io.j2me.http.Protocol.readResponseMessage(Protocol.java:2166)
    at com.sun.midp.io.j2me.http.Protocol.finishRequestGetResponseHeader(Protocol.java:1934)
    at com.sun.midp.io.j2me.http.Protocol.sendRequest(Protocol.java:1598)
    at com.sun.midp.io.j2me.http.Protocol.sendRequest(Protocol.java:1517)
    at com.sun.midp.io.j2me.http.Protocol.openInputStream(Protocol.java:484)
    my code is as follows in the midp class :
    HttpConnection c = null;
    InputStream is = null;
    StringBuffer sb = new StringBuffer();
    String url="http://localhost:8090/ProjectServer/createMap";
    url=url+"?Source="+src+"&Destination="+dest;
    try {
    c = (HttpConnection)Connector.open(url,Connector.READ_WRITE, true);
    c.setRequestMethod(HttpConnection.GET); //default
    //is = c.openDataInputStream();
    is = new DataInputStream(c.openInputStream()); //openInputStream(); // transition to connected!
    Image im=null;
    try
    ByteArrayOutputStream bStrm = new ByteArrayOutputStream();
    int ch;
    while ((ch = is.read()) != -1)
    bStrm.write(ch);
    // Place into image array
    byte imageData[] = bStrm.toByteArray();
    // Create the image from the byte array
    im = Image.createImage(imageData, 0, imageData.length);
    finally
    // Clean up
    if (is != null)
    is.close();
    the code in the servlet is as follows :_
    ServletContext sc = getServletContext();
    // Get the MIME type of the image
    String mimeType = sc.getMimeType("route.gif");
    if (mimeType == null) {
    sc.log("Could not get MIME type ");
    response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
    return;
    // Set content type
    response.setContentType(mimeType);
    // Set content size
    response.setContentLength((int)file.length());
    // Open the file and output streams
    FileInputStream in = new FileInputStream(file);
    OutputStream outstream = response.getOutputStream();
    // Copy the contents of the file to the output stream
    byte[] buf = new byte[1024];
    int count = 0;
    while ((count = in.read(buf)) >= 0) {
    outstream.write(buf, 0, count);
    in.close();
    outstream.close();
    il be immensely grateful if some1 cud tell me whre i am gng wrong.
    thnx,
    nev

    Hi, I�m trying to do the same as above, get MP3 from a Shoutcast server.
    I got the same fault ("response does not start with HTTP it starts with: ICY") when I tried to open an HttpConnection as bellow:
    ============================================
    HttpConnection conn = (HttpConnection) Connector.open("http://64.236.34.196/stream/1074");
    Then I tried to open a socket connection as bellow:
    ======================================
    SocketConnection conn = (SocketConnection) Connector.open("socket://64.236.34.196:80");
    String get = "GET /stream/1074 HTTP/1.1";
    DataOutputStream os = conn.openDataOutputStream();
    os.writeUTF(get);
    InputStream is = conn.openInputStream();
    But then I got the following error:
    =========================
    java.lang.SecurityException: Target port denied to untrusted applications
    Could someone help me to find out what is going on?
    Thanks a lot!

  • Path login does not start with a "/" character

    I get a "java.lang.RuntimeException: Path login does not start with a "/" character" in my WebApplication.
    - Http Status 500
    - The server encountered an internal error () that prevented it from fulfilling this request.
    Instead I excepted the site for a Re-Login (timout after 10 min), What's wrong?
    The server I use is: Sun Java System Application Server Platform Edition 8.0 (build b57-fcs)
    Here is the full StackTrace:
    [#|2004-05-26T14:50:50.609+0200|SCHWERWIEGEND|sun-appserver-pe8.0|javax.enterprise.system.container.web|_ThreadID=17;|Standard
    WrapperValve[OwaFolderTree]: Servlet.service() for servlet OwaFolderTree threw exception
    java.lang.RuntimeException: Path login does not start with a "/" character
    at org.apache.catalina.core.ApplicationContextFacade.doPrivileged(ApplicationContextFacade.java:451)
    at org.apache.catalina.core.ApplicationContextFacade.getRequestDispatcher(ApplicationContextFacade.java:255)
    at com.space2go.icafe.S2GHttpServlet.service(S2GHttpServlet.java:3260)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:861)
    at sun.reflect.GeneratedMethodAccessor114.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:289)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:500)
    at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:311)
    at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:205)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:283)
    at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:102)
    at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:192)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:261)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:215)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:200)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:180)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
    at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:582)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
    at com.sun.enterprise.webservice.EjbWebServiceValve.invoke(EjbWebServiceValve.java:134)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
    at com.sun.enterprise.security.web.SingleSignOn.invoke(SingleSignOn.java:272)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
    at com.sun.enterprise.web.VirtualServerValve.invoke(VirtualServerValve.java:209)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:161)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:156)
    at com.sun.enterprise.web.VirtualServerMappingValve.invoke(VirtualServerMappingValve.java:166)
    at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:154)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:569)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:979)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:211)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:692)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:647)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:589)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:691)
    at java.lang.Thread.run(Thread.java:534)

    It looks like you are getting this error when trying to use the RequestDispatcher. There are two different flavors of the RequestDispatcher :ServletRequest.getRequestDispatcher that will take a relative path and ServletContext.getRequestDispatcher that will only take absolute paths (ie start with a '/').
    If yoy are trying the use the second version of RequestDispatcher you'll need to adjust the path to an absolute path.
    http://java.sun.com/products/servlet/2.3/javadoc/javax/servlet/ServletContext.html

  • Hi, Im from Philippines,.... i am currently using my iPhone 4 (iOs.6.3)it  started when i upgrade it from iOs4 to iOs 6.3 , My iPhone doesnt identify numbers even if its in my contact if its not starting with  +63 ..what will i do?

    Hi, Im from Philippines,.... i am currently using my iPhone 4 (iOs.6.3)it  started when i upgrade it from iOs4 to iOs 6.3 , My iPhone doesnt identify numbers even if its in my contact if its not starting with  +63 ..what will i do?
    I change everything into +63 and i thought everything is already fine,.. and then now , i dont know what happened why it doesnt recognize numbers with +63 anymore

    Hello hsielglad,
    Thank you for your question. iTunes 11.1 is required to update to and sync with iOS 7.  If you are still running iTunes 10.6.3, I recommend trying to obtain the update by going to the iTunes menu and selecting Check for Updates.
    iTunes: How to install the latest version
    http://support.apple.com/kb/HT5654
    If you continue to get the message that iTunes is up to date, you can download the latest version of iTunes here:
    Download iTunes
    http://www.apple.com/itunes/download/
    Once the file downloads, double click on the installation file that downloaded to initiate the installation.
    Best,
    Sheila M.

  • A name should not start with any special characters

    I need to put a condition in iF statement such that a name that is given by the user should not start with any special charecters.A dialog box should display indicating this conditon.Can u plz give sample code for this.My code is as below.
    //text box for giving the name
    JTextFeild ReportNameText;
    //the name is stored in String
    String name=ReportNameText.getText();
    //Here tell me how the if condition should be written
    //condition to be mentioned

    Already asked, and answered, here: http://forum.java.sun.com/thread.jspa?threadID=727919
    See reply 4 in that thread, and scsi-boy's suggestion of writing another
    method to check for "special" characters. And the links to the String
    and Character API documentation given.

  • Managed server is not starting with MSI mode

    Managed server not starting with MSI mode even though we enabled the managed server independence mode
    Started the admin server and managed server first time enabled the MSI mode.
    Restarted all admin and Managed server.
    We have tested the following scenarios
    scenarios1: Stopped the Admin server and restarted the Managed server with MSI mode it comes up.
    scenarios2:Admin server is running but not able to connect to the managed server
    In this scenario
    we have removed the Network cable and restarted the managed server its throwing ldap error.
    <Aug 14, 2010 1:58:32 PM SGT> <Error> <Security> <BEA-090870> <The realm "myrealm" failed to be loaded: weblogic.security.service.SecurityServiceException: com.bea.common.engine.ServiceInitializationException: weblogic.security.spi.ProviderInitializationException: [Security:090730]Failed to verify credential mapper LDAP hierarchy
    netscape.ldap.LDAPException: failed to connect to server ldap://sgppsr00383:16827 (91)
    at netscape.ldap.LDAPConnSetupMgr.connectServer(LDAPConnSetupMgr.java:515)
    at netscape.ldap.LDAPConnSetupMgr.openSerial(LDAPConnSetupMgr.java:435) at netscape.ldap.LDAPConnSetupMgr.connect(LDAPConnSetupMgr.java:274)
    at netscape.ldap.LDAPConnSetupMgr.openConnection(LDAPConnSetupMgr.java:199)
    at netscape.ldap.LDAPConnThread.connect(LDAPConnThread.java:109)
    at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:1083) at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:954)
    at netscape.ldap.LDAPConnection.connect(LDAPConnection.java:781)
    at weblogic.ldap.EmbeddedLDAPConnection.getAndInitDelegate(EmbeddedLDAPConnection.java:2031)
    at weblogic.ldap.EmbeddedLDAPConnection.add(EmbeddedLDAPConnection.java:1065) at weblogic.security.providers.credentials.DefaultCredentialMapperLDAPHelper.addEntry(DefaultCredentialMapperLDAPHelper.java:537)
    at weblogic.security.providers.credentials.DefaultCredentialMapperLDAPHelper.createOrgUnit(DefaultCredentialMapperLDAPHelper.java:432)
    at weblogic.security.providers.credentials.DefaultCredentialMapperLDAPHelper.verifyHierarchy(DefaultCredentialMapperLDAPHelper.java:407)
    at weblogic.security.providers.credentials.DefaultCredentialMapperLDAPHelper.<init>(DefaultCredentialMapperLDAPHelper.java:146) at weblogic.security.providers.credentials.DefaultCredentialMapperLDAPHelper.getInstance(DefaultCredentialMapperLDAPHelper.java:112)
    at weblogic.security.providers.credentials.DefaultCredentialMapperProviderImpl.initialize(DefaultCredentialMapperProviderImpl.java:93)
    at com.bea.common.security.internal.legacy.service.SecurityProviderImpl.init(SecurityProviderImpl.java:53)
    at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:340) at com.bea.common.engine.internal.ServiceEngineImpl.findOrStartService(ServiceEngineImpl.java:292)
    at com.bea.common.engine.internal.ServiceEngineImpl.lookupService(ServiceEngineImpl.java:263)
    at com.bea.common.engine.internal.ServicesImpl.getService(ServicesImpl.java:71)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealm(CommonSecurityServiceManagerDelegateImpl.java:461) at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadRealm(CommonSecurityServiceManagerDelegateImpl.java:822)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initializeRealms(CommonSecurityServiceManagerDelegateImpl.java:851)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1007)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:854) at weblogic.security.SecurityService.start(SecurityService.java:141)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209) at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    - with nested exception:
    Managed server looking for ldap configuration from admin server.
    I have checked the all configuration file same on both managed server and admin server.
    Please let me know How to recover the managed server in this scenario.
    Edited by: user10773210 on Aug 16, 2010 11:55 PM
    Edited by: user10773210 on Aug 17, 2010 2:38 AM

    thanks for the reply....
    the managed server is pointing to jrokit_160_22_D1.1.1-3 jdk....the server has enough ram also...while running the managed server showing status 'STARTING' for long period of time...and the admin server health goes 'Warning' because of threadpool....when we stop the managed server then adminserver health becomes ok...

  • FNDFS Listener not starting after patching

    12.1.3
    redhat 4.8
    DB 11.2.0.1
    We recently did patching on our R12 system. The system is online, however the concurrent managers are not working due to the APPS_NPCP listener not starting. When attempting to start FNDFS this is the error we get. This was a working system prior to applying the patches. I can provide a list of patches if needed. There were just under 30 of them I believe. The majority of them were in doc # 437878.1
    [applnpcp@ahdsedstws16 apps_backup]$ adalnctl.sh start
    adalnctl.sh version 120.3
    Checking for FNDFS executable.
    Starting listener process APPS_NPCP.
    adalnctl.sh: exiting with status 1
    <============From adalnctl.txt logfile =================>
    Error listening on: (ADDRESS=(PROTOCOL=TCP)(Host=ebusr12)(Port=1636))
    TNS-12533: TNS:illegal ADDRESS parameters
    TNS-12560: TNS:protocol adapter error
      TNS-00503: Illegal ADDRESS parameters
    Listener failed to start. See the error message(s) above...
    09/10/13-13:52:41 :: adalnctl.sh: exiting with status 1
    <======================end=======================>
    Nothing really should have changed in the context file or in how the tnsnames.ora is generated, looking at the file it appears correct. What else can I check as to why this won't start anymore?

    Where the patches applied to the correct ORACLE_HOME?
    Have you verified the contents of listener.ora and tnsnames.ora file under $TNS_ADMIN directory? Running AutoConfig should usually fix those files (assuming it completes successfully and you have proper entry in the /etc/hosts file and your FND_NODES table entries are correct).
    How to get a clean Autoconfig Environment ? (Doc ID 391406.1)
    Thanks,
    Hussein

  • Could not start SQL services (Plz help me)

    I logged in windows with an administrator account, but I could not start sql services. Here is the newest log file, please help me to fix it. Thank in advanced.
    2014-10-02 16:17:49.06 Server      Microsoft SQL Server 2005 - 9.00.1399.06 (Intel X86) 
    Oct 14 2005 00:33:37 
    Copyright (c) 1988-2005 Microsoft Corporation
    Developer Edition on Windows NT 5.1 (Build 2600: Service Pack 3)
    2014-10-02 16:17:49.06 Server      (c) 2005 Microsoft Corporation.
    2014-10-02 16:17:49.06 Server      All rights reserved.
    2014-10-02 16:17:49.06 Server      Server process ID is 3888.
    2014-10-02 16:17:49.06 Server      Logging SQL Server messages in file 'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\ERRORLOG'.
    2014-10-02 16:17:49.06 Server      This instance of SQL Server last reported using a process ID of 1104 at 10/2/2014 4:07:13 PM (local) 10/2/2014 9:07:13 AM (UTC). This is an informational message only; no user action is required.
    2014-10-02 16:17:49.06 Server      Registry startup parameters:
    2014-10-02 16:17:49.06 Server      
    -d C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\master.mdf
    2014-10-02 16:17:49.06 Server      
    -e C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\ERRORLOG
    2014-10-02 16:17:49.06 Server      
    -l C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\mastlog.ldf
    2014-10-02 16:17:49.07 Server      SQL Server is starting at normal priority base (=7). This is an informational message only. No user action is required.
    2014-10-02 16:17:49.07 Server      Detected 2 CPUs. This is an informational message; no user action is required.
    2014-10-02 16:17:49.71 Server      Using dynamic lock allocation.  Initial allocation of 2500 Lock blocks and 5000 Lock Owner blocks per node.  This is an informational message only.  No user action is required.
    --The Anh--

    Hello,
    Can you tell us the status of the issue ? If you have found answer please post here so that it can help other members when needed. If You found answer in this thread please mark answer to the post and close the thread
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Articles

  • WLS not starting with SP3

    I believe I've followed the installation instructions for SP3. However I
    get the error below when trying to start WLS (from the command line using
    'wlserver.exe'). I've added weblogic510sp3boot.jar to the beginning of
    CLASSPATH and have added weblogic510sp3.jar to the beginning of the WL
    classpath (using wlconfig).
    Any ideas what is going on?
    Thanks,
    Mike
    The WebLogic Server did not start up properly.
    Exception raised: java.lang.reflect.InvocationTargetException
    java.lang.reflect.InvocationTargetException: java.lang.NoSuchMethodError:
    weblog
    ic.boot.ServerClassLoader: method
    getClassLoadNotify()Lweblogic/boot/ClassLoadNo
    tify; not found
    at
    weblogic.utils.classloaders.GenericClassLoader.<init>(GenericClassLoa
    der.java:140)
    at
    weblogic.utils.classloaders.GenericClassLoader.<init>(GenericClassLoa
    der.java:112)
    at
    weblogic.utils.classloaders.GenericClassLoader.<init>(GenericClassLoa
    der.java:104)
    at
    weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader.<init>
    (RecursiveReloadOnModifyClassLoader.java:53)
    at
    weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader$Single
    Slave.<init>(RecursiveReloadOnModifyClassLoader.java:149)
    at
    weblogic.servlet.internal.ServletContextImpl.setClassLoader(ServletCo
    ntextImpl.java:1392)
    at
    weblogic.servlet.internal.ServletContextImpl.<init>(ServletContextImp
    l.java:516)
    at weblogic.t3.srvr.HttpServer.initServletContexts(HttpServer.java,
    Comp
    iled Code)
    at weblogic.t3.srvr.HttpServer.start(HttpServer.java:442)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    at weblogic.NTServiceHelper.run(NTServiceHelper.java:19)
    at java.lang.Thread.run(Thread.java:479)
    java.lang.NoSuchMethodError: weblogic.boot.ServerClassLoader: method
    getClassLoa
    dNotify()Lweblogic/boot/ClassLoadNotify; not found
    at
    weblogic.utils.classloaders.GenericClassLoader.<init>(GenericClassLoa
    der.java:140)
    at
    weblogic.utils.classloaders.GenericClassLoader.<init>(GenericClassLoa
    der.java:112)
    at
    weblogic.utils.classloaders.GenericClassLoader.<init>(GenericClassLoa
    der.java:104)
    at
    weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader.<init>
    (RecursiveReloadOnModifyClassLoader.java:53)
    at
    weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader$Single
    Slave.<init>(RecursiveReloadOnModifyClassLoader.java:149)
    at
    weblogic.servlet.internal.ServletContextImpl.setClassLoader(ServletCo
    ntextImpl.java:1392)
    at
    weblogic.servlet.internal.ServletContextImpl.<init>(ServletContextImp
    l.java:516)
    at weblogic.t3.srvr.HttpServer.initServletContexts(HttpServer.java,
    Comp
    iled Code)
    at weblogic.t3.srvr.HttpServer.start(HttpServer.java:442)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    at weblogic.NTServiceHelper.run(NTServiceHelper.java:19)
    at java.lang.Thread.run(Thread.java:479)
    WebLogic Server terminated with an abnormal condition of 1

    I believe these should be in the weblogic.class.path, not here:
    D:\weblogic\classes;D:\weblogic\lib\weblogicaux.jar;D:\webl
    og
    ic\myserver\clientclasses;D:\weblogic\myserver\serverclasseshttp://www.weblogic.com/docs51/install/startserver.html#1029223
    Thanks,
    Michael
    "John J. Thomas" wrote:
    >
    Mike,
    I'm getting the same error and I can't seem to figure it out?
    JT
    Mike DiChiappari wrote:
    Before anyone reponds that boot.jar is not in the classpath, here is my
    classpath (as printed from the command prompt). I start WLS from the
    command
    line (by typing "wlserver") after typing "setenv.cmd", which sets the
    classpath shown below.
    CLASSPATH=d:\weblogic\lib\weblogic510sp3boot.jar;d:\jdk1.2.2\lib\tools.jar;D
    weblogic\license;D:\weblogic\classes;D:\weblogic\lib\weblogicaux.jar;D:\webl
    og
    ic\myserver\clientclasses;D:\weblogic\myserver\serverclasses
    Mike
    -----Original Message-----
    From: Mike DiChiappari <[email protected]>
    Newsgroups: weblogic.support.install
    Date: Sunday, June 18, 2000 9:17 PM
    Subject: WLS not starting with SP3
    I believe I've followed the installation instructions for SP3. However I
    get the error below when trying to start WLS (from the command line using
    'wlserver.exe'). I've added weblogic510sp3boot.jar to the beginning of
    CLASSPATH and have added weblogic510sp3.jar to the beginning of the WL
    classpath (using wlconfig).
    Any ideas what is going on?
    Thanks,
    Mike
    The WebLogic Server did not start up properly.
    Exception raised: java.lang.reflect.InvocationTargetException
    java.lang.reflect.InvocationTargetException: java.lang.NoSuchMethodError:
    weblog
    ic.boot.ServerClassLoader: method
    getClassLoadNotify()Lweblogic/boot/ClassLoadNo
    tify; not found
    at
    weblogic.utils.classloaders.GenericClassLoader.<init>(GenericClassLoa
    der.java:140)
    at
    weblogic.utils.classloaders.GenericClassLoader.<init>(GenericClassLoa
    der.java:112)
    at
    weblogic.utils.classloaders.GenericClassLoader.<init>(GenericClassLoa
    der.java:104)
    at
    weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader.<init>
    (RecursiveReloadOnModifyClassLoader.java:53)
    at
    weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader$Single
    Slave.<init>(RecursiveReloadOnModifyClassLoader.java:149)
    at
    weblogic.servlet.internal.ServletContextImpl.setClassLoader(ServletCo
    ntextImpl.java:1392)
    at
    weblogic.servlet.internal.ServletContextImpl.<init>(ServletContextImp
    l.java:516)
    at weblogic.t3.srvr.HttpServer.initServletContexts(HttpServer.java,
    Comp
    iled Code)
    at weblogic.t3.srvr.HttpServer.start(HttpServer.java:442)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    at weblogic.NTServiceHelper.run(NTServiceHelper.java:19)
    at java.lang.Thread.run(Thread.java:479)
    java.lang.NoSuchMethodError: weblogic.boot.ServerClassLoader: method
    getClassLoa
    dNotify()Lweblogic/boot/ClassLoadNotify; not found
    at
    weblogic.utils.classloaders.GenericClassLoader.<init>(GenericClassLoa
    der.java:140)
    at
    weblogic.utils.classloaders.GenericClassLoader.<init>(GenericClassLoa
    der.java:112)
    at
    weblogic.utils.classloaders.GenericClassLoader.<init>(GenericClassLoa
    der.java:104)
    at
    weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader.<init>
    (RecursiveReloadOnModifyClassLoader.java:53)
    at
    weblogic.utils.classloaders.RecursiveReloadOnModifyClassLoader$Single
    Slave.<init>(RecursiveReloadOnModifyClassLoader.java:149)
    at
    weblogic.servlet.internal.ServletContextImpl.setClassLoader(ServletCo
    ntextImpl.java:1392)
    at
    weblogic.servlet.internal.ServletContextImpl.<init>(ServletContextImp
    l.java:516)
    at weblogic.t3.srvr.HttpServer.initServletContexts(HttpServer.java,
    Comp
    iled Code)
    at weblogic.t3.srvr.HttpServer.start(HttpServer.java:442)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:825)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    at weblogic.NTServiceHelper.run(NTServiceHelper.java:19)
    at java.lang.Thread.run(Thread.java:479)
    WebLogic Server terminated with an abnormal condition of 1
    Thanks,
    Michael
    -- BEA WebLogic is hiring!
    Check our website: http://www.bea.com/

  • HT6117 Error : Can not start the service "Apple Mobile Device"

    I get this error message of Can not start the service "Apple Mobile Device" please verify if you have enough permission to start a service. I have tried reinstalling itunes but could not get rid of the error. I use Win 7 64bit OS. Please help me to resolve the issue
    Thanks
    Venky

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Could not start instance service of Instance - Solman 7.1 & Sybase

    Dear All,
    Greetings!!
    We are in the process of installing Solman 7.1 with Sybase ASE 15.7 on SUSE Linux 11 SP03. During phase 50 we are getting an error like "Could not start instance service of Instance". I have attached the Error and the Inst_Dev.log screenshot for your reference.
    Please help us with some suggestion or solution at the earliest.
    Thanks,
    Ela

    Hi Chatur,
    Thanks for your reply. The issue had been resolved.
    Yes, /usr/sap/ASM/ASCS/exe was empty actually & we copied the Kernel files to this directory & retired again & its working fine now.
    Thanks again.
    Regards,
    Ela

  • HT1883 I am trying to run a hardware test. The Computer will not start with the "D" key held?

    I am trying to run a hardware test. The Computer will not start with the "D" key held?

    If you are using a Blutooth keyboard, don't hold the "D" key until the keyboard is recognised (green light)
    Running AHT in Lion
    http://support.apple.com/kb/PH4510

  • Property List error: Unexpected character b at line 1 / JSON error: JSON text did not start with array or object and option to allow fragments not set.

    Hi,
    I have a MBP 13' Late 2011 and Yosemite 10.10.2 (14C1514).
    Until yesterday, I was using Garmin ConnectIQ SDK and all was working fine.
    Yesterday, I've updated my system with latest security updates and Xcode updates too (Version 6.2 (6C131e)).
    Since, I can't launch the ConnectIQ simulator app, I have this message in console :
    8/04/2015 15:19:04,103 mds[38]: There was an error parsing the Info.plist for the bundle at URL Info.plist -- file:///Volumes/Leto/connectiq-sdk-mac-1.1.0_2/ios/ConnectIQ.bundle/
    The data couldn’t be read because it isn’t in the correct format.
    <CFBasicHash 0x7fa64f44e9a0 [0x7fff7dfc7cf0]>{type = immutable dict, count = 2,
    entries =>
      0 : <CFString 0x7fff7df92580 [0x7fff7dfc7cf0]>{contents = "NSDebugDescription"} = <CFString 0x7fa64f44f0a0 [0x7fff7dfc7cf0]>{contents = "Unexpected character b at line 1"}
      1 : <CFString 0x7fff7df9f5e0 [0x7fff7dfc7cf0]>{contents = "kCFPropertyListOldStyleParsingError"} = Error Domain=NSCocoaErrorDomain Code=3840 "The data couldn’t be read because it isn’t in the correct format." (Conversion of string failed.) UserInfo=0x7fa64f44eda0 {NSDebugDescription=Conversion of string failed.}
    I have looked at this file and it looks like a binary plist
    bplist00ß^P^V^A^B^C^D^E^F^G^H
    ^K^L^M^N^O^P^Q^R^S^T^U^V^W^X^Y^Z^[^\^]^^^_ !"$%&'()'+,^[\CFBundleNameWDTXcodeYDTSDKName_^P^XNSHumanReadableCopyrightZDTSDKBuild_^P^YCFBundleDevelopmentRegion_^P^OCFBundleVersi    on_^P^SBuildMachineOSBuild^DTPlatformName_^P^SCFBundlePackageType_^P^ZCFBundleShortVersionString_^P^ZCFBundleSupportedPlatforms_^P^]CFBundleInfoDictionaryVersion_^P^RCFBundleE    xecutableZDTCompiler_^P^PMinimumOSVersion_^P^RCFBundleIdentifier^UIDeviceFamily_^P^QDTPlatformVersion\DTXcodeBuild_^P^QCFBundleSignature_^P^ODTPlatformBuildYConnectIQT0611[iph    oneos8.1o^P-^@C^@o^@p^@y^@r^@i^@g^@h^@t^@ ^@©^@ ^@2^@0^@1^@5^@ ^@G^@a^@r^@m^@i^@n^@.^@ ^@A^@l^@l^@ ^@r^@i^@g^@h^@t^@s^@ ^@r^@e^@s^@e^@r^@v^@e^@d^@.V12B411RenQ1V14C109Xiphoneos    TBNDLS1.0¡#XiPhoneOSS6.0YConnectIQ_^P"com.apple.compilers.llvm.clang.1_0S8.1_^P^Tcom.garmin.ConnectIQ¡*^P^AW6A2008aT????^@^H^@7^@D^@L^@V^@q^@|^@<98>^@ª^@À^@Ï^@å^A^B^A^_^A?^AT^    A_^Ar^A<87>^A<96>^Aª^A·^AË^AÝ^Aç^Aì^Aø^BU^B\^B_^Ba^Bh^Bq^Bv^Bz^B|^B<85>^B<89>^B<93>^B¸^B¼^BÓ^BÕ^B×^Bß^@^@^@^@^@^@^B^A^@^@^@^@^@^@^@-^@^@^@^@^@^@^@^@^@^@^@^@^@^@^Bä
    I guess it is a normal format but my system seems to be unable to read binary plist ?
    I tried some stuff with plutil
    plutil -lint Info.plist
    Info.plist: Unexpected character b at line 1
    Same for convert
    plutil -convert xml1 Info.plist
    Info.plist: Property List error: Unexpected character b at line 1 / JSON error: JSON text did not start with array or object and option to allow fragments not set.
    I also try to download a fresh version of the connectIQ SDK and no changes.
    Any idea ?
    Thanks

    Step by step, how did you arrive at seeing this agreement?

  • Listener not starting up

    oracle database 8i
    OS windows 2000 server
    listener not starting
    following is the error message from udump
    network error encountered setting up listening port
    listening address for dispatcher is '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'
    NS Primary Error: TNS-12532: TNS:invalid argument
    NS Secondary Error: TNS-12560: TNS:protocol adapter error
    NT Generic Error: TNS-00502: Invalid argument
    32-bit Windows Error: 22: Invalid argument

    Arun,
    Check your listener.ora file whether the entries are proper or not, if not using oracle net configuration assistant configure listner,servicename.

Maybe you are looking for