Dear Expert ,
I am trying to Import Data into Anaplan via Anaplan Connect Script. I am trying to Import with Certificate based authentication in Script but getting time out error as shown below. Could you please help me with the solution to deal with .Is there any ways to see the error log??

Script :
@Echo off
rem For Windows OS : This example explains the usage of Certificate Authentication with privateKey with Anaplan Connect.
rem It also loads a source text file and runs an Anaplan import into a module.
set CertPath="C:\Anaplan\PubCert1.pem"
set PrivateKey="C:\Anaplan\PRVTKEY.pem:XYZ"
set WorkspaceId="8a81b00f706eee3a01XXXXXXXX"
set ModelId="285CD8FB662648F9824XXXXXXXXXX"
set FileName="TeXXXST.csv"
set FilePath="C:\Anaplan\anaplan-connect-1.4.4\anaplan-connect\TeXXXST.csv"
set ImportName="Z_Dat_Int_TST_PRC"
set DumpName="Client Location for Dumping the Errored data from Import"
set Chunksize=1
set Operation=-debug -service %ServiceUrl% -auth %AuthUrl% -workspace %WorkspaceId% -model %ModelId% -chunksize %Chunksize% -file %FileName% -put %FilePath% -import %ImportName% -execute -output %DumpName%
set Credentials=-certificate %CertPath% -pkey %PrivateKey%
rem *** End of settings - Do not edit below this line ***
setlocal enableextensions enabledelayedexpansion || exit /b 1
cd %~dp0
set Command=.\AnaplanClient.bat %Credentials% %Operation%
cmd /c %Command%
pause
Appreciate your guidance!
Warm Regards
Deep