Hello,
I have ssl configured in Tomcat with no issues. For Analysis for Office connecting to BOBJ we have issues with https web service URL.
AO web service url has no issues with http.
http://myserver.mycompany.com:8080/dswsbobje/services/Session
AO web service URL with https gives "Error while checking availability of SAP..."
https://myserver.mycompany.com:8143/dswsbobje/services/Session
Both URLs work in browser and I'm able to test services. I found note 1812984 - SAP BusinessObjects Business Intelligence Platform 4.0
Client Tools on https not workingthat mentions maintaining param in axis2.xml which I have done below. Still we receive same error with https url. Any ideas on what else to check?
<transportReceiver name="http" class="org.apache.axis2.transport.http.AxisServletListener">
<parameter name="port">8080</parameter>
</transportReceiver>
<transportReceiver name="https" class="org.apache.axis2.transport.http.AxisServletListener">
<parameter name="port">8143</parameter>
</transportReceiver>
Thanks!