Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a new problem, I try to know if they are files on the server and if Yes download else Message.
So I do that:
tFTPFileList_1 ---OncomponentOk---tFTPFileExist_1---Runif----tFTPGet---tMsgBox
|
---Runif---tMSGBox
For tFTPFileList_1 I have add a mask only : zip, jpg, JPG, png
For tFTPFileExist_1 not sure of what I must type in: File Name
For Runif top : ((Integer)globalMap.get("tFTPFileExist_1_NB_FILE"))>0
For Runif bottom : ((Integer)globalMap.get("tFTPFileExist_1_NB_FILE"))<0
I have this messsage:
Exception in component tFTPFileExist_1
java.lang.NullPointerExeption
etc...
Now if I write that
For Runif top : ((Integer)globalMap.get("tFTPFileList_1_NB_FILE"))>0
For Runif bottom : ((Integer)globalMap.get("tFTPFileList_1_NB_FILE"))<0
The two runif are false and nothing happend.
How to resolve that little problem?
Regards
Burnside
tFTPFileList --OnSubjobOK--tJava--Runif----tFTPGet----tMsgBox
|--Runif----tMsgBox
Integer Files = (Integer)globalMap.get("tFTPFileList_1_NB_FILE"));
For Runif top : Files>0
For Runif bottom : Files<=0
tFTPFileList --OnSubjobOK--tJava--Runif----tFTPGet----tMsgBox
|--Runif----tMsgBox
Integer Files = (Integer)globalMap.get("tFTPFileList_1_NB_FILE"));
For Runif top : Files>0
For Runif bottom : Files<=0