Server connection lost when connected via WAP200

Hi,
I have a small Windows SBS 2011 network where two WAP200 (hw-ver 1.0 sw-ver 2.0.6.0-ETSI) provides WLAN access to the network for my Win7 clients. If I connect one of the Win7 clients via one the the WAP200, open a pdf-file and leave it for one hour, and then try to scroll the document, then Acrobat reports an IO-error after 20 seconds. This does not occur if I connect directly to the LAN or via a 3Com AP instead. Similar problems occur if I open Outlook or IE.
It seems like a SMB2 session is created when I open the pdf-file, and that this session is lost for some reason. Is there some PM that kicks in and makes the client inaccessible from the server so that it considers the client gone ?
Regards
MatsW

Hi Jeffrey,
There's definitely something fishy with the WAP200. I can see the following: If I take a network trace on both my server and the client attached via WAP200 then I can see that suddenly ARP Requests from server doesn't reach the client. This lasts for about 5 minutes when traffic starts to pass thru.
So then I started "ping client -n 10000000' on the server to make sure I had a continous flow of traffic between client and server. Now the problem doesn't occur. But what is odd is that I can see that another client which is attached to the same WAP200 suddenly stops responding to ARP Requests, just as the first client when it didn't have ping running.
This may explain why the SMB2 session fails because if client doesn't respond to ARP Requests (because WAP200 drops connection for 5 minutes) then eventually the file handle is closed.
Do you have some suggestion on how to debug this ?
Kind regards
Mats

