WPS button press causing full reboot

Since the firmware upgrade I've had the same issues as most others with the repeated wifi drop outs.  This has been resolved with the rolled out patch.
However, I use a Samsung printer connected via WPS. This has always worked well.
Since the upgraded firmware the WPS no longer works and when I press the WPS button on the HomeHub 5 it causes a full reboot following the end of the 2 minute waiting period. This is independent of whether I have tried to connect the samsung or not.
Anyone else having this issue? Any ideas how to fix?
Solved!
Go to Solution.

I suggest you try a factory reset of the hub
http://bt.custhelp.com/app/answers/detail/a_id/113​86/~/how-do-i-reset-my-bt-home-hub-to-its-factory-​...
If you found this post helpful, please click on the star on the left
If not, I'll try again

Similar Messages

  • Wifi network not recognized for long duration after WPS button pressed on ap

    I have a TP-Link TP-WA901ND (access point) and it has been working flawlessly I pressed the WPS button on the device to get a wireless printer to acknowledge the network.
    Now after 10hrs all the devices and computers see the network except for my z10 and BOLD 9300 until I power cycle the device.
    Any ideas?

    Hello RonnonF 
    Please read these useful articles;
    • KB14477 Unable to connect to a Wi-Fi network on the BlackBerry smartphone
    • Speed up BlackBerry Wi-Fi connections a knottyrope...
    Good luck.
    • Click Likes to appreciate those who helps you
    • If your issue solved, mark the best post in your thread as Solution

  • IOS button press causes "unrecognized selector sent to instance"

    Newbie Obj-C / iOS programmer here.  I'm sure this is a common and simple newbie problem; nothing complicated here.
    I created a view-based application with the following files:
    MainWindow.xib
    PushbuttonAppDelegate.h & m
    PushbuttonViewController.h & m
    PushbuttonViewController.xib
    I put one button on PushbuttonViewController.xib.
    I want to drive an instance method ("pushed:") in PushbuttonViewController.m when it's pressed.  However, when I press it, the app crashes with the following log msg:
    [NSCFString pushed:]: unrecognized selector sent to instance 0x4e0bea0
    Various things that I have done:
    declared and defined - (IBAction)pushed:(id)sender; inside PushbuttonViewController.h&m
    implemented pushed: to call NSLog, (but that never gets called).
    added an Object to PushbuttonViewController.xib and set its identity to PushbuttonViewController.
    connected the button to thePushbuttonViewController object's pushed: IBAction.
    cleaned and rebuilt frequently.
    I have a feeling that maybe the PushbuttonViewController hasn't been instantiated or something?  I'm so new to Obj-C and iOS that I'm still very unclear about the whole chain of events, and what has to be connected to what.
    Don't know if I can post a 25K zip file containing a sample project illustrating the problem...
    Any thoughts?
    Thanks,
    Chap

    Okay, I think I solved my problem, and I'll describe it here in case anyone else comes looking...
    I should NOT have "added an Object to the PushbuttonViewController.xib..." and "connected the button to [that] PushbuttonViewController..."
    The PushbuttonViewController.xib came with a "File's Owner" of PushbuttonViewController.  I should have just created my IBAction "wires" from the button to the IBAction in the the "File's Owner."  By creating a second PushbuttonViewController object and wiring to that I apparently messed up the ability to send a message there.
    (xnav -- I had a breakpoint at the top of pushed: but it was never being reached.)
    So although I'm as yet unclear about all the magic the NIB performs, I'm past this one hurdle.
    About that "Unrecognized Selector Sent To Instance" error - I'm betting that's a very common, generic error, almost like "seg fault."  Can anyone offer more details on what can cause it?  In my case, I was misled because my class DID, in fact, have a pushed: method.

  • Baby monitor requires WPS button to be pressed on router.  How can I get connectivity?

    I recently bought D-Link DCS-5222L baby internet monitor.  I've been having problems connecting it to the internet.  I'm trying to connect it wirelessly.  The monitor user guide is requiring the WPS button to be pressed on the router, but Airport Extreme doesn't have this (I'm new to MAC).   How do I connect the two?

    What do you mean by 'see it on the AirPort'?
    If you want to see the camera online I believe mydlink needs to be used, or you can forward ports if you use a web browser to access the camera.

  • What is the WPS button on my access point?  I am trying to setup wirelessly with a canon MX892 printer

    Printer setup instructions say to press the WPS  button on the access point (my 4th gen Time Capsule).  Does that mean hit reset and will I have to setup every other device again by doing that?

    No, do not hit reset .. it is not a WPS button.
    Apple products do not use WPS, so no WPS button is needed. And they have no need to implement one.. nothing exists outside the Apple bubble.. didn't you know that??
    Read the forum expert Tesserax instructions for using WPS. https://discussions.apple.com/message/16034147#16034147
    But it is better to plug in your printer to a mac by usb and use the disk provided to do a full manual setup of wireless.. WPS is simply the easy way.

  • Why am I getting this error?  How do I add confirm message to button press?

    Using Java Studio Creator.
    I do not understand why I am getting the following page error:
    Description: An unhandled exception occurred during the execution of the web application. Please review the following stack trace for more information regarding the error.
    Exception Details: java.lang.IndexOutOfBoundsException
    Index: 0, Size: 0
    Possible Source of Error:
    Class Name: java.util.ArrayList
    File Name: ArrayList.java
    Method Name: RangeCheck
    Line Number: 546
    ======================================================================
    I have a page that works.
    It has a button that is created in the session bean code with the following java:
    button = (HtmlCommandButton)application.createComponent(HtmlCommandButton.COMPONENT_TYPE);
    button.setActionListener( application.createMethodBinding("#{ScheduleEditSessionBean.mainApply}", new Class[]{ActionEvent.class} ));
    button.setId( "applyUndates" );
    button.setType( "submit" );
    button.setTitle( "Apply updates.");
    button.setValue( "Apply" );
    button.setStyle(style);
    children.add(button);
    When the button is pushed, it calls the following session bean method:
    public void mainApply(ActionEvent actionEvent)
    updateScheduleData();
    scheduleAdjustFlag = 1;
    dataApplied = true;
    dataSaved = false;
    addControls();
    This all works just fine - no errors
    ====================================================================
    I wanted to add confirmation to the button press, so I removed the action listener for this button and added
    a javascript function call for the onclick method
    button = (HtmlCommandButton)application.createComponent(HtmlCommandButton.COMPONENT_TYPE);
    style = "text-align: center; font-family: 'Arial','Helvetica',sans-serif; " + font + " height: 22px; width: 115px";
    // Commented out this line button.setActionListener( application.createMethodBinding("#{ScheduleEditSessionBean.mainApply}", new Class[]{ActionEvent.class} ));
    button.setOnclick("confirmApply()"); // Added this line.
    button.setId( "applyUndates" );
    button.setType( "submit" );
    button.setTitle( "Apply updates.");
    button.setValue( "Apply" );
    button.setStyle(style);
    children.add(button);
    I added a dummy button to the page that has the following call to execute the mainApply method in the sessioon bean.
    The button action just calls the mainApply() method in the session bean
    public String mainApplyBtn_action() {
    seb.mainApply();
    return null;
    Added the javascript to the page that simply pushes the dummy button if confirmed.
    function confirmApply()
    if( confirm( 'Are you sure you want to Apply these changes?' ) )
    form1["form1:mainApplyBtn"].click();
    The session bean method looks like this it is the same method as before, but without the action event argument.
    public void mainApply()
    lsb.logMsg( "<ScheduleEditBean.mainApply> Main apply pushed" );
    updateScheduleData();
    scheduleAdjustFlag = 1;
    dataApplied = true;
    dataSaved = false;
    addControls();
    ==================================================================================
    Now, when I push the original 'Apply' button, I get the confirmation box just like I expected.
    But when I confirm the question, I get the error at the top of this post.
    If I push the 'dummy button' directly, I do not get the error.
    I do not understand why I should be gettng this error.
    Can anyone give me a clue as to why this change would cause the problem?
    The error is related to an ArrayList.
    I use several of these on the page, but they should be filled with data in the preRender method of the page.
    Can anyone suggest a way that I can add confirmation to a button that is created under program control?
    Thanks

    Make use of the fact that when an onclick event of a button returns 'false', the action will not be taken.
    Pseudocode:<h:commandButton value="submit" action="#{myBean.action}" onclick="return confirm('Are you sure?');" />

  • WPS Button

    I have just bought a new Panasonic TV and am having difficulty connecting it to my home hub so that I can use the Viera Cast (internet TV).
    I am able to get the TV to connect to the internet, but the next step in the process as detailed in the instructions is to press the 'WPS button' on my router. The router I have (the BT black one) does not have this button as far as I can see and therefore I cannot complete the set up process.
    I would be grateful if anyone knows of a solution to this issue. Thanks in advance for any help.

    It may be that you will have to hardwire the printer to your computer to setup the network password to begin with if there is no keyboard to enter this information.
    I've had my own share of issues attempting to connect a HP Photosmart to an iMac... it's ended up a 'wired' printer now as it is not supported! 
    Kyle
    =======================================
    If you found my post helpful, please give Kudos on the left!
    =======================================

  • 2 Second Button Press Activation

    I'm working on a touchscreen application and I have a basic control that has large buttons on it. I want to make the buttons only activate if the user has held his/her finger on the button for 2 seconds or more. I'm using  Mouse Down event structures to detect the button presses, BUT how do I make the user hold the button down for 2 seconds before the button actually activates?
    Ideally I would love to just be able to "hold for 2 seconds" and have it trigger as opposed to "hold for 2 seconds and release" but I can't get either to work. Thanks folks and we got a weekend coming up!
    -- Matt

    Here is a VI (LV8.20) that does what you want, mostly. It uses Mouse Down, Mouse Up, and Mouse Leave events to control a timer and to toggle a boolean indicator. Mouse Down on th ebutton starts the timer. Mouse Up or Mouse Leave before the 2 seconds causes the timer to stop. If the mouse stays down on the button for more than two seconds, the indicator state toggles.
    If you are using other events, this likely will not work properly in all cases. A better approach might be to put the timer into a parallel loop (rather than the timeout case) and just send messages via a queue about which events have occurred.
    Lynn
    Attachments:
    Two Seconds.vi ‏19 KB

  • "duplicate button press" problem in jsf 1.1

    I think the problem come from "duplicate button press", when the users press the button several time, many request is generated, the sad is I don't have the source code of this page, I just have the source code which receive these request, what I want to do is just handle the first request from the button and ignore the other, is it possible?
    also, because I can't modify the problematic button page (I have not the source), so even I upgrade to jsf 1.2 is not useful, is it?
    thanks!!

    First, let me say that it is strange to try to solve this problem without being able to modify the source page. If this is a political or administrative restriction rather than a real technical limitation I suggest you push back on whomever has created this situation.
    The most effective method I can thing of would be to remove the state of the view from the session (assuming server side state saving) upon receiving the first request. This will cause the subsequent requests to fail. Although, this might not be the best due to timing issues. Also, keep in mind that the user will just see the error message, they will not get the results of the first request.
    So maybe a filter which intercepts the requests. It could perform duplicate detection by hashing all of the request parameters. You could even keep the responses around to resend. Oops, I've just re-invented HTTP caching; perhaps interjecting a product which already performs that role would be appropriate instead.

  • Simulating a button press.

    I would like to programmatically simulate a button press (JButton).
    I used the following code, which works fine when running inside the IDE (Sun One Studio 4, update 1).
    (butAll.getActionListeners()[0]).actionPerformed(new ActionEvent(this,
    ActionEvent.ACTION_PERFORMED,
    "Get All"));
    But when I run it outside the IDE, I get the following error
    Exception occurred during event dispatching:
    java.lang.NoSuchMethodError
         at crse_desc.proRunAll(crse_desc.java:811)
         at crse_desc$22.run(crse_desc.java:454)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Any suggestions on what might be causing the error, and how to fix it?
    Or an alternative way to programmatically simulate a button press?

    That was what it was!
    I was using InstallAnywhere to package it, and I was including the SunJRE131_04Win32.vm VM with it, but had compiled using the 1.4 JDK in Sun One.
    Soon as I switched to SunJRE141_02Win32.vm, it worked fine.
    That thought would not have even occurred to me,
    Thanks!!!
    BTW, is using
    getActionListeners()[0]).actionPerformed
    a good way to do this? Is there a better method?

  • Overide on-error with when-new-button-pressed

    Hi,
    I have a big problem and not much time to solve it so posting on here hoping someone will know the answer. I have put an exit button on my form which calls a method that uses GO_FORM to return to a menu page.
    I don't want to close oracle forms down completely so I can't use the exit_form command. However I want the close button to return the user to the menu without validating or saving the current form.
    My problem is that I catch errors in a date field using an on-error trigger and this always fires before the when-button-pressed meaning my user gets an error before leaving the form.
    How do I ignore the on-error trigger when my close button is pressed and not when exiting the field which contains the date.
    I have tried setting the execution hierarchy to after on the on-error and override on the when-button-pressed but this seems to have no effect.
    Thanks for any help
    Dan

    One solution would be to add a menu for the form. For some reason menu items and toolbar buttons don't cause the loss of focus to occur. If you used a menu to fire a trigger to close the form then you could set a flag that could be checked in your on-error trigger. If the flag was true(or whatever) then you don't perform your validation.
    I'm usually angry that the toolbars and menus don't cause those triggers to fire, but I've had a couple cases similar to this where it actually works out for the better. Not sure if having a menu for, what sounds to me like, a dialog will look the best, but it should work.

  • Flv "white flash" in between videos playing when button pressed.

    I am currently working on a catalyst project whereby the buttons pressed play different sections of an animation. My problem is that the animation flashes white for a split second in between pressing the button and the video playing. Does anyonyone know how to eliminate this white flash? Would really appreciate any help,
    Cheers,
    Dan

    Hello all,
    Yes to follow up Ben, I'm experiencing the exact same problems as him. I changed browser to Firefox 3.0.11 a couple of months ago and hence downloaded the Flash plugin for Firefox. I noticed the issue straight away in Youtube, but not on other sites. As I attributed the problem to Firefox, I then downloaded Opera 9.64 - but experienced the same problem. This led me to believe the issue was the Flash plugin, as both browsers are served by the same Adobe plugin for 'alternative browsers' to IE.
    I then tried IE6 again in youtube and it didn't have the problem on standard view, however the problem was (and still is) occurring in full screen view. I'm nearly 100% sure this problem didn't occur before I downloaded the Flash plugin for Firefox / Opera. Regardless of whether that is the issue, the problem was definitely not happening on my system in IE6 earlier this year.
    As Ben said, my computer is fairly old but well managed and up to date. OS is Windows 2000 SP4, system is AMD Athlon 900 (slot A), 512 Mb RAM, 16Mb Voodoo 3 graphics, m/board MSI MS-6191.
    I've also tried removing the Flash plugin for Firefox/Opera and for IE6 and reinstalling it but had no joy there either. I would try an updated version of IE too but IE6 is the last version compatible with Win 2k.
    Any help appreciated, thanks.
    Matt

  • Frm-40735 when-button-pressed trigger raised unhandled  exception ora-03114

    hi everybody,
    i am using oracle 10g release 2 in my test server and 10g release 1 in production server with forms in 10g running through the oracle 10g application server with no problem with our production server.
    but the same form when i try to use through the same application server for my
    with my test database server which is oracle 10g release 2 is giving me
    frm exceptions and disconnecting the session.
    like i get frm-40735 when-button-pressed trigger raised unhandled exception
    ora-03114. then frm-40655 sql error forced rollback;clear form and reenter transaction. then when i try to exit it shows ora-24324 service handle not initialized.
    The same thing when i try with my production server i dont get any exception handle error or forced rollback error.
    i am not facing any problem as such to connect to my test database(release 2)
    through sql plus client or TOAD OR ENTERPRISE MANAGER THEY ARE ALL FINE. IT IS ONLY WHEN I GO THROUGH THE APPLICATION SERVER TO ACCESS MY FORMS I GET THIS ERROR. BUT MY PRODUCTION IS RUNNING THE SAME WAY WITH NO ERRORS.
    any suggestions welcome as i have to bring release 2 in the production next month
    thanks and regards
    manish

    ORA-03114 not connected to ORACLE
    Cause: A call to Oracle was attempted when no connection was established. Usually this happens because a user-written program has not logged on. It may happen if communication trouble causes a disconnection. In addition, this message could occur when ALTER SYSTEM KILL SESSION or ALTER SYSTEM DISCONNECT SESSION were issued with the IMMEDIATE qualifier because, in those cases, the client's connection to the database is terminated without waiting for the client to issue a request.
    Action: Try again. If the message recurs and the program is user written, check the program.
    zaibi.

  • FRM-40735: WHEN-BUTTON-PRESSED trigger raised unhandled exception ORA-04063

    Hi experts,
    This problem as titled happened to me recently, and i found no way out.
    I collected the FRD information, what i can get is:
    GMDRCDSG, 11, Prog Unit, Entry, 361120504, /XGMDSRCHGMD_BASIC_SEARCH_PKG/INIT_GROUP
    Unhandled Exception ORA-04063
    State Delta:
    Error Message: FRM-40735: WHEN-BUTTON-PRESSED trigger raised unhandled exception ORA-04063.
    ON-ERROR Trigger Fired:
    Form: GMDRCDSGORA-04063 means some database object is broken, but this information does not specify exactly which
    object it is . I thought it is caused by GMD_BASIC_SEARCH_PKG, which is programmed in GMDSRCH.pll.
    So i recompiled the pld file, but didn't work.
    The further action i took is to find out all the invalid package/package body in database, and recompile them.
    Unfortunately, this also didn't work.
    Any help is greatly appreciated, thanks in advance:)
    Ted

    Could anybody help? Please.
    Thanks,
    Ted

  • FRM-40735: when-button-pressed trigger raised unhandled exception ORA-06508

    Hi,
    I built a report using Reports Builder, and a form that calls this report. When I try to run the rdf file (report), using [b]rp2rro.rp2rro_run_product I get the error:
    FRM-40735: when-button-pressed trigger raised unhandled exception ORA-06508.
    How fix it?
    []'s
    Sandro

    Hi Mark,
    The debbuger stopped at line that was causing the error (rp2rro.rp2rro_run_product(REPORTS, 'myReport', SYNCHRONOUS, RUNTIME, FILESYSTEM,v_paramList , NULL);
    The data type passed in arguments and its lenght that's ok... I don't know what I should do...
    Sandro

Maybe you are looking for

  • Lion 10.7 Only Boots in Safe Mode. Is This a Hardware or Software Issue?

    Hi. On my iMac late 2009 i7 8GB bought last March only. I reinstalled Lion (I didn't erase the whole disk because I have Boot Camp Windows and I have filed there) and it can only boot in safe mode if I use the Mac's built-in EFI bootloader (where you

  • How to make use of the results of one step at the other step in the same sequence

    Hello I am new to the Teststand. I am using labview8.0 with teststand 3.1 Plz get me solution for the below I am configuring the serial port resources like resource name, baud rate etc..,I made the initialization using setup task.I made serial port w

  • EAP-TLS on WLC 5508 agains IAS RADIUS

    /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:""; mso-padding-alt:0cm 5.4pt 0cm

  • Installed ROVE MOBILE VIEWER: what is the device password????????????

    installed the above program and when i go to hook my usb to my blackberry it asks me on this program to input the device password.....not sure what its looking for because i don't use a password on my blackberry......has anyone else used this program

  • B9180 print preview missing

    I have just upgraded Windows from XP to 7 using the HP downloaded driver. The Print Preview check box no longer appears on the Features or Color tabs. Is this a known bug? Or is there some other explanation? It was always present with the XP driver.