Menu
  • HOME
  • TAGS

Alfresco Sharing Content Store

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...

Share script when sharing google spreadsheet with option “anyone with a link”

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....

How to get client file name on server side before copying data

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...

OpenTok and File Sharing

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...

sharing an editable edge animate file

adobe,file-sharing,adobe-edge

Send the *.an file, or create a template which will give you a *.antmpl file To open a *.antmpl, create from template, import, select...

Unable to Send Selected Image Using Share Intent

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....

How to allow App Users to share files in-between each other (like share-contact)

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...

How to give users temporary access to specific links?

php,.htaccess,file-sharing

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...

PeerJS/WebRTC connection fails on rapid chunks transmittion

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...

Share files with between group of user using Microsoft Live sdk

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...

Process.start on network drive, ask for authentication

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: Sharing common files between apps

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. } ...