Solved

Write result of HTTP connector to Azure file storage


Badge +1

How do you write the result of an HTTP connector via a Write file to an Azure file storage?

I followed the steps described in: https://docs.thinkwisesoftware.com/docs/sf/process_flows_connectors#write-files-to-an-external-location

In the log I get the message:
[ERR] Process action 'write_file' in processflow 'write_product_to_excel' returned the following message: Process action 'write_file' in processflow 'write_product_to_excel' was not provided a (valid) value for its 'File location' parameter. (ca3b443c)

How should the File location be configured?

I have now setup the following

The project contains the storage location bc_customer_data:

The process flow variable is created as follows:


I configured the write file connector in the following way:


In a process procedure the file name is set:

 

icon

Best answer by Vincent Doppenberg 14 June 2022, 14:39

View original

This topic has been closed for comments

4 replies

Badge +1

Hi Vincent, 

It works, setting the variable with the file name in the first decision was the solution. Thank you very much.

Userlevel 6
Badge +16

Can you show the process flow and where in the process flow do you set the parameter value for the file path? 

Badge +1

The process flow looks like this. For testing purposes is also write the HTTP connector content via a decision to a database.

The Write file process action has the option ‘Use process procedure’ checked. In the assigned process procedure the file name is set.

 

Userlevel 6
Badge +4

Hello Pierius Lycklama A Nijeholt,

The process procedure is execute after the process action, so the process variable with the file name is set too late. If you’d set the process variable in the process procedure of the first Decision process action, it would work.

I hope this helps