Media Manager cannot find my computer

My computer is connected to my wiressless router at 192.168.2.107, but media manager can never detects my computer. How do you trouble shoot the connection?  Motorola box is connected to same wireless router via powerline adaptor, so I am assuming they should see each other.  The same config works great for sling player without any issues.  

bd1973 wrote:
My computer is connected to my wiressless router at 192.168.2.107, but media manager can never detects my computer. How do you trouble shoot the connection?  Motorola box is connected to same wireless router via powerline adaptor, so I am assuming they should see each other.  The same config works great for sling player without any issues.  
The Media Manager and the STB have to be on the same subnet.
That means your cable box needs to also be on a 192.168.2.x ip address (which is unlikely as they default to 192.168.1.x)
That is your first step is getting them on the same subnet.
here is some additional info
Media Manager and your Firewall
Media Manager and your Antivirus
Set Top Box Connectivity Issues
Pay special attention to the 'Communication Check between PC/Laptop and STB' section and & 'IP Address Comparison' section

Similar Messages

  • Javax.media.NoPlayerException: Cannot find a Player

    Hi all,
    I've installed JMF,
    and tried the sample 'SimplePlayerApplet.java' from Sun:
    http://java.sun.com/products/java-media/jmf/2.1.1/samples/
    (see the code below)
    However, everytime I run the applet,
    I get the message:
    "javax.media.NoPlayerException: Cannot find a Player"
    Can anybody help?
    -------code from sun website-----------------
    * @(#)SimplePlayerApplet.java     1.2 01/03/13
    * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved.
    * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
    * modify and redistribute this software in source and binary code form,
    * provided that i) this copyright notice and license appear on all copies of
    * the software; and ii) Licensee does not utilize the software in a manner
    * which is disparaging to Sun.
    * This software is provided "AS IS," without a warranty of any kind. ALL
    * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
    * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
    * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
    * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
    * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
    * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
    * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
    * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
    * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
    * POSSIBILITY OF SUCH DAMAGES.
    * This software is not designed or intended for use in on-line control of
    * aircraft, air traffic, aircraft navigation or aircraft communications; or in
    * the design, construction, operation or maintenance of any nuclear
    * facility. Licensee represents and warrants that it will not use or
    * redistribute the Software for such purposes.
    import java.applet.Applet;
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.String;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.io.IOException;
    import java.util.Properties;
    import javax.media.*;
    //import com.sun.media.util.JMFSecurity;
    * This is a Java Applet that demonstrates how to create a simple
    * media player with a media event listener. It will play the
    * media clip right away and continuously loop.
    * <!-- Sample HTML
    * <applet code=SimplePlayerApplet width=320 height=300>
    * <param name=file value="sun.avi">
    * </applet>
    * -->
    public class SimplePlayerApplet extends Applet implements ControllerListener {
    // media Player
    Player player = null;
    // component in which video is playing
    Component visualComponent = null;
    // controls gain, position, start, stop
    Component controlComponent = null;
    // displays progress during download
    Component progressBar = null;
    boolean firstTime = true;
    long CachingSize = 0L;
    Panel panel = null;
    int controlPanelHeight = 0;
    int videoWidth = 0;
    int videoHeight = 0;
    * Read the applet file parameter and create the media
    * player.
    public void init() {
    //$ System.out.println("Applet.init() is called");
    setLayout(null);
    setBackground(Color.white);
    panel = new Panel();
    panel.setLayout( null );
    add(panel);
    panel.setBounds(0, 0, 320, 240);
    // input file name from html param
    String mediaFile = null;
    // URL for our media file
    MediaLocator mrl = null;
    URL url = null;
    // Get the media filename info.
    // The applet tag should contain the path to the
    // source media file, relative to the html page.
    if ((mediaFile = getParameter("FILE")) == null)
    Fatal("Invalid media file parameter");
    try {
    url = new URL(getDocumentBase(), mediaFile);
    mediaFile = url.toExternalForm();
    } catch (MalformedURLException mue) {
    try {
    // Create a media locator from the file name
    if ((mrl = new MediaLocator(mediaFile)) == null)
    Fatal("Can't build URL for " + mediaFile);
    try {
    JMFSecurity.enablePrivilege.invoke(JMFSecurity.privilegeManager,
    JMFSecurity.writePropArgs);
    JMFSecurity.enablePrivilege.invoke(JMFSecurity.privilegeManager,
    JMFSecurity.readPropArgs);
    JMFSecurity.enablePrivilege.invoke(JMFSecurity.privilegeManager,
    JMFSecurity.connectArgs);
    } catch (Exception e) {}
    // Create an instance of a player for this media
    try {
    player = Manager.createPlayer(mrl);
    } catch (NoPlayerException e) {
    System.out.println(e);
    Fatal("Could not create player for " + mrl);
    // Add ourselves as a listener for a player's events
    player.addControllerListener(this);
    } catch (MalformedURLException e) {
    Fatal("Invalid media file URL!");
    } catch (IOException e) {
    Fatal("IO exception creating player for " + mrl);
    // This applet assumes that its start() calls
    // player.start(). This causes the player to become
    // realized. Once realized, the applet will get
    // the visual and control panel components and add
    // them to the Applet. These components are not added
    // during init() because they are long operations that
    // would make us appear unresposive to the user.
    * Start media file playback. This function is called the
    * first time that the Applet runs and every
    * time the user re-enters the page.
    public void start() {
    //$ System.out.println("Applet.start() is called");
    // Call start() to prefetch and start the player.
    if (player != null)
    player.start();
    * Stop media file playback and release resource before
    * leaving the page.
    public void stop() {
    //$ System.out.println("Applet.stop() is called");
    if (player != null) {
    player.stop();
    player.deallocate();
    public void destroy() {
    //$ System.out.println("Applet.destroy() is called");
    player.close();
    * This controllerUpdate function must be defined in order to
    * implement a ControllerListener interface. This
    * function will be called whenever there is a media event
    public synchronized void controllerUpdate(ControllerEvent event) {
    // If we're getting messages from a dead player,
    // just leave
    if (player == null)
    return;
    // When the player is Realized, get the visual
    // and control components and add them to the Applet
    if (event instanceof RealizeCompleteEvent) {
    if (progressBar != null) {
    panel.remove(progressBar);
    progressBar = null;
    int width = 320;
    int height = 0;
    if (controlComponent == null)
    if (( controlComponent =
    player.getControlPanelComponent()) != null) {
    controlPanelHeight = controlComponent.getPreferredSize().height;
    panel.add(controlComponent);
    height += controlPanelHeight;
    if (visualComponent == null)
    if (( visualComponent =
    player.getVisualComponent())!= null) {
    panel.add(visualComponent);
    Dimension videoSize = visualComponent.getPreferredSize();
    videoWidth = videoSize.width;
    videoHeight = videoSize.height;
    width = videoWidth;
    height += videoHeight;
    visualComponent.setBounds(0, 0, videoWidth, videoHeight);
    panel.setBounds(0, 0, width, height);
    if (controlComponent != null) {
    controlComponent.setBounds(0, videoHeight,
    width, controlPanelHeight);
    controlComponent.invalidate();
    } else if (event instanceof CachingControlEvent) {
    if (player.getState() > Controller.Realizing)
    return;
    // Put a progress bar up when downloading starts,
    // take it down when downloading ends.
    CachingControlEvent e = (CachingControlEvent) event;
    CachingControl cc = e.getCachingControl();
    // Add the bar if not already there ...
    if (progressBar == null) {
    if ((progressBar = cc.getControlComponent()) != null) {
    panel.add(progressBar);
    panel.setSize(progressBar.getPreferredSize());
    validate();
    } else if (event instanceof EndOfMediaEvent) {
    // We've reached the end of the media; rewind and
    // start over
    player.setMediaTime(new Time(0));
    player.start();
    } else if (event instanceof ControllerErrorEvent) {
    // Tell TypicalPlayerApplet.start() to call it a day
    player = null;
    Fatal(((ControllerErrorEvent)event).getMessage());
    } else if (event instanceof ControllerClosedEvent) {
    panel.removeAll();
    void Fatal (String s) {
    // Applications will make various choices about what
    // to do here. We print a message
    System.err.println("FATAL ERROR: " + s);
    throw new Error(s); // Invoke the uncaught exception
    // handler System.exit() is another
    // choice.
    }

    First and most obvious question is, what are you trying to have the applet view? The NoPlayerException generally means that JMF couldn't figure out how to display what you're telling it to display, be that an unknown codec, or unknown media type.

  • *UNABLE_CREATE_PLAYER*javax.media.NoPlayerException: Cannot find a Player f

    Dear all,
    I have the following error : UNABLE_CREATE_PLAYERjavax.media.NoPlayerException: Cannot find a Player for :
    But I can't find why. Here is the revelent part of my code.
    VCDataSource myDataSource = new VCDataSource(MicrophoneCaptureDevice.getLocator());
    // Add the DataSource to the MediaPlayer
    VCMediaPlayer.setSource(myDataSource);
    // run the media player
    VCMediaPlayer.start();
    could you explain where I am wrong ! =)

    Hi
    I have a question: where did you initialized the player?
    (something like Manager.createPlayer(...);
    regards

  • Javax.media.NoPlayerException: Cannot find a Player for :v4l://0

    Hi,
    I'm trying to grab a frame in a linux box with a webcam.
    First i was having trouble in getting my webcam registered but thats history and now i can use jmfstudio to view thru the camera's eye.
    But using the code below to get a frame i get the following exception:
    Exception in thread "main" javax.media.NoPlayerException: Cannot find a Player for :v4l://0
    at javax.media.Manager.createPlayerForContent(Manager.java:1412)
    at javax.media.Manager.createPlayer(Manager.java:417)
    at javax.media.Manager.createRealizedPlayer(Manager.java:553)
    at FrameGrab.main(FrameGrab.java:26)
    Code:
    public class FrameGrab {
    public static void main(String[] args) throws Exception {
    Vector list = CaptureDeviceManager.getDeviceList ( null );
    CaptureDeviceInfo devInfo = (CaptureDeviceInfo)list.elementAt ( 1 );
    // Create capture device
    CaptureDeviceInfo deviceInfo = CaptureDeviceManager.getDevice(devInfo.getName());
    Player player = Manager.createRealizedPlayer(deviceInfo.getLocator());
    player.start();
    // Wait a few seconds for camera to initialise (otherwise img==null)
    Thread.sleep(2500);
    // Grab a frame from the capture device
    FrameGrabbingControl frameGrabber = (FrameGrabbingControl)player.getControl("javax.media.control.FrameGrabbingControl");
    Buffer buf = frameGrabber.grabFrame();
    // Convert frame to an buffered image so it can be processed and saved
    Image img = (new BufferToImage((VideoFormat)buf.getFormat()).createImage(buf));
    BufferedImage buffImg = new BufferedImage(img.getWidth(null), img.getHeight(null), BufferedImage.TYPE_INT_RGB);
    // Save image to disk as PNG
    ImageIO.write(buffImg, "png", new File("webcam.png"));
    // Stop using webcam
    player.close();
    player.deallocate();
    System.exit(0);
    Any tips?

    hi
    i've got the same problem too
    the jms could only play .mp3 not other formats
    is the installation wrong?
    could some experts give me some advise?
    my e-mail:[email protected]

  • Concurrent Manager cannot find information for your conc req in FND_USER

    Dear All,
    Our customer is facing this issue while submitting conc requests. The requests end up in a Error with the following message in the Diagnostics.
    Concurrent Manager cannot find information for your concurrent request from FND_USER
    Cause: Concurrent Manager found no rows while selecting information for your concurrent request from FND_USER .
    Sometimes it does not happen. It happens only for HRMS users. We are not sure what is causing this issue.
    Anyone has faced this already? Highly appreciate your suggestions / pointers towards solving this issue.
    Thanks in advance!
    Hem

    Hem,
    Not sure if this is relevant here, but you may try to submit the following concurrent programs and see if it helps.
    - "Sync responsibility role data into the WF table."
    - "Synchronize WF LOCAL tables"
    - "Workflow Directory Services User/Role Validation"
    If the above does not help, enable trace/debug on any of those concurrent programs, and submit it again, check the concurrent request log file contents then (you do not have to generate TKPROF file, so skip this step).
    Note: 453527.1 - How To Trace a Concurrent Request And Generate TKPROF File
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=453527.1
    Regards,
    Hussein

  • Concurrent Manager cannot find error description for CONC-System Node

    Hi friends,
    I m facing a problem while doing clustering for oracle EBS.i m using hpux11i with veritas cluster server for oracle DataBase cluster.i am doing 2 node cluster.i have installed oracle 11i apps with 9i DB.thru veritas i am able to do a db cluster failover.now i want to run oracle apps 11i too from both nodes(active/passive).so i configured a virtual IP address with a Virtual Hostname which will move along with the cluster failover.when i configure ora apps tier thru giving it virtual hostname concurrent manager dies with error--Concurrent Manager cannot find error description for CONC-System Node. i tried many things but unable to come up with a solution. pls help.
    regs
    Satish

    Please post the contents of your hosts file here.
    Is FND_NODES table populated correctly? Please run AutoConfig and make sure it completes successfully.
    Why are the Concurrent Managers Failing with 'CONC-System Node Name not Registered" Error After Applying Patch 6461517? [ID 1108452.1]
    OPP and SFM Managers do not Start [ID 1425409.1]
    Thanks,
    Hussein

  • I install adobe reader, cannot find on computer, says it's insatlled.

    I can't use adobe pdf. I have 4 apps for adobe 3 say use adobe acrobat ( in firefox) 1 says save file. drop down doesn't list adobe acrobat. I have downloaded adobe reader 5 different times, it says already installed. I cannot find it on c-disk or anywhere.

    Download the installer without download manager:
    http://ardownload.adobe.com/pub/adobe/reader/win/9.x/9.3/enu/AdbeRdr930_en_US.msi

  • Cannot find "authorise computer" option in Store Menu?

    I cannot find the "Authorise Computer" option in the iTunes Store. Can you please guide me?

    Welcome to Apple Support Communities
    After installing iTunes on your computer, open it and choose Store menu (on the menu bar) > Authorize this Computer. If you have iTunes 11, you may not see the menu bar, so press Control and B keys

  • BT Connection Manager cannot find my BT Mobile Don...

    My BT Connection Manager cannot seem to find my BT mobile dongle.  The dongle light has changed from red to green so it is working okay.  Any ideas?  Thanks.

    Hi Tredder
    Welcome to the forums.
    Have you had any luck with this? If not I can maybe get this looked into for you.
    Send me an email to the email address in my profile. Please remember to include your BT account number, telephone number and a link to this thread.
    Cheers
    StuartWelcome to the forums.
    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 that 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 :-)

  • Photoshop CC installed, cannot find on computer

    I recently purchased Photoshop CC and Lightroom 5 to use with the Creative Cloud. I installed Bridge CC, Lightroom 5 and Photoshop CC onto my computer; however, I can only find Lightroom and Bridge and open them. I cannot find Photoshop anywhere, even though it says it is installed in Creative Cloud. Any help?
    I'm running a Mac 10.8.4 software
    Thanks!
    Ryan

    The following links can be helpful, please check them:
    Error "Application components are missing" | Starting Photoshop, Photoshop Elements | Mac OS
    Applications missing from Creative Cloud Desktop application
    Hope these help you.
    Regards
    Rajshree

  • Application Client Enity Manager cannot find Persistence Unit with JWS

    I have an Enterprise Application Project in Netbeans 6.7.1.
    The enterprise application client module has the business code and the
    persistence unit (TopLink) defined in the app-client.jar. I can run this
    application clinet from NB without a problem. I can also run it with JWS
    if I remove the EnityManager.
    I'm using JPA (EnityManager) in a Java SE environment.
    When I try and run the app-client from Java Web Start I get an error
    that the EnityManager cannot find the PU. The persistence unit is packaged in the app.ear->app-client.jar->META-INF->persistence.xml.
    There's not a wealth of information, that I could find on the net, but this
    seems to be correct.
    The error I get is:
    INFO: ACC009: Load Application Class: [jws.Main]
    hello world! From JWS
    Dec 3, 2009 11:44:21 AM com.sun.enterprise.appclient.MainWithModuleSupport <init>
    WARNING: ACC003: Application threw an exception.
    javax.persistence.PersistenceException: No Persistence provider for EntityManager named JWS-app-clientPU: The following providers:
    oracle.toplink.essentials.PersistenceProvider
    oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider
    Returned null to createEntityManagerFactory.
    Any ideas on what I need to do to properly package the PU for an Enterprise Application Client ??
    Thanks,
    David

    I solved this problem.
    When we call resources from EAR application, WebLogic adds "Cache-Control=private, no-cache, no-store, s-maxage=0, must-revalidate" to all responses header.
    It was the reason of error occurence.
    I used filter from http://flavio.tordini.org/http-headers-filter to remove Cache-Control from header when calling jar resources.
    After that, applicatiom started to work again.

  • Cannot find networked computer

    A few weeks ago I set up a system that has a wireless connection to a computer 1/2 mile away. The computer in my house is connected to a Linksys router and the wireless system is connected to the same router. The computers showed up in the network icon right away and I was able to use a VNC program for a couple weeks.
    Then something happened and the computers cannot connect to each other anymore. It happened about the time I installed an OS update and I haven't changed anything else.
    How can I get these to see each other again ?
    Thanks

    Hmmm...can they connect in basic ways, like ssh? Can you ping one from the other?

  • HT5622 I cannot find "authorize computer" in the ITunes Store menu as directed

    How do I "authorize computer" on Windows 8 so I can use my Itunes?

    Authorization
    Macs:  iTunes Store- About authorization and deauthorization.
    Windows: How to Authorize or Deauthorize iTunes | PCWorld.
    In iTunes you use the Authorize This Computer or De-authorize This Computer option under the Store menu in iTunes' menubar. For Windows use the ALT-S keys to access it. Or turn on Windows 7 and 8 iTunes menus: iTunes- Turning on iTunes menus in Windows 8 and 7.

  • Media Encoder cannot find files

    I am having a problem with exporting from Premier CS4. I have been using the same setup for some time but now the encoder cannot read from the source files. They haven’t been moved or deleted and they play back correctly on the timeline. If I copy and paste them to AE they output without any problem. This worked using exactly the same output settings. Copy and pasting them back from AE into a new Premier project didn't work either. Any suggestions?

    It this a question about Thunderbird?
    If that is the case then we can move the question to Thunderbird support.

  • Cannot find Vista Computer under Network

    i cant find my vista machine on my macbook when i open the network window...
    my vista machine tough is able to find my macbook
    and yes we share the same workgroup
    can anyone help?

    Some things to check.
    Are you using a firewall on the Vista machine?
    I use Norton on my Vista POS, and had to add the MAC address of the MACINTOSH to my list of trusted computers
    If so, check to make sure that your Mac is included in the "safe" or "trusted" list.
    On your MAC, under System Preferences, Network, make sure you've enabled SMB sharing. Otherwise, even though you are in the same workgroup, you will not see the Vista machine.
    Hope this helps

Maybe you are looking for

  • Media Encoder CC - Bug or just finicky?

    I'm confused about Media Encoder, and hoping someone can help. I have a short film that's primarily 4K ProRes augmented with some "flashbacks" that are 1920 by 1080 h264 files.  All edits beautifully in my 4K ProRes timeline. I have some Magic Bullet

  • How to use AT LINE-SELECTION and AT USER-COMMAND in one report????

    Dear all, I have a problem in reports I want to use AT USER-COMMAND.and AT LINE-SELECTION.both in the one report. But as soon as I use SET PF-STATUS my AT LINE-SELECTION event stop workingand only AT USER-COMMAND is working. How can I use both of the

  • How to set up DNS on OEL ?

    Hello buddy: How can I set up DNS on OEL ? Just for install 11g R2 RAC

  • CCM 200 and other related documents.

    Hi SRM Experts, Could anybody send me CCM 200 configuration docuements at my mail id [email protected] I shall reward you with points. Thanks in advance, Vatan

  • Is it necessary to download and set up jco.zip

    hi i want to know that is it necessary to install jco to connect to sap from my java class if so where i can get this .... i don't have licence in services.sap.com ....pls  help me out from this... tx and regards