Similar Messages

  • Why does FaceTime keep saying "connection lost" when we both have full bars on our wifi?

    Why does FaceTime keep saying "connection lost" when we both have full bars on our wifi? My friend in Texas has tried to call my via FaceTime but for some reason, every time she does, it keeps saying "connection lost" when we both have full bars on our wifi. Keep in mind, I am from Nebraska so we have the same time zone and I have an iPod 4 while she has a iPhone of some sort but that shouldn't matter because I am still able to FaceTime my friend in California, which is two hours behind me. So, I guess I just want to know why I cannot reach my friend in Texas. Please, someone help me!
    -Mukestina

    Apple has released a document which is reported to address the recent FaceTime issue.
    http://support.apple.com/kb/TS5419

  • RV082 V03 Randomly connection lost when firewall enabled.

    Hardware: RV082 V03
    Firmware: RV0XX-v4.2.1.02
    Lan: 192.168.1.0/255
    Static routing: 192.168.1.239 to 172.25.152.64/224
    The unit is configured as internet gateway. 4 NAT ports are active.
    When firewall disabled all works fine.
    When firewall enabled I do get connection lost at random interval.
    In firewall only 4 rules added to the default 3 rules. The added rules are:
    1/ permit 192.168.1.22 port 25 to any
    2/ permit 192.168.1.27 port 25 to any
    3/ permit 192.168.1.10 port 25 to any
    4/ deny any port 25 to any
    I do get at random times connection lost when navigating with windows explorer on a PC with IP 192.168.1.x to a share on a PC with IP 172.25.152.74. The same happens when copying files.  Sometimes it works, later it fails or reties are needed.  When the firewall is switched off all runs fine.
    Ping from 192.168.1.x to 172.25.152.74 allways give a <1ms response
    Is there a RV082 perfomance problem or do I have a configuration problem?
    Any help appreciated,
    Maxim

    Hi Maxim De Waele
    In an access list, there is always an implicit rule at the end, this rule is:
    deny any any,
    For this reason your firewall does not work well, if you want to fix it, at the end you add the next statement:
    permit ip any any,
    It permits the traffic flow through the network, except that was previously denied,or manually you can allow only certain IP addresses.
    This is an example of the configuration:
    permit 192.168.1.22 port 25 to any
    permit 192.168.1.27 port 25 to any
    permit 192.168.1.10 port 25 to any
    deny any port 25 to any
    permit  any to any
    If this answer was satisfactory for you, please mark the question as Answered.
    Thank you
    Greetings, Johnnatan Rodriguez Miranda

  • C# COM server events "lost" when raising events while Excel is in edit mode

    I posted this question on StackOverflow (http://stackoverflow.com/questions/23798443/c-sharp-com-server-events-lost-when-raising-events-while-excel-is-in-edit-mode) but did not receive a good answer, so I'm trying my luck here.
    I have an in-proc COM server written in C# (using .NET Framework 3.5) that raises COM events based on this example: http://msdn.microsoft.com/en-us/library/dd8bf0x3(v=vs.90).aspx
    Excel VBA is the most common client of my COM server.  I’ve found that when I raise COM events while Excel is in edit mode (e.g. a cell is being edited) the event is “lost”.  Meaning, the VBA event handler is never called (even after the Excel
    edit mode is finished) and the call to the C# event delegate passes through and fails silently with no exceptions being thrown.  Do you know how I can detect this situation on my COM server?  Or better still, make the event delegate call block until
    Excel is out of edit mode?
    I have tried:
    Inspecting the properties of the event delegate – could not find any property to indicate that the event failed to be raised on the client.
    Calling the event delegate directly from a worker thread and from the main thread – event not raised on the client, no exceptions thrown on the server.
    Pushing the event delegate onto a worker thread’s Dispatcher and invoking it synchronously – event not raised on the client, no exceptions thrown on the server.
    Pushing the event delegate onto the main thread’s Dispatcher and invoking it synchronously and asynchronously – event not raised on the client, no exceptions thrown on the server.
    Checking the status code of the Dispatcher.BeginInvoke call (using DispatcherOperation.Status) – the status is always ends with “Completed”, and is never in “Aborted” state.
    Creating an out-of-proc C# COM server exe and tested raising the events from there – same result, event handler never called, no exceptions.
    Since I get no indication that the event was not raised on the client, I cannot handle this situation in my code.
    I have tested this with Excel 2010 and Excel 2013.
    Here is a simple test case.  The C# COM server:
    namespace ComServerTest
    public delegate void EventOneDelegate();
    // Interface
    [Guid("2B2C1A74-248D-48B0-ACB0-3EE94223BDD3"), Description("ManagerClass interface")]
    [InterfaceType(ComInterfaceType.InterfaceIsDual)]
    [ComVisible(true)]
    public interface IManagerClass
    [DispId(1), Description("Describes MethodAAA")]
    String MethodAAA(String strValue);
    [DispId(2), Description("Start thread work")]
    String StartThreadWork(String strIn);
    [DispId(3), Description("Stop thread work")]
    String StopThreadWork(String strIn);
    [Guid("596AEB63-33C1-4CFD-8C9F-5BEF17D4C7AC"), Description("Manager events interface")]
    [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
    [ComVisible(true)]
    public interface ManagerEvents
    [DispId(1), Description("Event one")]
    void EventOne();
    [Guid("4D0A42CB-A950-4422-A8F0-3A714EBA3EC7"), Description("ManagerClass implementation")]
    [ComVisible(true), ClassInterface(ClassInterfaceType.None)]
    [ComSourceInterfaces(typeof(ManagerEvents))]
    public class ManagerClass : IManagerClass
    private event EventOneDelegate EventOne;
    private System.Threading.Thread m_workerThread;
    private bool m_doWork;
    private System.Windows.Threading.Dispatcher MainThreadDispatcher = null;
    public ManagerClass()
    // Assumes this is created on the main thread
    MainThreadDispatcher = System.Windows.Threading.Dispatcher.CurrentDispatcher;
    m_doWork = false;
    m_workerThread = new System.Threading.Thread(DoThreadWork);
    // Simple thread that raises an event every few seconds
    private void DoThreadWork()
    DateTime dtStart = DateTime.Now;
    TimeSpan fiveSecs = new TimeSpan(0, 0, 5);
    while (m_doWork)
    if ((DateTime.Now - dtStart) > fiveSecs)
    System.Diagnostics.Debug.Print("Raising event...");
    try
    if (EventOne != null)
    // Tried calling the event delegate directly
    EventOne();
    // Tried synchronously invoking the event delegate from the main thread's dispatcher
    MainThreadDispatcher.Invoke(EventOne, new object[] { });
    // Tried asynchronously invoking the event delegate from the main thread's dispatcher
    System.Windows.Threading.DispatcherOperation dispOp = MainThreadDispatcher.BeginInvoke(EventOne, new object[] { });
    // Tried synchronously invoking the event delegate from the worker thread's dispatcher.
    // Asynchronously invoking the event delegate from the worker thread's dispatcher did not work regardless of whether Excel is in edit mode or not.
    System.Windows.Threading.Dispatcher.CurrentDispatcher.Invoke(EventOne, new object[] { });
    catch (System.Exception ex)
    // No exceptions were thrown when attempting to raise the event when Excel is in edit mode
    System.Diagnostics.Debug.Print(ex.ToString());
    dtStart = DateTime.Now;
    // Method should be called from the main thread
    [ComVisible(true), Description("Implements MethodAAA")]
    public String MethodAAA(String strValue)
    if (EventOne != null)
    try
    // Tried calling the event delegate directly
    EventOne();
    // Tried asynchronously invoking the event delegate from the main thread's dispatcher
    System.Windows.Threading.DispatcherOperation dispOp = System.Windows.Threading.Dispatcher.CurrentDispatcher.BeginInvoke(EventOne, new object[] { });
    // Tried synchronously invoking the event delegate from the main thread's dispatcher
    System.Windows.Threading.Dispatcher.CurrentDispatcher.Invoke(EventOne, new object[] { });
    catch (System.Exception ex)
    // No exceptions were thrown when attempting to raise the event when Excel is in edit mode
    System.Diagnostics.Debug.Print(ex.ToString());
    return "";
    return "";
    [ComVisible(true), Description("Start thread work")]
    public String StartThreadWork(String strIn)
    m_doWork = true;
    m_workerThread.Start();
    return "";
    [ComVisible(true), Description("Stop thread work")]
    public String StopThreadWork(String strIn)
    m_doWork = false;
    m_workerThread.Join();
    return "";
    I register it using regasm:
    %SystemRoot%\Microsoft.NET\Framework\v2.0.50727\regasm /codebase ComServerTest.dll /tlb:ComServerTest.tlb
    Excel VBA client code:
    Public WithEvents managerObj As ComServerTest.ManagerClass
    Public g_nCounter As Long
    Sub TestEventsFromWorkerThread()
    Set managerObj = New ComServerTest.ManagerClass
    Dim dtStart As Date
    dtStart = DateTime.Now
    g_nCounter = 0
    Debug.Print "Start"
    ' Starts the worker thread which will raise the EventOne event every few seconds
    managerObj.StartThreadWork ""
    Do While True
    DoEvents
    ' Loop for 20 secs
    If ((DateTime.Now - dtStart) * 24 * 60 * 60) > 20 Then
    ' Stops the worker thread
    managerObj.StopThreadWork ""
    Exit Do
    End If
    Loop
    Debug.Print "Done"
    End Sub
    Sub TestEventFromMainThread()
    Set managerObj = New ComServerTest.ManagerClass
    Debug.Print "Start"
    ' This call will raise the EventOne event
    managerObj.MethodAAA ""
    Debug.Print "Done"
    End Sub
    ' EventOne handler
    Private Sub managerObj_EventOne()
    Debug.Print "EventOne " & g_nCounter
    g_nCounter = g_nCounter + 1
    End Sub
    This problem also occurs for a C++ MFC Automation server that raises COM events.  If I raise the COM event from the main thread when Excel is in edit mode, the event handler is never called.  No errors or exceptions are thrown on the server,
    similar to my C# COM server.  However, if I use the Global Interface Table to marshal the event sink interface from the main thread
    back to the main thread, then invoking the event - it will block while Excel is in edit mode.  (I also used COleMessageFilter to disable the busy dialog and not responding dialogs, otherwise I'd receive the exception:
    RPC_E_CANTCALLOUT_INEXTERNALCALL It is illegal to call out while inside message filter.)
    Knowing that, I tried to do the same on my C# COM server.  I could instantiate the Global Interface Table (using the definition from pinvoke.net) and the message filter (using the IOleMessageFilter definition from MSDN).  However, the event still
    gets "lost" and does not block while Excel is in edit mode.
    Here's my additional C# code to try to make use of the Global Interface Table:
    namespace ComServerTest
    // Global Interface Table definition from pinvoke.net
    ComImport,
    InterfaceType(ComInterfaceType.InterfaceIsIUnknown),
    Guid("00000146-0000-0000-C000-000000000046")
    interface IGlobalInterfaceTable
    uint RegisterInterfaceInGlobal(
    [MarshalAs(UnmanagedType.IUnknown)] object pUnk,
    [In] ref Guid riid);
    void RevokeInterfaceFromGlobal(uint dwCookie);
    [return: MarshalAs(UnmanagedType.IUnknown)]
    object GetInterfaceFromGlobal(uint dwCookie, [In] ref Guid riid);
    ComImport,
    Guid("00000323-0000-0000-C000-000000000046") // CLSID_StdGlobalInterfaceTable
    class StdGlobalInterfaceTable /* : IGlobalInterfaceTable */
    public class ManagerClass : IManagerClass
    //...skipped code already mentioned in earlier sample above...
    //...also skipped the message filter code for brevity...
    private Guid IID_IDispatch = new Guid("00020400-0000-0000-C000-000000000046");
    private IGlobalInterfaceTable m_GIT = null;
    public ManagerClass()
    //...skipped code already mentioned in earlier sample above...
    m_GIT = (IGlobalInterfaceTable)new StdGlobalInterfaceTable();
    public void FireEventOne()
    // Using the GIT to marshal the (event?) interface from the main thread back to the main thread (like the MFC Automation server).
    // Should we be marshalling the ManagerEvents interface pointer instead? How do we get at it?
    uint uCookie = m_GIT.RegisterInterfaceInGlobal(this, ref IID_IDispatch);
    ManagerClass mgr = (ManagerClass)m_GIT.GetInterfaceFromGlobal(uCookie, ref IID_IDispatch);
    mgr.EventOne(); // when Excel is in edit mode, event handler is never called and does not block, event is "lost"
    m_GIT.RevokeInterfaceFromGlobal(uCookie);
    I’d like my C# COM server to behave in a similar way to the MFC Automation server.  Is this possible?  I think I should be registering the ManagerEvents interface pointer in the GIT but I don't know how to get at it? I tried using Marshal.GetComInterfaceForObject(this,
    typeof(ManagerEvents)) but that just throws an exception: System.InvalidCastException: Specified cast is not valid.
    Thanks.

    Hi Jason-F,
    I’ve found that when I raise COM events while Excel is in edit mode (e.g. a cell is being edited) the event is “lost”.  Meaning,
    the VBA event handler is never called (even after the Excel edit mode is finished) and the call to the C# event delegate passes through and fails silently with no exceptions being thrown.
    Do you mean you didn't raise EventOne event? EventOne handler like following?
    ' EventOne handler
    Private Sub managerObj_EventOne()
    Debug.Print "EventOne " & g_nCounter
    g_nCounter = g_nCounter + 1
    End Sub
    After test your code, here is my screenshot
    And here is my execute log in C# ComServerTest.
    ManagerClass1/1/2015 5:48:11 PM
    DoThreadWork()1/1/2015 5:48:12 PM
    ManagerClass_EventOne()1/1/2015 5:48:17 PM
    ManagerClass_EventOne()1/1/2015 5:48:22 PM
    ManagerClass_EventOne()1/1/2015 5:48:27 PM
    ManagerClass_EventOne()1/1/2015 5:48:32 PM
    ManagerClass_EventOne()1/1/2015 5:48:37 PM
    ManagerClass_EventOne()1/1/2015 5:48:42 PM
    ManagerClass1/1/2015 5:49:56 PM
    DoThreadWork()1/1/2015 5:49:56 PM
    ManagerClass_EventOne()1/1/2015 5:50:01 PM
    ManagerClass1/1/2015 5:50:04 PM
    If i misunderstand you, please feel free to let me know.
    Best regards,
    kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • My macbook pro says connection lost when I try to connect to my wifi.

    I cannot connect to my wifi at home via wireless. It only works if I'm connected via ethernet cable. When I would attempt to connect to my wifi, it says connection lost. Does anybody have a solution? (not sure if this is helpful or not, but is says no network selected)

    I cannot connect to my wifi at home via wireless. It only works if I'm connected via ethernet cable. When I would attempt to connect to my wifi, it says connection lost. Does anybody have a solution? (not sure if this is helpful or not, but is says no network selected)

  • OWB Error: Connection lost when assign a schedule to a process flow

    I have:
    - OWB 11Gr2
    - Oracle DB 10Gr2 Source/Target
    I have created a schedule module and set the location to be one of the target DB locations.
    Create a one of schedule and scheduled for daily execution.
    Open configuration of a process flow and assign with the schedule.
    After this, i tried to save the repository, and occurred the error message:
    "Repository Connection Error: The connection to the repository was lost, because of the following database error: Closed Connection
    Exit OWB without committing."
    The connection with the repository was lost and i can´t do more anything.
    I tried to create a separate location for the schedule, but it don´t make difference
    What´s happening?
    Thanks,
    Afonso

    Wea re running 11.2.0.2 and
    When looking at the trace log
    Dump continued from file: /data02/oramisc/diag/rdbms/dpmdbp/dpmdbp/trace/dpmdbp_ora_13503.trc
    ORA-00600: intern felkod, argument: [15570], [], [], [], [], [], [], [], [], [], [], []
    With this query "========= Dump for incident 16022 (ORA 600 [15570]) ========
    *** 2011-10-18 09:52:25.445
    dbkedDefDump(): Starting incident default dumps (flags=0x2, level=3, mask=0x0)
    ----- Current SQL Statement for this session (sql_id=7a76281h0tr2p) -----
    SELECT usage.locuoid, usage.locid, cal_property.elementid, cal_property.classname, schedulable.name || '_JOB' name, schedulable.name || '_JOB' logicalname, cal_property.uoid, cal_property.classname
    , cal_property.notm, cal_property.editable editable, cal_property.customerrenamable, cal_property.customerdeletable, cal_property.seeded, cal_property.UpdateTimestamp, cal_property.strongTypeName,
    cal_property.metadatasignature signature, 0 iconobject FROM Schedulable_v schedulable, CMPStringPropertyValue_v cal_property, CMPCalendarInstalledModule_v cal_mod, CMPPhysicalObject_v sched_phys, CM
    PCalendar_v cal, ( select prop.firstclassobject moduleid, prop.value locuoid, 0 locid from CMPPhysicalObject_v phys, CMPStringPropertyValue_v prop where prop.logicalname = 'SCHEDULE_MODULE_CONFIG.DE
    PLOYMENT.LOCATION' and prop.propertyOwner = phys.elementid and phys.namedconfiguration = 42636 union select installedmodule, '' locuoid, location locid from CMPLocationUsage_v locUse where deployme
    ntdefault = 1 and not exists ( select null from CMPPhysicalObject_v phys, CMPStringPropertyValue_v prop where prop.logicalname = 'SCHEDULE_MODULE_CONFIG.DEPLOYMENT.LOCATION' and prop.firstclassobjec
    t = locUse.installedmodule and prop.propertyOwner = phys.elementid and phys.namedconfiguration = 42636) ) usage WHERE cal_mod.elementid = usage.moduleid and cal_mod.elementid = cal.calendarmodule a
    nd substr(cal_property.value,0,32) = cal.uoid and cal_property.logicalname='SCHEDULABLE.PROPERTY' and (cal_property.firstclassobject = schedulable.elementid or cal_property.firstclassobject = sched
    _phys.elementid and sched_phys.logicalobject = schedulable.elementid) and cal_mod.owningproject = 42631 and cal_property.propertyowner = sched_phys.elementid and sched_phys.namedconfiguration=42636
    ORDER BY schedulable.name || '_JOB'"
    Coulöd be possible this bug
    Bug 12368039 ORA-600 [15570] with UNION ALL views with Parallel steps
    This note gives a brief overview of bug 12368039.
    The content was last updated on: 18-MAY-2011
    Click here for details of each of the sections below.
    Fixed:
    This issue is fixed in     
    * 11.2.0.3

  • Connection lost when sending email from iSeries machine w/ JavaMail API?

    Hello all,
    I have a never-ending process (RPGLE) running on the iSeries machine that frequently needs to send an email. In an attempt to improve performance, I connect to the SMTP server as soon as this process starts. Then, each time an email must be sent, I construct the message and send it. This seems to work, but occasionally (no particular pattern) something goes wrong that causes a javax.mail.MessagingException to be thrown. When this occurs, the process continues to retry the send until it works again... it always ends up working again after 4 minutes or less. However, I'm concerned about the fact that it gets this exception. Any suggestions or ideas would be greatly appreciated. Thanks! Jesse
    Here are some code snippits:
    ~~~The RPGLE process first calls a method to setup the SMTP server and connect:
    String hostName = "email.hostname";
    String hostType = "email.hosttype";
    // Get system properties
    Properties systemProperty = System.getProperties();
    // Setup mail server
    systemProperty.put(hostType, hostName);
    systemProperty.put("mail.smtp.connectiontimeout", "30000");
    systemProperty.put("mail.smtp.timeout", "30000");
    // Get session
    session = Session.getDefaultInstance(systemProperty, null);
    // Connect to the smtp server.
    transport = session.getTransport("smtp");
    transport.connect();
    ~~~ Then, when needed, the RPGLE process continues to call a method to send email. It is in here that the MessagingException is thrown.
    if (!transport.isConnected())
    transport.connect();
    message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    message.setRecipient(Message.RecipientType.TO, new InternetAddress(to));
    message.setSubject(subject);
    message.setContent(text,"text/html");
    message.setHeader("X-Mailer", "HtmlMail");
    message.saveChanges();
    transport.sendMessage(message, message.getRecipients (Message.RecipientType.TO));

    Thanks for the link. It was helpful. I added code to print the details of the exception to an IFS text file. However, I'm still not able to determine the problem. Any suggestions you can provide will be greatly appreciated. Thanks!
    These are the details of the exception:
    com.sun.mail.smtp.SMTPSendFailedException: 451 4.3.2 Please try again later
    java/lang/Throwable.<init>(Ljava/lang/String;)V+4 (Throwable.java:85)
    java/lang/Exception.<init>(Ljava/lang/String;)V+1 (Exception.java:33)
    javax/mail/MessagingException.<init>(Ljava/lang/String;Ljava/lang/Exception;)V+2 (MessagingException.java:57)
    javax/mail/SendFailedException.<init>(Ljava/lang/String;Ljava/lang/Exception;[Ljavax/mail/Address;[Ljavax/mail/Address;[Ljavax/mail/Address;)V+3 (SendFailedException.java:77)
          com/sun/mail/smtp/SMTPSendFailedException.<init>(Ljava/lang/String;ILjava/lang/String;Ljava/lang/Exception;[Ljavax/mail/Address;[Ljavax/mail/Address;[Ljavax/mail/Address;)V+10 (SMTPSendFailedException.java:46)
          com/sun/mail/smtp/SMTPTransport.issueSendCommand(Ljava/lang/String;I)V+135 (SMTPTransport.java:1333)
          com/sun/mail/smtp/SMTPTransport.mailFrom()V+509 (SMTPTransport.java:906)
          com/sun/mail/smtp/SMTPTransport.sendMessage(Ljavax/mail/Message;[Ljavax/mail/Address;)V+244 (SMTPTransport.java:535)
          JavaMail.sendMail(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)S+139 (JavaMail.java:191)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Wireless Keyboard and Mouse connection lost when computer wakes up

    Every time my computer wakes up I get the message "Connection Lost" referring to the mouse (Mighty Mouse) and keyboard. I have to wait a couple of seconds for them to start working. I tried to remove them from the list of Bluetooth devices and then pair them again, but had no success. It's pretty annoying to have this happening everytime the computer wakes up.
    Is anybody else experiencing this? Any suggestions?
    Thanks.
    richard

    I have this issue as well, and havn't found a sufficient answer on the forums as of yet.
    I can pair my mouse every day, and it will work fine, until I leave it at night when my computer shuts down. When I return in the morning I have no mouse, and have to go back to the bluetooth setup wizard and re-pair the mouse by turning it off then on again. I can't even just come in and turn the mouse off and on and have it work. I have to actually go through the setup wizard.
    I CAN however, go to the bluetooth preferences, click on the mouse, and choose "connect" when it is turned off, then turn it on and it will connect without having to re-pair, but this is just as tedious and annoying as the whole setup process.
    It's so annoying to have to have a wired mouse plugged in just so I can pair my wireless mouse every morning. Kind of defeats the purpose of a wireless mouse.
    When I orginally bought the mouse and keyboard I had to return the original mouse because it wouldn't hold a connection even when I was using it. Obviously these wireless mice of Apple's need some more TLC in the engineering dept.

  • TS3367 FaceTime keeps saying connection lost when attempting to use from iPad to ipad

    How do I connect to another iPad user if I keep getting message connection lost

    I have same problem with my iphone4. Don't know how to solve it

  • PS3 and PSP don't optain IP Adres. Connection lost when downloading.

    Hi. I have a WRT54G V.5.1 router with FW: v1.02.0. There was no problem at first. Wireless connection with my PS3 worked great. But since a week or so my PS3 and PSP doesn't optain an IP Adres anymore.
    I wired my PS3 to the router and everything works ok.
    PSP online does not work. I manually entered an IP Adres in my PSP connection settings. Connection tested and ok. But trying to internet with PSP gives me a DNS-error.
    Then the problem with connection. When I download something with my pc or PS3 after a few minutes theres no connection anymore. I have to re-connect within the setup. Bittorrent will crash the router within seconds. I cant't download demo's or movies with PS3 without many disconnects.
    From reading all over the net I understand that the V5 or higher seems to have these problems (connection). Is there nothing to solve this problem?
    Please help.

    Set your PSP and PS3 back to obtaining IP and DNS Settings automatically. Don't manually type especially if you don't have a static IP address from your Internet Service Provider.
    I believe your concern is just a matter of wireless connectivity. The most common reason why you are not being able to connect properly on the wireless network is that there may be a new wireless network within your vicinity that may be running of similar or if not, the same wireless settings to that of your Linksys wireless network.
    My suggestion is for you to go into the console of your Linksys router and change the wireless channel, change the wireles network name. Make them as unique as possible. Best wireless channels to choose from are Channels 1, 6, 9 and 11. Channel 9 is good only for people in Canada.
    Hope this helps.
    tui vere,
    andré

  • Internet connection lost when restarting the computer

    Hello everyone.
    I live in Denmark, and 6 days ago I bought a new TOSHIBA pc: a Sattelite L855D-100. From the very start there has been a problem with the wireless internet connection. When I restart the pc, the internet connection is gone afterwards, and I am not able to re-establish the connection in any possible way. I have to shut down the pc - wait a few seconds - and then start the pc in 'normal' way. Then the wireless internet connection is okay.
    But the problem is the same every time I restart the pc.
    Does anyone know how to solve this problem?
    I thank You in advance for Your help and advice.
    Best regards Svend in Copenhagen.

    Satellite L855D-100 (PSKAYE-003004DU) <- Netherlands version
    A brand new computer should work right off the shelf, Svend.
    I would restore the hard disk to its original out-of-the-box contents using Toshiba recovery media just once. And then return it for a new one if things are still not working right.
    See the section System Recovery, which begins on p. 4-16 of the User's Manual (attached).
    -Jerry
    Attachments:
    L855UsersManual.pdf ‏5612 KB

  • Internet connection lost when using Windows with Parallels 5

    A couple of months ago I installed Parallels 5 and Windows 7 thinking I'd need to use it some day and of course I went to use Windows on my MacBook Pro today only to find that I can't connect to the internet via Windows. It keeps telling me that I need to install a network adapter. I'm using Airport to connect me to a Netgear wireless router which works fine in Mac OS X. I thought perhaps connecting to the router directly with an ethernet cable might work - it didn't. I've also had a quick play under the DEVICES menu in Parallels (taking a guess at some settings, with no luck).
    I would appreciate any suggestions - thanks in advance

    Did you install the Parallels Tools package? It includes drivers that link the Windows virtual machine to OS X.
    That is to say, there should be a command in one of the Parallels Desktop menus (have Parallels but not version 5) that installs this package into the VM. You may need to REinstall if it didn't take the first time.
    Message was edited by: Dave Dahle

  • Server not responding when connected to Internet

    ServerSere ever not responding when connected to internet

    Hi ..
    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    If that doesn't help, tap Settings > General > Reset > Reset Network Settings
    You may have to re enter your Wi-Fi password.
    If nothing above has helped, try here >  iOS: Troubleshooting Wi-Fi networks and connections
    iOS: Wi-Fi settings grayed out or dim

  • Router connection lost after connecting modem

    Router: WRT54GX4
    Background: My desktop PC had been connected to the internet through my router and DSL modem just fine. But I forgot my router password, so I reset the router.
    Situation: Now my PC communicates with the router fine when the modem is NOT connected to the router (I can ping the router, access the router's Utility screens, etc.). Once I connect modem to the router, though, my PC can no longer ping or see the router. My PC will still connect fine to the internet when directly connected to the modem.
    Attempted Fixes: I've believe I've tried every combination of turning off/turning on the equipment. For example, while I have a good PC/router connection, I've connected the modem to the router (and lost the router connection). Then I tried starting out with a good PC/router connection, powered off the router, connected the modem, then powered the router back on (and lost the network connection). I've restarted the PC after connecting the modem to the router, et cetera, et cetera. Every scenarion I try ends up with me losing the router connection to the PC.
    Any suggestions would be appreciated.
    Message Edited by Mark73Online on 08-26-2007 11:51 AM

    After you reset the router to factory defaults, you need to setup the router again.  Use the setup disk that came with the router, or setup the router manually if you prefer.  It sounds like your "Intenet Connection Type" is not setup correctly.
    Please state your ISP.
    Also state the make and model of your modem.
    Do you have cable modem, or DSL, or ADSL ?
    Did your ISP give you a PPPoE user name and password?

  • Connection failure when connecting to the net with...

    I hope someone can help me. I have got Nokia PC suite on my PC. I often use it to connect to the net. Just recently I had a few viruses on my pc and now since they have been cleaned off I keep getting a connection failure when I try to connect. I have tried uninstalling and reinstalling my software but nothing seems to help. I know it is something to do with my pc as I have tried four different phones that do work on other pc's, just not this one.
    I have checked to make sure all the modem settings are right and that the phone is detected as a modem.
    What should I try that might help solve this??
    Thanks
    Katherine

    Make sure you have entered the access point in the one touch access settings, enter the settings maually and try to connect.
    If a reply has solved your problem click Accept as solution button, doing it will help others know the solution. Thanks.

Maybe you are looking for