Use Local Resource(Webcam/Speaker) with VNC Viewer like RDP (MS)

Hi All,
I have got Latest Mac Mini 2012 Oct Edition with 10.8.2 . Most of the time i connect my mac mini using VNC Viewer. However i can't use local resource like webcam/Speaker/Drive in Mac Mini.
Source (VNC Viewer) Laptop - Linux - I use Vncviewer here.
Target - Mac mini.
For example :- When i connect PC1(Win) to PC2(Win)  using MS  RDP then  i can use PC1's resource on PC2 remotely.
Link for ref: http://windows.microsoft.com/en-IN/windows7/How-can-I-use-my-devices-and-resourc es-in-a-Remote-Desktop-session
Please advice if we can get it done using vncviewer or i need some other tools.
Regards

Hi All,
I have got Latest Mac Mini 2012 Oct Edition with 10.8.2 . Most of the time i connect my mac mini using VNC Viewer. However i can't use local resource like webcam/Speaker/Drive in Mac Mini.
Source (VNC Viewer) Laptop - Linux - I use Vncviewer here.
Target - Mac mini.
For example :- When i connect PC1(Win) to PC2(Win)  using MS  RDP then  i can use PC1's resource on PC2 remotely.
Link for ref: http://windows.microsoft.com/en-IN/windows7/How-can-I-use-my-devices-and-resourc es-in-a-Remote-Desktop-session
Please advice if we can get it done using vncviewer or i need some other tools.
Regards

Similar Messages

  • Connecting to Mac OS X with VNC-viewer, time out

    every time I try to use a VNC-viewer on my PC to connect to my mac
    I can connect once, then I lose the connection and I can't re-connect until both my mac and PC have been restarted.
    though I never have problems connecting to other systems,
    does anyone know how this can happen?
    I use a 100Mb/sec connection to connect to Mac OS X 10.5.8
    from a PC with Windows 7 Ultimate RC, anyway I try to

    Try using Vine Server
    <http://www.versiontracker.com/dyn/moreinfo/macosx/16699>
    The built-in Mac OS X VNC server (aka Screen Sharing) does not play well with strangers.
    The one thing that has sometimes helped is to make sure you are not trying to use "Reduced Colors". But failing that, get and install Vine Server (make sure it uses a different port from the build-in VNC server - try 5901).

  • How can I use the NI PXI-6508 with Lab View 7? what are the first steps to get started??How can I use the channels with lab view 7????

    I have a 8 slot PXI system with 2 NI PXI 6508 and 1 DMM 4070 in it. I want to get started with programming the digital I/O cards (6508)! How can I use this cards with LabView 7?what is the best way to get started, or where can I get examples showing how to use the several channels?
    Thanks!
    Philipp

    Philipp,
    The best way to get started is to decide if you want to use traditional NI-DAQ or NI-DAQmx. Recently we released NI-DAQ 7.1 which provides NI-DAQmx support for the PXI-6508. In my opinion, NI-DAQmx is more efficient and much easier to use.
    To get started with examples, simply launch LabVIEW and go to Help>>Find Examples. Then expand Hardware Input and Output>>DAQmx and select the appropriate digital group for your application. This should help get you started.
    Please repost if you need addition assistance. Good luck with your application!

  • How can I use a single query panel with two view criteria?

    Hi all,
    I have a requirement to allow users to change the "display mode" on a search results tree table for an advanced search page. What this will do is change the structure of how the data is laid out. In one case the tree table is 3 levels deep, in the other case it's only 2 with different data being at the root node.
    What I've done so far:
    1) I exposed the data relationship for these two ways of viewing the data in the application module's data model.
    2)  I created a view criteria in the two view objects that are at the root of the relationships, where (for simplicity sake) I'm only comparing a single field.
    This is in one view object:
    <ViewCriteria
        Name="PartsVOCriteria"
        ViewObjectName="gov.nasa.jpl.ocio.qars.model.views.PartsVO"
        Conjunction="AND">
        <Properties>... </Properties>
        <ViewCriteriaRow
          Name="vcrow23"
          UpperColumns="1">
          <ViewCriteriaItem
            Name="PartDiscrepantItemsWithIRVO"
            ViewAttribute="PartDiscrepantItemsWithIRVO"
            Operator="EXISTS"
            Conjunction="AND"
            IsNestedCriteria="true"
            Required="Optional">
            <ViewCriteria
              Name="PartDiscrepantItemsWithIRVONestedCriteria"
              ViewObjectName="gov.nasa.jpl.ocio.qars.model.views.PartDiscrepantItemsWithIRVO"
              Conjunction="AND">
              <ViewCriteriaRow
                Name="vcrow26"
                UpperColumns="1">
                <ViewCriteriaItem
                  Name="InspectionRecordNumber"
                  ViewAttribute="InspectionRecordNumber"
                  Operator="="
                  Conjunction="AND"
                  Value=""
                  Required="Optional"/>
              </ViewCriteriaRow>
            </ViewCriteria>
          </ViewCriteriaItem>
        </ViewCriteriaRow>
      </ViewCriteria>
    and this is in the other view object:
    <ViewCriteria
          Name="IRSearchCriteria"
          ViewObjectName="gov.nasa.jpl.ocio.qars.model.views.InspectionRecordVO"
          Conjunction="AND">
          <Properties>... </Properties>
          <ViewCriteriaRow
             Name="vcrow7"
             UpperColumns="1">
             <ViewCriteriaItem
                Name="InspectionRecordNumber"
                ViewAttribute="InspectionRecordNumber"
                Operator="="
                Conjunction="AND"
                Required="Optional"/>
          </ViewCriteriaRow>
       </ViewCriteria>
    3) I had a query panel and tree table auto-generated by dragging the data control for ONE of the view object data relationship that's exposed in the app module. Then I created a second query panel and tree table the same way but using the data control for the other. I'm hiding one of the query panels permanently and toggling the visibility of the tree tables based on the display mode the user chooses. Both tables have separate bindings and iterators.
    This is a portion of the page definition:
    <executables>
        <variableIterator id="variables"/>
        <searchRegion Criteria="IRSearchCriteria"
                      Customizer="oracle.jbo.uicli.binding.JUSearchBindingCustomizer"
                      Binds="InspectionRecordVOIterator"
                      id="IRSearchCriteriaQuery"/>
        <iterator Binds="InspectionRecordVO" RangeSize="25"
                  DataControl="QARS_AppModuleDataControl"
                  id="InspectionRecordVOIterator" ChangeEventPolicy="ppr"/>
        <iterator Binds="Root.QARS_AppModule.PartsVO1"
                  DataControl="QarsMasterAppModuleDataControl" RangeSize="25"
                  id="PartsVO1Iterator"/>
        <searchRegion Criteria="PartsVOCriteria"
                      Customizer="oracle.jbo.uicli.binding.JUSearchBindingCustomizer"
                      Binds="PartsVO1Iterator" id="PartsVOCriteriaQuery"/>
      </executables>
    4) I've created a custom queryListener to delegate the query event.
    This is in my advanced search jsp page:
    <af:query id="qryId1" headerText="Search" disclosed="true"
                      value="#{bindings.IRSearchCriteriaQuery.queryDescriptor}"
                      model="#{bindings.IRSearchCriteriaQuery.queryModel}"
                      queryListener="#{pageFlowScope.SearchBean.doSearch}"
                      queryOperationListener="#{bindings.IRSearchCriteriaQuery.processQueryOperation}"
                      resultComponentId="::resId2" maxColumns="1"
                      displayMode="compact" type="stretch"/>
    This is in my backing bean:
    public void doSearch(QueryEvent queryEvent) {
          String bindingName = flag
             ? "#{bindings.IRSearchCriteriaQuery.processQuery}"
             : "#{bindings.PartsVOCriteriaQuery.processQuery}";
          invokeMethodExpression(bindingName, queryEvent);
       private void invokeMethodExpression(String expr, QueryEvent queryEvent) {
          FacesContext fctx = FacesContext.getCurrentInstance();
          ELContext elContext = fctx.getELContext();
          ExpressionFactory eFactory = fctx.getApplication().getExpressionFactory();
          MethodExpression mexpr =
             eFactory.createMethodExpression(elContext, expr, Object.class, new Class[] { QueryEvent.class });
          mexpr.invoke(elContext, new Object[] { queryEvent });
    When no inspection record number (the only search field so far)  is supplied in the query panel, then it behaves correctly. Namely, the tree tables shows all search results. However, when an inspection record number is supplied the tree table that was created with the query panel in use (remember there are two query panels, one of them is hidden) shows a single result (this is correct) while the other tree table (the one with the hidden query panel that isn't in use) shows all results (this is NOT correct).
    Is what I'm trying to accomplish even doable? If so, what am I missing?
    I'm using JDeveloper 11.1.1.7
    Thanks,
    Bill

    I ended up keeping one query panel permanently visible and the other permanently hidden. When performing a search using the table that has the hidden query panel, I seed the query descriptor for the hidden query panel using the visible query panel's query descriptor and then delegate the request:
       public void doSearch(QueryEvent queryEvent) {
          String bindingName = null;
          if(isIrTableRendered()) {
             bindingName = "#{bindings.IRSearchCriteriaQuery.processQuery}";
          } else {
             seedPartsQueryDescriptor();
             bindingName = "#{bindings.PartsVOCriteriaQuery.processQuery}";
             queryEvent = new QueryEvent(partsQuery, partsQuery.getValue());
          invokeMethodExpression(bindingName, queryEvent);
       private void seedPartsQueryDescriptor() {
          ConjunctionCriterion criterion = irQuery.getValue().getConjunctionCriterion(); 
          for(Criterion criteria : criterion.getCriterionList()) {
             AttributeCriterion attributeCriteria = (AttributeCriterion)criteria;
             List values = attributeCriteria.getValues();
             String qualifiedName = attributeCriteria.getAttribute().getName();
             int indexOfDot = qualifiedName.lastIndexOf(".");
             String name = indexOfDot < 0
                ? qualifiedName
                : qualifiedName.substring(indexOfDot + 1);
             ConjunctionCriterion partsCriterion =
                partsQuery.getValue().getConjunctionCriterion();
             for (Criterion partsCriteria : partsCriterion.getCriterionList()) {
                AttributeCriterion partsAttributeCriteria =
                   (AttributeCriterion) partsCriteria;
                String partsQualifiedName =
                   partsAttributeCriteria.getAttribute().getName();
                if (partsQualifiedName.endsWith(name)) {
                   partsAttributeCriteria.setOperator(attributeCriteria.getOperator());
                   List partsValues = partsAttributeCriteria.getValues();
                   partsValues.clear();
                   for (int i = 0, count = values.size(); i < count; i++) {
                      partsValues.set(i, values.get(i));
       private void invokeMethodExpression(String expr, QueryEvent queryEvent) {
          FacesContext facesContext = FacesContext.getCurrentInstance();
          ELContext elContext = facesContext.getELContext();
          ExpressionFactory expressionFactory =
             facesContext.getApplication().getExpressionFactory();
          MethodExpression methodExpression =
             expressionFactory.createMethodExpression(elContext, expr, Object.class, new Class[] { QueryEvent.class });
          methodExpression.invoke(elContext, new Object[] { queryEvent });
    Then when the advanced/basic button is pressed for the visible query panel, I programmatically set the same mode for the hidden query panel:
       public void handleQueryModeChange(QueryOperationEvent queryOperationEvent) {
          if(queryOperationEvent.getOperation() == QueryOperationEvent.Operation.MODE_CHANGE) {
             QueryMode queryMode = (QueryMode) irQuery.getValue().getUIHints().get(QueryDescriptor.UIHINT_MODE);
             QueryDescriptor queryDescriptor = partsQuery.getValue();
             queryDescriptor.changeMode(queryMode);
             AdfFacesContext.getCurrentInstance().addPartialTarget(partsQuery);

  • Oracle ADF example of use of Single One Choice with Hierarchy Viewer

    I am using JDeveloper Studio 11.1.2.3.0.
    I am looking for a simple example where one can select a value from a Single One Choice component and have it drive a query
    for populating the Hierarchy Viewer.

    You can just use a VO with parameter as the base of your HV - then drag the executeWithParam operation to the page as a parameter form.
    And possibly add a list or LOV to the parameter.
    https://blogs.oracle.com/shay/entry/adding_an_lov_to_a_query_param
    Instead of the table in the video use the HV.

  • Using Visa "resource name" control with GPIB example

    good morning
    I have in my pc two resources of GPIB (Ni-Enet and HP-HPIB card) each one has differet VISA name (ie:GPIB0,GPIB1)
    means Ni-Enet is GPIB0 and HP-HPIB card is GPIB1.
    I tries to use the example Labview<>GPIB to communicate with GPIB1 but it failes
    because the address given (string), to the gpib write object is a string and it recognized only the GPIB0 addresses
    i tried to use the "visa resource name" control (used in the example Labview<>Serial)
    in the Labview<>GPIB example but it failed. ("visa resource name" shows all resources includes GPIB0 nad GPIB1)
    tell me pleae how to use the Labview<>GPIB example to communicate with the equipment addresses used in GPIB1
    a bit long , but hope the issue is clear enough..
    thanks in advance
    Happy new year.
    Simon

    You can't use that example with an Agilent GPIB board. The GPIB functions are only for NI boards and the NI-GPIB driver. You should be able to convert it to VISA but you'll have to replace the GPIB Writwe/Read with VISA Write/Read as well as changing the GPIB Address String to a VISA Resource Name.

  • Converting Local resource to corresponding Enterprise resource using Macro

    Hi Folks,
    Using Macro, we could replace a local resource with an enterprise resource. But what we want to achieve is replacing local res with
    corresponding Enterprise resource. 
    Can anyone help here? Thanks.
    Best Regards,
    Anuja

    Unfortunately it is not just a property wich is required to change the local resource into an enterprise resource. Project will overwrite the local resource's metadata with the enterprise resource metadata (calendar, rate, custom fields...). It could be
    quite complicated to override this process and require a complex coding solution.
    Why not asking the users to first create the project team from the enterprise resource pool, so they'll use from the beginning enterprise resources and will not have the dialog box while saving the project?
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Use X220 integrated Webcam with Lotus Sametime 8.5.1 video conferencing

    Hello,
    what is needed to use the integrated webcam together with Lotus Sametime?
    When i try to test my environment / cam in Sametime there's a missing connection to an application.
    Any idea on what is missing?
    Regards
    Horst

    This integration is possible with using one 3rd party plug-in. Also you will get additional features such as :
    Call forwarding
    CTI
    LDAP integration
    Click-to-call and more..
    K.T.Chamil Asanka

  • Launch Console fails: the vnc viewer is not installed on the manager server and no local vnc viewer is found.

    Hello,
    I have created and started a VM image and try to configure this image, but when launching the console I get the error:
    "the vnc viewer is not installed on the manager server and no local vnc viewer is found."
    I've read the vnc console does not rely on a local version of the vnc client, but uses the java vnc.  From the java log I get:
    Java Web Start 1.6.0_43
    Using JRE version 1.6.0_43-b01 Java HotSpot(TM) Client VM
    User home directory = C:\Users\kgraaf
    28-jun-2013 10:17:04 com.oracle.ovm.ras.proxy.RasProxyApplet main
    INFO: ServiceType : VNC
    28-jun-2013 10:17:04 com.oracle.ovm.ras.proxy.external.ViewerLauncherFactory getViewerLauncher
    INFO: Os is : windows 7
    It is not clear to me yet what is expected to be running where. My configuration is:
    - VM Server 3.1 on Linux host A
    - VM Manager 3.1 on Linux host B
    - Connected via Windows 7 64-bit client via a browser to the Management Server. Let's call this host C
    When launching the console it tries to connect to 127.0.0.1:60505 so to localhost and a port#.
    - Given this information I would expect it tries to launch the vncviewer from my management server (host B).
    - /usr/bin/vncviewer is installed on host B, but this appears not to be used.
    - We see java vnc is started on my Windows 7 client (host C) and it tries to connect to 127.0.0.1 (localhost on my Windows client??) and not to the remote management server (host B)!?
    Questions:
    1 - Can someone explain what exactly is being executed (from where and to which host) when launching the console?
    2 - Is this a java version / Windows 7 related configuration issue? How to fix this?
    Thanks,
    Klaas.

    Per Oracle's website - RAN into this a few hours ago...Do it as ROOT on the VM Manager Host
    http://docs.oracle.com/cd/E26996_01/E18548/html/BABFBEIF.html
    It is preferred that you install either TightVNC on the Oracle VM Manager host computer. You can get the latest TightVNC package from:
    http://oss.oracle.com/oraclevm/manager/RPMS/http://oss.oracle.com/oraclevm/manager/RPMS/
    Install TightVNC with the command:
    # rpm -ivh tightvnc-java-version.noarch.rpm

  • Replacing local resources with enterprise resources on assignments

    Hi,
    After migrating our PS2007 environment to 2013 we encountered a severe problem with the Timesheet view, it seems to be corrupt. We decided to move the projects from one 2013 instance to another, we did this by exporting the projetcs to MPP files and the
    publishing them to the new insance and we also used the FluentPro migrator 2013 tool. In both situations for each project we get prompted if the local resources should be replaced by the Enterprise resources found on the PS2013 server, we would very much like
    that but this feature doesn't seem to work. We have to add the Enterprise resources manually and then replace the local resources one by one on the assignments. Since we have quite some projects with assignments this is undoable. Is this a known issue or are
    there perhaps some work arounds?
    Rgds, Frank
    Frank Jutte Winvision (http://www.winvision.nl) Project Manager / EPM Consultant

    Frank,
    This is a known issue with import project function. Have you installed latest CU on Project Server as well as Project Pro 2013?
    http://www.projectserverhelp.com/Lists/Posts/Post.aspx?ID=211
    Thanks Gaurav Wason MCITP, PMP

  • Accessing Xserve with Lion Server from Windows 7 PC via VNC Viewer

    Hello everyone-
    At work we have an Xserve running Lion Server that we are trying to access from a Windows PC runnig Windows 7. We have turned on Screen Sharing on the Xserve and we are using RealVNC's VNC Viewer client to access the Xserve.
    Everything works OK except the Control key is not being passed through to the Xserve, so you can't to teh usual copy/paste commands etc.
    I have checked on the Web but found nothing to resolve this problem. The settings in the RealVNC client are set to pass through special keys, but it is as if the VNC server on the Xserve isn't seeing them.
    Does anyone have any ideas?
    -Mike

    Hi Michael,
    Thank you for clarifying the issue for us.
    I am trying to involve someone familiar with this topic to further look at this issue. There might be some time delay. Appreciate your patience.
    Thank you for your understanding and support.
    Regards
    Kevin
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback
    on our support quality, please send your feedback here.
     

  • How do I use my gigaware webcam with my mac?

    How do I use my gigaware webcam with my mac? I just bought this webcam on amazon http://www.amazon.com/gp/product/B00IJE0ISS/ref=oh_aui_detailpage_o07_s00?ie=UTF 8&psc=1 and I want to use it with my mac. Is there an adapter or any software to make it compatible? Thanks.

    Your amazon link states, in part, that this webcam is:
    Compatible with Microsoft Windows 7,Vista, XP, 2000
    Use a Mac OS X Compatible Webcam like one of those shown in the linked article instead.
    For best compatibility and security, also update your OS X Mavericks (10.9.2) to the current OS X version by restarting Mac and then downloading and installing OS X Mavericks 10.9.4 Update (Combo).

  • How can you expect the customer to have a LOCAL/COUNTRY Based Credit Card every where we go??? Last week I was on holiday in HK,  and  from my Hotel I was able to use m VN Credit Card with my Apple ID and purchase online!  Why THIS WEEK, can't I use my HS

    Apple_ID_card_declined_for_this_country
    How can you expect the customer to have a LOCAL/COUNTRY Based Credit Card every where we go???
    Last week I was on holiday in HK,
    and
    from my Hotel I was able to use m VN Credit Card with my Apple ID and purchase online!
    Why THIS WEEK, can't I use my HSBC Platinum Credit Card from Vietnam,
    for my Singapore Apple ID account ,
    while working here in Vietnam???

    Unfortunately, this is a problem that is driven by the DRM Dictatorship.  Despite the proliferation of mobile devices and the fact that there are many of us who do a lot of international travel, content providers don't want you to have access to their products outside of your homeland.  The Balkanized mentality of the DRM Dictatorship is way out of touch with the modern world.
    At least Apple, to its credit, allows you to use your accounts outside of your homeland as long as you have the proper credentials for them.  Most other services use the more Draconian geolocation filtering which does require you to be physically present in your homeland.  For the most part, you are not allowed to leave home if you want access to your favorite entertainment!

  • Can I use my new iphone 5 with the old iHome iD9SVC Speaker System if I get an apadter? or should i just buy new speaker system made specifically for the iphone5

    can I use my new iphone 5 with my old iHome iD9SVC speaker system if I get an adapter? or should i just buy a new speaker system made specifically for the iphone 5?

    Look iTunes>Preferences>Devices...is a backup listed for your iPhone 5 dated BEFORE you restored your iPhone 4 backup to your iPhone 5? If not, your data is gone. If there is a backup, on your iPhone 5: Settings>General>Reset>Erase All Content & Settings. You should now be able to restore that backup, if it exists, to your iPhone 5.

  • How to add SharePoint 2013 Promoted link list view web part in page programatically with Tiles view using CSOM.

    How to add SharePoint 2013 Promoted link list view web part in page programatically with Tiles view using CSOM. I found that it can be
    done by using XsltListViewWebPart class but how can I use this one by using shraepoint client api.
    shiv

    Nice, can you point me to the solution please ?
    I'm  trying to do this but I get an error : 
    Web Part Error: Cannot complete this action. Please try again. Correlation ID: blablabla
    StackTrace:    at Microsoft.SharePoint.SPViewCollection.EnsureViewSchema(Boolean fullBlownSchema, Boolean bNeedInitallViews)     at Microsoft.SharePoint.SPList.GetView(Guid viewGuid)   
    All help really appreciated.

Maybe you are looking for

  • Is there any way to name the records from a data merge?

    I have a spreadsheet, that has all the names for the images I'm using for a data merge. What I want to do is name the resulting records after the filenames in one of the columns in the spreadsheet. Is there anyway to do this? Or is there some other w

  • G4 and PCI-SCSI card

    I recently bought a second hand PowerMac G4 with an adaptec 2903B scsi PCI card in it. I reinstalled it with OS10.3.9. I have not been able to detect any SCSI devices yet. Am I missing a driver ? No drivers for the 2903B on the Adaptec website... I'm

  • Video format supported - Nokia N95

    Hi, Maybe I can be wrong, but I think that I have moved a MPEG video into Nokia N95 and it worked fine. However, I tried to do the same thing with another video file (mpeg) and it didnt work, Nokia N95 didnt recognize the file. I dont know if the rea

  • Adjusting for red

    been a long time since i have posted or even read anything here. sort of fallen off the photography wagon. ran into a problem today that was familiar to me, so thought i would give it a shot here. i have a canon EOS 1D MkII, a venerable body that has

  • Standalone multi-line JLabel vertical alignment

    I have a JLabel subclass that I am using an a Servlet environment, with iText to create a PDF. When I set the vertical alignment to CENTER, the vertical spacing is not correct and the label runs off the bottom of its allocated area. The JLabel is not