06-28-2022 09:08 AM
Hi All,
I am trying to access a data set which is present in mainframe…the dataset name looks like this : ‘PSSP.CUS.INBND.CUSTOMER’ .
When I try to access same dataset/file through filezilla…i am able to access…
But when am trying from file reader/directory browser by giving path as ftp://host/‘PSSP.CUS.INBND.CUSTOMER’ … Snap sends out error and it says path doesn’t not exist…
Could you please help us if there is any specific format to give dataset name in file reader.
06-29-2022 04:28 AM
You need to encode the special characters with the encodeURIComponent() method. It should look something like this:
"ftp://host/"+encodeURIComponent('‘PSSP.CUS.INBND.CUSTOMER’')
07-11-2022 07:23 AM
It didn’t work.Mainframe is is z/os
07-11-2022 07:25 AM
Recheck quotation marks
07-11-2022 07:27 AM
You mean to give the quotes the way you have given in first comment
?