HI!
How should we configure broadcast (ARP or scheduling) to return values to a file on disk?
I followed the documentation and the only thing I got was that the system returned this error: INVALID_CLOUD_BROADCAST_TYPE and the explanation of this error is as follows: The data contains a broadcast that is not supported in the cloud.
PSO Standalone
Thanks for help!
Hi, you need to set the Broadcast type to FILE and include a Broadcast parameter with parameter_name of file_path to specify the folder to send the Broadcast to. e.g.
<Broadcast>
<id>ao1</id>
<active>true</active>
<broadcast_type_id>FILE</broadcast_type_id>
<description>Results</description>
<plan_type>COMPLETE</plan_type>
<minimum_plan_quality>80</minimum_plan_quality>
<minimum_step_interval>1</minimum_step_interval>
<once_only>false</once_only>
<maximum_wait>PT30M</maximum_wait>
</Broadcast>
<Broadcast_Parameter>
<broadcast_id>ao1</broadcast_id>
<parameter_name>file_path</parameter_name>
<parameter_value>C:\IFS\Scheduling\broadcast</parameter_value>
</Broadcast_Parameter>