This is my first time to program for Google App Engine for Java. I
want to make a CMS and store user uploaded data using Blobstore. I'd
like to use CKEditor as web rich text editor in my program.

upload configuration example of CKEditoris is:
http://docs.cksource.com/CKEditor_3.x/Developers_Guide/File_Browser_(Uploader)#Other_Resources

    CKEDITOR.replace( 'editor1',
    {
        filebrowserBrowseUrl : '/browser/browse.php',
        filebrowserUploadUrl : '/uploader/upload.php'
    });

Uploading a Blob using the Blobstore example is:
http://code.google.com/intl/en/appengine/docs/java/blobstore/overview.html

<body>
    <form action="<%= blobstoreService.createUploadUrl("/upload") %>"
method="post" enctype="multipart/form-data">
        <input type="file" name="myFile">
        <input type="submit" value="Submit">
    </form>
</body>


I do not know how to do it. Could anyone help me?

thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine-java?hl=en.

Reply via email to