Forte not letting go of Oracle connections

Hello all,
some time ago we talked about the problem, that some DBSession-connects hang
if the partition where the DBSessionSO is used goes down.
Ok, there may be some problems with forte or the Database (TWO_TASK, and so
on).
Does anybody implement a DBSession.Disconnect() when partition goes down?
I mean the partition exits by a kill or by escript or econsole, not by a
Forte-Method call
of somewhere else.
I thought the solution must be a loop which registers for the
task.Shutdown-event, but at
the init-method I couldn't stay in a loop and wait, because i has to call
the service-objects
methods. Another solution may be a 'start task LoopMethod()' which are
registers the
event, but i don't try it now, because i don't know the side-effects
because the thread calls
a method of the 'mother-process' which goes down also.
What is your solution or idea?
Joseph Mirwald
GERMANY

Hello all,
some time ago we talked about the problem, that some DBSession-connects hang
if the partition where the DBSessionSO is used goes down.
Ok, there may be some problems with forte or the Database (TWO_TASK, and so
on).
Does anybody implement a DBSession.Disconnect() when partition goes down?
I mean the partition exits by a kill or by escript or econsole, not by a
Forte-Method call
of somewhere else.
I thought the solution must be a loop which registers for the
task.Shutdown-event, but at
the init-method I couldn't stay in a loop and wait, because i has to call
the service-objects
methods. Another solution may be a 'start task LoopMethod()' which are
registers the
event, but i don't try it now, because i don't know the side-effects
because the thread calls
a method of the 'mother-process' which goes down also.
What is your solution or idea?
Joseph Mirwald
GERMANY

