Hi,
In Adobe Campaign Webpage I have a file upload control. But when I am uploading the file it is endlessly uploading and after some time giving an error message. Please let me how to configure the file upload process in this particular senario?
Thanks & Regards,
Joydeep
Solved! Go to Solution.
Views
Replies
Total Likes
Hello joydeep.kundu,
See this answer. hope it helps
How to Upload a file using Webapp Adobe Campaign?
Marcel
Views
Replies
Total Likes
Hi Joydeep is it Resolved? I am looking for similar thing
Views
Replies
Total Likes
Hello joydeep.kundu,
See this answer. hope it helps
How to Upload a file using Webapp Adobe Campaign?
Marcel
Views
Replies
Total Likes
1.
choose context variable (eg ctx.vars.file) to save your file from form
2-3 step:
See any file res xml to know what to save
ctx.vars.file -->has e.g @md5, @originalName.
//create all fields you want to save
//create xml var fileResXml = <fileRes contentType={contentType}
internalName={intName}
label={originalName} md5={md5Var}
name={destFileName} originalName={originalName}
xtkschema="xtk:fileRes"><folder id={folderId}/></fileRes>;
//create file res obj var fileResObj = xtk.fileRes.create(fileResXml);
//publish fileResobj.PublishIfNeeded(); //save it to db fileResobj.save();
var fileResId = *query resource id by unique internal name*;
///save resource id to linked table?
fileResobj.save();
fileRfileResobj.save();esobj.save();
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies