4OD Problems (online video service in the UK)

Hey guys.
Since 4OD switched to flash, mac users have been able to watch its online content. However, has anyone else been unable to do so since a recent site redesign? When I click on a video, the load icon spins and then stops like the plug-in has crashed or something. I have reinstalled flash and emptied my cache to no avail. This also happens using safari or firefox and other flash video works fine. Please help!

I had the same problem, I'll detail my debug and see if it helps you.
Problem: 4od did not work with media macbook, but did work with another mac connected to same router.
Diagnosis: Tried to play a video using safari. Went to the Window->Activity and saw the problems were all could not connect to realmedia.channel4.com. Sure enough, typing that address in the browser window gave a host-not-found. Traceroute and ping gave "no route to host". This all worked fine on other machine.
What didn't work: turning off adblocker; removing /Library/Caches ~/Library/Caches; killing PeerGuardian and HotSpot Shield processes.
Fix: In System Preferences/Accounts/Login Items, I removed PeerGuardian and Hotspot Shield and rebooted.

Similar Messages

  • Problem deploying web service with the deploy tool (J2EE)

    Hello,
    I am trying to deploy a sample Web Service on the Sun Java System Application Server Platform Edition 8.1 2005Q1.
    I run into a deployment problem ("jaxrpc compilation exception") when I have one of the web methods declared (in the endpoint interface) to throw a service-specific exception. The problem disappears when I change the declaration to throw an Exception.
    Here is the exception class:
    public class StockNotFoundException extends Exception {
    private String message;
    public StockNotFoundException(String message) {
    super(message);
    this.message = message;
    public String getMessage() {
    return message;
    the endpoint interface:
    public interface StockServiceIF extends Remote {
    // the service methods
    public boolean sellStocks(String ticker, int quantity)
    throws RemoteException, StockNotFoundException;
    and here are the error messages I am seeing:
    in the deploy tool dialog:
    distribute: C:\Beginning J2EE 1.4\Ch13\StockServiceApp\StockServiceApp.ear
    deployment started : 0%
    Deploying application in domain failed; Fatal Error from EJB Compiler -- jaxrpc compilation exception
    ; requested operation cannot be completed
    !!! Operation Failed !!!
    !!! With The Following Failure Messages !!!
    Deploying application in domain failed; Fatal Error from EJB Compiler -- jaxrpc compilation exception
    ; requested operation cannot be completed
    Fatal Error from EJB Compiler -- jaxrpc compilation exception
    and in the server log:
    [#|2005-02-01T18:30:47.856-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|DPL5109: EJBC - START of EJBC for [StockServiceApp]|#]
    [#|2005-02-01T18:30:47.856-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|Processing beans ...|#]
    [#|2005-02-01T18:30:47.936-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.stream.out|_ThreadID=12;|
    error: incorrect fault part name for fault "StockNotFoundException" of operation "sellStocks": "StockNotFoundException"|#]
    [#|2005-02-01T18:30:47.966-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|Total Deployment Time: 1001 msec, Total EJB Compiler Module Time: 0 msec, Portion spent EJB Compiling: 0%|#]
    [#|2005-02-01T18:30:47.966-0600|SEVERE|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|Exception occured in J2EEC Phase
    com.sun.enterprise.deployment.backend.IASDeploymentException: Fatal Error from EJB Compiler -- jaxrpc compilation exception
         at com.sun.enterprise.webservice.codegen.JaxRpcRICodegen.accept(JaxRpcRICodegen.java:206)
         at com.sun.enterprise.deployment.EjbBundleDescriptor.visit(EjbBundleDescriptor.java:584)
         at com.sun.enterprise.deployment.Application.visit(Application.java:1333)
         at com.sun.enterprise.webservice.codegen.JaxRpcRICodegen.run(JaxRpcRICodegen.java:103)
         at com.sun.ejb.codegen.IASEJBC.doCompile(IASEJBC.java:785)
         at com.sun.ejb.codegen.IASEJBC.ejbc(IASEJBC.java:563)
         at com.sun.enterprise.deployment.backend.EJBCompiler.preDeployApp(EJBCompiler.java:340)
         at com.sun.enterprise.deployment.backend.EJBCompiler.compile(EJBCompiler.java:209)
         at com.sun.enterprise.deployment.backend.AppDeployer.runEJBC(AppDeployer.java:284)
         at com.sun.enterprise.deployment.backend.AppDeployer.deploy(AppDeployer.java:176)
         at com.sun.enterprise.deployment.backend.AppDeployer.doRequestFinish(AppDeployer.java:107)
         at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:146)
         at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:71)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeploymentService.java:633)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:188)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:520)
         at com.sun.enterprise.management.deploy.DeployThread.deploy(DeployThread.java:143)
         at com.sun.enterprise.management.deploy.DeployThread.run(DeployThread.java:171)
    |#]
    I would appreciate any pointers to resolving this issue.
    Thanks,
    Satyen

    Can you post the WSDL that was generated by the tool
    for this interface ?I generate the WSDL using "wscompile -define -nd . -classpath ..\build\classes -f:wsi service-config.xml", and here it is:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="StockService" targetNamespace="urn:stockService" xmlns:tns="urn:stockService" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
    <types>
    <schema targetNamespace="urn:stockService" xmlns:tns="urn:stockService" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="StockNotFoundException">
    <sequence>
    <element name="message" type="string" nillable="true"/></sequence></complexType>
    <element name="StockNotFoundException" type="tns:StockNotFoundException"/></schema></types>
    <message name="StockServiceIF_sellStocks">
    <part name="String_1" type="xsd:string"/>
    <part name="int_2" type="xsd:int"/></message>
    <message name="StockServiceIF_sellStocksResponse">
    <part name="result" type="xsd:boolean"/></message>
    <message name="StockNotFoundException">
    <part name="StockNotFoundException" element="tns:StockNotFoundException"/></message>
    <portType name="StockServiceIF">
    <operation name="sellStocks" parameterOrder="String_1 int_2">
    <input message="tns:StockServiceIF_sellStocks"/>
    <output message="tns:StockServiceIF_sellStocksResponse"/>
    <fault name="StockNotFoundException" message="tns:StockNotFoundException"/></operation></portType>
    <binding name="StockServiceIFBinding" type="tns:StockServiceIF">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
    <operation name="sellStocks">
    <soap:operation soapAction=""/>
    <input>
    <soap:body use="literal" namespace="urn:stockService"/></input>
    <output>
    <soap:body use="literal" namespace="urn:stockService"/></output>
    <fault name="StockNotFoundException">
    <soap:fault name="StockNotFoundException" use="literal"/></fault></operation></binding>
    <service name="StockService">
    <port name="StockServiceIFPort" binding="tns:StockServiceIFBinding">
    <soap:address location="REPLACE_WITH_ACTUAL_URL"/></port></service></definitions>
    ---------------------------------------------------------------------------------------------------------

  • Problems for display services in the subarea personnel information

    Good Afternoon.
    I am configuring ESS for ECC 604.
    But the portal not is display the services of :
    Address, Bank, Family, Personal Data.
    Define Area Group Pages====>SAPDEFAULTESS_ERP2005
    Areas=================== >EMPLOYEE_PERSINFO_ERP2005
    Subareas================>EMPLOYEE_PERSINFO_SUBPERSINFO_2005
    Services=================>EMPLOYEE_PERSINFO_ADDRESS05
    And in the SM30==>(V_T7XSSSERSRVCGC)
    Ag.     Service                                                =   Resource
    PA      EMPLOYEE_PERSINFO_ADDRESS05 = Z_EMPLOYEE_ADDRESS_CO_SERVICE05.
    What is the reason for that the system not display this service in this Subaereas?
    Kind Regards

    Hi Diana. I not have created a service Z. I have created a resource Z. We are implementing ESS for Colombia. For this reason  i have created a resource that link the PCD for this new service.
    And i have link the resource wth the service and the service with the subarea and the subarea with the area.
    Kind Regards

  • I am having problems with video playback from the Internet such as you tube on my iPad. What's up?

    I am having trouble with video playback from the Internet such as you tube. What's up?

    Your video playback will also depend on your net speed. If you have slow internet, you will stream video slow. If your video stops and starts, you can try pausing it for a minute or so and then try to watch. Let more of it buffer before you try to watch.
    Sometimes your connection is so slow you literally play faster than it buffers, which means it stops and stutters continually

  • HT1338 My macro is less than a year old. I have no problem viewing video until lately the problem arise everytime I watch video it keeps on pausing about 40 to 50 seconds then play again. Then it repeats again. I am wondering what is the problem?

    My macbook pro 13" is less than a year old and I have no problem with speed and video until lately. Everytime I watch video it keeps on pausing for 40 to 50 secs. then play then repeats again. I tried to play the same video on my ipad and I have no problem. Can somebody have an answer to my problem?

    If it is less than a year old it is still under warranty, get it serviced.
    https://selfsolve.apple.com/GetWarranty.do

  • Problems generating multiple services from the same EAR using servicegen

    I have a single EJB JAR that contains multiple stateless session beans. I
    want to expose each of these individually as a service. So I have defined
    the following in my build file:
    <servicegen destEar="${ear.file}" warName="${war.file.name}"
    contextURI="web_services">
    <service ejbJar="${ejbc.jar.file}"
    targetNamespace="http://www.acme.com/xauto" serviceName="AService"
    serviceURI="/AService" includeEJBs="AService" generateTypes="True"
    expandMethods="True"/>
    <service ejbJar="${ejbc.jar.file}"
    targetNamespace="http://www.acme.com/xauto" serviceName="BService"
    serviceURI="/BService" includeEJBs="BService" generateTypes="True"
    expandMethods="True"/>
    <service ejbJar="${ejbc.jar.file}"
    targetNamespace="http://www.acme.com/xauto" serviceName="CService"
    serviceURI="/CService" includeEJBs="CService" generateTypes="True"
    expandMethods="True"/>
    <service ejbJar="${ejbc.jar.file}"
    targetNamespace="http://www.acme.com/xauto" serviceName="DService"
    serviceURI="/DService" includeEJBs="DService" generateTypes="True"
    expandMethods="True"/>
    <service ejbJar="${ejbc.jar.file}"
    targetNamespace="http://www.acme.com/xauto" serviceName="EService"
    serviceURI="/EService" includeEJBs="EService" generateTypes="True"
    expandMethods="True"/>
    </servicegen>
    I execute the task and it runs without issue. However, when I attempt to
    deploy the EAR I get some odd results (there are multiple jars listed all
    with my original name and then a number appended, for example MyApp.ear2).
    The deployment fails because each of these JARs contains the same session
    beans.
    So, I'm wondering if my only option is to package each session bean in a
    separate EJB JAR or if there is another way I could get this to work.
    Thanks,
    Rob

    Thanks, Neal. I'll do as you suggest.
    Just a little feature enhancement request, as well. It would be nice if the
    option existed to break out the webservices for all the session beans in a
    ejb rather than creating one all-encompassing interface of all the methods.
    I think this would be a useful feature.
    Thanks, again,
    Rob
    "Neal Yin" <[email protected]> wrote in message
    news:[email protected]...
    I am not sure what can cause this. But I will make servicegen check for
    duplicate.
    For now, in order to make sure your automatic build process, you can use
    ant's build in task "jar" to update your application.xml with a correctone
    after servicegen.
    -Neal
    "Rob Moore" <[email protected]> wrote in message
    news:[email protected]...
    Neal,
    After discussing this issue with a coworker, I found that when he buildsthe
    ear on his machine using the servicegen entries I specified previously,the
    application.xml is generated correctly. Mine, as you guessed, puts in
    multiple module entries all containing references to the same jar. I'm
    puzzled because we are apparently running in the same environment. Anyidea
    what might be causing it?
    Thanks,
    Rob
    "Neal Yin" <[email protected]> wrote in message
    news:[email protected]...
    Hi Rob,
    There is something wrong during generating application.xml for the
    ear.
    After servicegen, if you open generated application.xml, you probablycan
    see duplicate entries for one module. Please go ahead delete thoseredundant
    entries. Let me know if this works.
    -Neal
    "Rob Moore" <[email protected]> wrote in message
    news:[email protected]...
    I have a single EJB JAR that contains multiple stateless session
    beans.
    I
    want to expose each of these individually as a service. So I havedefined
    the following in my build file:
    <servicegen destEar="${ear.file}" warName="${war.file.name}"
    contextURI="web_services">
    <service ejbJar="${ejbc.jar.file}"
    targetNamespace="http://www.acme.com/xauto" serviceName="AService"
    serviceURI="/AService" includeEJBs="AService" generateTypes="True"
    expandMethods="True"/>
    <service ejbJar="${ejbc.jar.file}"
    targetNamespace="http://www.acme.com/xauto" serviceName="BService"
    serviceURI="/BService" includeEJBs="BService" generateTypes="True"
    expandMethods="True"/>
    <service ejbJar="${ejbc.jar.file}"
    targetNamespace="http://www.acme.com/xauto" serviceName="CService"
    serviceURI="/CService" includeEJBs="CService" generateTypes="True"
    expandMethods="True"/>
    <service ejbJar="${ejbc.jar.file}"
    targetNamespace="http://www.acme.com/xauto" serviceName="DService"
    serviceURI="/DService" includeEJBs="DService" generateTypes="True"
    expandMethods="True"/>
    <service ejbJar="${ejbc.jar.file}"
    targetNamespace="http://www.acme.com/xauto" serviceName="EService"
    serviceURI="/EService" includeEJBs="EService" generateTypes="True"
    expandMethods="True"/>
    </servicegen>
    I execute the task and it runs without issue. However, when I
    attempt
    to
    deploy the EAR I get some odd results (there are multiple jars
    listed
    all
    with my original name and then a number appended, for exampleMyApp.ear2).
    The deployment fails because each of these JARs contains the samesession
    beans.
    So, I'm wondering if my only option is to package each session bean
    in
    a
    separate EJB JAR or if there is another way I could get this to
    work.
    >>>>
    Thanks,
    Rob

  • SharePoint Online Cloud Service and Technical Communication Suite Integration

    Are there any success stories of using Microsoft SharePoint Online Cloud service  and the Technicall Communuications Suite? What were some of the compatability issues? How were they resolved? Are there any issues with using it  behind a firewall?What are the limitations?

    Posting the links again -
    NEW Training Video! Getting Started with the Technical
    Communication Suite: Part 1
    http://my.adobe.acrobat.com/p29205929/
    NEW Training Video! Getting Started with the Technical
    Communication Suite: Part 2
    http://my.adobe.acrobat.com/p25426010/
    NEW Training Video! Getting Started with the Technical
    Communication Suite: Part 3
    http://my.adobe.acrobat.com/p13101233/

  • How to view online video (eg YouTube) on Power PC G4

    I gave my old 17" power pc G4 laptop to my mother a few months ago when I upgraded mine.  Its pre intel and running 10.4.11
    Unfortunately the flash plug in currently running is too old for a bunch of online video services.  Is there any way to update or solve this?
    I've tried downloading older versions from Adobe archives but it doesn't seem to work for me.
    My mother doesn't need a new computer, she's really happy with the old 17" Power PC, but would ideally like to get these video capabilities up and running if possible.
    All help greatly appreciated!
    Richard

    Flash Player version 10.1.102.64 is the last version available to PPC Mac users. However, this Flash version won't work for many videos on Facebook, YouTube and other sites. Adobe's latest version, 10.2.x or later, is only for Intel Macs. Adobe will not provide a newer Flash version for PPC Macs.
    The message requesting that you download Adobe Flash Player takes you to Flash Player requiring an Intel processor. Doesn't work on a PowerPC processor. I found a hack, installed it & it works with Firefox, TenFourFox & Safari.
    Download this http://www.steelbin.com/FPforFBPPC.zip to your desktop, unzip it, and replace the current Flash Player plug-in which is in your main/Library/Internet Plug-Ins folder, (not the user Library). Save the old one just in case this one doesn't work.
    Hack Allows PowerPC Macs to Access Flash 11 Content
    http://lowendmac.com/ed/royal/12sr/flash-11-and-powerpc.html
     Cheers, Tom

  • Problem watching video

    All of a sudden I have a problem watching video downloaded from the web. The videos seems to download fine, but when they begin to play in Safari, all I get is the audio. No video image plays at all. Any help on this would be appreciated.
    Thanks

    Iwilsmar....try this forum...
    http://discussions.apple.com/forum.jspa?forumID=932
    the QuickTime experts reside there
    iMacIntel C2D 20"/2.16/3GB RAM/250GB...iMac G5 17"/1.8/1GB RAM/200 GB   Mac OS X (10.4.10)   Seagate160GB/WD160GB/Nano/ Shuffle/Logitech Z5300e/FireWave/SRS iWOW/iSight

  • How to use online backup services with a Mac.

    I want to use an online backup service but each one I check out is unable to backup at least one of my key files and perhaps others that I havent tested yet.
    I use an old palm pda and a current version of the palm desktop for mac. I'm quite happy with it and have tons of info on it.
    But the online backup services store the files on an IBM server and when I restore it to my Macbook I get a Unix. exe file that I cannot use. I cant even import it or open it on a pc (which would be an acceptable solution in case of an emergency).
    I really need a good backup solution for all my Mac files.
    I've spoke to Apple, Palm and the techs at the online backup services and no one has a solution.
    Any ideas would be appreciated.

    You are very welcome. I don't think you can do scheduled updates. Apparently what happens is that the update happens whenever anything is changed on the desktop iDisk. No you don't have to recreate the desktop iDisk ever. That is, you can leave it on your desktop continuously. I trashed mine because I don't like to have things working in the background if I don't currently need them. On the other hand if I changed many things in a day, then I'd leave it on the desktop continuously.
    If you check out all the MobileMe features, then you might decide that you like it. Your Dock mail program mirrors exactly what is on the MobileMe online mail program. I have to admit that the online program is very slow. But, the on Dock program more than makes up for the deficiency. Back to Mac is a cool feature. And, the online photo album feature is very easy and works well, except that it doesn't seem able to handle animated gifs.
    Message was edited by: donv (The Ghost)

  • Problems Capturing Video from a Canon GL1

    Hi All,
    I have posted this topic once before on the iMovie Discussion Forum. Please refer to this thread:
    http://discussions.apple.com/thread.jspa?threadID=547019&tstart=75
    I haven't been able to get an answer so far. Does any one in this Discussion area know how to solve my problem?
    (Problem is: video captured from the GL1 shows two vertical black bands on the left and right side of the frame, an effect similar to pillarboxing. It almost looks as if I'm only getting 640 by 480 instead of 720 by 480 pixels. This happens regardless of whether DV was shot in 4:3 or 16:9. I also own a Sony DCR-PC101 camcorder, and the video captured from that camera using the same settings (in iMovie and/or FCE) fills the entire 720 px horizontal width with no vertical bands, so I know it's not a software or a settings problem, but a camcorder problem.)
    Any help will be greatly appreciated!
    Mac G4 Quicksilver   Mac OS X (10.4.7)   17" Powerbook G4, iMovieHD and Final Cut Express

    Hello, Dave
    Have you taken a tape shot on the GL-1 and used the
    Sony camera to capture the footage via firewire? Do
    the vertical stripes show up when shooting 4:3?
    Yes, I have done that and yes, the vertical stripes still appear. The vertical stripes appear both in 4:3 and 16:9 footage.
    If the vertical lines don't show up on your NTSC
    preview monitor, I wouldn't worry about it. They are
    probably outside of the safe area and won't affect
    its viewability much.
    You are probably right, Dave, it's quite possible that the vertical stripes are outside of the safe area in 4:3. However, I am new to 16:9. Is this the case also in 16:9? I am talking about maybe 20 or 30 pixels wide black bands on either side of the frame.
    If you are capturing the video via analog from the
    canon into some type of DV bridge, These vertical
    bands are normal and represent horizontal sync
    characteristics.
    No, I am capturing the video directly through Firewire.
    Canon does several tings in anunique way that differs
    from what a person would expect. You may have
    stumbled onto one of Canon's quirks.
    I think you are right about that too. I emailed Canon technical support a little Quicktime movie containing two shots, one from the GL-1 and one from the Sony, but I haven't heard back from them yet...
    Hope this helps. Post back.
    Regards,
    Dave F
    Thanks for your post, Dave.

  • HAVING PROBLEMS VIEWING VIDEOS...

    I'M HAVING PROBLEMS VIEWING VIDEOS...THE BROWSER I USE IS SAFARI...THE MESSAGE I GET WHEN TRYING TO VIEW THE VIDEOS IS "HAS CONTENT OF MIME-TYPE "APPLICATION/XMPLAYER2" BUT YOU DON'T HAVE A PLUGIN INSTALLED FOR THIS MIMTYPE A PLUGIN SHOULD BE AVAILABLE ON THIS PAGE" THEN IT DIRECTS ME TO THE MICROSOFT WEBSITE TO DOWNLOAD MICROSOFT MEDIA PLAYER 9....???? WHAT SHOULD I DO?....WE TRY TO DOWNLOAD...AFTER DOWNLOAD IT STILL KEEPS DOING THE SAME THING OVER...I'M NOT REALLY SURE WHAT A PLUGIN IS OR HOW I CAN GET ONE...COULD YOU HELP ME OUT?...THANK YOU...

    Try posting in the QuickTime for Mac forum. You'll be more likely to get help there than you will here in the QuickTime for Windows forum.
    Good luck.
    Forum Tip: It is generally considered inappropriate behavior to type all in uppercase letters in Internet discussions, as text that is typed all in uppercase is by convention considered to be shouting. Uppercase is also more difficult to read, so please use all uppercase sparingly and only when you really mean to shout, which we hope you won’t need to do here .

  • Javascript error which blocks online video from msnbc

    Frequently when I try to play an online video from MSNBC the video stops with a tapping sound and I see a javascript errors under the debug console alert.  There is no suggestion as to how to fix the error.  Do I need to go to the Apple store to fix this? 

    just download the MSNBC app.

  • I have a macbook pro running snow leopard. Just recently I cannot view youtube videos and other online videos. I recently updated my flashplayer plugin and I believe that is the problem. Is the latest flashplayer plugin compatible with 10.6.8?

    I have a macbook pro running snow leopard. Just recently I cannot view youtube videos and other online videos. I recently updated my flashplayer plugin and I believe that is the problem. Is the latest flashplayer plugin compatible with 10.6.8? If this is so, I need to find an older flash player plugin to reinstall. I do not want to upgrade from 10.6.8 at this time because I have 18 yrs. worth of financial records on Quicken that I have read will not work with Lion and I've read bad things about running music programs on Maverick.

    rayvonr wrote:
    ...I have 18 yrs. worth of financial records on Quicken that I have read will not work with Lion and I've read bad things about running music programs on Maverick.
    1)  Quicken 2007 for Intel (Snow Leopard, Lion, Mt. Lion and Mavericks) is a full featured app that can be downloaded from Intuit for $15 and will work with your data file if you are using Quicken 2005, 2006 or 2007 (if you version is earlier, let me know for more instructions on easy conversion):
    http://quicken.intuit.com/personal-finance-software/quicken-2007-osx-lion.jsp
    2) Partition your hard drive, or add an external hard drive and install Mavericks there and "dual-boot" to operate your music programs in Snow Leopard and experiment with them in Mavericks.
    DO NOT install Mavericks over Snow Leopard!

  • For last one month I am facing problem in watching online videos on my iPod touch. It is opening or can say loading the online videos. Earlier it used to be work absolutely fine. Any solution for my problem.

    For last one month I am facing problem in watching online videos on my iPod touch. It is opening or can say loading the online videos. Earlier it used to be work absolutely fine. Any solution for my problem.

    For last one month I am facing problem in watching online videos on my iPod touch. It is not opening or can say loading the online videos. Earlier it used to be work absolutely fine. Any solution for my problem.

Maybe you are looking for

  • Cannot Update Contingent Worker Number with API when no assignment exists

    Hi I am using hr_person_api.update_gb_person to update Contingent Worker Numbers (NPW_Number in PER_ALL_PEOPLE_F). This works fine apart from one exception. I get the following error: ORA-20001: You cannot enter a Contingent Worker number because you

  • Implementing "Temporary Tables" in Oracle after migrating from SQL Server

    Hello, Some stored procedures referencing temporary tables in SQL Server were migrated to Oracle. In the Oracle DB, these stored procedures are invalid. In a bid to make them valid, I created the referenced temporary tables in my Oracle DB, via SQL*P

  • Photoshop saves jpg much sharper than is displaying it

    Hi, I finished my work on an image but when I save it and view it in windows photo viewer the image is much much sharper than inside photoshop( at 100%) .Anyone knows what is causing this? (using CS6 on windows 7) Thanks

  • Table access restriction to certain users

    Hi, How to restrict the particular user in accessing the database tables ? For example: A user should not be given the the rights to access the table AUFK. Thanks in advance. Regards, Harsha

  • CRM WEB console, how activate/deactivate

    Hi gurus, in my company we have activated the CRM WEB console to one ours cutomer CRM for the developer user profile. See the link below: http://img40.imageshack.us/img40/2782/consoleowy.jpg Now I want deactivate it, but no one rememer how to do it!!