Connection Exception during Installation (Locate Repository)

Hi,
I am trying to install IDM 7. Following are more details:
Win XP, JDK 1.4.2_04, ODBC MySQL Connector 3.51, My SQL 5.0, Tomcat 5.0.
When I reach the Launch Setup step, after copying the mysqljdbc.jar file inside IDM_HOME\WEB-INF\lib when I proceed, I get the error (pasted below) on selecting "MySQL (JDBC Driver)" & pressing NEXT.
*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~
com.waveset.util.ConfigurationError:
==> java.sql.SQLException: Unable to connect to any hosts due to exception: java.net.SocketException: java.net.ConnectException: Connection refused: connect
** BEGIN NESTED EXCEPTION **
java.net.SocketException
MESSAGE: java.net.ConnectException: Connection refused: connect
STACKTRACE:
java.net.SocketException: java.net.ConnectException: Connection refused: connect
     at com.mysql.jdbc.StandardSocketFactory.connect(StandardSocketFactory.java:143)
     at com.mysql.jdbc.MysqlIO.<init>(MysqlIO.java:225)
*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~
Pls let me know the resolution.
Thanks
Rahul A Honrao
Patni Computer Systems

Hi Harry,
Thanks for your reply.
To answer your questions...
1. Yes, I am installing MySQL on the same machine as IDM.
2. On the Locate Repository screen when I select the MySQL JDBC from dropdown, I am not changing any default pre-populated values of driver, username, password, etc.
Anyways, my problem is resolved.
Problem was due to the spaces appearing in the installation paths of the other dependent SWs like Java, MySQL, etc.
Thanks again.
Regards
Rahul A Honrao

