Oracle 92 running on Windows Visa Business Edition

ok so I know its not certified but has anyone got 9.2 working on Vista? Is there anything I can do to get it working?
Thanks, Iain

ok so I know its not certified but has anyone got 9.2
working on Vista? Is there anything I can do to get
it working?No. Even Oracle gave up on that.
Think about it ... Oracle ended up releasing a special 10g for Vista. It seems unlikely that they would go to the same effort for a product (9i) that has already gone into extended support.

Similar Messages

  • Can we install oracle 10g database on Windows Vista Home Edition?

    Can we install oracle 10g database on Windows Vista Home Edition?

    You didn't specify which Oracle10 Edition.
    In the case of SE/SE one/EE, with a paid license Supported has a mean impact on production environments with paid licenses, since you wouldn't run on an unsupported platform facing the risk of being left without technical support from Oracle in case of an emerging issue.
    For the XE Edition, this is not a certified combination, since the only certified editions are the Business, Enterprise, and the Ultimate editions, but you can try it, you don't have nothing to loose, supported, certified vs. unsupported in this case makes no difference since this XE is not supported either way (no patchsets, no bug fixes, no technical support from metalink), just an AS IS free software.
    On the license agreement terms displayed when you download the XE software it states:
    "No Technical Support
    Our technical support organization will not provide technical support, phone support, or updates to you for the programs licensed under this agreement."
    and
    "THE PROGRAMS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE."
    In case someone would be able to win a trial against oracle due to damage from the use of this software, the amount paid at maximum is 1,000.00 USD, not enough to even pay the lawyer's lunches.
    For the XE users the primary source of 'kind of support' is the oracle forums, either the installation forum, the general database or the specialized XE forum.
    Of course if this is for your own personal use for learning and testing and there are no third parties you could damage by doing this and if you don't have a paid license for this installation you may try it, but don't expect the Enterprise Manager to behave as defined by the manual, most of it won't work since the Home Edition doesn't have the privileges required for EM to work.
    If this is your personal computer and when you bought it the computer provider installed from factory Home Edition, and if you want something to work there, you can try to install a Virtual Machine and install Oracle 10g on a supported guest OS.
    ~ Madrid

  • Unable to connect to Oracle database running on Windows machine from linux.

    Hi,
    I'm not able to connect to oracle database running on Windows machine from Linux machine. I'm geting the below mentioned error. I have given below the code I used to connect to database and database propertes.Do I need to use any specific driver?
    Please help me.
    Thanks,
    Sunjyoti
    Code :
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Connection;
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    class try2{
    public static void main(String args[]) {
    try {
              System.out.println("hi");
    // Load the properties file to get the connection information
    Properties prop = new Properties();
    prop.load(new FileInputStream("/home/sreejith/EDIReader/Connection.properties"));
    // Create a OracleDataSource instance
    OracleDataSource ods = new OracleDataSource();
    System.out.println("prop is "+prop);
    configureDataSource(ods, prop);
    Connection conn=null;
    // Create a connection object
    conn = ods.getConnection();
         System.out.println("Connection is"+conn);
    // Sets the auto-commit property for the connection to be false.
    conn.setAutoCommit(false);
    } catch (SQLException sqlEx){ // Handle SQL Errors
    System.out.println("In exception "+sqlEx);
    } catch(Exception excep) { // Handle other errors
    System.out.println(" Exception "+ excep.toString());
    private static void configureDataSource(OracleDataSource ods, Properties prop) {
    // Database Host Name
    ods.setServerName(prop.getProperty("HostName"));
    // Set the database SID
    ods.setDatabaseName(prop.getProperty("SID"));
    // Set database port
    ods.setPortNumber( new Integer( prop.getProperty("Port") ).intValue());
    // Set the driver type
    ods.setDriverType ("thin");
    // Sets the user name
    ods.setUser(prop.getProperty("UserName"));
    // Sets the password
    ods.setPassword(prop.getProperty("Password"));
    Connection properties :
    # Your Database Connection details
    HostName = 10.20.3.19
    SID = EDIREAD
    Port = 1521
    UserName = dbuser
    Password = dbuser
    Error I'm getting is
    error while trying to connect with odbc datasource
    [root@iflexpau2217 EDIReader]# java try2
    hi
    prop is {HostName=10.20.3.19, Password=dbuser, UserName=dbuser, SID=EDIREAD, Port=1521}
    In exception java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Also I tried to connect with weblogic JDBC driver
    Code is here:
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    //import com.entrust.toolkit.util.ByteArray;
    public class trial{
         public static void main(String args[]) throws IOException{
              System.out.println("hi");
              Connection p_conn = null;
              PreparedStatement xml_insert = null;
              try {
         // Load the JDBC driver
                   System.out.println("hi2");
         // String driverName = "oracle.jdbc.driver.OracleDriver";
    String driverName = "weblogic.jdbc.oracle.OracleDriver";
         System.out.println("hi2");
         Class.forName(driverName);
         // Create a connection to the database
         String serverName = "10.20.3.19";
         String portNumber = "1521";
         String sid = "EDIREAD";
         //String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String url = "jdbc:bea:oracle://10.20.3.19:1521";
         String username = "dbuser";
         String password = "dbuser";
    System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
         p_conn = DriverManager.getConnection(url, username, password);
         System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
              xml_insert=p_conn.prepareStatement("insert into PRTB_SUBUNIT (SUBUNT_ID,SUBUNT_SUB_UNIT,SUBUNT_PHYUNT_ID) values (?,?,?)");
              //InputStream in=null;
              File l_file=new File("/home/sreejith/EDIReader/propertyfiles/inputfile/BUG_10802_ES_CSB19_68.txt");
              BufferedReader input =null;
              input=new BufferedReader(new FileReader(l_file));
              String line = null;
              StringBuffer trial=new StringBuffer();
              while (( line = input.readLine()) != null){
                   trial.append(line);
                   trial.append(System.getProperty("line.separator"));
              //InputStream is = new BufferedInputStream(new FileInputStream(l_file));
              System.out.println(trial.toString());
              //Blob b ;
              //byte[] bytes=trial.toString().getBytes();
              //System.out.println("Size-->"+bytes.length);
              xml_insert.setString(1,new String("SpecailChar"));
              //xml_insert.setBinaryStream(2,new ByteArrayInputStream(bytes),15920);
              xml_insert.setString(3,"SpecailChar");
              xml_insert.executeUpdate();
              p_conn.commit();
              } catch (ClassNotFoundException e) {
                   System.out.println("ClassNotFoundException:"+e.getMessage());
              // Could not find the database driver
              } catch (SQLException e) {
                   System.out.println("SQEXCEPTIN:"+e.getMessage());
              // Could not connect to the database
              }catch (FileNotFoundException e) {
                   System.out.println("filenot found:"+e.getMessage());
              // Could not connect to the database
    Error I'm getting is
    error while trying with jdbc:
    SQEXCEPTIN:[BEA][Oracle JDBC Driver]Error establishing socket to host and port: 10.20.3.19:1521. Reason: Connection refused

    Is the Windows firewall active? Have you enabled the port on the firewall, if it is?

  • How can i display image in RTF template when Oracle Apps running in Windows

    Can any body help how can i display image in RTF template when oracle apps running in Windows Server.
    Thanks
    Ravi

    Hi Ravi,
    You can add images into your rtf template using MS Word Insert Picture feature.
    Did you try this method?
    Thanks
    Ravi
    [email protected]

  • Sharing files between a Windows Vista Business edition and a Mac osx 10.6.6

    Is there reliable information somewhere about how to share files from a Windows Vista business edition pc to a Mac osx 10.6.6?  I have googled instructions and followed the steps and still could not have sharing to happen between the Vista pc and the Mac.  These are the steps I have performed, I have made sure that
    o Both the Vista pc and the Mac have the same user account/password.
    o The firewall from the Vista side allows file and printer sharing in the exceptions.
    o Enabled sharing with a few directories on the Vista pc.
    o Changed the security policy on the Vista pc to "LM and NTLM - use NTLMV2 session security if negotiated".
    o On the Mac System Preferences > Sharing selected File sharing.
    On the Windows Vista pc, if I click the Start menu and then Network, the Mac does not appear.  On the Mac, from the Finder menu if I click Go > Connect to server and request a connection to the IP address of that Vista pc, I get an error, "Connection Failed"  (could not find pc or not available at this time).
    What else do I need?

    That was a great tutorial / walk through.
    In fact, I would say that was far easier than the entrophy route (which is good) as you can see exactly what you are doing rather than relying on an installer which has often failed in the past for me, and then just suddenly worked for no apparent reason!
    Just two things to improve it for other users, and they are really VERY minor... From previous experience, I knew where to find the php.ini.default file, but you don't let people know where to find that, and the links to the MySQL downloads were broken. I guess that is because the file names have changed or because I am coming at it from a different country. I got a message stating: 'That file does not exist on our download mirrors.'
    Thanks for doing that, I really appreciate you (and the likes of David Powers) taking the time to set these tutorials up for others to use.
    Mat

  • Error: 0x8007041D on a computer running Microsoft windows non-core edition, run 'slui.exe 0x2a 0x8007041D ' to display the error text

    OS : Windows Server 2012 R2
    Windows Activation Error
    Error: 0x8007041D on a computer running Microsoft windows non-core edition, run 'slui.exe 0x2a 0x8007041D ' to display the error text
    Description :
    The server did not respond to the start or control request in a timely fasion

    Try the following:
    Uninstall and Re-Install the PK
    Open up an elevated cmd and enter the following commands:
    slmgr –upk
    This will uninstall the current Product Key
    slmgr –cpky
    This will clear the product key from the registry
    slmgr –rilc
    This will re-install the System License Files
    slmgr –ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX
    This will install your Product Key
    slmgr –ato
    This will activate your Product Key
    NOTE: Useful commands for SLMGR
    -dli -> Display License information
    -dly -> Display detailed License Information
    -upk -> Uninstall Product key
    -ipk -> Install Product Key
    -ato -> Activate Windows
    -rearm -> Reset the Licensing Status of the machine
    This post is provided AS IS with no warranties or guarantees
    , and confers no rights.

  • Can Oracle 9i run in Windows 2008?

    Hi All,
    Can Oracle 9i run in Wondows Server 2008 environment?
    Thanks,
    Sam.
    Edited by: user6533646 on 2010年3月17日 上午12:08

    Oracle 9i is desupported.
    To the best of my knowledge Oracle 10g is also not supported on Windows 2008.
    Go ahead and try installing if it works its great. Of course I will not recommend it for official use.

  • Unable to install Oracle 10g R2 on Windows Vista Business

    Specification for my Machine/Laptop- Lenovo SL400
    windows 32-bit
    Windows Vista Business
    Oracle installation fails several times with unknown error.
    Is this a compatibiity issues? Do I need to install other drivers or downgrate to Windows XP Professional?
    Thanks for your help.
    Pankaj Pratim Chanda
    Chennai
    India
    Solved!
    Go to Solution.

    Pankaj
    Which version of oracle have you installed?According to the dcoumentation,
    Do not install Oracle Database on Windows Vista or Windows Server 2008 using the media for Oracle Database 10g Release 2 (10.2) for Microsoft Windows. Do not use the Oracle Database 10g Release 2 (10.2.0.3.0) for Microsoft Windows Vista or the Oracle Database 10g Release 2 (10.2.0.3.0) for Microsoft Windows Vista and Microsoft Windows Server 2008 media to install on operating systems other than Windows Vista or Windows Server 2008.
    Oracle Database is supported on Windows Vista with the 10.2.0.3 release. If you used the Oracle Database 10g Release 2 (10.2.0.3.0) for Microsoft Windows Vista media, then Oracle recommends that you install the 10.2.0.4 patch set. You do not need to use the Oracle Database 10g Release 2 (10.2.0.3.0) for Microsoft Windows Vista and Microsoft Windows Server 2008 media.
    For new installations on Windows Vista or Windows Server 2008, use the Oracle Database 10g Release 2 (10.2.0.3.0) for Microsoft Windows Vista and Microsoft Windows Server 2008 media. This new software is available in the updated media pack
    More information available here 
    http://download.oracle.com/docs/cd/B19306_01/relnotes.102/b14264/toc.htm#CHDFCIAC
    Cheers and regards,
    • » νιנαソѕαяα∂нι ѕαмανє∂αм ™ « •
    ●๋•کáŕádhí'ک díáŕý ツ
    I am a volunteer here. I don't work for Lenovo

  • Can ATG 10.0.3 run on windows 7 enterprise edition of OS ?

    Hi guys,
    I'm having some trouble with ATG, when i try to run atg CRS demo in windows 7 ent edition i get these errors. i'm thinking this is not starting some of nucleus in my PC. When i tried it on a Windows Server OS, it started normaly. (i mean with out errors.). so what would be the problem in my Windows 7 ent OS pc??
    error in jboss server log ------>
    2012-03-05 17:39:54,150 INFO [nucleusNamespace.atg.dynamo.service.logging.ScreenLog] (main) Using external info logging for Nucleus debug and trace messages to prevent hidden Nucleus logging. Set the Nucleus /atg/dynamo/service/logging/ScreenLog.useInfoForDebug property to false to use external logging debug and trace instead.
    2012-03-05 17:39:57,175 WARN [nucleusNamespace.DistributorSender] (main) No remote servers configured
    2012-03-05 17:39:57,310 INFO [nucleusNamespace.atg.commerce.pricing.priceLists.PriceLists] (main) SQL Repository startup complete
    2012-03-05 17:39:57,349 ERROR [nucleusNamespace.] (main) Unable to resolve component /atg/multisite/SiteRepository
    java.lang.IllegalArgumentException: null source
         at java.util.EventObject.<init>(EventObject.java:38)
         at javax.sql.StatementEvent.<init>(StatementEvent.java:39)
         at com.mysql.jdbc.jdbc2.optional.JDBC4PreparedStatementWrapper.close(JDBC4PreparedStatementWrapper.java:70)
         at org.jboss.resource.adapter.jdbc.WrappedStatement.internalClose(WrappedStatement.java:881)
         at org.jboss.resource.adapter.jdbc.WrappedStatement.close(WrappedStatement.java:79)
         at atg.adapter.gsa.SQLStatement.close(SQLStatement.java:788)
         at atg.adapter.gsa.Table.close(Table.java:3578)
         at atg.adapter.gsa.Table.check(Table.java:2141)
         at atg.adapter.gsa.GSARepository.checkTables(GSARepository.java:7231)
         at atg.adapter.gsa.GSARepository.initialize(GSARepository.java:5627)
         at atg.adapter.gsa.GSARepository.initializeTransactionally(GSARepository.java:5467)
    and i also foung this error in my cim log file .......
    info     Mon Mar 05 17:23:43 IST 2012     1330948423740     atg.cim.database.dbsetup.CimDBJobManager     Top level module list for Datasource Publishing: DCS-UI.Versioned,BIZUI,PubPortlet,DafEar.Admin,SiteAdmin.Versioned,B2CCommerce.Versioned,DCS.Versioned,DCS-UI,Store.EStore.Versioned,Store.Storefront,Portal.paf,Store.Storefront
    **** info     Mon Mar 05 17:23:45 IST 2012     1330948425286     atg.cim.database.dbsetup.CimDBJobManager     35 of 35 imports not previously run.
    **** info     Mon Mar 05 17:23:45 IST 2012     1330948425346     atg.cim.database.dbsetup.CimDBJobManager     Top level module list for Datasource Production Core: DafEar.Admin,DPS,DSS,B2CCommerce,DCS.PublishingAgent,DCS.AbandonedOrderServices,Store.Storefront,Store.Storefront.NoPublishing,Store.Fulfillment,Store.EStore
    **** info     Mon Mar 05 17:23:45 IST 2012     1330948425735     atg.cim.database.dbsetup.CimDBJobManager     0 of 12 imports not previously run.
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor     ---     atg.cim.StepException: DisplayMainMenu:Error Executing Step
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:87)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:69)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:78)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.startCimFlow(Launcher.java:168)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.main(Launcher.java:68)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor     Caused by :atg.cim.StepException: DisplayMainMenu:Error Executing Step Commands
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:219)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:69)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:78)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.startCimFlow(Launcher.java:168)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.main(Launcher.java:68)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor     Caused by (#2):atg.cim.CommandException: Error Executing Wizard
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:76)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:128)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:156)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:216)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:69)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:78)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.startCimFlow(Launcher.java:168)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.main(Launcher.java:68)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor     Caused by (#3):atg.cim.RunnerException: Error processing Steps.
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:154)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:73)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:128)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:156)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:216)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:69)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:78)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.startCimFlow(Launcher.java:168)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.main(Launcher.java:68)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor     Caused by (#4):atg.cim.StepException: ProductCalculatorTemplateStep:Error Executing Step
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:97)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:73)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:128)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:156)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:216)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:69)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:78)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.startCimFlow(Launcher.java:168)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.main(Launcher.java:68)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor     Caused by (#5):atg.cim.StepException: ProductCalculatorTemplateStep:Error Executing Template
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:132)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:73)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:128)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:156)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:216)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:69)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:78)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.startCimFlow(Launcher.java:168)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.main(Launcher.java:68)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor     Caused by (#6):atg.cim.CommandException: Error Executing Template
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:72)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:128)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:156)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:129)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:73)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:128)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:156)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:216)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:69)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:78)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.startCimFlow(Launcher.java:168)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.main(Launcher.java:68)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor     Caused by (#7):atg.cim.RunnerException: Error processing Steps.
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:154)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:69)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:128)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:156)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:129)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:73)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:128)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:156)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:216)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:69)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:78)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.startCimFlow(Launcher.java:168)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.main(Launcher.java:68)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor     Caused by (#8):atg.cim.StepException: :Error Executing Step
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:97)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.types.LaunchTemplate.execute(LaunchTemplate.java:69)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:128)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:156)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:129)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.types.LaunchWizard.execute(LaunchWizard.java:73)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:128)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:156)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:216)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processCurrentStep(StepExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.runner.Runner.run(Runner.java:152)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlow.startupFlow(CimFlow.java:69)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.flow.CimFlowCreator.startDefaultCimFlow(CimFlowCreator.java:78)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.startCimFlow(Launcher.java:168)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.Launcher.main(Launcher.java:68)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor     Caused by (#9):atg.cim.CimXmlRuntimeException: Error getting server-instance-type xml for Product id store.
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.product.modulelist.MultipleProductMergeCalculator.getSource(MultipleProductMergeCalculator.java:560)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.product.modulelist.MultipleProductMergeCalculator.getCombinedProductXML(MultipleProductMergeCalculator.java:686)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.product.modulelist.MultipleProductMergeCalculator.getCombinedProduct(MultipleProductMergeCalculator.java:671)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.product.modulelist.MultipleProductMergeCalculator.getCombinedServerInstanceTypes(MultipleProductMergeCalculator.java:507)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.product.modulelist.MultipleProductMergeCalculator.calculate(MultipleProductMergeCalculator.java:139)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.productconfig.productselector.ProductCalculatorTask.execute(ProductCalculatorTask.java:90)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.task.TaskExecutor.execute(TaskExecutor.java:134)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.task.TaskExecutor.executeTasks(TaskExecutor.java:80)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.types.ExecuteStepTasks.execute(ExecuteStepTasks.java:51)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.execute(CommandExecutor.java:128)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.command.CommandExecutor.executeCommands(CommandExecutor.java:156)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.executeValidations(StepExecutor.java:289)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.ui.text.TextDisplay.processStep(TextDisplay.java:436)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.ui.UIDispatchImpl.processStep(UIDispatchImpl.java:89)
    **** Error     Mon Mar 05 17:23:53 IST 2012     1330948433562     atg.cim.step.StepExecutor          at atg.cim.step.StepExecutor.processStep(StepExecutor.java:201)
    Thanks ........

    Hi ,
    Ideally it should run , think some problem in your enviornment,
    1- check your JDK version.
    2- check installation log , was it successfull ?
    3 - right click on the exe and your can install in compatibility mode for different versions of windows.try that.
    ~ Praveer

  • ODBC access to an Oracle DB running on Windows Server 64 bit?

    I'm being told by a company that there is no way to connect via ODBC from my Mac to an Oracle database hosted on a Windows 64 bit server. Does anyone know whether that is true, and if not, what tool or driver one could use to make the connection?
    Thanks,
    ~Andrew

    Fabio D'Alfonso wrote:
    Hi,
    I was setting up VMware vCenter 4.1 (probably the only well known and largely used product with this lethal mix) and needed to setup an ODBC access to Oracle on the 32 bit side of Windows to setup the Update Manager server component, which is still a 32 bit application)
    The problem with Oracle configuration is that in no way I found a 32 bit ODBC registered driver after the setup (of the 32 bit client and the 64 database server). I tried some third party driver for oracle (e.g. easysoft).They registered in the 32 bit ODBC manager but they never got a successful connection.
    Also if this vCenter requirement is questionable (more questionable considering that the setup of this 32 component is not allowed on a 32 separate OS, not because it is separate but because is a 32 bit OS) I would get it working.
    Could suggest a way to get this working?
    Thanks
    Fabio D'AlfonsoWhen you install the Oracle client software on Windows (which is necessary to support ODBC, as the Oracle ODBC driver sits on top of the native client software) the ODBC driver is NOT installed by default. You have to go back and do a "custom" install and select the "Windows components".

  • Printer won't install on Windows 7 Business edition

    I bought this today and I went to install it via the disc. The installation stopped me and told me I had the wrong operating system when surely Windows 7 Buisness edition should be supported? 
    Is there a way around this or do I need to buy another operating system just to use my printer?

    Hey,
    First try installing the software below and check for any differnce:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-120038-6&cc=us&dlc=en&lc=en...
    If the same error appears a such may happen due to other issues than the operating system version (e.g. lack of Administrator rights, free space, ram, etc.
    Follow these guidelines, the steps should be similar for Windows 7:
    http://support.hp.com/us-en/document/c03532486/
    Additionally let me know how much free space and RAM you have on your PC, as well look for any Details button once the error message appears.
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • ORACLE 9i Download for Windows XP Home EDITION

    Hello,
    I downloaded Oracle 9i then when i try to install I am getting following error
    Error: 'Setup.exe is not a valid WIN32 Applications'
    Please help!
    Regards,
    Reddy

    I can only comment on the database installation. Oracle has now supported 9i for XP professional (no previous versions will be supported). XP home will NOT be a supported platform for Oracle products.
    NOTE: There is a bug with 9i installations that the OUI will fail if the CLASSPATH has been set by installations from previous Oracle installations. Before installing 9i you will need to clear the CLASSPATH and then proceed with your installation. Once the installation is complete you can restore the CLASSPATH with your original settings.
    Regards Raf

  • Startpage firefox 4 shows the firefoxlogo, a searchfield and another empty field. search button doensn't work. I have this problem on two pc and one laptop, all windows vista (business edition, and premium edition)

    when I make a new useraccount it works fine, but updating from the latest firefox 3 version didn't work.
    I use the old firefox startpage (www.google.nl/firefox) now, but I wonder why this is happening

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • Studio 8 doesn't run on Windows 7 [subject edited by moderator]

    On a Windows 7 machine, my Studio 8, an upgrade from MX2004 which includes DW-8  no longer works, error msg. states registration problem "reinstall software". Tried everything to fix this issue. Flash 8 (part of Studio 8 works fine) Re-installed MX2004 {remainder of subject truncated here}.
    Help

    Something here may help you...
    Error: Unable to Activate | Macromedia products

  • PC Suite + Windows Vista Business-edition has an c...

    I tried to copy material from E70 to PC, pics, documents etc and it just annouses error in comminication between devices. So far nothing really serious, but IF you have tried transfering by cut-paste, it deletes files from the telephone but cannot move them to PC.

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

Maybe you are looking for

  • Uploading Excel to Internal Table

    Hi,   Can anyone please look into the code and suggest me the changes in uploading Excel to Internal Table. Code is as below in OnInputProcessing. DATA: event TYPE REF TO CL_HTMLB_EVENT. event = CL_HTMLB_MANAGER=>get_event( runtime->server->request )

  • Keynote 6.0.1: How To Set Rulers?

    Yo, Keynote fans. Since upgrading to Keynote 6.0.1 (on Mavericks), the new RULERS functionality is stumping me. How do I set (or re-set) the 0/ZERO values of the horizontal & vertical rulers to appear at the middle of each slide, and not in the (defa

  • Anyone else's beat mapping not working?

    Hi there, noticed yet another bug in Logic 9. I'm trying to do beat mapping according to a virtual instrument region (the last region in a song), and mapping Logic's quarter notes to their respective places results to a slightly different tempo than

  • My ipod wont display anything, just a black screen.

    i took it off of the charger yesterday and the display wouldnt work, i tried resetting it, but my laptop wont recognise it and i cant tell if it's charging anymore

  • Question in spring-web.xml

    My application's name is Example. I want all webpages from /Example/*.htm to be directed to a servlet. And all pages from /Example/a/code to be directed to another servlet. "Code" does not end with .htm. I tried the below mapping in the web.xml. It d