Simple Connect Problem

Hello,
I have created a chat application using the communication
components using this tutorial
http://www.adobe.com/devnet/flashcom/articles/first_comm_app.html
I have people list component , chat component and the simple
connect component in the stage.In simple connect I have given the
localhost path and instance name of other components.
When I run the application the connection light TURNS GREEN
indicating the connection has been established. I even have
server-side script main.asc which loads the component.( load(
"components.asc" );)
But, my problem is what to do after that..?
Because when I press on the login button of simple connect
nothing happens!
And also, when I type something on the chat and enter nothing
is displayed in the chat area.
What may be the problem?? Any ideas…??

Hi anil!
well it was not the problem with the instance name! well i
even i am not quiet sure what is the problem or now can say what
was the problem!
one fine day it started working automatically, with out me
doing any changes!!!
Unusual right?

Similar Messages

  • My computer is running very slow, how can I tell if it is a internet connection problem or my computer?

    I have a mac 10.5.8 and it has been very slow lately. I often get the rainbow wheel when using it and recently I have had to restart the computer alot because it seems to freeze. The only other open program besides Safari is the finder which i cant seems to ever shut off. I'm not sure if this is an interent connection problem or if my mac needs servicing.

    Please begin using 25 Ways to Speed Up Your Mac  you will almost certainly find the cause there. The first place I'd look though is how much RAM your system has, if you never upgraded it that could be the problem. Macs ship with a minimum amount of RAM so it's possible a simple RAM upgrade would help. Use the article though and methodically go through the suggestions.
    You also may benefit by reading XLab's Spinning Beach Ball of Death article too.

  • Connection Problem HP Officejet Pro 8500 A910

    Dear Forum,
    we are experiencing connection problems with the Officejet Pro 8500 A910 Printer/Scanner.
    The device is connected via Wireless Network and can reach the server (e.g. for storing scanned images).
    When we try to access the printer (or scanner) with a Computer (WinPC or Mac) that is also connected via the same Wireless Network, the printer/scanner cannot be reached (host unreachable), i.e. even a simple PING to the network address (IP V4) of the printer/scanner cannot be completed. As soon as we connect the computer via wired LAN, the printer/scanner can be reached again (normal operation). Between both states (computer connected via Wireless Network or Wired LAN) no changes were made to the configuration of the printer/scanner. It simply is unreachable when the computer trying to connect to the printer/scanner is connected via Wireless Network.
    We have looked at different firewall settings of the Wireless Router but did not find anything, the firewall is deactivated (as the router operates behind a firewall, as does the whole LAN).
    I already switched on the "compatibility to 802.11b/g" in the advanced network settings of the printer, no effect.
    Anyone got a smart idea why this is so? We tried with different computers and different operating systems, but always the same picture...
    Thanks!
    This question was solved.
    View Solution.

    Reset the printing system:
    - Go to System Preferences > Print & Scan
    - Right (or control) click in the rectangle listing your printers and select Reset Printing System.
    WARNING - this will delete ALL of your printers!
    - Select the plus sign to re-add a printer. Select the Defualt tab on the top of the window. Look for the printer, select it and wait until the "Add" button becomes available. Click it.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • SQL Connect problem - migration from Oracle 7.3.4 to Oracle 8.0.6

    Our development environment has just been upgraded from HP10.20
    to HP11 and the database from Oracle 7.3.4.0 to Oracle 8.0.6.0.
    I am now having problems with one of the PRO*C programs. The old
    executable( compiled in the old enviroment HP10/Oracle734) is
    working fine in the new environment. But after I successfully re-
    compiled this program in the new environment, the new executable
    is not working and stops at the statement: 'EXEC SQL CONNECT:
    userid'. I have checked the userid and Oracle settings, they are
    correct. Right after the EXEC SQL, I've tried checking the
    status of connection, but it never gets there. The
    only change to the make file is using
    $(ORACLE8_HOME)/precomp/lib/env_precomp.mk instead of using
    $(ORACLE7_HOME)/precomp/env_precomp.mk
    Other PRO*C programs which are using exactly the same connecting
    statemment are working fine.
    Anyone have any ideas, I would appreciate them?
    Thanks,

    I am upgrading with precisely the same varaibles that you encountered
    and am receiving the same inability to do a simple CONNECT with
    Pro*C. Were you able to resolve this problem? If so, please reply
    with some guidance.
    Thank you.
    - Tad Franson
    [email protected]

  • Simple Connect access other Components

    Hi !!
    I'm using FMS components, in that I'm not able to connect the
    simple connect component with other components which were in other
    frame.
    Can any one please help in solving this issue.
    Thanks in advance
    Anil Golla :

    Hi anil!
    well it was not the problem with the instance name! well i
    even i am not quiet sure what is the problem or now can say what
    was the problem!
    one fine day it started working automatically, with out me
    doing any changes!!!
    Unusual right?

  • EJB3: JNDI connection problem managed server

    Hi all,
    In a JUnit test, I tried to look up a Session EJB from a remote managed server:
    Hashtable<String, String> props = new Hashtable<String, String>();
    props.put(javax.naming.Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
    props.put(javax.naming.Context.PROVIDER_URL, "t3://server1.ux.yucom.es:1751");
    props.put(javax.naming.Context.SECURITY_PRINCIPAL, "userName");
    props.put(javax.naming.Context.SECURITY_CREDENTIALS, "pwd");
    props.put(weblogic.jndi.WLContext.ALLOW_EXTERNAL_APP_LOOKUP, "true");
    InitialContext context = new InitialContext(props);
    Command command = (Command) context.lookup(jndiName);
    But the code already fails while instantiating the InitialContext, because of a connection problem:
    Caused by: java.net.ConnectException: t3://server1.ux.yucom.es:1751: Destination unreachable; nested exception is:
         java.net.ConnectException: Connection timed out: connect; No available router to destination
         at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:203)
         at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:153)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:352)
         ... 34 more
    Caused by: java.rmi.ConnectException: Destination unreachable; nested exception is:
         java.net.ConnectException: Connection timed out: connect; No available router to destination
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:464)
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:315)
         at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:251)
         at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:194)
         at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:225)
         at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:188)
         ... 36 more
    I'm able to connect to the the Admin server... In this case I receive a javax.naming.NameNotFoundException, obviously, since the remote EJB is only targetted on the managed server and not on the admin.
    This is confirmed by following little test on the command line:
    java -cp %WL_HOME%\server\lib\weblogic.jar weblogic.Admin -url t3://server1.ux.yucom.es:1700 -username <user> -password <pwd> PING
    => OK, packets received
    java -cp %WL_HOME%\server\lib\weblogic.jar weblogic.Admin -url t3://server1.ux.yucom.es:1751 -username <user> -password <pwd> PING
    => Failure:
    Failed to connect to server1.ux.yucom.es:1751: Destination unreachable; nested exception is:
    java.net.ConnectException: Connection timed out: connect; No available router to destination
    Does anyone has an idea why the connection to the managed server fails??
    Is it a configuration problem in WebLogic?
    Thx a lot!
    Wim.

    Hi,
    Are you able to Remotely Access any Simple Web Application deployed on "server1.ux.yucom.es:1751".
    Example: http://server1.ux.yucom.es:1751/TestApp/index.jsp
    If NOT: Means Some where there is a problem with the Port...Just for testing Try Changin Manged Server port to Default HTTP Port (80).
    If Yes: Then there are chances that Your Box is not allowing any t3-Protocol Traffic on 1751 Port. Just for Testing Enable HTTP Tunneling on this Server from Admin Console
    AdminConsole --> Home-->Summary Of Servers --->ManagedServer1 ---> Protocol (Tab) ---> HTTP (SubTab) --->Enable Tunneling (Check This Check Box)    Save the changes.
    And then After restarting your Server ... Try to ping your Server using:
    java -cp %WL_HOME%\server\lib\weblogic.jar weblogic.Admin -url http://server1.ux.yucom.es:1751 -username <user> -password <pwd> PING
    In the Above command Use HTTP protocol instead of T3. If Now u are able to Ping the Server means Your Port 1751 was not allowing any other Protocol except HTTP.
    Thanks
    Jay SenSharma
    http://middlewaremagic.com/weblogic  (Middleware magic Is Here)

  • Weird Slow Connectivity Problem

    Hi guys
    We are facing a slow connection problem and we cant seem to find an answer
    as to whats happening.
    Our application has
    1. An app server hosting EJBs , datasources etc
    2. A webserver on different box hosting servlets and command classes.
    3.A Sql server 7 database on a different box.
    All these boxes are on a secured network ; which means that access to them
    is given on a requirement basis.
    We have JSPs on the web box which get a datasource connection from the app
    box to run queries against the database server.Our problem is that even to
    run a very simple query ; it takes a long long time (in order of minutes)
    and the same query runs lightening fast in the test environment where all
    the boxes are on the same network.
    We use type 4 SQL driver.We initially thought that this could be a network
    problem as it doesnt make sense that the same query runs very fast on the
    test boxes.But the network settings seem ok.
    The network settings are this way :
    Appserver box has access to database server box.
    Webserver box has access to Appserver box.
    So you can see that webserver doesnt have direct access to database
    server.Is it needed to run queries ; since I am taking a connection from the
    appserver.How does the whole business of running queries work when I take a
    connection from a datasource on an app server.
    I had this question posted to the BEA weblogic customer support ; but they
    really couldnt help me.
    Any ideas would be appreciated.
    Thanks
    Pankaj Vij

    This has many possible troubleshooting paths. You don't mention if this is a workgroup or domain based Windows network. Checking the "Directory Access" settings as appropriate may yield the solution.
    If this is a domain/active directory network the issue may lay with the machine account on the domain server.
    Create a new user account on the Mac and see if the problem follows when you log in to that account and try to access the SMB share.
    If the problem goes away, then you should look at the original user's startup items to see what might be launching at startup or simply move all files to the new user and delete the old account (not the preferred method).
    If the problem persists with a second user on the same machine, then I'd take another Mac, boot it to target disk mode (laptop is good for this), using a firewire cable, boot the troublesome mac to the target mac and try to replicate the issue.
    If issue persists, this is a network permissions issue on the server, if it goes away it is a local software issue on the Mac and a clean install of the OS may be needed if you can't locate the meddlesome settings/software.

  • 6500 connection problems

    Basically ive broken my screena need to get all my contacts off onto ovi...
    Ive connected everything and im through to the home page of the ovi suite however when i get to the home page where it displays the phone in the bottom left hand courner it just says "setting up" with a spinning wheel next to it.
    I believe it should "sync all" or something of the sort.
    Now this could be as simple as i need to press something on the screen of the phone to continue but obviously i cant see this as its broken completly.
    Hopefully someone can guide me in the right direction to sort out this probs
    Ive attaced a photo so you can see what im discribing
    cheers
    Sam
    Attachments:
    nokiaproblem.JPG ‏42 KB

    Hello, this is also a 6500 connection problem but of a different sort. Up to now, 11 August, never any problem. Then today I cannot connect my 6500 to the PC Suite as usual. I three times re-installed PC Suite Version 7.1.180.194 but each time 'Select the Connection Type' screen is blanked out.... I have also tried re-installing the latest driver but to no avail. I suspect you have updated PC Suite but in so doing have made it in some way incompatible with 6500 which is not a current model. Maybe someone at Nokia can respond? Many thanks!

  • Google Earth connection problem

    I recently got Comcast cable internet and the problems are multiplying. My software update [http://discussions.apple.com/thread.jspa?threadID=430969&tstart=0 ] is giving me problems, and now Google Earth isn't able to function either. As soon as I start it up a window pops up saying:
    "Performing Google Earth server login..."
    then after a minute or two it pops up with:
    "We were unable to connect to the Google Earth server to activate your account. Please verify that your internet connection is working properly and retry your account activation. For more information visit error code: c0000024"
    And it points to this page
    [http://earth.google.com/support/bin/answer.py?answer=20717 ]
    Does anyone know the address Google Earth connects too? I think it can be a simple proxy problem but I'm not positive. Any advice?

    willjm wrote:
    Google Earth was now listed in the hard drive finder window (but was not in the applications folder).
    You are looking at a mounted disk image (.dmg). It's the container you downloaded, which holds Earth, its plug-in, and Chrome. It is only temporarily open, until it gets ejected like a CD/DVD (which will happen when you shut down your computer).
    When I dragged the Google Earth icon to the hard drive icon to install as instructed, nothing happened.
    You're supposed to drag it to your Applications folder. What's the name of the hard drive icon that you were dragging Earth onto? Were you dragging it onto the volume labeled Google Earth, or the one labeled Macintosh HD (or whatever you internal drive is called)?
    Double clicking launched the programme which worked fine (in Safari). However the problem is that _when I switch off my computer, the next time I switch on Google Earth has disappeared._
    Sounds like you were running Earth out of its own .dmg container. Once you shut your computer down, you automatically ejected the .dmg volume. If nothing happened when you tried to drag Earth out of its .dmg, then it was never copied over.
    Has anyone had this problem? What am I missing?
    Drag Google Earth to your Applications folder to pull it out of its .dmg and onto your hard drive (which is what the instructions mean).

  • Wireless connection problems - Airport extreme card

    Hi, I've just fitted an Airport extreme card to my PB 15" Aluminium and, in order to connect to the net via my third party wireless modem / router. The modem is provided by my ISP - T-Net, (Germany) and is a Speedport W501V and am having major dramas trying to connect wirelessly! I can connect via the built in ethernet port. but for can't with the airport card. The instructions for the modem are all in german, which is fair enough since I've just moved here, but isn't helping me try to sort out the connectivity problems 'cos I dont speak the language. I suspect that there are password issues or that the network settings are incorrect, the modem is definately 802.11 b/g compliant and i've been given a password that is 8 figures long - not the 5, 13, 10 or 26 figures that the apple support articles state for ASCII / HEX passwords respectively. After 3 days of trying I'm going mad! has anyone got any solutions / suggestions please.
    PB 15" Aluminium / Airport Extreme Card   Mac OS X (10.4.6)   Third party modem - Speedport W501V, ISP Provider - T-Net germany

    It sounds like a WEP issue.
    One of the problems with WEP is that the actual standard relies on a 10 character HEX key for 40bit WEP and a 26 character HEX key for 128bit WEP.
    In order to make things easier for people, vendors use certain algorithms to convert simple alphanumeric passwords (or passphrases) into HEX keys, thus enabling people to use simple memorable WEP password rather than lengthy HEX keys.
    The problem is that different vendors use different algorithms to generate the HEX key and therefore a ASCII password on an AEBS will be hashed differently on a Netgear client and vice versa.
    One thing is a 13 character 128 bit WEP password will be hashed by all vendors in the same way (if you use 40bit WEP then a 5 character password is required).
    Though sometimes not even that works and the HEX key must be used regardless.
    AirPort: Joining an encrypted wireless network
    http://docs.info.apple.com/article.html?artnum=106424
    Choosing a password for networks that use Wired Equivalent Privacy (WEP)
    http://docs.info.apple.com/article.html?artnum=108058
    iFelix

  • Actiontec MI424WR Router Connection Problems

    Over the past several days I have continued to have intermittent internet connection problems. All my computers are wired eithernet connections to the Verizon FIOS Actiontec router. I called FIOS tech support yesterday and they were no help, the said they found no problems with the connection.  The tech support said it was most liley a problem with using Dell Computers as most problems that he has had to troubleshoot were Verizon Customers who used Dell Computers.  Well I have 3 Dell Computers and 2 are VIsat and 1 XP...All have the same intermittent internet connection problesms.   I notice that wihle  tying to connect to a webpage the Actiontec router looses connection, the WAN Coax and Internet lights go out.  It take the router 10 -30 secs to reconnect to the internet. I have re-booted and also have performed a hard re-set of the Actiontec router, same problem still ocurring again today. It has ocurring on all 3 computers and there is no specific website. Just a couple a minutes ago lost conneciton while reviewing the football scores on ESPN.com.
    Does this look like bad router or NAT Address problem that people are talking about.

    The first thing I would check is your coax connections.  You shouldn't be loosing your Coax wan connection.  Check it there are any old splitters on the coax, check the ends and make sur ethey aren't cruddy crimped connectors.  If everything is new I would call the fsc and tell them that your loosing your wan coax light and arrange to have a field tech visit.  It could be something as simple as wiring or something more involved such as replacing your ont.

  • Timeouts and connection problems after 5.1(2) upgrade

    AIM/chat and some other programs are having timeout/connection problems after upgrade to 5.1(2). I am using S241 also. The connection problems stopped when the IPS was set to bypass. Rebuilt IPS and left sigs at default settings and problem is still happening. I am not seeing any of the IPs that are having the problem in the Event Viewer or on the Events in the IDM.
    Any known issues with the 5.1(2) that would cause this type of problem?

    I don't know specifically, but I did notice that 5.1(3) was released today.

  • Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hello Sue,
    I have an iPad 3, iPad Mini and iPhone 5S and they are all sluggish on capitalisation using shift keys. I hope that Apple will solve the problem because it is driving me crazy.
    I find using a Microsoft Surface and Windows 8 phone, which I also have, work as well as all the ios devices before the ios 7 upgrade.
    It has something to do with the length of time that you need to hold the shift key down. The shift key needs to be held longer than the letter key for the capitalisation to work. For some reason, this is a major change in the way we have learnt to touch type on computers. I am having to relearn how to type!
    Michael

  • RFC Receiver adpater Connection problem , Help us to solve ?

    Hi  Friends ,
                          Our scenarilo is Mail to RFC. It was running fine. In RFC Receiver adapter i have given <b>Maximium connection property to 1</b> .
                      While multiple set data passed to rfc will connection problem will come ?
                     Most data not uploaded . I am getting the following error.
                     <b>   If i set max connection to 5 . It is 5 times or more than that it is pusing the data .</b>
                    i am getting the following error <b>while i set the Max   connection to 1 .</b> . <b>Any other place i need to change configuration ?</b>
                   <i><b> - Error: 2007-09-24 10:51:22 GMT-05:30: Message processed for interface YRFC_EXT_WARR: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: resource error: could not get a client from JCO.Pool: com.sap.mw.jco.JCO$Exception: (106) JCO_ERROR_RESOURCE: Connection pool RfcClient[CC_EXTE_WAREN_2W_RFC_RECEIVER]e7fa21f86ec535e883636c0beffc0f0c is exhausted. The current pool size limit (max connections) is 1 connections.</b></i>
                            Please give the description . I have referred many likns . Help us to solve this problem .
    Regards.,
    V.Rangarajan<b></b>
    Message was edited by:
            ranga rajan

    Hi,
    Have a look at this.This will help you.
    1.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f3f93ee7-0c01-0010-2593-d7c28b5377c2
    2. https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3103eb90-0201-0010-71af-be6f4a6f61d1
    Regards,
    Akshay Jamgaonkar.
    Reward points if find useful.
    Message was edited by:
            Akshay Jamgaonkar

  • Unending connectivity problems -- and Desktop Help...

    I'm wasting so much time on connectivity problems that it's positively wearying. Prior to the installation of BT Infinity here in April, I had a low quality broadband service because of the length of the line from the exchange: if I could get a download speed of 1.2Mbps and an upload of a quarter of that, I was doing well. 
    BT advised that thanks to fibre optic, my Internet should run much faster. So we had Infinity installed. I'm registered with Speedtest.net so am able to see my performance record.
    The average download speed is now aroun d 6Mbps and the average upload, more than that at 7Mbps. How an upload speed can consistently be faster than a download escapes me.
    But I'm not familiar with the ways of Internet connectivity and try as a I might, can't get my head around it.
    This desktop computer runs Vista OS. Vista was **bleep** when it came out and is renowned for its botched handling of Internet connections. So I'm not blaming BT for the literally unending connectivity problems that are occurring now, with line drops, speeds slowing to a crawl, and no guarantee that any connection will last. But it would be good to actually use BT software to help fathom out what's going wrong here, and today's typical morning which looks like this:
    1) Boot up computer. Automatic connection to hub via Netgear USB wireless adapter. Hub is on ground floor of this 3-storey property but signal strength from hub  is excellent, as confirmed by inSSIDer monitoring, currently showing 54 with no other networks anywhere near that figure.
    2) Perhaps 5 minutes after connection established, it's then lost. 'Local Only' is displayed. This is, apparently, a known Vista problem. But Microsoft has issued a fix for it. I know this, because it took 100 hours of ploughin g the Net to find out that MS had finally admitted to one more Vista screw-up. I've used the Microsoft router "fix it" before and it didn't work ("failed to process") so uninstalled it and have DL'd it again now and run it. This time it says it has fixed everything.
    3) Computer is re-booted to make the fix effective. Computer connects to Internet. Speedtest.net check yet again confirms that upload speed is faster than download speed.
    4) Connection dies. So much for Microsoft Fix It.
    5) Windows diagnostics reports that it can re-set the IP profile (or something.) I click yes. The re-set goes through. Connectivity is restored. 10 minutes later, connectivity is lost. Just a red X in the tray. No connection of any kind, not even that daft 'Local Connection' only alert.
    6) Reboot. Yet again. BT Desktop Help was installed here and ran OK when we were using our Netgear DSG34 router. But since the change to the BT Hub, the BT program has never run at all. So-oo. . . It has been uninstalled. And then re-DL'd and re-installed. And though the installation  has been completed, clicking on 'launch' has failed to launch anything. But anyway. An hour ago, in one of the brief periods today when the Internet connection was holding up, I Revo-ed out the earlier install, DL'd BT desktop Help and re-installed it. . . and I'm still at the same stage as always, with a  Firefox browser page that's open and completely blank and has been for the past 30 minutes. The URL is:
    file:///C:/Program%20Files/BT%20Broadband%20Desktop%20Help/btbb/Start.html
     Repeated page re-loading gets nowhere. Malwarebytes PRO is turned OFF to prevent any possibility of blocking and the antivirus is termporaily SUSPENDED. This PC runs on Windows standard firewall but even turning that OFF doesn't get the page to load. Copying the address into Internet Explorer in case there's a Firefox problem merely results in Firefox being opened and the same blank page running there.
    7) After all that. . . Connection lost yet again and this time, Windows cannot connect at all. It reports that the "wireless network security key is not correct". I happen to know that it is, because this is maybe the 20th time it has reported this in the past 10 days and every time I have to key in the "correct" key all over again. . . at which point Windows still says it isn't correct and cannot repair.
    Turning off the computer completely, unplugging from the wall, holding in the power switch for a full minute to clear the circuits, traipsing up and dowen three flights of stairs to turn off the hub, then wait, then turn the power back onm again. . . Ah, wot fun times I'm having here with my particular versioin of Infinity (as in, an infinity of connectivcity problems.)
    Summary: I seem to be being simultaneously hit with one issue after another.
    I'm bewildered as to why ever since Infinity was installed here, my upload speed is generally faster than my download speed. I'm not happy with endless Internet connection failures though am thinking that Vista is playing a large part here with its "wrong security key" and unending 'Local Only / Limited Connection' failures. I do miss my Netgear router and the ability to access a fantastic help menu and re-boot directly from the desktop without having to keep going up and down three flights of sdtairs to do so (I haven't been able to find out how toe access the BT Hub remotely.)
    Above all though: I'm  really tired of repeatedly trying to run freshly downloaded and installed BT Desktop Help software but getting no further than a blank page because the program has stalled.
    If anyone has any advice / suggestions, other than to buy a carrier pigeon, that'd be much appreciated.
    Thanks.

    Thanks again to John and gg30340. Here's an update:
    1) BT Desktop Help removed completely from this computer. The uninstaller itself mopped up everything, which surprised me. But anyway.
    2) Bt Home Hub manager set up and working. Had to input serial number and create new password. All of this sounds fairly easy and would be if one had the device near the desk. But the idiots who built this property shoved the BT master socket inside the garage next to the door. Our two home computers are on the third floor. To ensure the wireless signal strength is OK, the Hub and Infinity module/device/whatever it's called are on a high shelf. It's a major job to even reach the darn things, never mind read the labels seeing as how the BT Infinity engineer was good enough to tidy up the cabling and make a very tight connection to the wall socket.
    3) I had hoped to be able to back up the Hub's settings, seeing as the software provides for Advanced Settings / System / Backup. But not on mine (Hub 3.0). All that System allows is choosing which internet clock to define the accurate time. Everything else in System is just a pattern of short lines as if trying to indicate that there's some text there but it's invisible.This is now my second encounter with BT software which, for whatever reason, isn't functioning as it should on this PC.
    4) Hub reset to factory fresh, according to BT guide.
    5) Reset appears to have achieved nothing apart from requiring the password to be popped in again. After reset, it wasn't even possible to connect to the hub manager. Internet connectivity was eventually established for all of 30 seconds and then, gone.
    6) Computer was shut down and then booted anew. Internet connectivity is still. . . dreadful. One minute everything's fine and then, literally,. the next minute a webpage won't load. Even opening the Hub Manager has taken three attempts, i.e., disconnecting from the Internet, re-connecting, failing, and trying twice more until success. Yet all the time these failures are occurring, the tray icon is showing a steady, unwavering green icon for Local and Internet access -- despite the fact, there manifestly isn't any.
    7) Speedtest. net tests are actually showing upload and download 'trajectories' going slower and slower and finally halting at some point on the arc, then after a period of up to 30 seconds, suddenly becoming animated again. Speed test results with broadband speed checker UK and Think Broadband's checker are so at variance with one another, and with Speedtest, net, that it seems all three are using different technologies in pursuit of the same thing. Either way, upload speeds continue to be much, much faster than download speeds, a state of affairs I certainly have never encountered before.
    8) Speedtest net tests taken in the past 10 minutes, with one test following on from its predecessor, begin at 8.24 down/8.88 up, followed by 5.24 down / 6.40 up, followed by a mind-numbingly lonnnnng 0.62 down / 8.70 up -- in other words, a continuous yo-yoin g of Internet connectivity to the pooint that it actually might as well not even be here (I've had to make five attempts just to get on to this forum. . .)
    9) BT Speedtest will necessitate disconnection of everything downstairs and all boxes being lugged up here. This is actually going to require uncoililng tied-off cabling and hanging off a stepladder to do so -- though I surely can't be the only person in Britain who doesn't have a nice, handy BT master socket in their study or lounge. That said though: until we switched to Infinity, we *never* experienced these kinds of horrendous connectivity problems and never had need to unplug the Netgear router downstairs and bring it upstairs to connect directly to tjhe desktop PC so BT's own test could be run.
    I'll just have to get to work dismantling stuff tomorrow. However, I have to say that after a factory re-set which has changed nothing at all, I'm beginning to think there's a problem with the BT line itself (hence why I'm happy to follow the advice here, though less than happy at the prospect of the messing about involved.)
    Thanks, you two, for your patient help, and also for clarifying the situation re the three signal paths being shown on inSSIDer. At least I know that's usual now! And now, hopefully, when I press 'Post', I won't be faced with an endlessly spinning Firefox circle culminating in  what may well be, or seem to be, the 57,938th time today of seeing "Page Not Found". . .

Maybe you are looking for

  • Display "Created by" in me23N

    Dear all, I have a problem with text "create by" in me23n. sometimes it's  show different name in Text Display created by in same PO Number. Thx.

  • Importing Draft AR Invoices

    I am importing AR draft invoices, it imports the header fine but not my lines? When I try to re-import to update it gives me the message : Cannot find this opject in B1 application - defined or objectl- defined error odraft I have checked my line wor

  • How to set automaticaly autosave in flash Application?

    In FlashCS3 How to set automaticaly autosave in flash file Application Thanks in Advance.

  • Applet and access a DataBase

    hi. i need to access a data base located in a server from an applet, so, it will refresh some values that are shown in the web browser. i need some suggestions thanks in advance David

  • Manually set DNS servers in BT Homehub 2.0 with BT...

    Rather than having to se my DNS manually in network connections I was wondering if there was a setting on the homehub for changing DNS servers as I would like to use OpenDNS so I can test their web filtering capabilities. I have browsed the hub setti