Question
Cognizant
US
Last activity: 8 Nov 2017 3:45 EST
Migrate Product Wizard issue "Target system cannot able to download the file" IO Issue
Hi ,
I am on 7.1.9 version.
I tried from a HTTPs (Source) system to send a request to a HTTP(target) system for Product Migration. I can see the Target HTTP system is getting the request but it's saying unable to download file . and it fails with a message that
DOWNLOAD STATUS : Target system was unable to download the archive file because of an IOException: java.io.IOException: HTTPS hostname wrong: should be <lnpnprhzpga023v.int.XXXXX.com> .
where as if try the same with http source and http target it is working fine . ( Able to download the zip) . So is it a connection issue that http system is not ableto create a HTTPS connection to download the file from source system ?
I was checking the followng Activity DownloadZipFile in Pega-ImportExport:07-10-19 .it is trying to get a HTTP connection
code from step -3 java method .
try {
url = new java.net.URL(uri); // assume uri is an url using the http protocol
http = url.openConnection();
http.setRequestProperty("Authorization", authorization);
is that the probelm that it always tries for http connection and so it fails as the system it is trying to connect is https ?