Similar Messages

  • RE: (forte-users) Forte not letting go of Oracle connections+ RE: (fort

    The bug was just reported yesterday so they might not have it available to
    the public for a while. I am guessing this bug has been around since 3.M.?
    and its very easy to verify it if its happening in your environment. Also I
    have been talking to other user that are not using Oracle (Sybase instead)
    who are also seen the same problem. I think this is a problem across all
    database because there is some fundamental event or process that is not
    taking place to close database connections. But just to be safe verify it
    in your test environment before moving to 3.5. To verify if its happening
    in your Forte version just create a small application that connects to the
    database and run it in debug mode. Log into the database and then stop the
    debug session. The connection will still be open. This will also occur
    when you use the running man or in a deployed application.
    ka
    -----Original Message-----
    From: Labeaux Schiek [mailto:DHSV017dhs.state.il.us]
    Sent: Thursday, March 01, 2001 7:21 AM
    To: kamran.aminlendware.com; Forte-userslists.xpedior.com
    Subject: RE: (forte-users) Forte not letting go of Oracle connections +
    RE: (forte-users) SQL Server Maximum DB Processes already allocated.
    Hi Kamran,
    I just looked up bug # 54610 in Cyber Support and it is not there yet, so a
    question.
    In your opinion, does this effect all databases? We are using DB2 and
    considering going to 3.5 . Are we going to see the same problems you have
    had with Oracle?
    -thanks
    -labeaux
    "Amin, Kamran" <kamran.aminlendware.com> 02/28/01 05:28PM >>>Update on my problem. Well now its everybody's problem. Forte has
    conformed the bug. Bug number 54610 for your reference.
    thanks to everybody for the help..
    ka
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

    The bug was just reported yesterday so they might not have it available to
    the public for a while. I am guessing this bug has been around since 3.M.?
    and its very easy to verify it if its happening in your environment. Also I
    have been talking to other user that are not using Oracle (Sybase instead)
    who are also seen the same problem. I think this is a problem across all
    database because there is some fundamental event or process that is not
    taking place to close database connections. But just to be safe verify it
    in your test environment before moving to 3.5. To verify if its happening
    in your Forte version just create a small application that connects to the
    database and run it in debug mode. Log into the database and then stop the
    debug session. The connection will still be open. This will also occur
    when you use the running man or in a deployed application.
    ka
    -----Original Message-----
    From: Labeaux Schiek [mailto:DHSV017dhs.state.il.us]
    Sent: Thursday, March 01, 2001 7:21 AM
    To: kamran.aminlendware.com; Forte-userslists.xpedior.com
    Subject: RE: (forte-users) Forte not letting go of Oracle connections +
    RE: (forte-users) SQL Server Maximum DB Processes already allocated.
    Hi Kamran,
    I just looked up bug # 54610 in Cyber Support and it is not there yet, so a
    question.
    In your opinion, does this effect all databases? We are using DB2 and
    considering going to 3.5 . Are we going to see the same problems you have
    had with Oracle?
    -thanks
    -labeaux
    "Amin, Kamran" <kamran.aminlendware.com> 02/28/01 05:28PM >>>Update on my problem. Well now its everybody's problem. Forte has
    conformed the bug. Bug number 54610 for your reference.
    thanks to everybody for the help..
    ka
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

  • RE: (forte-users) Forte not letting go of Oracleconnections

    Hello Amin, Samer and David,
    thank you for your fast reply.
    The technical support in Germany give at least a good idea to prevent the
    problem in future:
    Available at Forte 3.5 and above
    ER #35575 : user wants TOOL code to detect partition
    shutdown and time to do something
    Add a new interface, AtExitHandler, to Framework, with just one
    method: RunAtExit();
    Add a new method to Partition:
    AtExit(AtExitHandler);
    At shutdown time, managed partitions will call RunAtExit on all
    registered AtExitHandlers in the same sequence that they called
    AtExit on the partition.
    This activity takes place synchronously before we start tearing the
    partition apart, with the partition explicitly set by the active part
    agent to the one we are supposed to be shutting down, so it should be
    pretty safe for the user to run any code he likes.
    We will catch and display any exceptions produced by the callbacks,
    so that errors don't keep shutdown from proceeding (it is still possible
    for the user to write code that hangs and blocks shutdown that way,
    but I don't know what we could do about that besides getting into
    timeouts etc.).
    I think it is always a good idea to disconnect the DB-Session because you
    do it with
    most other tools from Database automatically, so why don't do it generally
    by use of
    a programming-language?!?
    I try this feature in any case.
    Thanks for all who answered to this message
    Joseph Mirwald
    GERMANY
    At 17:13 13.03.01 -0500, Amin, Kamran wrote:
    That was the initial problem. Forte as logged a bug on this issue and
    hopefully fix it soon.
    Look for bug# 54610.
    -----Original Message-----
    From: Joseph Mirwald [mailto:jomirweb.de]
    Sent: Tuesday, March 13, 2001 4:12 PM
    To: Forte Users
    Subject: (forte-users) Forte not letting go of Oracle connections
    Hello all,
    some time ago we talked about the problem, that some DBSession-connects hang
    if the partition where the DBSessionSO is used goes down.
    Ok, there may be some problems with forte or the Database (TWO_TASK, and so
    on).
    Does anybody implement a DBSession.Disconnect() when partition goes down?
    I mean the partition exits by a kill or by escript or econsole, not by a
    Forte-Method call
    of somewhere else.
    I thought the solution must be a loop which registers for the
    task.Shutdown-event, but at
    the init-method I couldn't stay in a loop and wait, because i has to call
    the service-objects
    methods. Another solution may be a 'start task LoopMethod()' which are
    registers the
    event, but i don't try it now, because i don't know the side-effects
    because the thread calls
    a method of the 'mother-process' which goes down also.
    What is your solution or idea?
    Joseph Mirwald
    GERMANY
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

    Hello Amin, Samer and David,
    thank you for your fast reply.
    The technical support in Germany give at least a good idea to prevent the
    problem in future:
    Available at Forte 3.5 and above
    ER #35575 : user wants TOOL code to detect partition
    shutdown and time to do something
    Add a new interface, AtExitHandler, to Framework, with just one
    method: RunAtExit();
    Add a new method to Partition:
    AtExit(AtExitHandler);
    At shutdown time, managed partitions will call RunAtExit on all
    registered AtExitHandlers in the same sequence that they called
    AtExit on the partition.
    This activity takes place synchronously before we start tearing the
    partition apart, with the partition explicitly set by the active part
    agent to the one we are supposed to be shutting down, so it should be
    pretty safe for the user to run any code he likes.
    We will catch and display any exceptions produced by the callbacks,
    so that errors don't keep shutdown from proceeding (it is still possible
    for the user to write code that hangs and blocks shutdown that way,
    but I don't know what we could do about that besides getting into
    timeouts etc.).
    I think it is always a good idea to disconnect the DB-Session because you
    do it with
    most other tools from Database automatically, so why don't do it generally
    by use of
    a programming-language?!?
    I try this feature in any case.
    Thanks for all who answered to this message
    Joseph Mirwald
    GERMANY
    At 17:13 13.03.01 -0500, Amin, Kamran wrote:
    That was the initial problem. Forte as logged a bug on this issue and
    hopefully fix it soon.
    Look for bug# 54610.
    -----Original Message-----
    From: Joseph Mirwald [mailto:jomirweb.de]
    Sent: Tuesday, March 13, 2001 4:12 PM
    To: Forte Users
    Subject: (forte-users) Forte not letting go of Oracle connections
    Hello all,
    some time ago we talked about the problem, that some DBSession-connects hang
    if the partition where the DBSessionSO is used goes down.
    Ok, there may be some problems with forte or the Database (TWO_TASK, and so
    on).
    Does anybody implement a DBSession.Disconnect() when partition goes down?
    I mean the partition exits by a kill or by escript or econsole, not by a
    Forte-Method call
    of somewhere else.
    I thought the solution must be a loop which registers for the
    task.Shutdown-event, but at
    the init-method I couldn't stay in a loop and wait, because i has to call
    the service-objects
    methods. Another solution may be a 'start task LoopMethod()' which are
    registers the
    event, but i don't try it now, because i don't know the side-effects
    because the thread calls
    a method of the 'mother-process' which goes down also.
    What is your solution or idea?
    Joseph Mirwald
    GERMANY
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.xpedior.com

  • HT4623 I had to restore my iphone before updating but then you have to activate it and it would not let me (i was connected to itunes)

    When updating iPhone had to restore then activate, it would not let me tough i was connected to iTunes (update was complete just had to activate)

    Shameel121 wrote:
    ... (update was complete just had to activate)
    See this discussion.
    https://discussions.apple.com/message/21189708

  • Re: (forte-users) (UPDATE) Forte not letting go of Oracleconnections

    All,
    I have been communicating with Forte regarding this
    issue. I was informed that a fix for this bug will be
    released in SP2 tentatively due at the end of May.
    Forte also confirmed that the bug was introduced in
    3.5 and exists in 3.5.1.
    Samer Kanjo
    --- Joseph Mirwald <jomirweb.de> wrote:
    Hello all,
    some time ago we talked about the problem, that some
    DBSession-connects hang
    if the partition where the DBSessionSO is used goes
    down.
    Ok, there may be some problems with forte or the
    Database (TWO_TASK, and so
    on).
    Does anybody implement a DBSession.Disconnect() when
    partition goes down?
    I mean the partition exits by a kill or by escript
    or econsole, not by a
    Forte-Method call
    of somewhere else.
    I thought the solution must be a loop which
    registers for the
    task.Shutdown-event, but at
    the init-method I couldn't stay in a loop and wait,
    because i has to call
    the service-objects
    methods. Another solution may be a 'start task
    LoopMethod()' which are
    registers the
    event, but i don't try it now, because i don't know
    the side-effects
    because the thread calls
    a method of the 'mother-process' which goes down
    also.
    What is your solution or idea?
    Joseph Mirwald
    GERMANY
    For the archives, go to:
    http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To
    unsubscribe, send in a new
    email the word: 'Unsubscribe' to:
    forte-users-requestlists.xpedior.com

    All,
    I have been communicating with Forte regarding this
    issue. I was informed that a fix for this bug will be
    released in SP2 tentatively due at the end of May.
    Forte also confirmed that the bug was introduced in
    3.5 and exists in 3.5.1.
    Samer Kanjo
    --- Joseph Mirwald <jomirweb.de> wrote:
    Hello all,
    some time ago we talked about the problem, that some
    DBSession-connects hang
    if the partition where the DBSessionSO is used goes
    down.
    Ok, there may be some problems with forte or the
    Database (TWO_TASK, and so
    on).
    Does anybody implement a DBSession.Disconnect() when
    partition goes down?
    I mean the partition exits by a kill or by escript
    or econsole, not by a
    Forte-Method call
    of somewhere else.
    I thought the solution must be a loop which
    registers for the
    task.Shutdown-event, but at
    the init-method I couldn't stay in a loop and wait,
    because i has to call
    the service-objects
    methods. Another solution may be a 'start task
    LoopMethod()' which are
    registers the
    event, but i don't try it now, because i don't know
    the side-effects
    because the thread calls
    a method of the 'mother-process' which goes down
    also.
    What is your solution or idea?
    Joseph Mirwald
    GERMANY
    For the archives, go to:
    http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To
    unsubscribe, send in a new
    email the word: 'Unsubscribe' to:
    forte-users-requestlists.xpedior.com

  • Why do I get the following when message on Contacts which does not let me delete; Cannot connect to the account-enter password for -..-When i do this nothing happens, same message reappears?!

    When trying to update/remove contacts i get the following message;
    Contacts cannot connect to the account..........Enter password for ..........
    This I do but the same thing repeats itself!
    Also(?) I am unable to share photos, as 'server did not recognise user/password combination'?
    All ideas appreciated!
    Thanks
    G

    When trying to update/remove contacts i get the following message;
    Contacts cannot connect to the account..........Enter password for ..........
    This I do but the same thing repeats itself!
    Also(?) I am unable to share photos, as 'server did not recognise user/password combination'?
    All ideas appreciated!
    Thanks
    G

  • Provider not compatible version of Oracle client after upgrade 4.112.1.2

    I had an ASP.NET 3.5 website running
    on intranet small business server as production with:
    OS Win2008 Standard 32-bit
    Oracle Database 11g107 32-bit
    Oracle DataAccess 2.111.60 32-bit
    On a development laptop,
    I upgraded the website to ASP.NET 4.0.
    The development laptop had
    OS Windows 7 32-bit
    VS 2010
    Oracle Database 11g201 32-bit
    Oracle DataAccess 4.112.12
    Application was running without errors.
    On the production server,
    I uninstalled Oracle Database 11g107,
    to include removing Oracle home and install folders,
    and in HKLM > Software > Oracle registry folder.
    I installed Oracle Database 11g201
    and installed the ODP.NET upgrade to 4.112.12.
    (except for VS components).
    In the website web.config,
    I changed the referenced assembly to:
    <assemblies>
         <add assembly="Oracle.DataAccess, Version=4.112.1.2, Culture=neutral, PublicKeyToken=89b483f429c47342" />
    I changed IIS70 Application pool advanced settings to ASP.NET 4.0,
    restarting application pool and website.
    Rebooted system.
    On starting the application when it accesses the Oracle connection,
    I get the dreaded: Provider not compatible.
    Exception Details: Oracle.DataAccess.Client.OracleException: The provider is not compatible with the version of Oracle client
    Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [OracleException (0x80004005): The provider is not compatible with the version of Oracle client]
    Oracle.DataAccess.Client.OracleInit.Initialize() +433
    Oracle.DataAccess.Client.OracleConnection..cctor() +844
    It is not the VB.NET Oracle connection code,
    as it runs fine on the development laptop.
    So I look into the GAC.
    GACUTIL /l shows 2.111.60 is still in the .NET
    The Global Assembly Cache contains the following assemblies:
    Oracle.DataAccess, Version=1.111.6.0, Culture=neutral, PublicKeyToken=89b483f429c47342
    Oracle.DataAccess, Version=2.111.6.0, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Oracle.DataAccess, Version=2.112.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Oracle.DataAccess, Version=2.112.1.2, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Oracle.DataAccess, Version=4.112.1.2, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Oracle.Database.Extensions, Version=1.111.6.0, Culture=neutral, PublicKeyToken=89b483f429c47342
    Oracle.Database.Extensions, Version=2.112.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Oracle.Database.Extensions, Version=2.112.1.2, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Oracle.Database.Extensions, Version=4.112.1.2, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Oracle.Web, Version=2.112.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Oracle.Web, Version=2.112.1.2, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Policy.2.102.Oracle.DataAccess, Version=2.112.1.2, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Policy.2.111.Oracle.DataAccess, Version=2.112.1.2, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Policy.2.111.Oracle.Web, Version=2.112.1.2, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Policy.2.112.Oracle.DataAccess, Version=2.112.1.2, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Policy.2.112.Oracle.Web, Version=2.112.1.2, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=x86
    Is there a command I need to run to remove the old 111.6.0 Oracle client references from GAC?
    Eventhough Oracle ODP.NET installer put a policy to refer the older version to the new?

    In
    C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0
    and in
    C:\Windows\Microsoft.NET\Framework\v4.0.30319
    There is only SYSTEM.DATA.ORACLECLIENT
    I suspect that we would not see Oracle.DataAccess.dll in these locations anyway.
    ++++++++
    In
    C:\Windows\assembly
    There is:
    Oracle.DataAccess 2.112.1.2
    Oracle.Database.Extensions 2.112.1.2
    Oracle.Web 2.112.1.2
    This is the GAC for ASP.NET 2.0-3.5,
    so this appears to be correct
    ++++++++
    In
    C:\Windows\Microsoft.NET\assembly\GAC_32
    There is:
    C:\Windows\Microsoft.NET\assembly\GAC_32\Oracle.DataAccess\v4.0_4.112.1.2__89b483f429c47342
    C:\Windows\Microsoft.NET\assembly\GAC_32\Oracle.Database.Extensions\v4.0_4.112.1.2__89b483f429c47342
    C:\Windows\Microsoft.NET\assembly\GAC_32\Oracle.Web\v4.0_4.112.1.2__89b483f429c47342
    with the appropriate 4.112.1.2 dlls in these folders
    This is the GAC for ASP.NET 4.0,
    so this appears to be correct.
    +++++++
    In
    C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\Machine.config
    Removed Oracle Providers references, I just need ODAC to update and insert data into schema data tables,
    and do not use the ASP.NET Oracle Providers schema.
    Should I need ASP.NET Oracle Providers schema, I can always add references in the application web.config.
    <system.data>
    <DbProviderFactories>
    <add name="Microsoft SQL Server Compact Data Provider" invariant="System.Data.SqlServerCe.3.5" description=".NET Framework Data Provider for Microsoft SQL Server Compact" type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=3.5.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"/></DbProviderFactories>
    </system.data>
    <membership>
    <providers>
    <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="LocalSqlServer" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" applicationName="/" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10" passwordStrengthRegularExpression=""/>
    </providers>
    </membership>
    <profile>
    <providers>
    <add name="AspNetSqlProfileProvider" connectionStringName="LocalSqlServer" applicationName="/" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
    </providers>
    </profile>
    <roleManager>
    <providers>
    <add name="AspNetSqlRoleProvider" connectionStringName="LocalSqlServer" applicationName="/" type="System.Web.Security.SqlRoleProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
    <add name="AspNetWindowsTokenRoleProvider" applicationName="/" type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
    </providers>
    </roleManager>
    <siteMap>
    <providers>
    </providers>
    </siteMap>
    <webParts>
    <personalization>
    <providers>
    </providers>
    </personalization>
    </webParts>
    <healthMonitoring>
    <providers>
    </providers>
    </healthMonitoring>
    +++++++++++++
    In
    C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\web.config
    No Oracle references, and I would expect this as it is added in application level web.config
    +++++++++++++
    In
    C:\Windows\Microsoft.NET\Framework\v4.0.30319\ASP.NETWebAdminFiles\web.config
    No Oracle references, and I would expect this as it is added in application level web.config
    +++++++++++++
    In
    D:\ORA\DB11G201\ODP.NET\bin\4
    Oracle.DataAccess.dll 4.112.1.2
    and in
    D:\ORA\DB11G201\ASP.NET\bin\4
    Oracle.Web.dll 4.112.1.2
    +++++++++++++
    So... why would I get provider not compatible version of Oracle Client...
    there are no other versions of ODAC hanging around,
    unless there are other locations I am not aware of.
    The application works fine in development laptop.
    The application works fine on production server when I use SYSTEM.DATA.ORACLECLIENT.
    But we need to migrate away from SYSTEM.DATA.ORACLECLIENT according to Microsoft,
    and I am sure Oracle would rather have me use Oracle.DataAccess client anyway.
    ++++++
    I even tried a trick from another post to move what appears to be Oracle Instant Client components,
    oci.dll, et al, from an installation into a new home of the Oracle 11g201 Cllent 32 along with Oracle.DataAccess.dll into the website BIN folder
    and set references for Oracle.DataAccess.dll to LOCAL TRUE.
    +++++++
    So I remain stuck.

  • I upgraded to the Iphone 4 tonight and it will NOT let me get to my YAHOO mail.  Says "cannot connect to server".  Safari and everything else works fine!  My iphone 3 was working fine when I was at the store....but now the brand new phone is not!  HELP

    purchased Iphone 4 tonight......will not let me get to yahoo email....says "cannot connect to yahoo server"    My iphone 3 was working just fine tonight and then I traded it for this!  help

    Do a hard reset
    Settings / general / Reset /  Reset All Settings
    Now setup your Yahoo mail.

  • I am getting a 42404 error message when opening itunes and itunes will not let me connect my iphone to it trying to get me to restore. I need help?

    I am getting a 42404 error message when opening itunes and itunes will not let me connect my iphone to it trying to get me to restore. I need help? I am not that technically inclined and really simple terms  are appreciated.

    Try downloading the songs from a different device. If you are doing it from your iOS device, try form your computer.

  • Please help block my ipod touch second generation and forget the code, try putting the code so many times that now says connect to itunes, I connect but will not let me do anything that tells me this should unlock with key and I should do for Please help!

    please helpme i block my ipod touch second generation and forget the code, try putting the code so many times that now says connect to itunes, I connect but will not let me do anything that tells me this  should unlock with key and I should do for Please help!. thanks

    Place the iPOd in recovery mode and then restore. For recovery mode:
    iPhone and iPod touch: Unable to update or restore

  • So, I have created my home sharing from my base computer to my laptop. On my lap top I see the tab for home sharing but it will not let me connect to my computer to share my music over. I have done everything iTunes has told me to but it still won't work.

    So, I have created my home sharing from my base computer to my laptop. On my lap top I see the tab for home sharing but it will not let me connect to my computer to share my music over. I have done everything iTunes has told me to but it still won't work. Any help would make my day...

    I got some more info that may help.
    I put a cd on my laptop, and was able to share it to my computer... So the problem is only from my computer to my laptop. I tried the firewall thing and it did not help. I read the rest of the trouble shooting page, and nothing else applies. iTunes is an execption and already was. I can not think of anything else being my problem. Do you think I should re-install iTunes or would that be a waste of time? At this point I am about to just call Apple for some help because I am getting to stressed over this.
    Thanks

  • HT6162 My phone will not let me download the most recent update for iOS 7.1. It says I need a wifi connection and will not allow me to push the 'Download & Install' button, even when I am at home and my wifi is on. How do I fix this?

    My phone will not let me download the most recent update for iOS 7.1. It says I need a wifi connection and will not allow me to push the 'Download &amp; Install' button, even when I am at home and my wifi is on. How do I fix this?

    Unfortunately yes, though technology would never move on if it kept to older standards and did not strive to do more.
    The app store always gives you the option to use a previous version of the app IF it is available for your device.
    Sorry but you are stuck without new hardware.
    PJRS

  • HT3576 How can I get rid of "Connect to itunes to use push notifications" pop-ups.  I just had to replace my iPhone 5 and when I did a restore from backup, most of my apps will not let me in becuase I cannot get past the"connect to itunes..." message.

    My iPhone 5 was distroyed so I replaced it with a new iPhone 5 yesterday.  I did a restore from a backup that i had performed a week ago.  When I tried to use the phone several of my apps would not let me in becuase they continually gave me a popup message "Connect to Itunes to use push notifications".  I click ok and the popup comes back.  I have shut my phone off several times.  I have complete closed the apps several times.  I have even deleted the apps from my phone and reinstalled.  All to no avail.  Please help - does anyone know how to fix this?

    Yes - I connected my phone to my computer / Itunes and went into the apps section, but from there I have no idea how to manage the push notifications.  I even tryied going into itunes that is installed on my phone.  I still cannot find anyplace to manage these popups.  I have also gone into settings - notifiations - and tried turning all notifications for these apps all off but that didnt work either.  Any guidance is MUCH appreciated - Im not sure where to go from here.

  • My ipod touch will not let me connect to the itunes store and i am using a wifi connection

    My ipod touch will not let me connect to the itunes store and i am using a wifi connection

    allison i had the same problem to but then i figured out! You have to put in a credit card number so you can purchase a game thats free or 0.99 cents or higher then you have to fill in other stuff then press next on your ipod touch or computer then it says you have succesifully created an apple id! And i hope this information will help out!!

  • My daughter has entered the wrong passcode too many times, it is now disabled.  When I connect to iTunes, it will not let me go any further until I enter the correct passcode.  I no longer get the option to do this, all I get is iPOD disabled.  Help

    My daughter has entered the wrong passcode too many times on her iPOD Touch, it is now disabled.  When I connect to iTunes, it will not let me go any further until I enter the correct passcode.  I no longer get the option to do this, all I get is iPOD disabled.  Help Please

    Restore the iPod from the computer to which the iPod is synced. For information and instructions, see:
    http://support.apple.com/kb/ht1212
    If that will not work, you'll need to put the iPod into Recovery Mode and then try the Restore again:
    http://support.apple.com/kb/ht1808
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

