Using cloud for client content download?...

I remember reading when signing up for cloud about using cloud to post files for others to download. I read it as though it could be used in the same fashion as yousendit. I see where you can create folders and post files, however I don't see anything regarding security or passwords. Did I misread this or am I not looking in the right place?
Thanks to all for reading.

Currently you can only share individual files and not folders. Also a file is either private (only accessible to you) or public (accessible to anyone who has the url). Improved sharing and collaboration are coming as noted in this Creative Cloud blog post http://blogs.adobe.com/creativecloud/coming-soon-to-creative-cloud/.

Similar Messages

  • Storing documents for clients to download

    Hello,
    I need to store several 2 to 3 page pdf documents for clients to download. I am not sure how to do this. Do I store these documents in my assets folder and then have a separate web page with the addresses to the individual documents in this assets folder?
    Or am I missing something?
    Thanks for your help.

    Thanks for the reply. Just so I am clear and doing this correctly: is it best set up a folder within assets and name it "documents" or "docs"? And then my link includes the individual document. So ...documents/page1.pdf
    Yes, that'll work fine.
    You can store your PDFs anywhere on the server provided the link to that document is a valid one ie. the server can find it when the link is clicked.
    And in terms of protecting the contents for clients only, is there a specific software product that you would recommend using? I am asking this because many people can be downloading the pdf but only after they sign in to our web site and request the document(s).
    No, there's no particular software required. You can find many scripts online to assist with this kind of protection.
    How do people sign into your website? Do you have a members only area? Would you place the PDFs inside the members only area?

  • I already updated! The version iOS 6.0.1 without include me the McTube or MxTube. The McTube free I was using, capacity for 10 videos download only. I need McTube Pro free! What's your Idea?

    I already updated! The version iOS 6.0.1 without include me the McTube or MxTube. The McTube free I was using, capacity for 10 videos download only. I need McTube Pro free! What's your Idea?

    I already updated! The version iOS 6.0.1 without include me the McTube or MxTube. The McTube free I was using, capacity for 10 videos download only. I need McTube Pro free! What's your Idea?

  • Want to add "download" feature for clients to download their photos

    Good morning all!
    I am learning as I go and putting together my website for my photography business. I want to add the functionality for clients to be able to download full resolution versions of photos from my sessions with them - versus me having to email them to them a few images at a time due to size restrictions on email servers.
    It would be great if I could have a client log in area where they could select their session from a drop down menu and download their photos.
    I have found a way to insert menus with html snippet.
    I believe I could add a form for clients to use when selecting files to download from JotForm
    I don't know what the next steps would be....
    any and all guidance most appreciated.
    Thank you
    Julie

    Slideshow supports displaying IPTC data.
    In the Slideshow module,  in the tool bar, find the ABC and click. To the right of the ABC a text box will appear, preceded with “Custom Text” .  Click on “Custom Text” for a list of options and select “edit”.  At the bottom of the dialog box will be choices from the IPTC Data including Title and Caption.  Just add that data in the Library Module right panel under Metadata and then you can display it in the slide show. The Slideshow right panel gives you control over the color, opacity, font and face in a section titled “Text Overlays”
    Bob McAnally

  • Can't use Cloud for photo, graphics, or video.  What now?

    I work for a federal agency that has a bunch of aging Adobe products.  All need updating.  We are not authorized to use cloud-anything for this requirement.  What options do we have?  We have to install the software locally and perhaps have a site license.  Are there any options other than using the cloud?  Thx.

    Adobe still sells CS6 products if what you have is older than that... if not, CS6 is as far as it goes until you hit the Cloud.
    You should contact Adobe Support directly to see what options are available to you for licensing.
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    Chat Support | For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Get chat help with orders, refunds, and exchanges (non-CC)
    http://helpx.adobe.com/x-productkb/global/service-b.html ( http://adobe.ly/1d3k3a5 )

  • Client Server program using Applets for client

    Creating a client server program using Applets for the clients.
    Having problems distrubting the message from client to client
    using ObjectOutputStreams/ObjectInputSteams.
    I can connect each client to simple server and respond with by writting
    the i/o stream of each client but unable to communicate from client to client. If any one out there has in tips of creating a class of objectOutputStreams that holds a array of ObjectOutputStreams and then broadcasts the message to every client, it would be much appreciated
    Thanks.

    Cheers poop for your reply
    I never explained the problem properly. What it is I am trying to set up a Client Server program using Applets as the clients GUI. The problem is broadcasting the message to multiply client connnection(s).
    Below is code, each client can connect and send message to the server. The problems is broadcasting the message to every client connection. The every client can input a message but only the last connected client can receive the message?????? Thanks in advance..
    /*this my server class */
    import java.io.*;
    import java.net.*;
    public class Server extends JFrame
    private static final int ServerPort=8080;
    private static final int MaxClients=10;
    private ObjectOutputStream output=null;
    private ObjectInputStream input=null;
    private BroadCastMessage broadcastMessage;
    public void runServer()          
    BroadCastMessage broadcastMessage= new BroadCastMessage();
    try
    {  //connect to server
    ServerSocket s = new ServerSocket(ServerPort,MaxClients);
         //listen to port 5000 for new connections
         ///max is 25
         System.out.println("Server listening on port "+ServerPort);
    while (state.isProgramRunning())
         try
         /// sGUI.waitForConnection();//new line
         s.setSoTimeout(100);
         //enable times in server-socket
         while (true)     
         Socket incoming = s.accept();
         //wait and accept connnections from serverSocket
         //instance of the class,pases the new connection and message
         //spawn as a thread
         SocketConnection connection=new SocketConnection(incoming,broadcastMessage);
         Thread a = new Thread(connection); a.start();
         System.out.println(state.getConnectionCount()+"Connection received from :"+incoming.getInetAddress());
         catch(InterruptedIOException x){}
    while (state.getConnectionCount()>0);
    System.exit(0);
    }catch (IOException e){}
    public static void main(String[] args)
    Server s =new Server();
         s.runServer();
    /*this is my socket connection thread*/
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    public class SocketConnection implements Runnable
    private ObjectOutputStream out;
    private ObjectOutputStream output=null;
    private ObjectInputStream input=null;
    private BroadCastMessage passOnMessage;
    private Socket theConnection=null;
    private String Inmessage="";
    private int Ocount;
    public SocketConnection(Socket caller,BroadCastMessage broadcastMessage,Ocount)
    theConnection =caller;///(5000,n)
    Ocount=ncount;
    passOnMessage=broadcastMessage;
    public void run()
    try
    getStreams();
    processConnection();
    catch(Exception e)
    {String clientDetails=("connection from IP Address: "+theConnection.getInetAddress());}
    private synchronized void getStreams() throws IOException
    { //get streams to send and receive data
    //set up output buffer to send header information
    ///Ocount++;
    //create new objectoutputstream
    output=passOnMessage.getOutputObject(output,theConnection,Ocount);
    ///flush output buffer to send header info.
    Ocount++;
    //set up input stream for objects
    input =new ObjectInputStream(
    theConnection.getInputStream());
    System.out.print("\nGot I/O streams\n");
    private synchronized void processConnection()throws IOException
    //process connection with client
    String Outmessage =" count : "+status.getConnectionCount();
    //send connection successful message to client
         Outmessage=Outmessage+"SERVER>>>Connection successful";
         output.writeObject(Outmessage);
    output.flush();
    do ///process messages sent from client
         try
         Inmessage = (String) input.readObject();
         System.out.println(Inmessage);
         /* //while the connection is open each line
         that is passed from the client to the server
         is read in and is displayed*/
         messageDetails.setMessage(Inmessage);
         String CurrentMessage=messageDetails.getMessage();
         //output.writeObject(CurrentMessage);
         // output.flush();
         passOnMessage.FloodMessage(CurrentMessage);
         //sending out the message
    catch(ClassNotFoundException classNotFoundException){}
    }while (!Outmessage.equals("CLIENT>>>TERMINATE"));
    /*this my attempt at broadcasting the message to all clients
    my thinking was that you could create a array of objectoutputstreams
    which in turn could be broadcasted(bit confussed here)*/
    import java.io.*;
    import java.net.*;
    public class BroadCastMessage /// implements Runnable
    private int count;
    private String Inmessage="";
    private ObjectOutputStream temp=null;
    private ObjectOutputStream[] output = new ObjectOutputStream [12];
    //temp level of array of objects
    public BroadCastMessage()
    count=0;
    public synchronized void FloodMessage(String message) throws IOException
    System.out.print(count);
         for(int i=0;i<count+1;i++)
         try
    {  System.out.print(count);
         output[count].writeObject(message);
         output[count].flush();
         catch(IOException ioException)
    {ioException.printStackTrace();}
         notifyAll();
    public ObjectOutputStream getOutputObject(ObjectOutputStream out,Socket caller,int Ocount)
    try
    { temp = new ObjectOutputStream(caller.getOutputStream());
         AddObjectOutputStream(temp,Ocount);
    ////FloodMessage();
         catch(IOException ioException)
    {ioException.printStackTrace();}
    return temp;     
    public void AddObjectOutputStream(ObjectOutputStream out,int Ocount)
    { ///add new object to array
    count=Ocount;
    output[count]=out;
    System.out.print("\nthe number of output streams : "+count+"\n");
    }

  • Use JNLP for instant class download :

    IS JNLP (Web Start) good for the following purpose.
    For enterprise application development. If I have a download server A and bunch of client B1, B2, B3 ...
    When client boot up, they register themselve to A. When clients are running, if it found out something changed or new, it can go to A to download.
    I am talking about no user interaction at all, the application in clients are going to be launchedn when machine power up. After that, all the class download shall automatically happend.

    Hi !
    It's me again. I am also wondering if I can download java class when wanted programmatically instead of using the Browser.
    Can I download class without using Web Browser?
    David.

  • Why not keep Forms Central as a separate product to stand and sell on its own. I use it for client information to process their data-ptocessing in my mailing business; do not need or want electronic tabulation. I would be happy to pay several hundred doll

    I use a Forms Central form to ask questions of clients to return with their mailing database; tabulation is not wanted or required. From the answers and boxes marked, I have most or all the information to process data in accordance with the United States Postal Service. After, I return the data and paperwork including eDoc worked so that my company wins, the US Postal Service and my client (and possibly their client) wins! If Forms central was simply an interactive forms builder used for direct B2B or B2C information, it would be a winner. If I wanted SurveyMonkey, then would get it but I and others like me do not need or want tabulation services as I assume Adobe looked at Forms Central as a cash cow; it isn't that at all for me.

    I use a Forms Central form to ask questions of clients to return with their mailing database; tabulation is not wanted or required. From the answers and boxes marked, I have most or all the information to process data in accordance with the United States Postal Service. After, I return the data and paperwork including eDoc worked so that my company wins, the US Postal Service and my client (and possibly their client) wins! If Forms central was simply an interactive forms builder used for direct B2B or B2C information, it would be a winner. If I wanted SurveyMonkey, then would get it but I and others like me do not need or want tabulation services as I assume Adobe looked at Forms Central as a cash cow; it isn't that at all for me.

  • I want to use cloud for all my apple products

    I have a Mac OS version: 10.5.8, an ipad2, and an iphone4S and i want to connect all apple products via cloud.  Ive tried to buy os mountain lion and think my mac is too old.  Is there a way for me to access cloud.
    TA!

    Lion is no longer in the Mac App Store, but you may be able to get it on a USB stick from Apple (try their telephone sales or an Apple store).
    iCloud is a mixed bag in my view.  If you mainly want to use emailsee:
    http://www.wilmut.webspace.virginmedia.com/notes/icloudmail.html
    AC

  • Do I have to use cloud for photoshop

    I thought that I could buy photoshop as a stand alone product for editing - now it just seems to come in packages with 'cloud'.  I do not want to use it on a machine connected to the internet is there an alternative to monthly subscription?

    Hi Ourmother,
    Please try the below link to purchase the standalone CS6 Photoshop.
    http://www.adobe.com/ca/products/catalog/cs6._sl_id-contentfilter_sl_catalog_sl_software_s l_creativesuite6.html?promoid=KFTMT
    Thanks

  • Use WEBUTIL for upload and download file to/from Database

    Dear friends
    I have a table with three columns (id , name , myDoc) myDoc is a BLOB, I would like upload word documents or PDFs or images to myDoc column, I use Oracle Form 10g, I try to use webutil to solve my problem, but I couldn't, Please help me.
    Thanks

    # Details
    # transfer.database.enabled : Can be TRUE or FALSE - allows you to disable
    # upload and download from the database server.
    # transfer.appsrv.enabled : Can be TRUE or FALSE - allows you to disable
    # upload and download from the application
    # server.
    # transfer.appsrv.workAreaRoot: The root of the location in which WebUtil can
    # store temporary files uploaded from the client.
    # If no location is specified, Application Server
    # user_home/temp will be assumed.
    # This location is always readable and writable
    # no matter what the settings in
    # transfer.appsrv.* are. This setting is
    # required if you need the Client side
    # READ/WRITE_IMAGE_FILE procedures.
    # transfer.appsrv.accessControl:Can be TRUE or FALSE - allows you to indicate
    # that uploads and downloads can only occur from
    # the directories named in the
    # transfer.appsrv.read.n and
    # transfer.appsrv.write.n entries and their
    # subdirectories. If this setting is FALSE,
    # transfers can happen anywhere.
    # transfer.appsrv.read.<n>: List of directory names that downloads can read
    # from.
    # transfer.appsrv.write.<n>: List of directory names that uploads can write
    # to.
    #NOTE: By default the file transfer is disabled as a security measure
    transfer.database.enabled=true
    transfer.appsrv.enabled=true
    transfer.appsrv.workAreaRoot=
    transfer.appsrv.accessControl=TRUE
    #List transfer.appsrv.read.<n> directories
    transfer.appsrv.read.1=c:\temp
    #List transfer.appsrv.write.<n> directories
    transfer.appsrv.write.1=c:\temp

  • Using FaceTime For Clients in Travel Company

    We own a travel agency in Canada with clients across Canada and US - We would like to use faceTime interact with our clients.  Is this possible?

    Hi there,
    Tagging was an error on my part!  Your assistance is helpful and appreciated.  We have Facetime up and running on several agents computers.  I was wondering if it is a viable way to communicate (via video) with clients.  I appreciate that only Mac, Iphone, Ipad & Itouch users can use this service. Also aware that they (client) would have to add us to their 'Contacts List!'
    A large hotel chain in the US (Starwood) offers Facetime by their clients calling a toll-free number.  When I call this same number it does not work from my Mac computer (i verified this number does work by calling it!).
    ... http://www.starwoodhotels.com/alofthotels/newsevents/news/detail.html?mode=press ReleasesDetail&id=FaceTime01102011
    Any thoughts would be appreciated. 
    P.S. All of our agents would be suing their iMac for Facetime interaction!.
    David

  • Using Contribue for web content management

    I am trying to find out if Contribute/Dreamweaver can be used
    to perform web site content management functions. In particular, I
    need to know if web page publication dates can be controlled, i.e.
    is it possible to specify a future date for publication of a
    specific page? I think Contribute can do this when posting to a
    blog but it's not clear if web pages can be managed in this way as
    well. Any help gratefully received....

    Hi,
    No such functionality is available in Contribute or
    Dreamweaver till now. We will track the same as Enhancement
    request.
    Thanks and Regards,
    Radhika

  • Using Dreamweaver for web content management

    I am trying to find out if Dreamweaver/Contribute can be used
    to perform web site content management functions. In particular, I
    need to know if web page publication dates can be controlled, i.e.
    is it possible to specify a future date for publication of a
    specific page? I think Contribute can do this when posting to a
    blog but it's not clear if web pages can be managed in this way as
    well. Any help gratefully received....

    > is it possible to specify a future
    > date for publication of a specific page?
    No.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "webtalk08" <[email protected]> wrote in
    message
    news:g0eogn$5lr$[email protected]..
    >I am trying to find out if Dreamweaver/Contribute can be
    used to perform
    >web
    > site content management functions. In particular, I need
    to know if web
    > page
    > publication dates can be controlled, i.e. is it possible
    to specify a
    > future
    > date for publication of a specific page? I think
    Contribute can do this
    > when
    > posting to a blog but it's not clear if web pages can be
    managed in this
    > way as
    > well. Any help gratefully received....
    >
    >

  • Using PDFs for client proofs

    As a graphic artist, I need to send proofs to my clients.
    I start with Illustrator files (which also use some Photoshop bitmaps) and send PDF proofs to clients. However, when I send these proofs, I see now that the client can still pull out my vector art if he opens them in Illustrator.
    I tried turning off the check box that reads, "Create PDF Compatible File" when I first save the file. I also make sure I save my PDFs as "Smallest" File Size," and make sure the "Preserve Illustrator Editing Capabilities" box is unchecked. But when I open the PDF proof in Illustrator, the file has one layer but many, many selectable vectors.
    Is there a way to protect my art from theft and at the same time let the client review a PDF proof?

    Thanks Aandi and graffiti,
    Yes, contractually is ideal and I am covered on that account. But once a client is tempted to grab those graphics and reuse them without sending me new business it is unpleasant to enforce without making them a little grumpy. I guess either way I will loose business. Its kind of like locks on doors, they only keep honest people honest.
    Exporting to bitmap was the way I was going to go but the PDF preview is nicer to inspect the fine print when zooming in if it remains mostly vector.
    Oh well, its a rough world out there. I just wanted to check and see if there was a better solution to this dilemma.
    Thanks.

Maybe you are looking for