Hi Pradeep,
The error you are getting is due to the dswsbobje. I believe you have configured the Tomcat ssl too so using https.
Firstly try to follow this steps :
- Open the web service url and hit directly into browser.
"But when I access to Services ( https://<host>:<port>/dswsbobje/services or via link) the "Internal server error" occurs"
You have mentioned that when you use above link you are getting internal server error.
That is absolutely expected. Because you have configured HTTPS and in dswsbobje web apps files are by default given http://localhost:8080/dswsbobje/services so when you hit the URL with https it does not even understand and give you internal error.
TO RESOLVE :
- Stop the application server (ie tomcat)
- Configure the axis2.xml files: Search of all axis2.xml and uncomment the following section:
< transportReceiver name="https" class="org.apache.axis2.transport.http.AxisServletListener">
< parameter name="port">8443</parameter>
< /transportReceiver>
- Change the http URL in WSDL files:
- Go to the folder C:\Program Files (x86)\SAP BusinessObjects\Tomcat6\webapps\dswsbobje
- Search for all files *.wsdl In each file, replace
http://localhost:8080/dswsbobje/services/Session
with
https://localhost:8443/dswsbobje/services/Session
- Restart the application server (ie tomcat)
Here I have used 8443 as ssl port and Believe you are using same so make the changes and then access the URL first from the browser if you are able to get the pages then use this URL to the design studio url.
Regards,
Mahak