J2ee 1.4 install problem win2k professional

I have downloaded j2ee sdk 1.4 (both with download manager and without). After accepting the installation directory C:\Sun\AppServer and clicking Next, nothing happens ever (Iet it run overnight). The Win2K Professional is absolutely up to date, since I subscribe to automatic update.
HELP!
-- Joe Bonds
[email protected]

Thanks for your response.
This machine does not have a firewall, however it does have a complex history. I have had apache, tomcat, oracle development suite etc installed on it. I thought I had already shut them all down. Is there a way to determine what port is in use and what process has claimed it?

Similar Messages

  • Error when compiling the J2ee tutorial source files on win2k professional

    Hi,
    Could you help me?
    I'm trying to complete the j2ee tutorial.
    I have downloaded the example code, J2EE Sdk, J2SE and Ant from the web site (these files� name are: j2ee-1_3-doc-tutorial-draft3.zip, j2sdkee-1_3_01-win.exe, j2sdk-1_3_1_01-win.exe, jakarta-ant-1.3-bin.zip) and installed the �j2sdkee-1_3_01-win.exe, j2sdk-1_3_1_01-win.exe� and unzipped �j2ee-1_3-doc-tutorial-draft3.zip, jakarta-ant-1.3-bin.zip� to their default subdirectory.( jdk1.3.1_01,
    j2sdkee1.3,jakarta-ant-1.3)
    According to instructions, I have set the Environment Variables as the below:
    ANT_HOME=c:\jakarta-ant-1.3
    CLASSPATH=c:\sybtools\ASEP\Monclass.zip;c:\sybtools\ASEP\3pclass.zip;c:\program files\microsoft sql server 2000 jdbc\lib\mssqlserver.jar;c:\program files\microsoft sql server 2000 jdbc\lib\msbase.jar;c:\program files\microsoft sql server 2000 jdbc\lib\msutil.jar;c:\orcle\ora81\jdbc\lib\classes12.zip; c:\orcle\ora81\jdbc\lib\nls_charset12.zip;c:\program files\oracle\jdevelop 3.2.3\jdbc\lib\oracle8.1.7\classes12.zip;c:\j2sdkee1.3\lib\j2ee.jar;c:\jdk1.3.1_01\lib\tools.jar;c:\jdk1.3.1_01\lib\classes.zip;c:\jakarta-ant-1.3\lib\ant.jar
    HOMEPATH=\
    J2EE_HOME=c:\j2sdkee1.3
    JAVA_HOME=c:\jdk1.3.1_01
    OS=Windows_NT
    Os2LibPath=C:\WINNT\system32\os2\dll;
    Path=C:\oracle\ora81\bin;C:\oracle\ora81\Apache\Perl\5.00503\bin\mswin32-x86;C:\Program Files\Oracle\jre\1.1.7\bin;C:\PROGRA~1\REFLEC~1;C:\Program Files\Reflection;C:\WINNT\SYSTEM32;C:\WINNT;C:\WINNT\SYSTEM32\WBEM;C:\DMI\WIN32\BIN;C:\Program Files\Symantec\pcAnywhere\;C:\MSSQL7\BINN;C:\Sybase\DLL;C:\Sybase\BIN;C:\sybtools\WIN32;C:\sybtools\ASEP;c:\oracle\ora81\jdbc\lib;c:\j2sdkee1.3\bin;c:\jdk1.3.1_01\bin;c:\jakarta-ant-1.3\bin
    SystemRoot=C:\WINNT
    windir=C:\WINNT

    After finishing the above actions, I have started the j2ee server and deploytools successfully. But when I executed the following command( ANT CONVERTER ) under the appointed subdirectory, the error occurred.
    The information is
    �Exception in thread �main� java.lang.NoClassDefFoundError: files\Microsoft �.
    Looking forward to the answer!
    Arthur Ward
    2001-12-21

    by the way, after checking the ant_home\bin\ant.bat(see bellow)
    -------end quote----
    @echo off
    if exist "%HOME%\antrc_pre.bat" call "%HOME%\antrc_pre.bat"
    if not "%OS%"=="Windows_NT" goto win9xStart
    :winNTStart
    @setlocal
    rem %~dp0 is name of current script under NT
    set DEFAULT_ANT_HOME=%~dp0
    rem : operator works similar to make : operator
    set DEFAULT_ANT_HOME=%DEFAULT_ANT_HOME:\bin\=%
    if %ANT_HOME%a==a set ANT_HOME=%DEFAULT_ANT_HOME%
    set DEFAULT_ANT_HOME=
    rem On NT/2K grab all arguments at once
    set ANT_CMD_LINE_ARGS=%*
    goto doneStart
    :win9xStart
    rem Slurp the command line arguments. This loop allows for an unlimited number of
    rem agruments (up to the command line limit, anyway).
    set ANT_CMD_LINE_ARGS=
    :setupArgs
    if %1a==a goto doneStart
    set ANT_CMD_LINE_ARGS=%ANT_CMD_LINE_ARGS% %1
    shift
    goto setupArgs
    :doneStart
    rem This label provides a place for the argument list loop to break out
    rem and for NT handling to skip to.
    rem find ANT_HOME
    if not "%ANT_HOME%"=="" goto checkJava
    rem check for ant in Program Files on system drive
    if not exist "%SystemDrive%\Program Files\ant" goto checkSystemDrive
    set ANT_HOME=%SystemDrive%\Program Files\ant
    goto checkJava
    :checkSystemDrive
    rem check for ant in root directory of system drive
    if not exist "%SystemDrive%\ant" goto noAntHome
    set ANT_HOME=%SystemDrive%\ant
    goto checkJava
    :noAntHome
    echo ANT_HOME is not set and ant could not be located. Please set ANT_HOME.
    goto end
    :checkJava
    set _JAVACMD=%JAVACMD%
    set LOCALCLASSPATH=%CLASSPATH%
    for %%i in ("%ANT_HOME%\lib\*.jar") do call "%ANT_HOME%\bin\lcp.bat" "%%i"
    if "%JAVA_HOME%" == "" goto noJavaHome
    if "%_JAVACMD%" == "" set JAVACMD=%JAVAHOME%\bin\java
    if exist "%JAVA_HOME%\lib\tools.jar" call "%ANT_HOME%\bin\lcp.bat" "%JAVA_HOME%\lib\tools.jar"
    if exist "%JAVA_HOME%\lib\classes.zip" call "%ANT_HOME%\bin\lcp.bat"
    "%JAVA_HOME%\lib\classes.zip"
    goto checkJikes
    :noJavaHome
    if "%_JAVACMD%" == "" set _JAVACMD=java
    echo.
    echo Warning: JAVA_HOME environment variable is not set.
    echo If build fails because sun.* classes could not be found
    echo you will need to set the JAVA_HOME environment variable
    echo to the installation directory of java.
    echo.
    :checkJikes
    if not "%JIKESPATH%" == "" goto runAntWithJikes
    :runAnt
    %_JAVACMD% -classpath %LOCALCLASSPATH% -Dant.home="%ANT_HOME%" %ANT_OPTS%
    org.apache.tools.ant.Main %ANT_CMD_LINE_ARGS%
    goto end
    :runAntWithJikes
    %_JAVACMD% -classpath %LOCALCLASSPATH% -Dant.home="%ANT_HOME%" -Djikes.class.path=%JIKESPATH%
    %ANT_OPTS% org.apache.tools.ant.Main %ANT_CMD_LINE_ARGS%
    :end
    set LOCALCLASSPATH=
    set _JAVACMD=
    set ANT_CMD_LINE_ARGS=
    if not "%OS%"=="Windows_NT" goto mainEnd
    :winNTend
    @endlocal
    -------end quote----
    i found something is wrong with the sentence in ":runAnt".
    --------quote-----
    %_JAVACMD% -classpath %LOCALCLASSPATH% -Dant.home="%ANT_HOME%" %ANT_OPTS%
    org.apache.tools.ant.Main %ANT_CMD_LINE_ARGS%
    --------end quote-----
    No value was set for %ANT_OPTS% and %ANT_CMD_LINE_ARGS%

  • J2EE 1.4 install Problem

    for frist time it is successful for installing j2ee1.4,but when i uninstall it for something, it can not install successfully again;
    the message is:
    checking disk space, at this page it stop and can not enter the next page;
    for help;
    thanks;

    I do as you said, install it into a new directory but it still can not work.
    Otherwise, i can not understand what do you mean for create a new profile. Can you list the detail step i should take.
    Create a new profile at installation and install it into a new directory. For example:
    C:\Sun\Appserv
    Change the above to:
    C:\Sun\Appserv2

  • Unable to install Oracle 8i Enterprise edition on Win2k Professional

    Hi,
    I upgraded windows98 with Win2k Professional.
    When i try to install Oracle 8i Enterprise edition from CD on Win2k Professional, i am get the following message:
    The Java Run time environment was not found at
    ../stage/components/oracle/swd/jre/1.1.7/1/DataFiles/Expanded\win32\bin\jrew.exe Hence oracle universal installer cannot be run.
    I would appreciate if anyone could get back to me with the easy steps to the above problem.
    thanks,
    Adem

    Try remove installed JRE1.1.8 BEFORE installation of Oracle. May be it can't remove old installation.
    PS Check downloaded distrib - some jars may be spoiled.

  • Mountain Lion won't boot after install Win 8 Professional via BootCamp 4.0

    Hello
    i have a big problem.
    i have install Windows 8 Professional (via MSDNAA) via Boot Camp 4.0 on my MacBook Air 13" 2012 with Mac OS X 10.8.1.
    Windows 8 Prof. running good on my Mac, but if i want boot in OS X my MacBook always boot in Windows 8.
    If i start the Boot Camp System Control on Windows a error show to me, that i have no admin rights. Of Course my Account has admin rights.
    If i click reboot in OS X it reboots always in Win 8 with no choice to change my system.
    I have tried to hold shift, but nothing happens.
    Pls pls help me, i want back to Mac OS :/

    As you are booting, hold ALT/Option key, this will show you the bootable drives and you will be able to choose the OS you want.
    Remember, Windows 8 is not offically out, and is unsupported by Apple and Microsoft at a End-User level. This means only developers and system administrator with direct MSDN support are suppose to be using Windows 8. When Windows 8 offically releases on October 26, i am sure Apple will update Boot Camp to fix any permission issues.
    Watch out next time when jumping aboard unsupported OSes.

  • Lion Bootcamp won't install Windows 7 Professional

    I have a fresh install of Lion on my iMac and have been trying to install Windows 7 Professional using Bootcamp 4.0.  Here's what I've done.
    1) Loaded bootcamp and followed the instructions to partition the drive.  Split the 500GB drive so the Mac would have approximately 300GB and Win7 would have 200GB.  Then bootcamp asked me to insert my Win7 disk which I did and click "Install now".  I did so and it rebooted.  Upon rebooting my iMac says "No bootable device.  Insert boot disk and press any key".  However, the Win7 install disk is already in the drive.
    After reading on forums I've tried the following but still to no avail.
    2) I reboot the computer while holding down the "C" key.  Occassionally when I do this the Installation will start and I make it to the Windows activation screen where it asks where I want to install the OS.  I select "advanced" and go ahead and select "format" the Bootcamp drive and it takes about 10 seconds to format.  Then I proceed with the install.  It comes to the screen where it says "Expanding Windows Activated Files" and it shows a 0% and just hangs there.  On one occasion when I was in the beginning stages of the install program it stopped and asked me to insert a disk to install a driver for the disk drive.  From what I can tell it's like the mac isn't finding and reading the DVD files properly.  And sometimes it works for a while and but after a bit it just craps out.  Before Lion I had Snow Lepoard and using Bootcamp 3.2 i was able to install Win7 with no problems.
    3) One last thing.  So after messing with Lion I became frustrated and thought I'm just going to go back to SL.  So I pulled out my SL disk and went ahead and did a full SL install.  However, when I went into Bootcamp (v3.2 or whatever version comes with SL) it would not allow me to partition my Hard drive. Some error comes up and I can't remember exactly what the error said.  But after doing more research on the web I found the problem.  It's that Lion installs another hidden partition on my drive which I can't seem to remove.  Even when I used disk utilities and formatted the drive before installing SL the hidden Lion recovery partition is still there.  So now I can't seem to go back to a clean install of SL to get bootcamp and Win7 working again.
    Any help here is much appreciated.
    Thanks
    Steven

    Does fdisk work? Something like 'sudo fdisk -a hfs'? Or maybe 'fdisk -i' first. You see, I'm guessing here.
    If you get the unmount error: would 'umount -Af' from USB work? You probably tried that already.
    If this all fails, the next step _I_ would take, would be plugging the disk into a Linux box nearby and check the disk there.
    Also interesting:
    http://blog.gete.net/2011/07/30/lion-diskmaker-1-1-est-disponible/
    (scroll down to a post from MILE)

  • Is oracle 9i able to install in XP Professional

    Dear all,
    I want to ask is somebody tried install oracle 9i into XP Professional?
    Is Oracle 9i able to be installed into XP Professional?
    Thanks
    Francis SZE

    I have installed Oracle 9i onto RedHat many times without any real problems. Make sure that you follow the installation guide and carry out the pre-reqs (there are some packages that you may need to install on top of RedHat depending on your version) and you need to change some kernel settings in /etc/sysctl.conf as well as create the oracle system user and oinstall group for it.
    Personally, I come from a UNIX / Linux backgroud so I find installs onto UNIX/Linux servers very easy and so far as stability goes, I've never had any problems.
    regards
    R

  • BI Discoverer install problem

    I am a new Oracle user, and so admit ignorance to a high degree. There is a 10g database instance to which I would like to connect via Discoverer. Since it's a prototype database, I have downloaded the BI 10g files, and am attempting to install them (Win2k machine). I am getting the error "The environment variable, TNS_ADMIN has been set to a directory which does not exist. Remove this environment variable and restart the install."
    The directory in which the TNSNAMES, etc, is located is a real directory (I am currently successfully using Discoverer 4 to connect to older databases).
    Does anyone know if I'm simply finding a problem with having an older version of Discoverer installed?
    Any help is appreciated.

    You increase the swap memory or virtual memory by going to
    Control Panel>System>Advanced Tab, Click on performance settings>Advanced tab, You see the under Virtual memory
    Total paging file... 1536.
    You can click change button and increase that within the limits depending on RAM you have.
    kiran

  • I'm a CC member and I've downloaded and installed Adobe Flash Professional CC, but it will not open. How should I proceed?

    I'm a CC member and I've downloaded and installed Adobe Flash Professional CC, but it will not open. How should I proceed?

    You can try:
    creative cloud desktop failed to install
    Downloading and installing desktop apps from Creative Cloud
    Problems with Creative Cloud (apps not starting)
    Hope it helps you.
    Regards
    Rajshree

  • TP4 Install problems

    I am trying to install TP4 on WIndows 2003 Server (VM) and am running into issues. I am also running database v11.1.0.6. I realize this is officially unsupported, but I'm not going to run a whole separate database stack. I need 11g. I appreciate any insights into what the problem is. If it will not run on 11g then let me know.
    Environment variables:
    BAM_OC4J_HOME: O:\OracleBAM_AS11 -- I am only interested in SOA, but put this in anyway
    JAVA_HOME: C:\3ps\jdk1.5.0_12
    JDEV_USER_DIR: O:\jdevinstance
    JOH: O:\jdevtp4
    ERROR IN CONSOLE:
    [echo] Changing oc4j ports with following values:
    HTTP Port : 8988 -> 8988
    RMI Port : 23891 -> 23891
    RMI SSL Port: 24043 -> 24043
    JMS Port : ${jms},9227 -> 9227
    [echo] Create jms queues/topics from new oc4j jms template
    [echo] Changing jms.xml to use port : 9227
    [echo]
    * Configuring SOA Infrastructure. This will take 5-10 minutes. *
    * Summary of SOA configuration parameters: *
    ** Oracle Home = O:\jdevtp4\
    ** Oracle Instance = O:\jdevinstance\system11.1.1.0.22.49.49
    ** SOA Database = localhost:1521:orcl
    ** SOA Database User = jdev_soainfra
    ** HTTP Port = 8988
    ** RMI Port = 23891
    ** JMS Port = 9227
    ** Component Type = o.j2ee
    ** Component Name = embedded-oc4j
    ** Configure OWSM = false
    ** Configure SOA Console = true
    ** Configure B2B UI = false
    ** Configure XEngine = false
    [echo] Completed adfinstaller - standalone install
    [echo] ==Seeding SOAAdmin app roles==
    [echo] Instance home: O:\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j
    [echo] JPS config: O:\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j/config/jps-config.xml
    [echo] ==Grant SOAAdmin app role to fmwadmin ==
    [echo] ==Storing fmwadmin user credential in csf ==
    [java] oracle.security.jps.service.credstore.CredentialAlreadyExistsException: The credential with map name BPM-SERVICES and key BPM-SERVICES already exists.
    [java]      at oracle.security.jps.internal.credstore.ssp.SspCredentialStore.setCredential(SspCredentialStore.java:551)
    [java]      at oracle.bpel.services.common.util.CSFStore.main(CSFStore.java:130)
    [echo] ==Seeding optional demo users==
    [echo] Seed groups: ${nogroup}
    [echo] Instance home: O:\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j
    [echo] JPS config: O:\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j/config/jps-config.xml
    [echo] ==Starting standalone oc4j. Check server log O:\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j\log\startsoa.log.
    [echo] ==Waiting max 420 second(s) for startup of URL http://demodrive:8988...
    [echo] ==standalone oc4j started sucessfully==
    Trying to override old definition of task admin_client
    BUILD FAILED
    O:\jdevtp4\install\bpel\build.xml:10: The following error occurred while executing this line:
    O:\jdevtp4\install\bpel\soa-infra-config.xml:48: The following error occurred while executing this line:
    O:\jdevtp4\install\bpel\soa-infra-config.xml:89: ***************************************************
    * Configuring SOA Infrastructure has FAILED.
    * If following log files exists, please check them for possible cause:
    * O:\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j\install\tmp\soa-infra-java.log
    * O:\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j\log\startsoa.log
    Total time: 1 minute 57 seconds
    SOA_INFRA_JAVA.LOG:
    08/07/08 17:51:29 Notification ==>Application Deployer for wsm-pm STARTS.
    08/07/08 17:51:29 Notification ==>Undeploy previous deployment
    08/07/08 17:51:30 Notification ==>Initialize O:\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j\applications\wsm-pm.ear begins...
    08/07/08 17:51:30 Notification ==>Initialize O:\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j\applications\wsm-pm.ear ends...
    08/07/08 17:51:30 Notification ==>Starting application : wsm-pm
    08/07/08 17:51:30 Notification ==>Initializing ClassLoader(s)
    08/07/08 17:51:30 Notification ==>Initializing EJB container
    08/07/08 17:51:30 Notification ==>Loading connector(s)
    08/07/08 17:51:30 Notification ==>Starting up resource adapters
    08/07/08 17:51:30 Notification ==>Processing EJB module: wsm-pmserver.jar
    08/07/08 17:51:30 Notification ==>Compiling EJB generated code
    08/07/08 17:51:30 Notification ==>Committing ClassLoader(s)
    08/07/08 17:51:30 Notification ==>Initialize wsm-pmweb begins...
    08/07/08 17:51:30 Notification ==>Initialize wsm-pmweb ends...
    08/07/08 17:51:30 Notification ==>Started application : wsm-pm
    08/07/08 17:51:30 Notification ==>Binding web application(s) to site default-web-site begins...
    08/07/08 17:51:30 Notification ==>Binding web application(s) to site default-web-site ends...
    08/07/08 17:51:30 Notification ==>Application Deployer for wsm-pm COMPLETES. Operation time: 469 msecs
    Creating shared-libraries for component SOA
    O:\jdevtp4\/lib/java/shared/oracle.bam.common/11.1.1.0.0/import-list.xml: Creating JAXBContext for pkg oracle.ias.install.model.sharedLibrary
    Jul 8, 2008 5:53:33 PM oracle.j2ee.util.AnnotatedLogger log
    WARNING: Exception returned by remote server: javax.management.MBeanException: Exception thrown in RequiredModelMBean while trying to invoke operation publishSharedLibrary
    oracle.oc4j.admin.deploy.cmdline.AdminCommandException: Caught exception running the command via the script file O:\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j/install/tmp/SOA.script at line 1: PublishSharedLibrary error: publishsharedlibrary failed: Error publishing shared library: Import was not resolved for oracle.bam.common:11.1.1.0.0: shared library "apache.commons.fileupload" could not be found.
         at oracle.oc4j.admin.deploy.cmdline.ScriptCommand.doExecute(ScriptCommand.java:90)
         at oracle.oc4j.admin.deploy.cmdline.AdminCommandBase.execute(AdminCommandBase.java:58)
         at oracle.oc4j.admin.deploy.cmdline.Oc4jAdminCmdline.executeCommand(Oc4jAdminCmdline.java:107)
         at oracle.oc4j.admin.deploy.cmdline.Oc4jAdminCmdline.main(Oc4jAdminCmdline.java:71)
    Caused by: oracle.oc4j.admin.deploy.cmdline.AdminCommandException: PublishSharedLibrary error: publishsharedlibrary failed: Error publishing shared library: Import was not resolved for oracle.bam.common:11.1.1.0.0: shared library "apache.commons.fileupload" could not be found.
         at oracle.oc4j.admin.deploy.cmdline.PublishSharedLibraryCommand.doExecute(PublishSharedLibraryCommand.java:122)
         at oracle.oc4j.admin.deploy.cmdline.AdminCommandBase.execute(AdminCommandBase.java:73)
         at oracle.oc4j.admin.deploy.cmdline.ScriptCommand.doExecute(ScriptCommand.java:82)
         ... 3 more
    Caused by: oracle.oc4j.admin.deploy.api.J2EEDeploymentException: publishsharedlibrary failed: Error publishing shared library: Import was not resolved for oracle.bam.common:11.1.1.0.0: shared library "apache.commons.fileupload" could not be found.
         at oracle.oc4j.admin.deploy.shared.exceptions.JSR88DeploymentExceptions.operationFailed(JSR88DeploymentExceptions.java:137)
         at oracle.oc4j.admin.deploy.api.J2EEDeploymentManager.publishSharedLibrary(J2EEDeploymentManager.java:953)
         at oracle.oc4j.admin.deploy.cmdline.PublishSharedLibraryCommand.doExecute(PublishSharedLibraryCommand.java:120)
         ... 5 more
    Caused by: java.lang.InstantiationException: Error publishing shared library: Import was not resolved for oracle.bam.common:11.1.1.0.0: shared library "apache.commons.fileupload" could not be found.
         at oracle.oc4j.admin.deploy.spi.Oc4jDeploymentManager.publishSharedLibrary(Oc4jDeploymentManager.java:206)
         at oracle.oc4j.admin.deploy.api.J2EEDeploymentManager.publishSharedLibrary(J2EEDeploymentManager.java:950)
         ... 6 more
    Caused by: java.lang.InstantiationException: Import was not resolved for oracle.bam.common:11.1.1.0.0: shared library "apache.commons.fileupload" could not be found.
         at com.evermind.server.ApplicationServer.publishSharedLibrary(ApplicationServer.java:4178)
         at oracle.oc4j.admin.management.mbeans.J2EEServer.publishSharedLibrary(J2EEServer.java:1417)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:36)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:243)
         at javax.management.modelmbean.RequiredModelMBean.invokeMethod(RequiredModelMBean.java:1071)
         at javax.management.modelmbean.RequiredModelMBean.invoke(RequiredModelMBean.java:953)
         at oracle.oc4j.admin.jmx.server.mbeans.model.DefaultModelMBeanImpl.invoke(DefaultModelMBeanImpl.java:729)
         at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:213)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
         at oracle.oc4j.admin.jmx.server.state.ApplicationStateFilterMBeanServer.invoke(ApplicationStateFilterMBeanServer.java:572)
         at oracle.oc4j.admin.jmx.server.security.ApplicationContextInterceptor.invoke(ApplicationContextInterceptor.java:186)
         at oracle.oc4j.admin.jmx.ejb.MBeanServerEjbBean.invoke(MBeanServerEjbBean.java:337)
         at oracle.oc4j.admin.jmx.ejb.MBeanServerEjbBean.invoke(MBeanServerEjbBean.java:307)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:27)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at oracle.oc4j.admin.jmx.ejb.MBeanServerEjbBean.checkPermission(MBeanServerEjbBean.java:1262)
         at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.MethodBasedInterceptor.invoke(MethodBasedInterceptor.java:45)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.TxSupportsInterceptor.invoke(TxSupportsInterceptor.java:37)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:52)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:182)
         at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:511)
         at oracle.oc4j.security.JaasModeImpl$DoAsPrivilegedExecutor.execute(JaasModeImpl.java:301)
         at oracle.oc4j.security.JaasModeImpl$BasicExecutor.execute(JaasModeImpl.java:161)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:57)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:58)
         at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:828)
         at MBeanServerEjb_RemoteProxy_1me2j7.invoke(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.invokeMethod(RmiMethodCall.java:102)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:64)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: oracle.oc4j.loader.config.ConfigurationException: Import was not resolved for oracle.bam.common:11.1.1.0.0: shared library "apache.commons.fileupload" could not be found.
         at oracle.oc4j.loader.config.ClassLoaderFactory.handleSharedLibraryNotFound(ClassLoaderFactory.java:706)
         at oracle.oc4j.loader.config.ClassLoaderFactory.getSharedLibraryToImport(ClassLoaderFactory.java:681)
         at oracle.oc4j.loader.config.ClassLoaderFactory.addImports(ClassLoaderFactory.java:340)
         at oracle.oc4j.loader.config.ClassLoaderFactory.createSharedLibrary(ClassLoaderFactory.java:109)
         at com.evermind.server.ApplicationServer.instantiateSharedLibrary(ApplicationServer.java:1580)
         at com.evermind.server.ApplicationServer.publishSharedLibrary(ApplicationServer.java:4175)
         ... 63 more
    Creating shared-libraries for component SOA
    O:\jdevtp4\/lib/java/shared/edifecs.xengine/11.1.1.0.0/import-list.xml: Creating JAXBContext for pkg oracle.ias.install.model.sharedLibrary
    O:\jdevtp4\/lib/java/shared/oracle.b2b/11.1.1.0.0/import-list.xml: Creating JAXBContext for pkg oracle.ias.install.model.sharedLibrary
    Jul 8, 2008 5:53:38 PM oracle.j2ee.util.AnnotatedLogger log
    WARNING: Exception returned by remote server: javax.management.MBeanException: Exception thrown in RequiredModelMBean while trying to invoke operation publishSharedLibrary
    oracle.oc4j.admin.deploy.cmdline.AdminCommandException: Caught exception running the command via the script file O:\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j/install/tmp/SOA.script at line 2: PublishSharedLibrary error: publishsharedlibrary failed: Error publishing shared library: Import was not resolved for oracle.b2b:11.1.1.0.0: shared library "oracle.fabric.runtime" could not be found.
         at oracle.oc4j.admin.deploy.cmdline.ScriptCommand.doExecute(ScriptCommand.java:90)
         at oracle.oc4j.admin.deploy.cmdline.AdminCommandBase.execute(AdminCommandBase.java:58)
         at oracle.oc4j.admin.deploy.cmdline.Oc4jAdminCmdline.executeCommand(Oc4jAdminCmdline.java:107)
         at oracle.oc4j.admin.deploy.cmdline.Oc4jAdminCmdline.main(Oc4jAdminCmdline.java:71)
    Caused by: oracle.oc4j.admin.deploy.cmdline.AdminCommandException: PublishSharedLibrary error: publishsharedlibrary failed: Error publishing shared library: Import was not resolved for oracle.b2b:11.1.1.0.0: shared library "oracle.fabric.runtime" could not be found.
         at oracle.oc4j.admin.deploy.cmdline.PublishSharedLibraryCommand.doExecute(PublishSharedLibraryCommand.java:122)
         at oracle.oc4j.admin.deploy.cmdline.AdminCommandBase.execute(AdminCommandBase.java:73)
         at oracle.oc4j.admin.deploy.cmdline.ScriptCommand.doExecute(ScriptCommand.java:82)
         ... 3 more
    Caused by: oracle.oc4j.admin.deploy.api.J2EEDeploymentException: publishsharedlibrary failed: Error publishing shared library: Import was not resolved for oracle.b2b:11.1.1.0.0: shared library "oracle.fabric.runtime" could not be found.
         at oracle.oc4j.admin.deploy.shared.exceptions.JSR88DeploymentExceptions.operationFailed(JSR88DeploymentExceptions.java:137)
         at oracle.oc4j.admin.deploy.api.J2EEDeploymentManager.publishSharedLibrary(J2EEDeploymentManager.java:953)
         at oracle.oc4j.admin.deploy.cmdline.PublishSharedLibraryCommand.doExecute(PublishSharedLibraryCommand.java:120)
         ... 5 more
    Caused by: java.lang.InstantiationException: Error publishing shared library: Import was not resolved for oracle.b2b:11.1.1.0.0: shared library "oracle.fabric.runtime" could not be found.
         at oracle.oc4j.admin.deploy.spi.Oc4jDeploymentManager.publishSharedLibrary(Oc4jDeploymentManager.java:206)
         at oracle.oc4j.admin.deploy.api.J2EEDeploymentManager.publishSharedLibrary(J2EEDeploymentManager.java:950)
         ... 6 more
    Caused by: java.lang.InstantiationException: Import was not resolved for oracle.b2b:11.1.1.0.0: shared library "oracle.fabric.runtime" could not be found.
         at com.evermind.server.ApplicationServer.publishSharedLibrary(ApplicationServer.java:4178)
         at oracle.oc4j.admin.management.mbeans.J2EEServer.publishSharedLibrary(J2EEServer.java:1417)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:36)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:243)
         at javax.management.modelmbean.RequiredModelMBean.invokeMethod(RequiredModelMBean.java:1071)
         at javax.management.modelmbean.RequiredModelMBean.invoke(RequiredModelMBean.java:953)
         at oracle.oc4j.admin.jmx.server.mbeans.model.DefaultModelMBeanImpl.invoke(DefaultModelMBeanImpl.java:729)
         at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:213)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:220)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:815)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
         at oracle.oc4j.admin.jmx.server.state.ApplicationStateFilterMBeanServer.invoke(ApplicationStateFilterMBeanServer.java:572)
         at oracle.oc4j.admin.jmx.server.security.ApplicationContextInterceptor.invoke(ApplicationContextInterceptor.java:186)
         at oracle.oc4j.admin.jmx.ejb.MBeanServerEjbBean.invoke(MBeanServerEjbBean.java:337)
         at oracle.oc4j.admin.jmx.ejb.MBeanServerEjbBean.invoke(MBeanServerEjbBean.java:307)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:27)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at oracle.oc4j.admin.jmx.ejb.MBeanServerEjbBean.checkPermission(MBeanServerEjbBean.java:1262)
         at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.ejb.interceptor.MethodBasedInterceptor.invoke(MethodBasedInterceptor.java:45)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.TxSupportsInterceptor.invoke(TxSupportsInterceptor.java:37)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:52)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:182)
         at oracle.oc4j.security.SecurityServices.doAsPrivileged(SecurityServices.java:511)
         at oracle.oc4j.security.JaasModeImpl$DoAsPrivilegedExecutor.execute(JaasModeImpl.java:301)
         at oracle.oc4j.security.JaasModeImpl$BasicExecutor.execute(JaasModeImpl.java:161)
         at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:57)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
         at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:101)
         at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:58)
         at com.evermind.server.ejb.StatefulSessionEJBObject.OC4J_invokeMethod(StatefulSessionEJBObject.java:828)
         at MBeanServerEjb_RemoteProxy_1me2j7.invoke(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.invokeMethod(RmiMethodCall.java:102)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:64)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: oracle.oc4j.loader.config.ConfigurationException: Import was not resolved for oracle.b2b:11.1.1.0.0: shared library "oracle.fabric.runtime" could not be found.
         at oracle.oc4j.loader.config.ClassLoaderFactory.handleSharedLibraryNotFound(ClassLoaderFactory.java:706)
         at oracle.oc4j.loader.config.ClassLoaderFactory.getSharedLibraryToImport(ClassLoaderFactory.java:681)
         at oracle.oc4j.loader.config.ClassLoaderFactory.addImports(ClassLoaderFactory.java:340)
         at oracle.oc4j.loader.config.ClassLoaderFactory.createSharedLibrary(ClassLoaderFactory.java:109)
         at com.evermind.server.ApplicationServer.instantiateSharedLibrary(ApplicationServer.java:1580)
         at com.evermind.server.ApplicationServer.publishSharedLibrary(ApplicationServer.java:4175)
         ... 63 more
    TAIL END OF SOA_INFRA_CONFIG.LOG:
    start-oc4j:
    [echo] ==Starting standalone oc4j. Check server log O:\jdevinstance\system11.1.1.0.22.49.49\o.j2ee\embedded-oc4j\log\startsoa.log.
    [echo] ==Waiting max 420 second(s) for startup of URL http://demodrive:8988...
    [echo] ==standalone oc4j started sucessfully==
    [stopwatch] [start-oc4j: 1:03.938 sec]
    rules-config:
    Trying to override old definition of task admin_client
    runconfig:
    check-runconfig:
    create-oracle.rules:
    create-rules-shared-library:
    [java] oracle.oc4j.admin.deploy.cmdline.AdminCommandException: PublishSharedLibrary error: Shared library already exists: oracle.rules version 11.1.1.0.0
    [java]      at oracle.oc4j.admin.deploy.cmdline.PublishSharedLibraryCommand.doExecute(PublishSharedLibraryCommand.java:106)
    [java]      at oracle.oc4j.admin.deploy.cmdline.AdminCommandBase.execute(AdminCommandBase.java:58)
    [java]      at oracle.oc4j.admin.deploy.cmdline.Oc4jAdminCmdline.executeCommand(Oc4jAdminCmdline.java:107)
    [java]      at oracle.oc4j.admin.deploy.cmdline.Oc4jAdminCmdline.main(Oc4jAdminCmdline.java:71)
    [java] Caused by: oracle.oc4j.admin.deploy.cmdline.AdminCommandException: Shared library already exists: oracle.rules version 11.1.1.0.0
    [java]      at oracle.oc4j.admin.deploy.cmdline.PublishSharedLibraryCommand.doExecute(PublishSharedLibraryCommand.java:103)
    [java]      ... 3

    We went through this issue at length in another thread and finally resolved it without knowing why.
    Here is the thread
    SOA configuration : Build failed (error is soa-infra-java.log)
    Here is the bit from that thread with the resolution details:
    I did the following steps (and it works):
    = stop JDeveloper
    = stop running java process
    = renamed jdevinstance to jsaveinstance
    = start JDeveloper in the same command prompt
    = start the configure SOA again
    = and after 7 minutes: Build Succesful
    I did NOT :
    = put off the laptop (stand-by mode)
    = change environment variables
    = environment settings
    = install/unzip other programs
    Let us know how this works for you!
    Heidi.

  • Is it " Safe " to install Adobe flash professional CS 6 ?

    Hi ,
    I intend to install “ Adobe flash professional CS 6 “ on my MacBook Pro with retina display , is it OK to install this software ? Do I expect problems or performance issues ?
    Anyone had issues running or uninstalling this software ?
    Is it better to leave adobe products ? As I heard of many issues related to these products
    I appreciate any information ,
    Thanks a lot ,
    Best regards ,

    It's Adobe Flash that has the occasional security issue and mostly because people don't keep on top of the updates.
    However Flash does it's own updating now so that's less of a problem than before.
    Adobe's Create Suite is fine and the best in the industry.
    However it's Apple that releases new OS X versions like crazy and so you have to make sure things work before you upgrade or update OS X .
    A website here assists in telling you the basics, if CS6 will work with 10.8 for instance or iff issues develope with a update.
    http://roaringapps.com/apps:table
    But the best advice is from Adobe's forums, that's where people will go if they have problems, not here too much, unless it's a OS X problem.

  • How to install Primavera P6 Professional Project Management  v7

    Hi,
    I am a new baby in Primevera world and first time I am going to use this product.
    Two problems I am facing; 1) how to install 2) how to understand this product functional wise with sample data.
    Kindly share the installation guide/document(s)/steps how to install Primavera P6 Professional Project Management on single machine. What are pre-requisit for Primavera P6 Professional Project Management for single machine.
    Kindly share with the hard ware and software requirements before I begin the installation.
    Pls. help me, Waiting for quick response I will appreciate the cooperation.
    Regards
    Shah Faisal
    Mail: [email protected]

    The full procedure for installing P6 is given on the link below
    http://www.aboutcivil.com/answers/Primavera/I-have-Installed-P6-but-it-needs-DATA-BASE-CONFIGURATION-How-to-do-that?-|75
    If you want to watch a video tutorial on the same topic, here is another link on the same website
    http://www.aboutcivil.com/primavera-p6-video-tutorial-installation.html
    Edited by: 815755 on Nov 25, 2010 10:35 AM

  • Procedure to install Acrobat 8 professional on a new computer

    Procedure to install Acrobat 8 professional on a new computer?

    Be sure you have deactivated it from the old machine. You may have problems with a new system, but you will only find out by trying. If it installs, be sure to do the updates as your first step. Without the updates, you may not be successful. Even with the updates you may have problems, but so far several folks have reported success with Win7 (32 and 64-bit) and there has been a hint of success for Win8.1. Don't bother calling Adobe about any issues as they will tell you it is not compatibile and to by XI.

  • HT3986 Hi, i have a macbook pro version 10.6.8 with boot camp version 3.0.4. I managed to install windows 7 professional x64, however when i insert my OS CD to install the drivers using the boot camp method, it says unsupported to this computer model

    Hi, i have a macbook pro version 10.6.8 with boot camp version 3.0.4. I managed to install windows 7 professional x64 bits but however when i tried to install the drivers using the OSX MAC CD using boot camp, it prompt me boot camp x 64 is unsupported with this computer model. Then i tried the method by right click the bootcamp x64 and managed to install the drivers. However, i still couldnt manage access the internet and it prompts me no networking hardware detected...Any idea how can i solve it?
    P.S i tried updating my bootcamp version 3.0.4 in mac os with bootcamp x64 version 3.1 exe but it shows me weird wording..
    my bootcamp version in windows 7 is 2.1..

    Uninstall 2.x totally
    Use CCleaner Registry tool
    Do whatever you need to to nuke the existing Apple programs and folders hidden here and there also.
    BC 2.2 was XP and Vista only

  • OS 9 Install problem on imac G3

    hello all,
    i have an OS install problem on my imac . I just finished formatting the drive . the drive is
    paritioned :
    1st partition = HD1: 5.5 Gb
    2nd partition = HD2 : 2.5 Gb
    3rd partition = HD3 : 110+ Gb
    Then, in order to save some time ( i thought ) , i tried directly install os 9 from an imac
    DV CD , on HD1 : i thought i d be quicker so i would have to start with os 8.5 then upgrade to 8.6 and etc .
    that turned out to be a bad idea. the system install warned me it couldnt install Air port because the hardware wasnt compatible . it gave me two options : either ignore this message or quit . i chose ignore : again certainly a bad choice .
    After the install was finished , the mac wouldnt start on HD1 . the sytem install is apparently incomplete ,or anycase it doesnt work .
    i then installed os 8.5 from original imac tray load install CD on HD2 , and it works fine .
    now the question is : what should i do with my bad os9 system ? i need an operating system on this partition. perhaps i can trash it and reinstall mac os8.5 on it ? i hope there is a way to get out of this without formatting the drive again .
    thanks for any advice .

    about the os9 CD : it is a retail verson , only not of the same imac model .
    That is not a retail version of OS 9. A retail version of OS 9 has no dependencies on any model of Mac. You have a machine specific disc which probably won't work with your iMac.
    1/ i dont know how to reformat a partition without formatting the entire drive . perhaps you can explain .
    In OS X you use Disk Utility and only select the partition that you want to reformat. It has been ages since I used OS 8 so I'm not sure if it is even possible using "Drive Setup".

