#{jobParameters[' ']} on AIX Unix
I have a job running fine when executed with CommandLineJobRunner on Windows. When I move this same job to an AIX platform and attempt to execute it through the CommandLineJobRunner, the jobParameters are not parsed correctly.
Below is my step definition. I've printed out the values from within the ConvertRasmToPDF class when executing on AIX and the values for these properties are sent in as text. So parmEvent equals the String #{jobParameters['event']} within the program.
Do I need to modify this step syntax when moving to AIX to have these parsed into their correct values instead of being taken as Strings??
<bean id="processTasklet" scope="step"
class="com.aa.ta.rasmpdf.ConvertRasmToPDF">
<property name="parmEvent" value="#{jobParameters['event']}" />
<property name="parmFileType" value="#{jobParameters['fileType']}" />
<property name="parmFileName" value="#{jobParameters['fileName']}" />
<property name="parmSite" value="#{jobParameters['site']}" />
<property name="parmComp" value="#{jobParameters['comp']}" />
<property name="parmFund" value="#{jobParameters['fund']}" />
<property name="parmReportNbr" value="#{jobParameters['reportNbr']}" />
</bean>