BT Sport on demand problem

So now that BT Sport is completely unavailable to BT customers via an aerial it appears that the on demand options such as basketball are also now removed? Any time I go to watch something it tells me to subscribe!! I'm still a BT Sport customer what is going on?

customer options 0800 800 030
If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

Similar Messages

  • Consumer Contact's Web Service CRM On Demand: Problem to do an operation!

    Hi,
    I'm trying to consume a Web service offered by CRM On Demand, namely it is the Contact object.
    The steps I followed were:
    1) Download the file .wsdl associated with contact from CRM On Demand
    2) Generate Proxy web service from JDeveloper 10g (version: 10.1.3)
    3) Configure the client to consume the resource and to do, for example, the contact’s insertion.
    I can make a login and a logout on the Web Service correctly, but when I try to do an insertion I can’t do it.
    The log generated by JDeveloper when running the client is as follows:
    WARNING: Unable to connect to URL: https://secure-ausomxgfa.crmondemand.com/Services/Integration due to java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: www-proxy.au.oracle.com
    error: java.rmi.RemoteException: ; nested exception is:
    HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: www-proxy.au.oracle.com
    java.rmi.RemoteException: ; nested exception is:
    HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: www-proxy.au.oracle.com
    at crmondemand.runtime.Contact_Stub.contactInsert(Contact_Stub.java:283)
    at crmondemand.ContactClient.contactInsert(ContactClient.java:96)
    at crmondemand.ContactClient.main(ContactClient.java:71)
    Caused by: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: www-proxy.au.oracle.com
    at oracle.j2ee.ws.common.util.exception.JAXRPCExceptionBase.<init>(JAXRPCExceptionBase.java:93)
    at oracle.j2ee.ws.common.util.exception.JAXRPCExceptionBase.<init>(JAXRPCExceptionBase.java:89)
    at oracle.j2ee.ws.client.ClientTransportException.<init>(ClientTransportException.java:33)
    at oracle.j2ee.ws.client.http.HttpClientTransport.invokeImpl(HttpClientTransport.java:144)
    at oracle.j2ee.ws.client.http.HttpClientTransport.invoke(HttpClientTransport.java:121)
    at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:169)
    at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:111)
    at crmondemand.runtime.Contact_Stub.contactInsert(Contact_Stub.java:265)
    ... 2 more
    The HTTP Proxy Server settings (Tools-> Preferences-> Web Browser and Proxy) in JDevloper is:
    - Host name: www-proxy.au.oracle.com
    - Port: 80
    - Exceptions: xpvmware | *. oracle.com | *. peoplesoft.com | *. jdedwards.com | *. mlab.jdedwards.com | *. oracle.com | *. peoplesoft.com | *. jdedwards.com | * . mlab.jdedwards.com
    - No authentication.
    I'm not sure if it's a problem with HTTP proxy server settings or URL/ENDPOINT problem, because maybe I am trying to access an incorrect URL.
    If I try to access from the browser to this URL I can't access the wsdl, so I do not know if this address is correct, but is specified in the file. Wsdl:
    <soap:address location="https://secure-ausomxgfa.crmondemand.com/Services/Integration" />
    For this reason, I supposed that it is correct...
    I have tried to access via URL with the follows:
    - https://secure-ausomxgfa.crmondemand.com/Services/Integration
    - https://secure-ausomxgfa.crmondemand.com/Services/Integration/Contact
    - https://secure-ausomxgfa.crmondemand.com/Services/Integration/Contact?wsdl
    In all I have the next response from the Internet browser:
    <?xml version="1.0" encoding="UTF-8" ?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
    <soap:Fault>
    <faultcode>soap:Client</faultcode>
    <faultstring>Client</faultstring>
    <detail>
    <ErrorCode>SBL-ODU-01001</ErrorCode>
    <ErrorMessage>An invalid command was specified: doGet with no data</ErrorMessage>
    </detail>
    </soap:Fault>
    </soap:Body>
    </soap:Envelope>
    Since the client generated, I have tried with the follows:
    1) System.setProperty("javax.xml.ws.BindingProvider.ENDPOINT_ADDRESS_PROPERTY", endpoint);
    2) myPort.setEndpoint(endpoint);
    where endpoint = "https://secure-ausomxdsa.crmondemand.com/Services/Integration" + ";jsessionid=" + idSesion;
    or "https://secure-ausomxdsa.crmondemand.com/Services/Integration" (with both options I can do the operation...)
    and idSesion = logon("https://secure-ausomxdsa.crmondemand.com/Services/Integration",USERNAME,PASSWORD);
    Do you know what is the correct URL (endpoint)?
    Is that a correct HTTP proxy server configuration to invoke a Web service CRM On Demand? But so, what is the correct setting? And if it is a good configuration, what am I doing wrong?
    The source code from my client is:
    String idSesionFull=null, idSesion=null, endpoint=null;
    try {
    crmod.DefaultClient myPort = new crmod.DefaultClient();
    System.out.println("Invoking: " + myPort.getEndpoint());
    ListOfContact list = new ListOfContact();
    ListOfContact outlist = new ListOfContact();
    Contact[] contacts=new Contact[2];
    Contact contact=new Contact();
    //ContactWS_ContactInsert_Input in=new ContactWS_ContactInsert_Input();
    //ContactWS_ContactInsert_Output out=new ContactWS_ContactInsert_Output();
    // Login WS (HTTPS)
    //URL = "https://secure-ausomxdsa.crmondemand.com/Services/Integration"
    idSesionFull=conexionWS_CRM.logon(URL,USERNAME,PASSWORD);
    idSesion = conexionWS_CRM.getSessionId(idSesionFull);
    //Another option I have tested: endpoint = "https://secure-ausomxdsa.crmondemand.com/Services/Integration" + ";jsessionid=" + idSesion;
    endpoint = "https://secure-ausomxdsa.crmondemand.com/Services/Integration";
    myPort.setUsername(USERNAME);
    myPort.setPassword(PASSWORD);
    myPort.setEndpoint(endpoint);
    System.setProperty("javax.xml.rpc.service.endpoint.address", endpoint);
    System.setProperty("javax.xml.rpc.security.auth.username", USER);
    System.setProperty("javax.xml.rpc.security.auth.password", PASSWORD);
    System.setProperty("javax.xml.ws.BindingProvider.ENDPOINT_ADDRESS_PROPERTY", endpoint);
    // Add contacts
    for (int i = 0; i < contacts.length; i++) {
    contact.setContactId("WSCRM"+i);
    contact.setContactFirstName("JDeveloper"+i);
    contact.setContactLastName("prove"+i);
    contact.setCellularPhone("77777777"+i);
    contact.setExternalSystemId("1234"+i);
    contacts=contact;
    list.setContact(contacts);
    //in.setListOfContact(list);
    //in.setEcho("OFF");
    outlist=myPort.contactInsert(list,"OFF"); //<--- Is it correct????
    Contact[] results = new Contact[2];
    Contact result = new Contact();
    for (int i = 0; i < contacts.length; i++) {
    results=outlist.getContact();
    System.out.println("ID:"+results[i].getContactId()+" Name:"+results[i].getContactFirstName());
    // Logout WS (HTTPS)
    logoff(URL, idSesion);
    } catch (Exception ex) {
    System.out.println("error: "+ex);
    ex.printStackTrace();
    logoff(URL, idSesion);
    Any idea to solve this problem?
    Thank you very much in advance for any help.
    Edited by: user12158402 on 03-nov-2009 12:39
    Edited by: user12158402 on 03-nov-2009 12:45
    Edited by: user12158402 on 03-nov-2009 12:47

    Hi Royston,
    thank you for your help, but unfortunately I have the same error message.
    Here is the XML I use, I added the authentication that you provided me.
    <?xml version="1.0" encoding="utf-8"?>
    <soapenv:Header>
         <wsse:Security>
              <wsse:UsernameToken>
                   <wsse:Username>EUROMASTERFR/AELMASKOUNE</wsse:Username>
                   <wsse:Password>aqwAZE19</wsse:Password>
              </wsse:UsernameToken>
         </wsse:Security>
    </soapenv:Header>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="urn:crmondemand/ws/account/10/2004" xmlns:xsdLocal1="urn:/crmondemand/xml/account">
    <soap:Body>
    <tns:AccountWS_AccountQueryPage_Input>
    <tns:PageSize>10</tns:PageSize>
    <xsdLocal1:ListOfAccount>
    <xsdLocal1:Account>
    <xsdLocal1:CurrencyCode/>
    <xsdLocal1:AccountName>IBM</xsdLocal1:AccountName>
    </xsdLocal1:Account>
    </xsdLocal1:ListOfAccount>
    <tns:StartRowNum>0</tns:StartRowNum>
    </tns:AccountWS_AccountQueryPage_Input>
    </soap:Body>
    </soap:Envelope>
    but for (xmlns: WSSE = "http://schemas.xmlsoap.org/ws/2002/xx/secext" do not forget to enclose the tag with a '>') I do not know to include it.
    Best Regards.
    Anas

  • Muvo Sport C100 Serious Problem

    My Muvo sport c00 player it`s almost dead...when i turn my player on,i get this message " file system error"...the player has 256 Mb memory...i tried to format the dri've with FAT file system and worked , but i can`t copy any songs on mp3 player, i think the disk dri've is broken...can anyone help me? updating the firmware has no effect ...doeas anyone had this problem woth muvo sport c00 player ? and i bought it 5-6 months ago ( ...if u have a solution ,please reply...thanks

    I have the similiar mp3 player. The software goes grazy frequently (shutting down and not turning on anymore), and the sollution have been reinstalling the firmware. But now i changed to vista and the update program does not run even in compatibility mode?When creative is doing a firmware updater with vista support?

  • Sports Tracker uploading problem

    Whenever I try to upload a exercise to the web, it just says uploading, and nothing happens. It's stuck uploading. I am using a WLAN to upload. Anyone know what the problem is?

    Have you the latest version of sports tracker? Go to http://sportstracker.nokia.com/nts/main/download.do
    If this post was useful, thank me by clicking the Kudos! button.
    Message Edited by phonehacker on 08-Sep-2009 08:39 AM
    If you want to thank someone, just click on the blue star at the bottom of their post

  • Z30 and JBL Synchros Reflect BT Sport bluetooth connection problem - lagging

    Hi,  I purchased a JBL Synchros Reflect BT Sport bluetooth headset, connects well to Z30, but my problem that if I put the phone next to me and I am moving next to the phone (like in gym) lots of times it looses the bluetooth connection and music is lagging. When I return to the former positition during gym, I heard the music again. Same problem when I have the blackberry in the backback and want to hear it. Sometimes music lagging heavily. I tried the headset on different phones without any problem. Lol, if I put one hand onto the headset and put the other hand between the phone and the headset and move my hand between the phone and the headset, the music starts lagging. The phone is next to me, so no real distance. If I move the phone position (for example face down) the problem stops on that position and start from another position. Maybe the phone does not send the Bluetooth signal well? I guess I have 2 high end product: JBL is not a no name manufacturer as well as the Blackberry. I can expect a professional result. Blackberry Protection is on, music is on the SD, but the phone is encrypted - only phone, not SD - but I dont think this is the source of the problem.
    Thank you! 

    You need to put the Sennheiser and the Sony into Pairing mode. You may have to reset them if their Pairing memory is full.

  • NOKIA 5500 SPORT - USB Connectivity problems

    When connecting my 5500, the message "new hardware found", "portable device driver" and "NOKIA 5500 Sport" pops up all the time, I rpt: All the time..
    I am able to make a back-up, but I am not able to read dato in the nokia browser (liike contacts)..
    Can you help me ??
    xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    Operativsystem:
    Microsoft Windows XP
    Bygg 2600
    Service Pack 2
    Språk: Norsk (bokmål)
    Språk for ikke-Unicode-programmer: Norsk (bokmål)
    Lokal: Norsk (bokmål)
    Inndataspråk: Norsk (bokmål)
    Nokia PC Suite:
    Versjon 6.83.14.1
    Språk: Norsk
    Connectivity Cable Drivers:
    Versjon 6.83.9.0
    PC Connectivity Solution:
    Versjon 7.7.10.0
    Microsoft Outlook:
    Versjon 11.0
    Bygg 8118

    Excuse my ignorance to NOKIA forums.. But what is "WPD loop posts" ??

  • Why not let youview customers watch BT sport on de...

    I have a youview box with the essential £5 sub. I also have BT sport on a sky box. Why not let me, as a bona fide BT broadband and sport customer, watch the BT sport on demand programmes on youview. They are only repeats of what is on the channels.

    Agreed. Only allowing access to infinity users with BT Sport and with YouView, isn't making my decision to cancel my Essentials pack next month very difficult. Money for nothing.

  • On Demand unavailable for 3rd time this week

    Why is On Demand not available for 3rd time this week?

    I am sorry for the On Demand problems you are having. We are working on the way it works on the backend and we do appreciate your patience in the meantime.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • Possible design flaw in Nike+iPod kit causes connection problem

    I've been having some similar receiver/sensor connection problems as documented on these forums. Here's a page and video that diagnoses the problem as being a possible contact connection issue. Try squeezing your Nano to see if it makes contact. I'll try mine when I get home.
    http://www.sneakmove.com/2007/01/nikeipod-sport-kit-connection-problem.html
    12" powerbook g4 1.33 Mac OS X (10.4.6) 1.25ghz ram

    I think you meant you have the iPod nano software, version 1.2. iTunes 1.2 will definitely not work. 6.0.5 is the current version of iTunes The iPod options appear after plugging in your iPod, then choosing preferences in iTunes (or clicking the little iPod icon in the bottom right of the iTunes window). Nike + iPod prefs are in there too.

  • BT Sport will not work

    Hello,
    My partner and I signed up to BT Broadband in August, however we have two problems.
    We were watching BT Sport without a problem until recently. Whenever I go to any on the two channels nothing comes up, though after a while we get the error code 'This channel is currently unavailable. For more info and help, press OK. IPC6011.' (I've also seen IPC6023 on a couple of occasions).
    The internet stops working whenever we use the phone.
    Any help with either of these problems would be very much appreciated.
    Regards.

    wvjdavies91 wrote:
    I don't know what an ADSL is? The TV, wifi box and youview box are all connected?
    We do get a lot of the 'scratchy' noise one the phone, yes.
    Are you on broadband or a fibre service(infinity). Does the box you connect the phone too look like this:
    If so remove the lower half and you can put the phone directly into a test socket . Try the phone there ,see if any noise or if it disconnects the broadband.
    If there is still trouble with the phone , noise etc ,cutting broadband , you can report a PHONE fault, noise on the line , but do not mention broadband problems. Get the noise sorted first.
    toekneem
    http://www.no2nuisancecalls.net
    (EASBF)

  • IPhone 5 not working with car USB after iOS8.2 update

    Hi,
    After upgrading my iPhone 5 (32GB, 8.9GB free, model MD299PP/A) to iOS 8.2 (12D508), it doesn't work as usual when connecting to my car's USB port. Before upgrade, I can still see the track names or podcast info in my car stereo display, and can use the navigation controls to select songs. Now, my car stereo display says "iPod NO MUSIC" or "iPod ERROR READING", and can't use the nav controls, although the sound is still coming out of the car speakers.
    The above error is seen on my Toyota Corolla Altis 1.6G, so I tried it in my Ford Fiesta 1.5 Sports. Same problem, the dashboard says that "ERROR READING FILE".
    I then connected my iPad Air (iOS 8.1.3), and it works well with both cars.

    Howdy emoy81,
    It sounds like you upated your iOS device to 8.2 and now you are unable to listen to your iPhone through your car due to this error message. I would recommend usin these troubleshooting steps from the following article:
    Get help using your iPhone, iPad, or iPod touch with your car stereo
    Troubleshooting tips
    Try these troubleshooting tips.
    Beginning playback and controlling music
    Some car stereos might require that playback be started or controlled from either the device or the stereo. Ensure that your car stereo is set to the proper input for your device. If it is and you cannot hear sound from your car speakers, try switching to your radio and then back to the proper input.
    When using adapters to connect to your car stereo, you might notice variations in audio quality. When possible, use a shorter connection to the car stereo or try a different cable or adapter.Disconnect and restart
    If you are experiencing difficulties with the connection between your stereo and device, disconnect the device, and then power cycle the stereo and your iPhone, iPod touch, or iPad. When the Home screen reappears, reconnect your device. If you cannot power cycle the stereo, turn the car off and then back on to allow the stereo to power off.Isolate the issue
    Try to reproduce the issue with an identical or similar accessory, if one is available, or test with a second device.
    For example, if you hear static coming from the left audio channel, try connecting a different device or try connecting to a different stereo or accessory that connects over the same interface (30-pin or Lightning connector, Bluetooth, or headphone jack).Restore iPhone, iPad, or iPod touch
    If you have isolated an issue to the device, restore iPhone, iPad, or iPod touch to its factory condition. You should rarely need to use this step with an accessory issue. If the issue affects only a third-party accessory, contact the accessory manufacturer before restoring your iOS device.
    Thank you for using Apple Support Communities.
    Take care,
    Sterling

  • Changing router to 3rd party router

    I've been thinking about upgrading my router to a 3rd party AC wireless router so I can use more of my bandwith on my laptop and other wireless gadgets.  My question is can I change it and keep all my tv services. I was told I have to use verizon's as a bridge. If I can how would I go about doing it.

    Check your new router's manual for how to put it into Access Point Mode. (most new AC routers just require changing a setting, some/ those without an explicit setting will require you turn off DCHP and make sure it is plugged in via one of its LAN ports ).*  All your services will remain because your Actiontec will essentially be doing all the heavy lifting. You can even leave the WiFi on the old router on but I would recommend spacing out the channels to prevent interference. (also it is not very neighbor friendly if you live in an apartment) 
    Bridging the Actiontec is only needed if:
    You have a pretty old one and want to do a lot of torrenting/ gaming (the older ones have small NAT tables ... I think any of the ones over 100,00 should be fine for most)
    You want to use some specialized features besides WiFi on your new router (its firewall, advanced management of the usb port, ect.... Access Point mode disables some of these features)
    You have time to waste
    You have so much heavy traffic/ devices on your router that the cpu/ ram of your new router will make a difference (unlikely)
    Anyway, if you do bridge (and it is a fun little project if you have the time), you can create a double bridge which shouldn't be much harder to fix the On Demand problem**. It is option 5 of this guide: http://www.dslreports.com/faq/16077
    *Just plugging the router in normally without putting it in Access Point Mode means all your WiFi internet traffic has to go through two routers to reach the internet. It will likely work most of the time, but it may cause unnecessary problems with devices on your network communicating to each other and also port forwarding which is important to a lot of  applications.
    **Only On Demand and DVR will go away with a regular bridge... Not your entire TV service. (possibly the tv guide/ on screen caller ID but I've heard from multiple people that is not the case)

  • Re: BT HomeHub 3 wifi loses connection

    I’ve  had a Home Hub 2 and Infinity for some time and have been really pleased with reliability and performance.
    Wanted BT Sport ( and a cheap YouView Box) so subscribed.
    YouView Box arrived next day – excellent bit of kit from Humax.
    BT supplied Powerline adapters. A doddle to install and all iPlayer stuff working great but BT Sport wouldn’t work on the You View box or on the PC giving me “check your cable type messages etc” or VC017 error message on PC . I knew there was not a cable/broadband connection problem so was planning to implement proposed solutions from forums.
    In the meatime, I received an email from BT saying they noted I had BT Sport so needed a Home Hub 3 which they dispatched. It arrived two days later which is pretty good.
    Installed HH 3 and BT Sport on YouView box worked fine.
    But on PC, I still got  “Unable to playback video: VC017”
    Resolution to this specific problem was
    Try setting your device to get the time from the internet. Here's how to do this:
    Go to Control panel
    Go to date and time
    Select internet time
    If the clock is already set to internet time, unset it and then select it again.
    Re boot your PC (important).
    I then got a different problem
    "You have reached your maximum number of concurrent streams: VC010"
    This is because you have more than two streams running. You can access the BT Sport App and btsport.com on as many supported devices as you like, but can only watch two streams at the same time. Steps to fix the issue:
    Stop all streams online or on the App and try again. You may need to wait a few minutes before you can start another stream.
    I had no other streams running but then noticed that other WiFi connected devices ( laptops, printer etc) were dropping out. I know it must be WiFi because cable and Powerline connected devices were fine.
    The one that got my attention was resolved by the following
    Open your web browser and type in
     http://bthomehub.home to open the Hub Manager.
    If this is the first time you have visited the Hub Manager you will be asked to change the password which is on the removable tab at the back of the H3
    Enter your password and find the Channel Selection drop down for either channel 1,6 or 11. I chose Channel 6.
    As a result, the WiFi no longer drops out and BT Sport now works on my PC.
    BTW, I have a BT supplied YouView box and two purchased (John Lewis of course) Humax YouView boxes in different rooms all on Powerline adaptors, all running BT Sports with no problem.

    I had a similar problem, but with my Home Hub 2.
    I ran inssider (http://www.metageek.net/products/inssider/) found a clear channel and set it to that.
    This greatly improved things but not completely.
    Anyhow the first thing I did when I got HH3 (and Infinity)..... I deselected the smart wireless and set it to this free/clear channel.
    This seems to have completely cured the problem.
    Please Click On any Text in Blue as that automatically links to information.
    PC (NDEGR)

  • Remote Desktop - not running/no listener on port 3389

    Hello,
    I have a problem with RDS (Remote Desktop) on a Windows 7 machine. It worked fine for the past 2 years.
    Error: The computer can’t connect to the remote computer.
    First I checked some settings:
    RDP enabled (also tried to disable, reboot en then enable)
    Registry: fEnableWinStation (1)
    Firewall is disabled
    RDP / RDS services are running
    Problem:
    RDP/RDS is not listening
    “qwinsta” command: rdp-tcp is not listed
    “netstat –an” command: no listener on port 3389
    (rdp is configured to use the default port, 3389)
    I also checked the “RDP Winstation driver” and the “Remote Desktop Services Security Filter Driver”.
    Statup type: Demand
    Problem: Both are NOT started.
    When I start them manually, or set the startup type to “boot” and then reboot
    the drivers will start, but it makes no difference. Still not listening on 3389.
    Does someone know a solution besides reinstall the OS.
    Thanks.

    Hi,
    Firstly, I would like to check when did this issue happen? Whether you have tried installed some software or updates?
    Meanwhile, please try to perform a
    system restore to check the result.
    Also check the server settings, here is a similar thread:
    Terminal Services/ Remote Desktop not working 
    Hope this helps.
    Vincent Wang
    TechNet Community Support
    Have you tried this?
    Regards
    Vincent Wang
    TechNet Community Support

  • BBC iPlayer buffering

    Since the config. update on the 10th my BBC iPlayer keeps buffering. I have performed the usual suspects, power cycled box, restarted home hub 5 but no joy, although I haven't done a maintenance reset yet. I have a DTR-T1000, hard wired to Hub. Anyone else having the same issue?

    Hi Skappy70,
    That's not good, did you manage to get this sorted? Problems like this are normally caused by speed issues, check out the following link for the checks to try for On demand problems.
    Neil
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

Maybe you are looking for

  • I can't update my iPhoto.

    I want to update iPhoto, but I am told "Update Unavailable with This Apple ID."  I don't understand how this one app has another apple ID, and I can't figure out what that ID is.  I tried to just start over and repurchace the app with my ID, but I ca

  • 5700 Xpress Music and strange warning tone

    Just got this phone and over all it's great. But when you change to a different Profile for example, on all other Nokia's you get the standard "beep" when you activate the new Profile. On the 5700 you get a "ding" or half beep. Not sure if its my pho

  • SPA modules not detected n LMS 3.1

    Dear Friends, Does anyone knows why my SPA modules are not getting detected in LMS 3.1. however SIP 200 / 400 modules are getting detected. is this some kind of limitations? Regards, Rajiv

  • Creation of electronic signature via webcam

    I am very frustrated with Adobe Reader. I wish to sign a PDF document, using my webcam. I began with: Sign -> I need to sign -> Place Signature. This opened a dialog with a sequence of about 7 vertical radio buttons, to select the means of signing. O

  • Contacting Adobe Directly for Support Questions

    Does anyone have an email address for direct Adobe Lightroom Support? The web site seems designed to prevent such contact at all costs.