Maybe you are looking for

  • Very strange problem with wikipedia on my Macbook Pro 15"

    I have a Macbook Pro that I bought in June 2010, 2.66 GHz Intel Core i7 4 GB memory, Snow Leopard OSX (of which all may not be relevent) but recently I've been having possibly the WEIRDEST issue with wikipedia.  I just go to the site, and a split sec

  • Trying to make my own java library need help!

    I have been trying to make a java library that will save data in cdf format. Every time I try to implement code using this library i created i get the error shown below, I put the jar file in the jdk/jre/lib/ext file, so when I import it, it does wor

  • Macbook pro as desktop replacement?

    I'm thinking of getting a 15" Macbook Pro and a cinema display to replace my aging imac (snowball) and ibook. I've never used a laptop in this way before. What are the pros and cons to this setup? (i.e., heat issues, keeping the macbook pro on all th

  • Apple ultra thin keyboard with usb

    I got an apple ultrathin keyboard with usb, Ik like it very much, but I'm working with windows XP. I cannot use all the keys and specially the one to make a printscreen.I looked it up on the Apple site and there it says to use fn/shift/F11 but it doe

  • Exchange iPad3 to iPad4

    I've an iPad of 3rd generation, i've not open the box it is still closed, i would sell it for buy an iPad 4th generation, can i return it to apple and have in exchange (adding money) an iPad 4?