Similar Messages

  • 8.1.6 Java Exceptions during Installation

    When installing from the Oracle provided CD the installation crashes with a java exception when I select a product to install.
    I copied the entire CD onto linux and the installation completes successfully.
    Any ideas?

    hi radhika,
    While installing oracle 8.1.6, the one of the optional tool database configuration assistant failed.(DBCA-00047 : unable to create destination directories).
    so i tried to create database manually.
    so i copied init.ora file as initdemo.ora and edited the file as follows:
    db_name=demo
    controlfiles=('/disk1/oradata/demo/system01.dbf','/disk2/oradata/demo/system02.dbf')
    cdump=/disk1/oradata/demo/cdump
    bdump=/disk1/oradata/demo/bdump
    udump=/disk1/oradata/demo/udump
    then i saved the file.
    After that i created a script for database creation as "demo.sql" to create database at nomount stage.
    i.e,
    create database demo
    logfile group1('/disk1/oradata/demo/log1.log',/disk2/oradata/demo/log2.log') size 1000k
    group2('/disk1/oradata/demo/log3.log',/disk2/oradata/demo/log4.log') size 1000k
    controlfile reuse;
    and saved it.
    I gave the following commonds at the prompt:
    $export $ORACLE_SID=demo
    $svrmgrl
    SVRMGR>connect internal
    connected.
    SVRMGR>startup nomount
    here i got stuck up as it is not getting starting the instance.
    so i tried in SQLPLUS mode
    $sqlplus
    username/password: sys/oracle as sysdba
    Instance is idle.
    SQL>startup nomount
    LRM-00109 couldnot open parameter file.
    ORA-01078 failure in processing system parameters.
    so can you tell me where iam going wrong.
    Praveen
    [email protected]

  • [SOLVED] Wireless internet connection problem during installation

    Hi to everyone!
    I ask you a help in activating my wireless connection.
    I tried to install from the recent ISO (201208 - via CD)
    but I found some problems in activating a wireless connection in the first steps
    of the installation guide.
    My laptop is a Hp pavilion dv5 1020-el, with an Intel wireless 5100AGN internal interface.
    So I did:
    1) iwconfig to see my devices and the system detects my wlan0.
    2) followed the Wireless_Setup page from wiki to set it
    3) used wpa_supplicant and passphrase to set my ESSID name and wpa key.
    4) iwconfig then showed wlan0 associated with my ESSID, with Power ON and Encryption OFF.
    I could not try a connection via ping command.
    Even wpa_supplicant -i wlan0 -c /etc/wpa_supplicant.conf did not work.
    Maybe the problem is with Encryption OFF.
    Thanks for your attention!
    EDIT:
    I solved this way,connecting to an open wireless open  network:
    1.(from boot) I created a profile in /etc/network.d/ from /etc/network.d/examples
    2. started a # netcfg 'my_ESSID'
    3. # ping -c 3 www.google.com
    All is ok! I can install Arch Linux from my smartphone as a router.
    But I couldn't connect to a WPA protected wireless network yet.
    Last edited by spinaluc (2012-08-18 13:08:15)

    Thanks to everyone who responded to my question. The company who provides the wireless internet service to my apartment complex moved the antenna next to my unit and claims he boosted the power. As the saying goes, "The squeaky wheel gets the grease". I complained almost daily to the apartment manager and she, in turn, griped to the provider which eventually led to the "solution" above. Using Skype is still shaky as the person I'm calling isn't always able to make out what I am saying. So, I use Skype only when I REALLY need to make a phone call. Even though none of your suggestions solved my problem, I am still very, very grateful to all of you who tried. Thank you very, very much! -- Matt

  • Not Connected Exception during long operation

    Hi all. My program does a very long operation - more than an hour. (import records from excel file). I create a thread, the operation runs there, and put af:poll on the page for changing progress indicator. So it's ok. The trouble is that I get
    Exception in thread "Thread-90" oracle.jbo.NotConnectedException: JBO-25200: Application module is not connected to a database.
         at oracle.jbo.server.DefaultTxnHandlerImpl.handleRollback(DefaultTxnHandlerImpl.java:145)
         at oracle.jbo.server.DBTransactionImpl.doRollback(DBTransactionImpl.java:4872)
         at oracle.jbo.server.DBTransactionImpl.rollback(DBTransactionImpl.java:2429)
         at kz.kklife.insis.modules.policyImport.ImportRunner.run(ImportRunner.java:124)
         at java.lang.Thread.run(Thread.java:619)
    after some time.
    With default jbo.ampool.timetolive (3 600 000) it throws exactly in an hour after starting developer server. So I changed it to 7 200 000. But I got an error on a production server in a random time - because I don't restart it just before importing, of course.
    So, is there any settings for weblogic not to disconnect transactions? (I get a transaction object through getDBTransaction() method of application module) I tried to uncheck "Ignore In-Use Connections" option, but it didn't help.

    Timo Hahn wrote:
    As far as I understand the framework, a transaction begins directly after the last commit or rollback.
    So I assume that the timeout is reset at this point. I would not make sense doing it otherwise. As you already mentioned if you set the timeout to e.g. 2 hours and you get the am instance from the pool after 1:59,59 of initializing the transaction it would be stale before you had any chance to do something with it.Oh. I'll try to commit new transaction just before import, thanks. Need I do something like
      DBTransaction transaction = ADFFacesUtils.getApplicationModuleForDataControl("ImportAppModuleDataControl").getDBTransaction();
      transaction.commit();
      // -- do long running stuffor you mean some another way to commit?
    I would set up a different configuration for this long running transaction (an other AM configuration) where I increase the timeout value to a higher number. Then use an instance from this configuration for the long running stuff only.I use another AM, only for long running stuff. But users can do import simultaneously.

  • ClassNotFound Exception during Installation

    I've been installing Java since version 1.0.  So I was quite surprised this morning while attempting to install Java SE 8u25 + NetBeans.  I received a ClassNotFoundException from main() at the start of the installation process.  I am trying to install the 64-bit version on Windows 7.  Any suggestions?  Thanks.

    I know "me too" isn't especially helpful, but I see the same in a slightly different environment.
    2015-01-09: Attempting to install JDK+NB
    My System:
        Processor:            Intel(R) Core(TM) i3-2370M CPU @ 2.40GHz, 2.40GHz
        Installed memory:    4.00GiB (3.87 G usable)
        System type:        64-bit Operating System, x64-based processor  Windows-8.1
    Error:
        Installer:            jdk-8u25-nb-8_0_2-windows-x64.
        Message:            Exception java.lang.NoClassDefFoundError thrown from the
                                UncaughtExceptionHandler in thread "main"
    I have tried the following, without success:
         Completely remove all Java components, try to install the above.  Same failure.
         Install a JRE (both Win32 and Win64 tried).  Same failure.

  • Windows XP can't connect to OfficeJet 4630 during installation

    Just bought a new OfficeJet 4630 and am very excited to use its wireless features. I got it connected to our in-home wireless router (Netgear) very easily, typing the WEP key right into the printer's keypad. I was subsequently able to install it on my DELL Latitude, from which I can print wirelessly or plugged in to USB, as well as cloud printing and ePrinting. Test pages, alignment pages, etc., all have printed just fine. My wife's acer netbook is another story. She's running Windows XP and has hit a major snag in the installation process. Whether we install the software and drivers from the internet download location specific to the OfficeJet 4630 or with the included CD, it makes it past the step of installing software but encounters an error when it is time to connect to the printer. The software has us choose whether to connect wirelessly, over USB, or later, and following the on screen instructions for either wireless or USB leads to the same error: The computer is unable to connect to the printer at this time.
    During installation, when we choose to connect wirelessly and the installation software shows us a list of network printers to choose from, the OfficeJet shows up and we can select it - we can also find it by typing in the IP Address (10.0.0.9) into the Advanced Search bar. We can type the IP address into the web browser and see the printer's EMS and edit various options. We've made sure that my wife's computer is on the Workgroup MSHOME (since I read somewhere that OfficeJets only like to work on that workgroup and not any others). I've followed every other possible instruction given by either HP or these forums (disabling firewalls, startup services, uninstalling and re-installing HP software, etc.) and still, every time, a connection error whether we use Wi-Fi or USB.
    We are getting really desparate to use this beautiful machine to its fullest potential - someone please help!

    What is the IP address of your modem?  What is the IP address of the router?  With a 10.x.x.x IP tells me you may have a double NAT situation at home.  This basically means your router will change it's IP to 10.x.x.x because it's default IP is the same as the modem. Connect just to your modem and what is the IP?  Now connect JUST your router, no other connection to the modem, and what is it's IP? 
    You can use a cmd prompt and just type in ipconfig.  What is listed as the Default Gateway for both?
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • CJS-30196  Connect to SAP gateway failed: Error during installation

    Dear Experts,
    Please Help me with the following error i am getting during installation of ECC6 with MAXDB,
    ERROR 2009-08-04 08:28:43
    CJS-30196  Connect to SAP gateway failed
    Connect_PM  TYPE=A ASHOST=node1 SYSNR=03 GWHOST=node1 GWSERV=sapgw03 PCS=1
    LOCATION    CPIC (TCP/IP) on local host with Unicode
    ERROR       partner 'node1:sapgw03' not reached
    TIME        Tue Aug 04 08:28:43 2009
    RELEASE     700
    COMPONENT   NI (network interface)
    VERSION     38
    RC          -10
    MODULE      nixxi.cpp
    LINE        2764
    DETAIL      NiPConnect2
    SYSTEM CALL connect
    ERRNO       10061
    ERRNO TEXT  WSAECONNREFUSED: Connection refused
    COUNTER     1
    ERROR 2009-08-04 08:28:43
    FCO-00011  The step createADSUser with step key |NW_Onehost|ind|ind|ind|ind|0|0|SAP_Software_Features_Configuration|ind|ind|ind|ind|5|0|NW_Usage_Types_Configuration_AS|ind|ind|ind|ind|0|0|NW_CONFIG_ADS|ind|ind|ind|ind|2|0|createADSUser was executed with status ERROR .
    Regards,
    Ritesh Bhatia

    Hi Guys,
    I am installing Ecc6 on my laptop. While installing i have got a below error...
    ERROR 2012-01-24 06:58:02
    CJS-30196  Connect to SAP gateway failedConnect_PM  TYPE=A
    ASHOST=ecc6 SYSNR=04 GWHOST=ecc6 GWSERV=sapgw04 PCS=1LOCATION   
    CPIC (TCP/IP) on local host with UnicodeERROR       partner
    'ecc6:sapgw04' not reachedTIME        Tue Jan 24 06:58:02
    2012RELEASE     700COMPONENT   NI (network interface)VERSION   
    38RC          -10MODULE      nixxi.cppLINE        2764DETAIL   
      NiPConnect2SYSTEM CALL connectERRNO       10061ERRNO TEXT
    WSAECONNREFUSED: Connection refusedCOUNTER
    ERROR 2012-01-24 06:58:02
    FCO-00011  The step createJSF with step key
    NW_Onehost
    ind
    ind
    ind
    ind
    0
    0
    NW_Onehost_System
    ind
    ind
    ind
    ind
    1
    0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Doublestack|ind
    |ind|ind|ind|3|0|createJSF was executed with status ERROR .
    Could you please provide some solution for this?
    with regards
    Vinayak

  • "Invalid CMS Connection" Error during DS 4.2 SP2 Installation

    Hi Everybody,
      Can anyone shed the light on the following dead end issue we are facing during Data Service 4.2 SP 2 Add On the EXISTING BOBI 4.1 SP2
      ( compatibility is confirmed by SAP through OSS Incident).
      Environment :
      Existing  Distributed Architecture of BOBI 4.1 SP 2 i..e CMS DB Oracle on One Host and BOBI 4.2 SP2 on Another Host
      Adding :  Data Services 4.2 SP2 on Separate Host
      OS :  Linux RED HAT 6.3 (VMware)
      At the initial Information Gathering Phase of   Data Services Installation I  face the following issue at the section of  " Enter CMS Name " :
       - We entered Physical / Virtual server name   with and without FQDN  i.e. Current CMS Host
       - Next is Admin and Password  i.e. Administrator and Password of Existing CMS
    We get the following System Response / Error :
    Invalid CMS Connection Information.
    Installer could not detect a running Data Services Administrator Service with
    the specified CMS connection information.
    and no valid local SIA node was found.
    Installer can not continue.
    Please fix this problem by:
    1. Making sure a Data Services Administrator Service is up and running with the specified CMS;
    2. or creating a valid local SIA node to point to the specified CMS.
      It seems this is Known Issue and I  see two notes :
    1837296 - ERROR: No valid local SIA nodes exist for the given CMS connection information - Data Services 4.x
                       - Not applicable as this is for IPS based installation
    1682686 - Cannot connect to the CMS during installation of Data Services or Information Steward
                       - This note suggests to enter the TEMP variable pointing to location of Log Files Storing the Installation Logs
                          accordingly we did set " export TEMP=/usr/sap/<SID>/BOBI  "  as Temp variable but same error persists with the same message !!
                       - This note says valid for " DS 4.1 "
                             ..seems SAP Fall behind with the Rapid Frequency of  DS Releases and even in this note there's extremely brief so called solution
                             ...Defining TEMP should solve this issue in this case as per the note but, it is not solving issue at all !!
    In addition to define TEMP Variable to resolve this, following verification, further attempts are made to fix it :
    #1. I am able to ping from Data Services Host to CMS Host and there's no Firewall blocking this connection
    #2. Using IP in place of  Host Name ( FQDN or without FQDN ) does NOT resolve
    #3. With Administrator / Password mentioned - log in is possible
    #4. Added entries in /etc/hosts of CMS Host and in DS Host ( cross entries )
    #5  There's a Thread -
                  http://scn.sap.com/thread/3469916 -- and as per that following sap note 1682686 resolves this specific issue but, in our case it does not !
    In short : as of now we are at dead end  !!
    Pl. share your knowledge, inputs - Thanks.
    Thanks,
    Regards,
    - Ishan

    Hi Amit,
    Thanks for the suggestion - telnet to CMS Host is successful.
    I see the following entries in /tmp - file :
    =======================================================================
    //verify dataservices installation begin
    CMS_CONNECTED=true
    CMSVersion=14.1.0
    BuildNumber=1278
    DS_INSTALLED=false
    //Local server hostname is : ITSBEBEL00<local_ds_host>.XYZ.COM
    //SI_SERVER_NAME for EnterpriseNode is : <cms_host>.XYZ.COM
    NODE_LIST=
    IS_ADMIN=true
    The service DS.AdminService could not be found on the client side (FWM 02027)
    com.crystaldecisions.sdk.pojomgr.axis2.internal.Axis2ServiceMgr.findService(Axis2ServiceMgr.java:193)
    com.crystaldecisions.sdk.pojomgr.axis2.internal.Axis2ServiceMgr.makePOJO(Axis2ServiceMgr.java:83)
    com.crystaldecisions.sdk.pojomgr.internal.POJOMgr.makePOJO(POJOMgr.java:35)
    com.crystaldecisions.sdk.framework.internal.EnterpriseSession.getService_aroundBody14(EnterpriseSession.java:347)
    com.crystaldecisions.sdk.framework.internal.EnterpriseSession.getService(EnterpriseSession.java:1)
    com.crystaldecisions.sdk.framework.internal.EnterpriseSession.getService_aroundBody16(EnterpriseSession.java:364)
    com.crystaldecisions.sdk.framework.internal.EnterpriseSession.getService_aroundBody17$advice(EnterpriseSession.java:512)
    com.crystaldecisions.sdk.framework.internal.EnterpriseSession.getService(EnterpriseSession.java:1)
    com.businessobjects.di.install.CMSConnect.getDSAdminService(CMSConnect.java:244)
    com.businessobjects.di.install.CMSConnect.main(CMSConnect.java:321)
    DS_AdminService_Installed=false
    RETURN_CODE=2
    //verify dataservices installation end
    ====================================================================
    It is puzzling that without the completion of Data Services Installation why the DS Installer is expecting ' DS.Admin services " running on 'client' ...this is an extension or add on of Data Services (to be installed on separated linux host) and communication is supposed to be from DS Host to CMS Host !! Where is the scope of client here ??
    We do see that connection to CMS Host is possible ..I found few more notes related to this ( not for the identical OS+DB+DS ver. i.e. Linux+Oracle+DS 4.2 SP2)  e.g. 1824068, 1632561 but, none of it helps to resolve the issue.
    Thanks,
    Best Regards,
    - Ishan

  • Network Adapter could not establish connection during installation

    Hi,
    I'm trying to install html db v10.2.0.1 and http server on the Fedora Core 4 platform and am getting a "Network Adapter could not establish connection during installation" error. This occurs after pressing Next at on the Specify HTML DB Database Details dialog box. Note that I'm not new to oracle databases or html db. I can't seem to find a similar thread on this forum related to the html db v2 install and I've read the FAQ related to the installation, making sure that I unset the TNS_ADMIN and ORACLE_HOME environment variables before launching the installer. I also checked that I can connect to the database via the listener, sqlplus sys@database as sysdba. I checked the listener status:
    [oracle@hinault ~]$ lsnrctl status
    LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 18-AUG-2005 12:03:23
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
    Start Date 18-AUG-2005 08:11:25
    Uptime 0 days 3 hr. 51 min. 58 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Log File /u01/app/oracle/product/10.2.0/network/log/listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=hinault.com)(PORT=1521)))
    Services Summary...
    Service "tibbetts" has 1 instance(s).
    Instance "tibbetts", status READY, has 1 handler(s) for this service...
    Service "tibbettsXDB" has 1 instance(s).
    Instance "tibbetts", status READY, has 1 handler(s) for this service...
    Service "tibbetts_XPT" has 1 instance(s).
    Instance "tibbetts", status READY, has 1 handler(s) for this service...
    The command completed successfully
    I also checked the installation log files. Here's the contents of the end of the file:
    schemaName = sys
    schemaPassword = Protected value, not to be logged
    connectString = //hinault.com:1521/tibbetts
    userName = FLOWS_010600
    INFO: Query Returned: ERROR:Exception occured while connecting to database. Please check the connection details of the database you specified and retry.
    Io exception: The Network Adapter could not establish the connection
    SEVERE: The installer has encountered the following error while trying to connect to the target database:
    ERROR:Exception occured while connecting to database. Please check the connection details of the database you specified and retry.
    Io exception: The Network Adapter could not establish the connection
    INFO: User Selected: Yes/OK
    I also checked the listener log and it looks normal. I checked that I entered the correct values in the Specify HTML DB Database Details dialog box, hostname, port and service name.

    [root@hinault sbin]# ifconfig -a
    eth0 Link encap:Ethernet HWaddr 00:12:3F:DF:23:BF
    inet addr:10.100.41.136 Bcast:10.100.41.255 Mask:255.255.255.0
    inet6 addr: fe80::212:3fff:fedf:23bf/64 Scope:Link
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:72238 errors:0 dropped:0 overruns:0 frame:0
    TX packets:44289 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:19151698 (18.2 MiB) TX bytes:4351417 (4.1 MiB)
    Interrupt:9
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    inet6 addr: ::1/128 Scope:Host
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:6838 errors:0 dropped:0 overruns:0 frame:0
    TX packets:6838 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:3168107 (3.0 MiB) TX bytes:3168107 (3.0 MiB)
    sit0 Link encap:IPv6-in-IPv4
    NOARP MTU:1480 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)

  • 4i Viewer "General exception during connect" error

    4i Viewer servlet runs but with the following error --- "General exception during connect" (in the lower LH part of webpage). We're using a distributed setup: a WinNT4(sp6a)/IIS 4.0/JRun 3.0 machine and a Discoverer 4i server (WinNT4 sp6a). Plus has been tested and works (applet to EUL/db). JRun classpath is set correctly because the servlet starts. Does anyone know how to resolve this issue with the servlet connection to Discoverer services (servlet->Locator->Session)?

    hi,
    did you got the solution i am having same problem.

  • Message 'computer unable to connect to printer' appears during installation of laserjet p1102w.

    During installation of wireless software for Laserjet P1102W on computer with XP Professional (pk2), the message ' printer was able to connect to wireless network.  However, this computer is unable to connect to the printer.'   I verified the computer and printer both connected to same named network with same WEP , open, key, etc. credentials.  I have a linksys connected to the computer and cable modem. When I connect using the USB connect wire to the computer directly, I can print.   Both software, wired and wireless, were loaded.  My HP Inkjet printer is wired to the linksys and works for multiple wireless network computers. Do I need to have a different printer? I thought i could still have a truly wireless printer!?!  I am a novice at this.  Thanks for any assistance you can give.
    This question was solved.
    View Solution.

    I called HP support.  The tech was very knowledgeable and helpful.  The HP Smart Install program (in printer and on CD) that came in the box  was an old version.  I needed to reset the printer back to factory default and  download the new firmware from HP.com internet site. 
    The older software had an incorrect router address (network). You can see the router (IP) address when you do the Self Test (holding down the 'on' button) under network Information.  The IPv4 address should be the same as your router.  Now my printer and computer are looking at the same network. 
    Works great!  Love this LaserJet.  Faster than my last HP LaserJet 4L.

  • Change Default Media Location During Installation

    Hello Everyone,
    I'm currently working on installing iTunes using command lines to push it to multiple computers in the organization I work for. However, we would like to change the default media location to C:/iTunes (as an example) during installation, instead of it being created in \\server\user\music\iTunes (example). We'd like to change it so it's not storing files on the server and not taking up space on people's personal work shares.
    I searched other discussions and Google'd it, but I couldn't find a definitive answer.
    We use Windows 7 x64 operating system if that needs to be known.

    Hmm, no one here has any idea if this can be done?

  • Ipod Touch 16gb wont connect to my wifi anymore. Others can connect to mine and my Ipod can connect to all other locations except mine. It used to with no problem. I have restarted my Mac, my router and Ipod many times and nothing works. Help

    Ipod Touch 16gb wont connect to my wifi anymore. Others can connect to mine and my Ipod can connect to all other locations except mine. It used to with no problem. I have restarted my Mac, my router and Ipod many times and nothing works. Help

    My paper work for my linksys says WEP 64 bits. I've tried changing my IPOD to that and it will say put in password and when I do I get "invalid password" or can not connect. This has been in the last few weeks. I have researched this for the last 2 weeks, called apple and they said it's not my IPOD, called Linksys and they want to charge $30 to fix it. How do I change my router without totaly not messing it up?

  • Exception during JDI installation

    Hello,
    while trying to install the JDI i'm receiving an error message for development component tc.CBS.Appl and the whole deployment aborts.
    I can't find any hints in the OSS so does anyone here has some suggestions?
    Following is a part of the SDM log file:
    [code]Jun 1, 2005 8:53:12 PM   Info: Starting: Initial deployment: Selected development component 'tc.CBS.Appl'/'sap.com'/'SAP AG'/'6.4011.00.0000.20050217163841.0000' will be deployed.
    Jun 1, 2005 8:53:12 PM   Info: SDA to be deployed: E:\usr\sap\C40\DVEBMGS00\SDM\root\origin\sap.com\tc.CBS.Appl\SAP AG\6.4011.00.0000.20050217163841.0000\CBSAppl.ear
    Jun 1, 2005 8:53:12 PM   Info: Software type of SDA: J2EE
    Jun 1, 2005 8:53:12 PM   Info: ***** Begin of SAP J2EE Engine Deployment (J2EE Application) *****
    Jun 1, 2005 8:53:17 PM   Info: Begin of log messages of the target system:
    05/06/01 20:53:13 -  ***********************************************************
    05/06/01 20:53:15 -  Start updating EAR file...
    05/06/01 20:53:15 -  start-up mode is lazy
    05/06/01 20:53:15 -  EAR file updated successfully for 250ms.
    05/06/01 20:53:15 -  Start deploying ...
    05/06/01 20:53:15 -  EAR file uploaded to server for 359ms.
    05/06/01 20:53:17 -  ERROR: Not deployed. Deploy Service returned ERROR:
                         java.rmi.RemoteException: Cannot deploy application sap.com/tc.CBS.Appl..
                         Reason: Exception during generation of components of application sap.com/tc.CBS.Appl in container EJBContainer.; nested exception is:
                              com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application sap.com/tc.CBS.Appl in container EJBContainer.
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:477)
                              at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
                              at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:291)
                              at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:183)
                              at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:119)
                              at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
                              at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
                              at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                              at java.security.AccessController.doPrivileged(Native Method)
                              at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
                              at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
                         Caused by: com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application sap.com/tc.CBS.Appl in container EJBContainer.
                              at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:609)
                              at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:365)
                              at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:296)
                              at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:290)
                              at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:321)
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3028)
                              at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:462)
                              ... 10 more
                         Caused by: java.lang.NoClassDefFoundError: com/sap/tc/cbs/api/IBSModel
                              at java.lang.Class.getDeclaredConstructors0(Native Method)
                              at java.lang.Class.privateGetDeclaredConstructors(Class.java:1618)
                              at java.lang.Class.getConstructors(Class.java:865)
                              at com.sap.engine.services.ejb.deploy.verifier.BeanClassCheck.check(BeanClassCheck.java:33)
                              at com.sap.engine.services.ejb.deploy.verifier.session.SessionBeanCheck.check(SessionBeanCheck.java:51)
                              at com.sap.engine.services.ejb.deploy.verifier.Verifier.checkBean(Verifier.java:82)
                              at com.sap.engine.services.ejb.deploy.verifier.Verifier.check(Verifier.java:46)
                              at com.sap.engine.services.ejb.deploy.DeployAdmin.generate(DeployAdmin.java:258)
                              at com.sap.engine.services.ejb.EJBAdmin.deploy(EJBAdmin.java:2057)
                              at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:594)
                              ... 16 more
                         For detailed information see the log file of the Deploy Service.
    05/06/01 20:53:17 -  ***********************************************************
    Jun 1, 2005 8:53:17 PM   Info: End of log messages of the target system.
    Jun 1, 2005 8:53:17 PM   Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Jun 1, 2005 8:53:17 PM   Error: Aborted: development component 'tc.CBS.Appl'/'sap.com'/'SAP AG'/'6.4011.00.0000.20050217163841.0000':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/tc.CBS.Appl..
    Reason: Exception during generation of components of application sap.com/tc.CBS.Appl in container EJBContainer.; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application sap.com/tc.CBS.Appl in container EJBContainer.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)[/code]

    Hello,
    i have had the same problem
    /community [original link is broken]
    The problem is, that before you can install the JDI Online SC, you have to restart the J2EE Engine. After the restart you can complete your install. So just do the following:
    1.) Install JDI Offline and JDI Built tool.
    2.) restart the J2EE engine
    3.) install the JDI Online Component, which contains the CBS.
    regards,
    Markus

  • "Exception has been thrown by the target on an invocation" during installation of SQL 2014 CTP2

    Hi. 
    I have this error during installation SqlEngineConfigAction_install_confignonrc_Cpu64 (component of SQL 2014 CTP2) on virtual machine (Windows Server 2012 Standart). Logs in Event Viewer are clean. And I have no idea, what can I do with such problem.
    Maybe, you know and can help me?
    Later in Event Viewer appears such message (maybe this message can help to resolve this problem):
    Activation context generation failed for "c:\program files (x86)\microsoft sql server\120\Tools\Binn\managementstudio\CopyDatabaseWizard.exe".Error in manifest or policy file "c:\program files (x86)\microsoft sql server\120\Tools\Binn\managementstudio\CopyDatabaseWizard.exe"
    on line 8. The value "1.0" of attribute "version" in element "assemblyIdentity" is invalid.
    Source: SideBySide
    Event ID: 63

    Hi Max_Mikulik,
    According to your error message, we need to verify if the Antivirus software or other application hinder installing SQL Server 2014
    SQL Server 2014 CTP 2. When you install SQL Server 2014 CTP2, there are some notes.
    1. You must install .NET Framework 4.0 as well as PowerShell 2.0 .
    2. Copy Database Wizard has Limitations. I recommend you take a backup of the database in the instance of SQL Server running on a previous version and restore the database to SQL Server 2014 CTP 2. We can install SQL Server 2014 CTP 2 without
    choosing the component about Copy Database Wizard.
    For more information about SQL Server 2014 community technology preview 2 ( CTP 2) release notes, you can review the following article.
    http://msdn.microsoft.com/en-us/library/dn169381(v=sql.15).aspx
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

Maybe you are looking for