Listing files on FMS server @ client

Hi Everybody!
I want to show list of FLV files placed on FMS server. do u
guys have any sample code for that. Looking forward for reply!
thanks.

Amitpal,
Here is a server side class that list files in 3 ways.
getFiles just returns the content of the folder specifiec.
showFileList returns the content of a folder listing it's
sub-folders and content as an object.
listFiles just returns the recursive sort of the folder.
function FileManager()
trace("#FileManager# constructor");
FileManager.prototype.getFiles = function(p_client, p_path)
trace("getFiles Called");
trace(p_path)
var fileList = new File(p_path);
var temp = fileList.list();
return temp;
FileManager.prototype.showFileList = function(p_client,
p_path)
this.fileList = {folders:"", files:""};
this.folders = new Array();
this.files = new Array();
this.listFiles(p_path, true);
//for(j=0; j<this.fileList.length; j++){
// trace(this.fileList[j]);
this.fileList.folders = this.folders;
this.fileList.files = this.files;
return this.fileList;
FileManager.prototype.listFiles = function(path, listsub)
var curFolder = new File(path);
var files = curFolder.list();
for (var f=0; f < files.length; f++) {
if (files[f].isDirectory && listsub == true) {
this.folders.push(files[f].name)
//this.listFiles(files[f].name, true);
} else {
this.files.push(files[f].name);
// main.asc file
load("FileManager.asc");
application.onAppStart = function()
this.fileManager = new FileManager();
// FileManager Call *from Peldi
Client.prototype.fileManagerCall = function(p_method)
var fileMgr = application.fileManager;
if (fileMgr[p_method] == undefined) {
trace("ERROR: this.fileManager." + p_method + " method not
found");
return false;
} else {
var params = new Array();
params.push(this);
for (var i=1; i<arguments.length; i++)
params
=arguments;
var res = fileMgr[p_method].apply(fileMgr, params);
return res;
//client side
// onConnect event handler for NetConneciton
public function onConnect(evt:Object)
__nc["Application"] = this;
var resultObject = new Object();
resultObject["owner"] = this;
resultObject.onResult = function(returnValue){
//set client side object
this.owner.__fileList:Object = {};
this.owner.__fileList = returnValue;
this.owner.dispatchEvent({type:"connectSuccess",
nc:this.owner.__nc});
// Call fms passing the video folder as a path
__nc.call("fileManagerCall", resultObject, "showFileList",
"folderOfVideos");
// a setter method to store the fileList
public function set fileList(p_list):Void
__fileList = p_list;
var foldArr = [];
for (var i = 0; i<__fileList["folders"].length; i++) {
foldArr.push(getFolder(__fileList["folders"]
this.lessonArray = foldArr;
var vidArr = [];
for (var j = 0; j<__fileList["files"].length; j++) {
vidArr.push(getFile(__fileList["files"][j]));
this.videoArray = vidArr;
// helper methods
private function getFolder(p_folder):Object
trace(p_folder)
var foldObj = {label:"", data:""};
var filePath =
p_folder.substr((p_folder).lastIndexOf("/")+1);
foldObj.label = filePath;
foldObj.data = p_folder;
return foldObj;
private function getFile(p_file):Object
var vidObj = {label:"", data:""};
var vidFilePath = p_file.substr((p_file).lastIndexOf("/")+1);
var vidFile = vidFilePath.substr(0,
vidFilePath.indexOf("."));
vidObj.label = vidFile;
vidObj.data = vidFile;
return vidObj;
Hope this helps...
Shack

Similar Messages

  • Video Freezes when overriding flv files on FMS server

    I have an flash application that captures a web cam video stream and stores it on the FMS server.
    I notice when I create a brand new video, and store it on my FMS server, it works fine.
    When I make another video and my application overrides the file with the new video, this is where I get problems.
    When I download the flv file from the FMS server, and I play it locally it plays fine, but the timeline is weird.
    The web player freezes the video during that first 15 seconds.
    A 30 second video, will have a time line of like 45 seconds, the local flv player is smart enough to skip over the paused part of the video.
    You will see it skip over the timeline to the good video (from 0sec to 15 secs).  The web player freezes the video during that first 15 seconds.
    Any clues that I described that makes you know what is going on?

    Great that gives me a big clue, which asc file do you think I need to look in?
    /mnt/applications/livepkgr/main.asc
    /mnt/applications/multicast/main.asc
    /mnt/applications/live/MemberClips/MemberClips.asc
    /opt/adobe/fms/samples/applications/vod/main.asc
    /opt/adobe/fms/samples/applications/livepkgr/main.asc
    /opt/adobe/fms/samples/applications/multicast/main.asc
    /opt/adobe/fms/samples/applications/live/main.asc
    /opt/adobe/fms/scriptlib/framework.asc
    /opt/adobe/fms/scriptlib/webservices/XMLSchema.asc
    /opt/adobe/fms/scriptlib/webservices/SOAP.asc
    /opt/adobe/fms/scriptlib/webservices/Namespace.asc
    /opt/adobe/fms/scriptlib/webservices/ServiceManager.asc
    /opt/adobe/fms/scriptlib/webservices/XMLSchemaDataTypes.asc
    /opt/adobe/fms/scriptlib/webservices/Log.asc
    /opt/adobe/fms/scriptlib/webservices/XMLUtil.asc
    /opt/adobe/fms/scriptlib/webservices/SOAPConstants.asc
    /opt/adobe/fms/scriptlib/webservices/WSDL.asc
    /opt/adobe/fms/scriptlib/webservices/WebServicesClass.asc
    /opt/adobe/fms/scriptlib/webservices/WSDLConstants.asc
    /opt/adobe/fms/scriptlib/webservices/WebServices.asc
    /opt/adobe/fms/scriptlib/webservices/XMLSchemaConstants.asc
    /opt/adobe/fms/scriptlib/netservices.asc
    /opt/adobe/fms/scriptlib/application.asc
    /opt/adobe/fms/scriptlib/facade.asc
    /opt/adobe/fms/applications/MemberClips/MemberClips.asc
    /opt/adobe/fms/documentation/samples/livestreams/main.asc
    /opt/adobe/fms/documentation/samples/StreamLength/main.asc
    /opt/adobe/fms/documentation/samples/HelloWorld/HelloWorld.asc

  • File Transfer via Server/Client

    What is the quickest way to send a large file (let's just say maybe 250MB or more for example) from a server to a client. Right now I am using a BufferedReader to read the file in line by line and after each line is read in, I use writeObject to send the line out through a stream which is received by the client and each line is written as it is received. It works, but seems to be very slow, even when the client and server are running on the same machine. Any suggestions?

    Maybe FTP, try this, I am not sure...
    http://www.enterprisedt.com

  • Unable to stream SMIL files unless the html page, swf file and the smil ffile are on the FMS server.

    When I place the .swf, smil and http files on the FMS server the SMIL stream test sample works fine
    But When I move the files to my web server I get Connection error.
    This is the same issue discussed in http://forums.adobe.com/thread/554107
    I added a ‘base’ variable but it did not work for me.
    The SMIL file has the correct path to the sample files and FMS server
         <meta base="rtmp://200.200.200.23/vod/" />
    I am able to stream files from my html file on my webserver not the FMS server by pointing to the FMS server at rtmp://200.200.200.23/vod/mp4:sample1_1500kbps.f4v
    Is this a domain security setting? If so, where do I change it?
    If not How do I get FMS to stream SMIL files without installing a webserver with FMS?
    Thanks,

    Hi,
    I think there is bug with that videoPlayer.swf which is used by index.html of webroot folder of FMS to play media files, its not able to parse smil file correctly. I used some other player and used the smil file and kept it on http server other than fms server so it was able to dynamically stream videos. So I would suggest you to create your own player which uses smil file. You can take help from the below link to create player:
    http://www.adobe.com/devnet/flashmediaserver/articles/dynstream_advanced_pt1_05.html
    Regards,
    Amit

  • Socket blocking on read operation while uploading zip file to the server

    I am trying to upload a zip file to the server
    Client thread creates the zip file ( of the modified files) and it even completes writing the data to the socket stream.
    Now if the server thread tries to read the same data from the stream, it blocks on read operation.
    While downloding the zip file from the server works fine.
    Thanks in advance

    You can use the URL object to upload it as multipart/form-data.
    http://forum.java.sun.com/thread.jspa?threadID=579720&messageID=3997264
    Or check out some of the file uploaders out there.
    http://www.google.nl/search?hl=nl&q=site%3Asun.com+upload+applet&btnG=Zoeken&meta=

  • Error... trying to backup files from remote server

    I've tried to backup files from one server (client installed) to tape drive on the administrative server (administrative, media, client) but get an error.
    Backup of administrative server to the same media family was successful. What can be wrong?
    2014/09/29.12:41:47 Transcript for job admin/14.1 running on 1-prim
    2014/09/29.12:41:47
    Backup started on Mon Sep 29 2014 at 12:43:24
    Volume label:
    Volume tag: ABC028
    Volume UUID: da584616-2537-1032-990c-ae2b164578ea
    Volume ID: test_media-000001
    Volume sequence: 1
    Volume set owner: root
    Volume set created: Tue Sep 23 18:10:59 2014
    Volume set expires: Tue Oct 07 18:10:59 2014
    Media family: test_media
    Original UUID: da584616-2537-1032-990c-ae2b164578ea
    Archive label:
    File number: 3
    File section: 1
    Owner: root
    Client host: prgrc01
    Backup level: 0
    S/w compression: no
    Archive created: Mon Sep 29 12:43:24 2014
    Encryption: off
    NDMP_MOVER_LISTEN failed because a listen socket couldn't be created.
    The error reported was "host not found (FSP network database manager)".
    Error: can't tell NDMP mover on 1-prim to listen - I/O error (NDMP client)
    Backup statistics:
    status 23
    devices Drive1
    devices 1
    volumes test_media-000001
    voltags ABC028
    file 3
    host prgrc01
    encryption off
    start_time Mon Sep 29 2014 at 12:43:24 (1411980204)
    end_time Mon Sep 29 2014 at 12:43:32 (1411980212)
    backup_time Mon Sep 29 2014 at 12:43:24 (1411980204)
    entries_scanned 0
    kbytes_scanned 0
    entries_excluded 0
    entries_skipped 0
    mount_points_skipped 0
    files 0
    directories 0
    hardlinks 0
    symlinks 0
    sparse_files 0
    filesys_errors 0
    unknown_type 0
    file_kbytes 0
    dev_kbytes 6
    dev_iosecs 0
    dev_iorate 7.2 KB/S
    wrt_iosecs 8
    wrt_iorate 896.0 B/S
    physical_blks_written 0
    write_errors 0
    physical_blks_read 0
    read_errors 0
    error_rate 0%
    path / incomplete

    I've resolved the problem. There was a mystake in client host name.

  • How do I set up file sharing in Lion Server to work like file sharing in Lion Client?

    I've just installed Lion Server on my home iMac to enable remote access via VPN to my home network.
    When the iMac was running Lion Client (before the upgrade to server), and when File Sharing was enabled on the iMac; when other Macs on the LAN connected to the iMac via AFP, they were always able to connect to (share) any mounted external volumes (external USB or FireWire drives connected to the iMac). e.g.
    Now that I've upgraded to Lion Server, when other Macs on the LAN connected to the iMac via AFP they are only able to connect to (share) the sharepoints listed in the File Sharing pane of Server.app. e.g.
    Is there any way to set up File Sharing in Lion Server so that it works the same way as it does in Lion Client with respect to mounted external volumes? i.e. they are automatically shared? I know I can add each volume manually to File Sharing in Server.app but this gets tedious.
    Many thanks!

    I normally have a Firewall enabled. I recently had to do an erase and install of Lion, followed by a one-by-one re-install of all of my software. One of the first things I did was to set up all of my System Preferences the way I like them; Turning the Firewall on was one of them. Later I noticed it was off and turned it on again. I had already set up sharing and was surprised to see the problem when I turned it back on.
    As to why do I think it needs to be on. It is another part of my security layer.

  • Process to automatically upload Denial List file from service provider in GTS server.

    Hi Experts,
    At present we manually perform the uploading of denial list file provided by service provider manually.
    We first download it ,then upload it through menupath SAP Compliance Management-->SPL Screening--> Master Data-->Load Sanct. Party Lists from XML File
    I heard there is a setting for automatic upload of the files.
    There is a path SAP Compliance Management-->SPL Screening--> Master Data-->SPL Screening--->Control XI Inbound Processing
    where we need to Manintain
    Service --BP Number--Data Obj -- LR
    Can the experts please throw some light on what should be the process flow ,and what further configuration or Program needs to be created .
    This will help me in moving forward with this..
    Thanks & Regards
    Amit

    Hi Amit,
    You can automate upload of xml files received from data providers related to SPL by using the SAP PI functionality.The process is as follows
    Data provider places delta SPL xml files in FTP server and they will provide login credentials specific to your client.you need to write a batch job to read the file from FTP location and place it in your clients firewall.once it's in your client firewall you need to run another batch job to upload into GTS system.
    SAP has provided the following standard PI proxy  /SAPSLL/II_SPL_UPDATE_IN as an RFC enabled function module /SAPSLL/CON_SPL_XML_INBOUND for this requirement.
    Additionally you need to maintain the above configuration which you have mentioned.
    Regards,
    Hari Challa.

  • Encrypted packets between server - client (swf file)

    hello guys,
    can some1 know how can i decrypt some packets which are sended between server - client (swf file) ?
    ty

    You shouldn't need to sync u/gid's. 
    The first thing that comes to my mind here is simple filesystem perms.  To test I would make the shared dir world/group readable/writeable - IE chmod 777 /my/shared/folder. then try connecting from the remote client.  Remember, there are two sets of access permissions...Share level and filesystem level.
    You can do user/group mapping if you're in a Windows AD or domain environment, but with stand-alone Samba servers this is not necessary.
    I would also check the samba check list at the following link for a decent, simple set of items to look at for basic troubleshooting...
    http://us3.samba.org/samba/docs/man/Sam … nosis.html

  • Show Network Users (as List) not working consistently (10.5 server/client)

    I am running an Xserve with 10.5.5 Server as an Open Directory Master. When I go to the Computer Group the clients are listed in and set the preference to show network users as list on the loginwindow, the clients are not constantly displaying the list. Network Accounts are available on the client and typing the username in Other is also logging in.
    What I think is strange is that my custom heading always displays, so I know I'm getting at least some of the mcx settings on the client. This was not a problem with 10.5.4 client/server combo. If only local accounts are listed, you can restart and 50% of the time the network users show up in the list. You can also log in as a local user and log out, this will sometimes refresh the list to display network users. However, whether or not the users are displayed in the list, network accounts are always available and can login via Other.
    Does anybody know what I can do to fix the problem? It is an elementary school environment, so it is not feasible to have kindergarten students to type out their names every single time.
    One possible solution I came up with is to replace the 10.5.5 loginwindow on the client with the 10.5.4 version, but 10.5.5 supposedly fixes a lot of problems with it. Are there any negative consequences that could occur from doing this besides the fact that I lose the security fixes to the 10.5.5 version? I know that my 10.4.11 clients do not experience this problem, so I'm guessing that the 10.5.4 loginwindow might just work, but wanted to see if anyone knew of any issues in doing this.
    I have also written a program that manages our clients for automated naming, image OS version assignment with NetRestore, and generate import files that create computer and computer list records for Workgroup Manager. This information is stored in a MySQL database and the program I wrote generates files that are imported into Workgroup Manager for list assignment. The computer lists are generated by room number, and computers are assigned names with their corresponding room number and placed in the appropriate computer list. In 10.5, I see that there is a push for Computer Groups rather than Computer Lists. However my program assigns computers to lists using the computer record name rather than the generated uid of the computer record like the computer group expects. From what I understand, the only benefit to Computer Groups is that you can include other Computer Groups within Computer Groups. Does this create any issues for mcx management? I have tried both groups and lists and have the same problem with loginwindow network user lists on 10.5.5.
    Another question I have is how do you change the Cache settings now in WGM? In 10.4.11, there was a "Cache" tab where you could force clients to refresh the MCX cache after x amount of time, but the tab has been removed in 10.5. Can I add that mcx flag to Open Directory and have my 10.5 clients respect the policy, or has this been outdated in 10.5?
    Thanks,
    Chris Bethel
    Hamilton County Dept. of Education
    Chattanooga, TN
    [email protected]

    Thanks for your reply, it gave me an idea that seems to be working so far:
    This is not feasible for anything other than an elementary school with network homes. It is extremely insecure but when you need a working product, you pretty much gotta do what you gotta do. Here's what I've done:
    1. I created a local administrator user with the name "@ Refresh List" with short name "refreshlist" with no password.
    2. Launch Script Editor (in /Applications/AppleScript/Script Editor) and paste this code:
    do shell script "rm -Rf '/Library/Managed Preferences'" password "" with administrator privileges
    do shell script "killall loginwindow" password "" with administrator privileges
    3. Save with file format set to Application, check "Run Only" and uncheck all other boxes to somewhere the user home folder.
    4. In the Accounts pane of System Preferences, select the "@ Refresh List" user and go to the Login Items tab.
    5. Drag in the application you just saved.
    6. Quit System Preferences and log out.
    This is EXTREMELY bad for security, but since its elementary school students and network home folders, there's not much for them to mess up. It provides a 1-click process to updating the much needed list.
    Also -- I've tried swapping out loginwindow with 10.5.4 and experienced the exact same result.
    My fix is quick and dirty, but gets the job done.
    Does anyone else have any suggestions?
    Message was edited by: WollarinTJ

  • I have a few collections, but not all PC's in those collections are listed in "All Desktop and Server Clients".

    I have a few collections, but not all PC's in those collections are listed in "All Desktop and Server Clients". Does anyone happen to know the reason for this? It should have at least the same number of clients as the largest collection.
    Thanks,
    James
    James A+, Network+, MCP

    Hi James,
    The All Desktops and Server collection only contains devices that show client=yes.
    Meaning the Configuration Manager client is installed on those devices.
    This WQL query will give you a collection of all devices that do not have the client installed.
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where (SMS_R_System.Client is null or SMS_R_System.Client = 0) and SMS_R_System.Name != 'Unknown'
    Another handy collection is all clients that are inactive (No communication for the default 7+ days)
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_CH_ClientSummary on SMS_G_System_CH_ClientSummary.ResourceId = SMS_R_System.ResourceId where SMS_G_System_CH_ClientSummary.ClientActiveStatus = 0
    I normally create both and then a third collection of all devices and exclude the above two which should show you all healthy devices.
    Have a look at the ccmsetup.log file on the client if it has attempted to install the ConfigMgr client but failed.

  • How can i load file into database from client-side to server-side

    i want to upload file from client-side to server-side, i use the following code to load blob into database.
    if the file is in the server-side, it can work, but if it in the client-side, it said that the system cannot find the file. i think it only will search the file is in the server-side or not, it will not search the client-side.
    how can i solve it without upload the file to the server first, then load it into database??
    try
    ResultSet rset = null;
    PreparedStatement pstmt =
    conn.prepareStatement ("insert into docs values (? , EMPTY_BLOB())");
    pstmt.setInt (1, docId);
    pstmt.execute ();
    // Open the destination blob:
    pstmt.setInt (1, docId);
    rset = pstmt.executeQuery (
    "SELECT content FROM docs WHERE id = ? FOR UPDATE");
    BLOB dest_lob = null;
    if (rset.next()) {
    dest_lob = ((OracleResultSet)rset).getBLOB (1);
    // Declare a file handler for the input file
    File binaryFile = new File (fileName);
    FileInputStream istream = new FileInputStream (binaryFile);
    // Create an OutputStram object to write the BLOB as a stream
    OutputStream ostream = dest_lob.getBinaryOutputStream();
    // Create a tempory buffer
    byte[] buffer = new byte[1024];
    int length = 0;
    // Use the read() method to read the file to the byte
    // array buffer, then use the write() method to write it to
    // the BLOB.
    while ((length = istream.read(buffer)) != -1)
    ostream.write(buffer, 0, length);
    pstmt.close();
    // Close all streams and file handles:
    istream.close();
    ostream.flush();
    ostream.close();
    //dest_lob.close();
    // Commit the transaction:
    conn.commit();
    conn.close();
    } catch (SQLException e) {

    Hi,
    Without some more details of the configuration, its difficult to know
    what's happening here. For example, what do you mean by client side
    and server side, and where are you running the upload Java application?
    If you always run the application on the database server system, but can't
    open the file on a different machine, then it sounds like a file protection
    problem that isn't really connected with the database at all. That is to
    say, if the new FileInputStream (binaryFile) statement fails, then its not
    really a database problem, but a file protection issue. On the other hand,
    I can't explain what's happening if you run the program on the same machine
    as the document file (client machine), but you can't write the data to the
    server, assuming the JDBC connection string is set correctly to connect to
    the appropriate database server.
    If you can provide some more information, we'll try to help.
    Simon
    null

  • Sending Files from a server to a client (PrintWriter)

    I've only been using Java for a few months and this may be in the wrong forum (sorry if it is)... but I've run into a bit of a problem.
    I've recently been asked to create Excel files using database records and output a file (HTML table) to a client's machine that is logged onto the web server. The thing is that we don't want to create (temporary) server files and just want to send the data straight to the client. For this, someone suggested using the HTTP Response PrintWriter. I'm having a couple of problems getting things working correctly:
    1) IOException: After committing the output stream to the client (eg pWriter.flush();) and trying to forward the user to a new page I'm getting an IOException saying that the "response cannot be forwarded once it is already committed". This is as per the Java 1.4 documentation, so OK... but is there any way around it? i.e. after sending the data to the client can I automatically send them to another page or refresh the current one?
    2) Loss of data: If the user does not save the file more or less as soon as the save/open dialogue appears on the screen, a lot of the data is being lost, with just ~150 out of 3000 records being sent to the client in the file. Any ideas why this might be? Presumably writing the data to a temporary file on the server then "copying" this over the PrintWriter to the client would solve this problem... but as stated above, we don't really want to be creating files in the clustered server environment (for some reason they don't usually seem to be getting deleted!?!)
    Bit of Background Info: The records are being read from the database at 500 records per time, stored in an ArrayList in the pageFlow. The ArrayList is then "iterated" through and the Excel/HTML table row is created for each record in turn (using the pWriter.println() method). The PrintWriter is flushed and closed after the entire Excel file has been written to the PrintWriter. I then try and forward the user to the same page (i.e. refresh the page) so that the buttons are re-activated and some on-screen information is updated (this leads to problem (1)).
    Also, I'm currently setting the Response Header property "Content-Disposition" to tell the client that the PrintWriter is sending an attachment (thus making the save/open dialogue box appear and a default filename being used), but I've noticed that this property is supposed to have been Depreciated some time ago... can anyone tell me what I should be using instead? The websites I've looked at don't seem to give me this info (maybe I'm just missing the obvious!?!)
    Hope that all makes sense, any help appreciated!

    Have any sample code?

  • 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

  • Path does not exit - While trying to save file on SharPoint Server 2013 from client machine

    Hi,
    I have installed Microsoft SharePoint Server 2013 Enterprise Edition on my testing Lab environment (On VM Workstation 10) on Windows Server 2012 with SQL server 2012, I can access all files stored at SharePoint Server from any physical machine, I can share
    a single file among different people to work simultaneously, but here i stuck on saving any file from client machine to directly on SharePoint Server, Attached is the snap shot, whenever I try to save any file directly It says Path Does Not Exist, If I drag
    and drop any file directly to SharePoint I do not see any error message.
    I read from different posts that I need to Enable Desktop Experience Feature on Server 2012, which I installed but no positive result gained :(
    I will appreciate for any possible help?
    Ali

    Hi Ali,
    Please try disabling the protected view per the link below and test the issue again:
    http://social.technet.microsoft.com/Forums/en-US/b8381a19-3394-406f-8adb-1976f45460ef/path-does-not-exit-while-trying-to-save-file-on-sharpoint-server-2013-from-client-machine?forum=sharepointgeneral
    You could simply type the url as http://sp/sites/sitename in the Filename place.
    Regards,
    Rebecca Tu
    TechNet Community Support

Maybe you are looking for

  • Hp officejet pro 8610 | does not print and cannot connect it wireless

    Just bought the following printer: Officejet Pro 8610. Installed it with the cd. Installation on the printer goes well, connected to network, strong reception. 1) Cannot make a wireless connection from laptop to printer. Followed all the steps, unins

  • The iphone cannot be synced. An unknown error occured (-50).

    I recently Restored my iphone to 4 weeks back (bonehead move that I didn't know would erase all my apps/texts/photos/pretty much everything) and now I'm left trying to sync all my apps again from iTunes.  Everytime I try and sync them, i get the erro

  • SUP 2.0 Installation problem -SUP services dont start after installation

    Hi, I have installed a licensed version of "SUP 2.0 Personal developer 32 bit" on my machine from https://sybase.subscribenet.com. I installed 4 RAR files (sup0200_dev1_win to sup0200_dev4_win) of around 1.66 GB. I have unzipped all the sub-folders i

  • Route Engine Problem, Please help

    Hi Oracle Spatial Route engine document introduces that in Route Request DTD, it is possible to write a route request that <Start Location> as below: <start_location> <input_location id="1"> <Point> <coordinates> -122, 37 </coordinates> </Point> </in

  • Capturing video of a simulation....!

    Hi guys...! I'm working on a simulation program, but I want to make a video of the simulation and save it on a disk...so that my boss could play the video during a conference meeting. It's a simulation game that runs on my computer. Any idea on how t