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

I want to Upload images to Public resources every morning. Is it possible to automate this process.

Avatar

Level 1

I want to Upload images to public resources at a regular interval of time are there any API's to this.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hello,

i have done  script to upload photos to public resources from JS activity within workflow. You can add list of files and loop below script

var file = new File("path_to_file\\mont.jpg");

if(!file.exists)

     logError ("File '" + file.fullName + "' does not exists.");

var extension = /[^.]+$/.exec(file.name);

var md5 = HMACStr(file.name,"UTF-8","MD5");

if (!file.copyTo("path_to_adobe\\Adobe Campaign v6\\var\\res\\bootcamp\\" + md5 + "." + extension))

     logError ("File '" + file.fullName + "' was not copied");

var xmlString = '<fileRes alt="" codepage="0" height="0" name="owl.jpg" nature=""  publish="0" storageType="5" useMd5AsFilename="1" userContentType="0" version=""  width="0" xtkschema="xtk:fileRes"/>'

var fileRes = xtk.fileRes.create( new XML(xmlString));

fileRes.contentType="image/jpeg";

fileRes.label = "some_label"

fileRes.md5 = md5;

fileRes.fileName = "path_to_adobe\\Adobe\\Adobe Campaign v6\\bin\\..\\var\\res\\bootcamp\\" + md5 + "." + extension;

fileRes.originalName = "path_to_file\\Downloads\\mont.jpg";

fileRes.save();

Result after you run this javascript

khjkhjk.jpg

Marcel

View solution in original post

17 Replies

Avatar

Employee Advisor

There is one but I don't remember it now. However, it observes few concerns when there are more than one frontal servers.

It is something to be requested from Adobe PS and hence is out of scope for this forum.

Avatar

Level 1

We inherited a system which included a workflow, build by an Adobe engineer, to import images from a shared folder on the Campaign server as xtk:fileRes. There's a fundamental problem with trying to do this within Campaign itself, that it's not possible (as far as I can see in the docs, and confirmed by someone from Adobe Support) to calculate the md5 hash of a file - and thus the xtk:fileRes record you end up with is not the same as that which would have been created by uploading the same image in the UI. We don't know what the consequences of this are, but it certainly has potential for things to break.

I ended up writing a .NET app through which images (along with their md5 hash!) can be uploaded to a custom SOAP endpoint, which then creates the xtk:fileRes records - see the github project. The treatment of folders could still do with a bit of work - it doesn't create folders, or change the folder if the image already exists in a different one. But it works for our purposes, and may work for yours; or at least give you some useful ideas.

Avatar

Correct answer by
Community Advisor

Hello,

i have done  script to upload photos to public resources from JS activity within workflow. You can add list of files and loop below script

var file = new File("path_to_file\\mont.jpg");

if(!file.exists)

     logError ("File '" + file.fullName + "' does not exists.");

var extension = /[^.]+$/.exec(file.name);

var md5 = HMACStr(file.name,"UTF-8","MD5");

if (!file.copyTo("path_to_adobe\\Adobe Campaign v6\\var\\res\\bootcamp\\" + md5 + "." + extension))

     logError ("File '" + file.fullName + "' was not copied");

var xmlString = '<fileRes alt="" codepage="0" height="0" name="owl.jpg" nature=""  publish="0" storageType="5" useMd5AsFilename="1" userContentType="0" version=""  width="0" xtkschema="xtk:fileRes"/>'

var fileRes = xtk.fileRes.create( new XML(xmlString));

fileRes.contentType="image/jpeg";

fileRes.label = "some_label"

fileRes.md5 = md5;

fileRes.fileName = "path_to_adobe\\Adobe\\Adobe Campaign v6\\bin\\..\\var\\res\\bootcamp\\" + md5 + "." + extension;

fileRes.originalName = "path_to_file\\Downloads\\mont.jpg";

fileRes.save();

Result after you run this javascript

khjkhjk.jpg

Marcel

Avatar

Level 2

I'm doing an upload of image from a web page.

