Skip to Content
Technical Articles
Author's profile photo Noel Scheaffer

Fixing RESTful Web Service Issue – Not Found (RWS 00005)

First a little background. I have been working with a third-party software vendor doing a proof-of-concept to see if their product can help us achieve a particular objective. The specifics of our objective or their software are not important. The key is this software needs RESTful Web Services on our BusinessObjects system to be functional to work its magic. We are running 4.2 SP7 Patch 400. I am no RESTful Web Services expert so forgive me for my potentially inaccurate terminology. I am just trying to get the third-party application running.

The first roadblock we hit was an error to the effect of RESTful Web Service Cannot Reach CMS. The root cause of that issue was an incorrect value for CMS_Default in my biprws.properties file. It was set to my web server when it should have been my application server.

After resolving that I thought we were in the clear. Not so. To isolate the issues from the third-party software I have been using Postman.

The next issue was with following call…

GET https://<baseurl>/biprws/raylight/v1/about

Resulting in the following error…

Not Found (RWS 000005)

A quick search brought me to 4.2 SP7 Webi RESTful Web Service Issue. The solution was listed there was to install a newer patch.

In the hopes of finding something short of upgrading I reached out to my SAP support provider. After about 30 minutes of checking various settings and doing his own searches he came across SAP Note 2619641 – Restful SDK does not work after doing a web tier only install in BI 4.2 SP5. It seemed to be a pretty good match to my situation.

Click the link above for the full details, but basically I needed to copy the following two files from <InstallDirectory>\SAP BusinessObjects\tomcat\webapps\biprws\WEB-INF\eclipse\plugins in a good install of the same patch level.

  • com.sap.webi.raylight.jar
  • com.businessobjects.plugins.RepoAccess.jar

I had to restart Tomcat and my problematic RESTful Raylight Web Service call worked.

One more thing. In my research of this issue I came across a five part blog series on RESTful Raylight Web Services beginning with Scripting Web Intelligence: the RESTful Raylight Web ServicesScripting Web Intelligence: the RESTful Raylight Web Services.

Hope this helps someone down the road.

Assigned Tags

      1 Comment
      You must be Logged on to comment or reply to a post.
      Author's profile photo Ablante Legesse
      Ablante Legesse

      This is great, and I'm glad that we were able to support you, and help find a solution for your issue quickly, in lieu of going through a patch update. I'm sure this write-up will definitely help someone with the same scenario.