Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

How to upload a file from web application in Adobe Campaign?

Avatar

Level 2

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?


file1.JPG

file2.JPG

Thanks & Regards,

Joydeep

1 Accepted Solution

Avatar

Correct answer by
Community Advisor
3 Replies

Avatar

Level 2

Hi Joydeep is it Resolved? I am looking for similar thing

Avatar

Correct answer by
Community Advisor

Hello joydeep.kundu​,

See this answer. hope it helps

How to Upload a file using Webapp Adobe Campaign?

Marcel

Avatar

Level 3

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();