Open file in client computer

hi
how can i open file in client computer when he click on a button
i want to show him a xls file and if he want save it on his computer
can i save on his computer too?
tanx

ok
when i said " i said a program in server" mean in
my previous post i said i want to open file that
its place in server and want to show userAll you need for that is a webserver. Are you creating that file on the fly?
can i open file with java prog in user comp?A signed applet can download the file and fire off th rRuntime.exec() command shown earlier. You claimed to be limited in doing that by not knowing their OS. That may be true, but there aren't many OSes that can run Excel to begin with.
if u know both applet and jsp(not servlet)Once more: JSPs are servlets. Same technology, different appearance. And as far as the user's concerned, it's all HTML. Totally irrelevant how it's created. You can have the servlet stream out the file in case it's indeed created on the fliy, using the reply's output stream and the appropriate MIME type setting. If it's static, I say don't bother and simply put it onto the webserver.
please
tell me
or if java dont permision to do this tell it so

Similar Messages

  • What is the best strategy to save a file in client computer

    I want to save some information in a file in client computer. What is the best strategy to do? There are some ways I can think about. But none of them is good enough for me.
    1. I gave all-permission. So, I can actually write what I want. But, in order to make the program runs on all platform/all client computers, I can't make any assumptions on file system of client computer. So, this is not good.
    2. I can write a file into .javaws directory. But, how can I get file path for this directory? JNLP API does not give this path to us. I can't think a way to get this path for all client computer (WIndown, Mac, Unix).
    3. To write as a muffin. Seems fine. But, I often change server and path. So, once I changed server, the client will loss the file saved since muffin is associated with server and path.
    4. I can just open one file with on path. I think J2SE will treat this file platform dependently. For example, for W2K this file will be put into Desktop. This is bad.
    Any better idea?

    In the past I have used the Properties class to do things like this. Using load and store, you can read and write key=value pairs.
    I store the file in the user.home directory. You can use System.getProperty("user.home") to get this location.
    No guarantees, but I thought that this user.home property was good for any OS with a home directory concept. If that turns out not to be true, maybe the System property java.io.tmpdir would be more consistent across platforms. This, of course, would be subject to delete by the OS/administrators.
    -Dave

  • Codec Problems, won't let me open file on another computer due to codec problem??

    Codec Problems, won't let me open file on another computer due to cedec problem??

    Start the computer from the installation disk and perform Repair Disk and Repair Permissions using Disk Utility

  • Opne file on client computer

    Hi Experts!
    I have one question. How can I open file which is on Unix server on client computer. I have to say that I don't know file type, it could be pdf, excel file or ordinary text file. In dependence of file type I would like to open it in proper program on user computer.
    I found following function modules:  GUI_RUN, WS_EXECUTE. With files which are saved on user computer everything is ok but when I pass path for Unix i.e. '/usr/sap/tmp/test.txt' functions are not able to find them.
    Maybe there is possibility to use one of these functions but I don't know how, if not could you give me other?
    Thanks in advance.
    Baru

    Hi,
    here a short example for output and input
    TABLES: MARA.
    DATA: DATEI_A(30) TYPE C VALUE '/usr/sap/tmp/test.txt'.
    TYPES: BEGIN OF IMARA,
             MATNR LIKE MARA-MATNR,
             MTART LIKE MARA-MATNR,
           END OF IMARA.
    DATA: ITAB        TYPE TABLE OF IMARA WITH HEADER LINE.
    DATA: ITAB_READ   TYPE TABLE OF IMARA WITH HEADER LINE.
    START-OF-SELECTION.
      SELECT MATNR MTART INTO TABLE ITAB FROM MARA UP TO 20 ROWS.
      PERFORM DATEI_AUSGEBEN.
      PERFORM DATEI_EINLESEN.
    FORM DATEI_AUSGEBEN.
      OPEN DATASET DATEI_A FOR OUTPUT IN TEXT MODE encoding default.
      IF SY-SUBRC NE 0. EXIT. ENDIF.
      LOOP AT ITAB.
        TRANSFER ITAB TO DATEI_A.
      ENDLOOP.
      CLOSE DATASET DATEI_A.
      IF SY-SUBRC NE 0. EXIT. ENDIF.
    ENDFORM.                    "DATEI_AUSGEBEN
    FORM DATEI_EINLESEN.
      OPEN DATASET DATEI_A FOR INPUT IN TEXT MODE encoding default.
      IF SY-SUBRC NE 0. EXIT. ENDIF.
      DO.
        READ DATASET DATEI_A INTO ITAB_READ.
        IF SY-SUBRC <> 0. EXIT. ENDIF.
        APPEND ITAB_READ.
      ENDDO.
      CLOSE DATASET DATEI_A.
      IF SY-SUBRC NE 0. EXIT. ENDIF.
      LOOP AT ITAB_READ. WRITE: / ITAB_READ. ENDLOOP.
    ENDFORM.                    "DATEI_EINLESEN
    Another way is to search in this forum for open/close/read DATASET.
    Regards, Dieter

  • Where is the file drop down to open files on my computer that's a biggie

    Hello
    on the version FIREFOX I have their is a file dropdown that allows me to
    get files from my computer the link in the upper left hand corner
    says FILE and I click it and and their is a several links such as
    NEW WINDOW/ NEW TAB/ OPEN LOCATION/ OPEN FILE
    OPEN FILE is very important to me as I use it creating web sites.
    I may be looking in the wrong place the version I downloaded
    is the 7.1 and it has a new look from the one I have.
    so please let me know maybe this feature is not on this version
    that would be sad. let me know if it is on some other version
    because I use it a lot.
    Thank you
    ken

    hello
    Sorry I saw the answer to my last question which was...
    "Is their other codes like alt+f for getting the files like one for tools or history like alt+g or alt+m Is their a list somewhere that teaches that. or are they accussed some other way". I see it is all up with the alt+f code
    so my question should be is their anyway to keep the alt+f
    menue up on the all the time.
    Thanks
    Ken

  • SHP2013 - Open Files in Client Application

    I can't get PDFs to open in the client, where in the same library Excel and Word both open in the client.  This is true across all my libraries with these file types.
    The Permissive is ON in Central Admin,  the SharePoint OpenDocument Class is enable on the browser tools, and the list setting are set to open items in client application.
    Not sure what else to do, any advice?
    Note: We just upgraded 2010 to run in 2013 compatibility mode, files open in client while in 2010
    Thanks

    This is typically because pdfs aren't listed as a trusted file type. This article gives a deep dive into the systems around them. In particular have a look at the section titled 'Default Trusted File (Mime) Types'
    http://social.technet.microsoft.com/wiki/contents/articles/8073.sharepoint-browser-file-handling-deep-dive.aspx

  • Residual swf file on client computer?

    Once you closed the browser that ran an Flex, is the swf file
    containing the client application left on the hard disk or the RAM
    of the client computer?

    It isn't a security issue unless you are trying to prevent a
    3rd party other than the user/client from accessing the data. If
    you do not want a client/user to have access to hack the code, then
    it cannot be allowed to ever run on hardware a client/user
    controls. This is Security 101. Same reason you can get cracks for
    every game ever made, every major program ever released, etc. If
    the client can run it in a debugger, they can do anything given
    enough time/sophistication.
    Put another way: Security by obscurity/obfuscation, is not
    security at all.
    If you want something to be secure (from the client), then it
    can only ever run on your own hardware (ie web servers). It is
    possible to have secure communications between client and browser
    though, in the sense that a third party wouldn't be able to
    interfere/read the commuications between the client and the server.
    All you would be doing by trying to keep the swf in RAM, or
    delete it is try and put a bandaid on a corpse. (Sorry, it's late
    and my analogy sucks.) Anyone sophisticated enough to decompile and
    understand a SWF file will not have any problems reading RAM or
    whatever other measures you can think of.
    If there was a foolproof way to do this, every commercial
    close-sourced software company in the world would be using
    it.

  • Help! Whenever I try to open one important file on icloud pages it says 'can't open file' - on my computer and ipod, too! Can I retrieve it?

    I have a very important document and it is saved only o the icloud (which I thought would be fine). Only now, whenever I try to open it it gives me the message 'can't open file'. I'm a PhD student, and that file represents a lot of work for me. I did it on the ipad because I had to travel, and now I'm kicking myself. I need that file! Is there any way to get it back?

    Thanks for your suggestion - I have tried that like 50 times (I was feeling the desperation and thought if I reset enough times it would do it), and I have also tried turning off and on the cloud, adding .pages to the filenames, downloading (didn't work) emailing to myself (did work, wouldn't open). When I looked at the package contents of the file, it did not have a file for content in it - or not one I can find. I'm afraid that it's lost the content within the file (though I don't now how it could!).
    I've not had any joy with anything else I have read online. I think it's a more knotty problem than a simple off/on again job!

  • Issue opening files.

    Hi,
    I've recently been having issues opening files from clients where I get a message telling me the file was created in a newer version of Adobe - this has occurred with both my InDesign CS6 and Illustrator CS6.  I have made sure the software is updated but the issue keeps coming up, can anybody offer any advice?

    Probably created in Adobe Creative Cloud.
    You can get a trial of Creative Cloud that will last 30 days - and see if you can open the files from there.
    It's always best to work on the same version of InDesign as the file was created in.

  • Safari freezes when trying to open files.

    I am trying to open files on my computer through Safari. I am trying to open a file through Avery.com, but it's not Avery that is the problem, I don't believe. All I have to do is open Safari, click on File>Open File, and the same thing happens every time: it freezes. I've never had a problem with it before until now and I am extremely frustrated.
    The "Open File" window pops open and all the iMovies start to try to load up. Well, I don't want to open iMovies, I want to open a file that is on my desktop. But I can't click on "desktop;" I can't click on anything. The little rainbow-colored icon starts spinning and Safari freezes up. I thought maybe the computer was just trying to load a bunch of videos, so I went away for a while (nearly an hour), but when I came back, that stupid rainbow-colored disc was still spinning away and I had to force a "quit."
    I have restarted the computer, I have updated the computer, I have checked the Internet Plug-ins (of which I have none. Is this because I emptied the cache and deleted all history? I thought maybe that would help safari, but it didn't), and now I have no idea what to do.
    Thanks for any and all help.

    Hi,
    Check Safari/Preferences - Extensions.
    And empty the Safari cache either from the menu bar, Safari/Empty Cache or Command + Option + E on your keyboard.
    And try restarting your Mac.
    Carolyn

  • Unload file from client to server in APEX

    Hi All!
    I have a file on a client computer.
    I have my APEX application.
    Do you know how to unload file from client computer to server in my APEX application ?
    Best regards,
    Roman

    See if these links help:
    http://download-east.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28839/up_dn_files.htm#CJAHDJDA
    http://concept2completion.net/c2/wwv_flow_file_mgr.get_file?p_security_group_id=727128741744148&p_fname=fileDownload.pdf
    Doug

  • Software Update Scan Cycle not found on Client computer.

    Hi,
    In my organization in some of the client PC's (Windows 7), Software update scan cycle is not found.
    When i checked the UpdateDeployment.log file on client computer it saying
    "Software Updates client configuration policy has not been received."
    "Software updates functionality will not be enabled until the configuration policy has been received. If this issue persists please check client/server policy communication."
    "Software Updates feature is disabled"
    Please help me to solve the issue. Let me know the solution if anyone faced the same problem.
    Thanks in Advance
    Shreyas

    ClientLocation.log
    <![LOG[Assigning client to site 'PP1']LOG]!><time="13:10:54.638-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7844" file="smsclientclass.cpp:501">
    <![LOG[Getting Assigned Site]LOG]!><time="13:10:54.669-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7844" file="smsclientclass.cpp:989">
    <![LOG[Client is currently not assigned to any site]LOG]!><time="13:10:54.669-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7844" file="smsclientclass.cpp:603">
    <![LOG[Removing client site assignments]LOG]!><time="13:10:54.669-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7844" file="smsclientclass.cpp:734">
    <![LOG[Removed pending site assignment to 'PP1']LOG]!><time="13:10:54.669-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7844" file="smsclientclass.cpp:353">
    <![LOG[Raising event:
    instance of CCM_RemoteClient_Reassigned
    DateTime = "20140414074054.763000+000";
    LastAssignedSite = "";
    NewAssignedSite = "PP1";
    ProcessID = 6500;
    ThreadID = 7844;
    ]LOG]!><time="13:10:54.763-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7844" file="event.cpp:706">
    <![LOG[Client is now successfully assigned to site 'PP1']LOG]!><time="13:10:54.779-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7844" file="smsclientclass.cpp:684">
    <![LOG[Setting current Management Point as PUNSCCMPS01.*****.com]LOG]!><time="13:10:54.888-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7844" file="smsclientclass.cpp:923">
    <![LOG[Current AD forest name is *****.com, domain name is *****.com]LOG]!><time="13:11:00.098-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="8076" file="lsad.cpp:818">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="13:11:00.098-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="8076" file="lsad.cpp:896">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:11:00.114-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="8076" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:11:00.114-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="8076" file="lsad.cpp:1364">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:11:01.143-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="8076" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:11:01.143-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="8076" file="lsad.cpp:1364">
    <![LOG[Current AD forest name is *****.com, domain name is *****.com]LOG]!><time="13:11:06.619-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6324" file="lsad.cpp:818">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="13:11:06.619-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6324" file="lsad.cpp:896">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:11:06.635-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="6324" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:11:06.635-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6324" file="lsad.cpp:1364">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:11:06.713-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="6324" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:11:06.728-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6324" file="lsad.cpp:1364">
    <![LOG[Current AD forest name is *****.com, domain name is *****.com]LOG]!><time="13:11:22.843-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7688" file="lsad.cpp:818">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="13:11:22.843-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7688" file="lsad.cpp:896">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:11:22.905-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="7688" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:11:22.921-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7688" file="lsad.cpp:1364">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:11:23.139-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="7688" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:11:23.139-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7688" file="lsad.cpp:1364">
    <![LOG[Current AD forest name is *****.com, domain name is *****.com]LOG]!><time="13:14:39.276-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7152" file="lsad.cpp:818">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="13:14:39.276-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7152" file="lsad.cpp:896">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:14:39.292-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="7152" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:14:39.307-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7152" file="lsad.cpp:1364">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:14:39.354-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="7152" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:14:39.370-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7152" file="lsad.cpp:1364">
    <![LOG[Current AD forest name is *****.com, domain name is *****.com]LOG]!><time="13:14:50.555-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6520" file="lsad.cpp:818">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="13:14:50.555-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6520" file="lsad.cpp:896">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:14:50.586-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="6520" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:14:50.586-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6520" file="lsad.cpp:1364">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:14:50.633-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="6520" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:14:50.633-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6520" file="lsad.cpp:1364">
    <![LOG[Current AD forest name is *****.com, domain name is *****.com]LOG]!><time="13:18:06.954-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="1784" file="lsad.cpp:818">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="13:18:06.954-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="1784" file="lsad.cpp:896">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:18:06.969-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="1784" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:18:06.969-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="1784" file="lsad.cpp:1364">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:18:07.032-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="1784" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:18:07.032-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="1784" file="lsad.cpp:1364">
    <![LOG[Current AD forest name is *****.com, domain name is *****.com]LOG]!><time="13:18:18.341-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7116" file="lsad.cpp:818">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="13:18:18.341-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7116" file="lsad.cpp:896">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:18:18.388-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="7116" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:18:18.388-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7116" file="lsad.cpp:1364">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:18:18.684-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="7116" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:18:18.700-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="7116" file="lsad.cpp:1364">
    <![LOG[Current AD forest name is *****.com, domain name is *****.com]LOG]!><time="13:21:35.739-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="4344" file="lsad.cpp:818">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="13:21:35.739-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="4344" file="lsad.cpp:896">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:21:35.754-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="4344" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:21:35.770-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="4344" file="lsad.cpp:1364">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:21:35.817-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="4344" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:21:35.832-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="4344" file="lsad.cpp:1364">
    <![LOG[Current AD forest name is *****.com, domain name is *****.com]LOG]!><time="13:21:47.423-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6664" file="lsad.cpp:818">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="13:21:47.423-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6664" file="lsad.cpp:896">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:21:47.485-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="6664" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:21:47.501-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6664" file="lsad.cpp:1364">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:21:47.610-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="6664" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:21:47.625-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6664" file="lsad.cpp:1364">
    <![LOG[Current AD forest name is *****.com, domain name is *****.com]LOG]!><time="13:25:47.094-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6664" file="lsad.cpp:818">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="13:25:47.094-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6664" file="lsad.cpp:896">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:25:47.141-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="6664" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:25:47.141-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6664" file="lsad.cpp:1364">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="13:25:47.359-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="6664" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="13:25:47.359-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="6664" file="lsad.cpp:1364">
    <![LOG[Current AD forest name is *****.com, domain name is *****.com]LOG]!><time="15:43:44.652-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="4748" file="lsad.cpp:818">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="15:43:44.655-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="4748" file="lsad.cpp:896">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="15:43:44.673-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="4748" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="15:43:44.676-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="4748" file="lsad.cpp:1364">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="15:43:44.838-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="4748" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="15:43:44.843-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="4748" file="lsad.cpp:1364">
    <![LOG[Current AD forest name is *****.com, domain name is *****.com]LOG]!><time="15:43:52.799-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="4944" file="lsad.cpp:818">
    <![LOG[Domain joined client is in Intranet]LOG]!><time="15:43:52.799-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="4944" file="lsad.cpp:896">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="15:43:53.116-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="4944" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="15:43:53.122-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="4944" file="lsad.cpp:1364">
    <![LOG[Rotating assigned management point, new management point [1] is: PUNSCCMPS01.*****.com (7804) with capabilities: <Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>]LOG]!><time="15:43:53.207-330"
    date="04-14-2014" component="ClientLocation" context="" type="1" thread="4944" file="lsad.cpp:5909">
    <![LOG[Assigned MP changed from <PUNSCCMPS01.*****.com> to <PUNSCCMPS01.*****.com>.]LOG]!><time="15:43:53.209-330" date="04-14-2014" component="ClientLocation" context="" type="1" thread="4944" file="lsad.cpp:1364">

  • How can I display the front panel of the dinamically loaded VI on the cliente computer, the VI dinamically loaded contains files, I want to see the files that the server machine has, in the client machine

    I can successfully view and control a VI remotly. However, the remote VI dinamically loads another VI, this VI loaded dinamically is a VI that allows open others VIs, I want to see the files that contains the server machine, in the client machine, but the front panel of the dinamic VI appears only on the server and not on the client, How can I display the fron panel with the files of the server machine of the dinamically loaded VI on the client computer?
    Attachments:
    micliente.llb ‏183 KB
    miservidor.llb ‏186 KB
    rdsubvis.llb ‏214 KB

    I down loaded your files but could use some instructions on what needs run.
    It seems that you are so close yet so far. You need to get the data on the server machine over to the client. I generally do this by doing a call by reference (on the client machine) of a VI that is served by the server. THe VI that executes on the server should pass the data you want to diplay via one of its output terminals. You can simply wire from this terminal (back on the client again) to an indicator of your choosing.
    Now theorectically, I do not think that there is anything that prevents use from getting the control refnum of the actual indicator (on the server) of the indicator that has the data, and read its "Value" using a property node. I have never tried this idea but it seems t
    hat all of the parts are there. You will need to know the name of the VI that holds the data as well as the indicator's name. You will also have to serve all VI's. This is not a good idea.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Error. your computer must be running a supported version of Microsoft Visio and a browser that supports opening files directly from Visio Web Access.

    I have the following inside my SharePoint server 2013 :-
    EnterPrise Wiki site collection.
    i have both "Excel services Application "& "Visio Graphics Service" running correctly.
    The problem i am facing is as follow:-
    when a user click on an Excel sheet or Visio document , it will be shown inside the browser without any problem.
    but if the user click on "Open in Visio" OR "Open in Excel" links inside the browser, they will get the following errors:-
    Sorry, but to open this workbook, your computer must be running a supported version of Microsoft Excel and a browser that supports opening files directly from Office Web Apps.
    To open this document, your computer must be running a supported version of Microsoft Visio and a browser that supports opening files directly from Visio Web Access.
    I have the following settings inside my PC:-
    Office 2010 for Excel, word, power point,etc.
    Visio 2013.
    i have disabled SharePoint foundation support for office 2013
    Can anyone advice on this please?

    Hi,
    Please try to reset the Internet Explorer settings or open Internet Explorer in In-Private browsing and then check if this issue occurs.
    If the issue persists, please try to access SharePoint in another computer with Office 2013 and then check if this issue occurs. Or repair Office and restart your server.
    Here is a blog about the same issue for you to take a look at:
    http://sharepointexit.blogspot.com/2013/12/sorry-but-to-open-this-workbook.html
    Best Regards
    Dennis Guo
    TechNet Community Support

  • So I have a file on my desktop and I cannot open it, move it to a folder, or delete it from my mac. I dont know what it has in it, and that makes me suspicious. What can I do to remove this unremovable file from my computer? Is it a virus?

    So I have a file on my desktop and I cannot open it, move it to a folder, or delete it from my mac. I dont know what it has in it, and that makes me suspicious. What can I do to remove this unremovable file from my computer? Is it a virus?

    First, I would recommend repairing the hard drive with Disk Utility.
    If that doesn't fix the problem, there's a very dangerous command you can execute in the Terminal.  This is very hazardous, because a simple typo can result in very drastic consequences.  I have seen people erase their entire hard drive by putting a space in the wrong place!  So, please follow the directions I'm going to give you very carefully!
    Open the Terminal, which is found in the Utilities folder in the Applications folder.  In the Terminal, enter the following:
    sudo rm -f
    Make sure to put a space after the "-f"!  Then, drag the troublesome file from the Finder and drop it on the Terminal window.  That should insert the path to the file in the command.  Then go back to the Terminal and press return.  You will be asked for your password, and when you type it, nothing will be shown as a security measure.  Press return again after entering your password.  The file should be deleted.

Maybe you are looking for

  • Error while activating transfer structure and communication structure.

    Hi all, I am getting an error while activating the transfer structure, I have the same datasource comming from a 2nd instance of R/3 and its working fine with the 2nd source. I mean same datasource comming from two R/3 instances and connecting to one

  • SCOM 2012 R2 Error The connector the module is configured for no longer exists

    Hi All, The Microsoft Operations Manager Connector Framework Alert Forwarding module failed to mark an alert for forwarding because the connector the module is configured for no longer exists.  Connector Id: 57a14deb-a74b-520e-ac32-ba8d340d112d

  • Unable to communicate with printer via WiFi

    Laptop is not recognizing printer, stating "unable to communicate with printer at this time.  ! No Printer Selected". There is only one printer and only one to select from. All other laptops, iphones, etc communicate FINE! It is just THIS puter unabl

  • How to change the skin dynamically

    Hi I have six projects in my application.so each project has trinidad.xml file for Skin configuration. My problem is if I changed the skin at one project it should reflect in all other projects . When I moved from one .jxpx in a project to another on

  • Multiple Leads per Account - how are your companies managing this?

    hi Experts Question regarding accounts with multiple leads.  How are other companies handling this in CRM?  Currenlty, we have a two lead types, one captures customer first point of interest with our company and the second type represents all of the