alfresco,conflict,alfresco-share,file-sharing
Alfresco can be divided in two areas, filesystem and DB holding metadata. From the filesystem point of view I cannot imagine how an index could cope with two applications writing on it concurrently. Also, I don't think alfresco can lock filesystem element while accessing it. From the database point of...
google-apps-script,google-spreadsheet,file-sharing
Permissions for a Spreadsheet and permissions for scripts are not the same thing, as you've found. Only custom functions can be run anonymously, all other types of scripts require an authenticated user of some sort, and possibly authorization to access private data. Adding menus will require a logged in user....
c#,sockets,client-server,filestream,file-sharing
Without code and a more precise description, it's hard to know what you actually need here. But, if I understand correctly you have a scenario where a client endpoint is reading a local file and sending the data to the server endpoint, and the server endpoint is using a NetworkStream...
webrtc,file-sharing,opentok,videochat,tokbox
There are several ways to get the peers to send files to each other. A first way is to upload the file to your server or to some cloud storage service. Then share the link to the other peers via OpenTok's Signaling API (which is, presumably, an abstraction over WebRTC's...
Send the *.an file, or create a template which will give you a *.antmpl file To open a *.antmpl, create from template, import, select...
java,android,android-intent,file-sharing
The error is at this line : Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.id.full_image_view); In this method the second argument is the resource id of the Drawable not of the ImageView. Instead you should do this : ImageView image = (ImageView) findViewById(R.id.full_image_view); Bitmap bitmap = ((BitmapDrawable)image.getDrawable()).getBitmap(); It should work....
ios,iphone,file-sharing,fileshare
There are a number of ways to do this, I strongly recommend using a web service to perform the communication between applications. You can use a REST API (examples on how to develop your own API here) so your users can upload the files, and other users can download these...
You can use a timestamp + a protection hash, example: When you create the link you do something like this: define('SECRET',"onlyknownbyyourserversidescipt"); $now = time(); $protect = md5($now.SECRET); $link = 'http://what.ever/?'.http_build_query(array('t'=>$now,'p'=>$protect)); When the link is opened you check if the time match the protected if(md5($_GET['t'].SECRET) === $_GET['p']){ //then you can check...
javascript,webrtc,file-sharing,chunks,peerjs
Good News everyone! It was a buffer overflow of DataChannel problem, thx to this article http://viblast.com/blog/2015/2/25/webrtc-bufferedamount/ bufferedAmount is a property of DataChannel(DC) object which in the latest Chrome version displays amount of data in bytes being currently in buffer, when it exceedes 16MB - DC is silently closed. Therefore anyone...
onedrive,file-sharing,live-sdk,onedrive-api
The OneDrive API support the creation of sharing links, which would be easy to send to the group that you want to give access to a specific file or folder. These links do not expire, however they can be revoked. Here is an example of the kind of request you...
c#,windows-authentication,file-sharing,windows-networking,shared-resource
This code works fine for me Process process = new Process(); process.StartInfo.FileName = @"\\existing_network_host\path"; process.StartInfo.UseShellExecute = true; process.StartInfo.ErrorDialog = true; process.Start(); The keey difference is true value for StartupInfo.ErrorDialog...
ios8,file-sharing,ios8-extension
You can do it using Application Group Container Directory: NSFileManager *fm = [NSFileManager defaultManager]; NSString *appGroupName = @"Z123456789.com.example.app-group"; /* For example */ NSURL *groupContainerURL = [fm containerURLForSecurityApplicationGroupIdentifier:appGroupName]; NSError* theError = nil; if (![fm createDirectoryAtURL: groupContainerURL withIntermediateDirectories:YES attributes:nil error:&theError]) { // Handle the error. } ...