Hi All,
We have deployment script to deploy the content to 2 LSCS servers and we have configured the deployment-xml as below.
lscsRuntimeTransport=$lscsRuntimeTransport;
lscsRuntimeHostname=SERVERA;
lscsRuntimePort=$lscsRuntimePort;
lscsRuntimeContext=$lscsRuntimeContext;
deploymentContextId=$deploymentContextId;
destinationArea=$destinationArea;
lscsRuntimeKeyStore=$lscsRuntimeKeyStore;
lscsRuntimeKeyStoreType=$lscsRuntimeKeyStoreType;
lscsRuntimeKeyStorePassword=$lscsRuntimeKeyStorePassword;
lscsRuntimeTrustStore=$lscsRuntimeTrustStore;
lscsRuntimeTrustStoreType=$lscsRuntimeTrustStoreType;
lscsRuntimeTrustStorePassword=$lscsRuntimeTrustStorePassword;
lscsRuntimeProtocOlHandler=$lscsRuntimeProtocolHandler;
LSCS_RUNTIME_SEPARATOR
lscsRuntimeCanonicalHostName=SERVERB;
lscsRuntimeHostname=SERVERB;
lscsRuntimeTransport=$lscsRuntimeTransport;
lscsRuntimePort=$lscsRuntimePort;
lscsRuntimeContext=$lscsRuntimeContext;
deploymentContextId=$deploymentContextId;
destinationArea=$destinationArea;
projectName=$projectName"
Also, we have the lscs-authoring.xml as below,
<runtime mode="preview" lscsContext="lscs" lscsRuntimeTransport="http" lscsRuntimeHostname="SERVERA" lscsRuntimePort="7802" destinationArea="/prodlib/LSCS/LSCSRT-Store" destinationNode="LSCSRuntime"/>
<runtime mode="production" lscsContext="lscs" lscsRuntimeTransport="http" lscsRuntimeHostname="localhost" lscsRuntimePort="7802" destinationArea="/prodlib/LSCS/LSCSRT-Store" destinationNode="LSCSRuntime"/>
When we tried to deploy the file, we are getting the error as below on both the servers.
2016-05-15 13:11:04,212 ERROR Exception in import delivery adapter execution
java.io.IOException: Server returned HTTP response code: 500 for URL: http://SERVERA:7802/lscs/v1/import/
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1459)
at com.interwoven.wcm.iwrr.deployment.adapter.delivery.LSCSDeliveryAdapterBase.processRequest(LSCSDeliveryAdapterBase.java:309)
at com.interwoven.wcm.iwrr.deployment.adapter.delivery.ImportDeliveryAdapter.deploy(ImportDeliveryAdapter.java:126)
at com.interwoven.deploy.engine.TMicroDeployRx.invokeDeliveryAdapters(TMicroDeployRx.java:3769)
at com.interwoven.deploy.engine.TMicroDeployRx.commit(TMicroDeployRx.java:2487)
at com.interwoven.deploy.engine.TMicroDeployRx.run(TMicroDeployRx.java:1363)
at java.lang.Thread.run(Thread.java:662)