Maybe you are looking for

  • Can't move files - The operation can't be completed because the item is in use.

    Hi everyone, I'm trying to move some files off an external hard drive to my macbook pro. These are mostly video files. However, there's a handful of files which are causing the following error: "The operation can't be completed because the item "XXX"

  • Problems After Upgrading to 10.4.9

    Hello. I just upgraded to 10.4.9 (from 10.4.8) with "software update" option in the apple menu. After the update, the MAC asked a reboot and I did reboot. Once rebooted, it didn't came back with a GUI of the system, but with "Darwin/BDS" interface. I

  • Does not display axis label in graph when exported to excel

    I have a wierd issue.I have a report with graph with coloum chart and axis labels description on x axis.WHen i export the report to PDF everything looks OK.But when i export it to excel few axis labels disapper.Out of 12 labels only 2 apper when expo

  • How to reply from a ESB scenario with FTP adapter

    Hello all, Is it possible to create a reply message when a FTP Put adapter is failing? The background scenario is following: We have an ESB routing service, that is called from a BPEL process, and invokes a FTP adapter (put). Hence, the adapter is a

  • I upgraded to snow leopard 10.6.3 but it is not showing up...?

    So I upgraded to Snow Leopard 10.6.3 with the install disc and I'm pretty sure it installed properly since nothing came back about a failed installation but when I go to look at "about my mac" window it still says I'm running 10.5.8. I don't know if