Everything works except for two things, and I think they are connected.

  1. First it is not possible to publish the fileres record after creation.
    Neither from within console nor using PublishIfNeededFromId method.
  2. Second the MD5 is different from what the console produces when uploading manually. I've tried creating the MD5 based on different attributes and also from the image file itself, but it always differs from what the console will produce.
    My hyopthesis is that the first issue with not being able to publish to all servers is connected to the MD5 issue.

My question is: From what is the MD5 of fileres produced and how do I replicate that in code?

/Peter

 

Avatar

Level 2

hi @Marcel_Szimonisz  which path do you use to point to image path in here var file = new File("path_to_file\\mont.jpg"); the path to the server or to your local disk?

Avatar

Level 1

Hi Marcel,

I am trying the solutions you provided. 

I am able to see image resource is getting created in resource folder

ksahu_0-1707131210325.png

 

Unfortunately , the url in preview getting generated properly but image is not loaded to server .  can you help here if anything to check.

After the xtk.fileRes.PublishIfNeededFromId(fileRes.id) in workflow , its gives below error


05/02/2024 09:37:02 js Retry in 1.0s s.
05/02/2024 09:37:02 js XSV-350059 Unable to upload the images to the tracking servers.
05/02/2024 09:37:00 js Retry in 1.0s s.
05/02/2024 09:37:00 js XSV-350059 Unable to upload the images to the tracking servers.
05/02/2024 09:36:58 js Retry in 1.0s s.
05/02/2024 09:36:58 js XSV-350059 Unable to upload the images to the tracking servers.

Thanks,

Kaushal

Avatar

Community Advisor

Hi marcel.gent.86,

When I am running this code I could see that the File object from which we are trying to create a File Resource, should be placed in a path in server("/usr/local/neolane/nl6/var/partners/"). I am unable to find any activity to copy/upload the file to server path. If this understanding is correct can you please mention any suggestion to upload a file/image from local drive to the server.

Avatar

Level 2

I am having the same issue you mentioned could you please let me know how did you make it work for you .

I tried to use the ftp activity in adobe classis campaign but when I try to upload file it seems that I have to upload the file from ftp server not from my local disk .

 

Thanks 

Avatar

Community Advisor

Hello debabratat65073412​,

You can use file transfer activity

1270605_pastedImage_1.png

Marcel

Avatar

Level 2

I am having the same issue you mentioned could you please let me know how did you make it work for you .

I tried to use the ftp activity in adobe classis campaign but when I try to upload file it seems that I have to upload the file from ftp server not from my local disk

Avatar

Employee Advisor

Hi Marcel,

Your solution will work if there is only one frontal server.

If there are two servers, wfserver process will only run on the first one.

So, if you save it to file resources, the record wil get updated in the database but the actual file will only be published on the first server.

The second server will not receive it.

In a load balanced scenario, if this image is used in email, it will render on occasion if the GET call is sent to the first server. WHen it goes to second HTTP 404 will occur.

Please correct me if my understanding is wrong.

Regards,

Vipul

Avatar

Community Advisor

Hello Vipul,

yes thats good question you will need to publish images to all frontal servers as it would be done automatically when you are uploading resource via adobe. Thank you for pointing this out.

I think the one who wants this to be automated will figure it out somehow or I suppose it can be done differently at all.

Marcel

Avatar

Level 1

Hi Marcel, were you able to check on how to publish automatically to all frontal servers?

 

Update: xtk.fileRes.PublishIfNeededFromId(fileRes.id);

 

Use this after saving file and it will publish to all frontal servers.

Avatar

Community Advisor

Hi Marcel,

Thanks a lot. The solution provided above worked fine for me.

Deb

Avatar

Level 2

I am having the same issue you mentioned could you please let me know how did you make it work for you .

I tried to use the ftp activity in adobe classis campaign but when I try to upload file it seems that I have to upload the file from ftp server not from my local disk .

Avatar

Level 2

@Deb_Tripathy which path  do you use to point to the image path , I am getting this error whenever trying to point to the path: 

vahide_0-1682031604026.png

 

Avatar

Level 1

xtk.fileRes.PublishIfNeededFromId(fileRes.id);

 

Use this after saving file and it will publish to all frontal servers.