hello, I try to connect via FTP to HP mainfraim (digital alpha) and failed. all other FTP's goes ok. any suggestion?
thanks Ronip.
Go to Tools -> Output Window and then the FTP tab. Does it say what the error was?
I suspect the : characters in the VMS directory paths are confusing Opus.
You'll need to contact GPSoft to see if they can add support for VMS paths. I don't know how easy it will be to do though, and they may need a test VMS FTP server to be able to connect to to try things out which could be hard to find.
The characters "[]" are not allowed in an URI (RFC 3986).
The FTP server should percent-encode these characters and send it back as part of an URI and not as a part of his local file system - my opinion - but I don't know if the latest FTP RFC describes a local or URI path.
ftp://10.151.1.1/USR$YHV:%5BMKL%5D/
=>
AbsoluteURI = ftp://10.151.1.1/USR$YHV:%5BMKL%5D/
Authority = 10.151.1.1
HierPart = //10.151.1.1/USR$YHV:[MKL]/
Host = 10.151.1.1
IPv4Address = 10.151.1.1
PathAbEmpty = /USR$YHV:%5BMKL%5D/
Scheme = ftp
URI = ftp://10.151.1.1/USR$YHV:%5BMKL%5D/
URIReference = ftp://10.151.1.1/USR$YHV:%5BMKL%5D/
ftp://10.151.1.1/USR$YHV:[MKL]/
=>
Can't be splitted into his parts because it's not a valid URI (with my RFC 3986 parser)
Just 4 info